diff --git a/.gitignore b/.gitignore index b1181db1b1..d45df1c4a2 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ dist .idea .eslintcache api-generator/typedoc.json +**/.DS_Store diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000000..bf2e7648b0 --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +shamefully-hoist=true diff --git a/README.md b/README.md index bb8b1705ce..4453ec7669 100644 --- a/README.md +++ b/README.md @@ -1,87 +1,24 @@ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) -[![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue) [![Discord Chat](https://img.shields.io/discord/557940238991753223.svg?color=7289da&label=chat&logo=discord)](https://discord.gg/gzKFYnpmCY) [![Prime Discussions](https://img.shields.io/github/discussions-search?query=org%3Aprimefaces&logo=github&label=Prime%20Discussions&link=https%3A%2F%2Fgithub.com%2Forgs%2Fprimefaces%2Fdiscussions)](https://github.com/orgs/primefaces/discussions) [![PrimeVue Hero](https://www.primefaces.org/static/social/primevue-preview.jpg)](https://primevue.org/) -# PrimeVue +# PrimeVue MonoRepo PrimeVue is a rich set of open source UI Components for Vue. See [PrimeVue homepage](https://primevue.org/) for live showcase and documentation. -## Download - -PrimeVue is available at [npm](https://www.npmjs.com/package/primevue). - -``` -# Using npm -npm install primevue - -# Using yarn -yarn add primevue - -# Using pnpm -pnpm add primevue -``` - -## Plugin - -PrimeVue plugin is required to be installed as an application plugin to set up the default configuration. The plugin is lightweight, only sets up the configuration object without affecting your application. PrimeVue has two styling modes; Styled and Unstyled. If you are just getting started, we suggest to using the styled mode. - -**Styled Mode** - -Styled mode provides pre-skinned components, default theme is Aura with emerald as the primary color. - -```javascript -import { createApp } from 'vue'; -import PrimeVueStyled from 'primevue/config'; -const app = createApp(App); - -app.use(PrimeVueStyled); -``` - -**Unstyled Mode** - -In unstyled mode, the components do not include any CSS so you'd need to style the components on your end. If you are using Tailwind CSS, visit the [Tailwind Presets](https://tailwind.primevue.org) project to get you started with styling the components with Tailwind utility classes. - -```javascript -import { createApp } from 'vue'; -import PrimeVueUnstyled from 'primevue/config'; -const app = createApp(App); - -app.use(PrimeVueUnstyled); -``` - -## Usage - -Each component can be imported individually so that you only bundle what you use. Import path is available in the documentation of the corresponding component. - -```javascript -import Button from 'primevue/button'; - -const app = createApp(App); -app.component('Button', Button); -``` - -## Prop Cases - -Component prop names are described as camel case throughout the documentation however kebab-case is also fully supported. Events on the other hand should always be kebab-case. - -```vue - - - - - -``` - -## Nuxt Integration - -The [nuxt-primevue](https://www.npmjs.com/package/nuxt-primevue) package is the official module by PrimeTek. See the nuxt documentation for details. [information](https://primevue.org/nuxt) - -## Example - -We've created various samples for the popular options in the Vue ecosystem. Visit the [primevue-examples](https://github.com/primefaces/primevue-examples) repository for the samples. +## Packages + +| Name | Version | +| --- | --- | +| [primevue](https://github.com/primefaces/primevue/tree/master/packages/primevue) | [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue) | +| [@primevue/core](https://github.com/primefaces/primevue/tree/master/packages/core) | [![npm version](https://badge.fury.io/js/@primevue/core.svg)](https://badge.fury.io/js/@primevue/core) | +| [@primevue/icons](https://github.com/primefaces/primevue/tree/master/packages/icons) | [![npm version](https://badge.fury.io/js/@primevue/icons.svg)](https://badge.fury.io/js/@primevue/icons) | +| [@primevue/themes](https://github.com/primefaces/primevue/tree/master/packages/themes) | [![npm version](https://badge.fury.io/js/@primevue/themes.svg)](https://badge.fury.io/js/@primevue/themes) | +| [@primevue/nuxt-module](https://github.com/primefaces/primevue/tree/master/packages/nuxt-module) | [![npm version](https://badge.fury.io/js/@primevue/nuxt-module.svg)](https://badge.fury.io/js/@primevue/nuxt-module) | +| [@primevue/auto-import-resolver](https://github.com/primefaces/primevue/tree/master/packages/auto-import-resolver) | [![npm version](https://badge.fury.io/js/@primevue/auto-import-resolver.svg)](https://badge.fury.io/js/@primevue/auto-import-resolver) | +| [@primevue/metadata](https://github.com/primefaces/primevue/tree/master/packages/metadata) | [![npm version](https://badge.fury.io/js/@primevue/metadata.svg)](https://badge.fury.io/js/@primevue/metadata) | ## Contributors diff --git a/CHANGELOG.md b/apps/showcase/CHANGELOG.md similarity index 100% rename from CHANGELOG.md rename to apps/showcase/CHANGELOG.md diff --git a/api-generator/build-api.js b/apps/showcase/api-generator/build-api.js similarity index 100% rename from api-generator/build-api.js rename to apps/showcase/api-generator/build-api.js diff --git a/api-generator/build-apidoc.js b/apps/showcase/api-generator/build-apidoc.js similarity index 100% rename from api-generator/build-apidoc.js rename to apps/showcase/api-generator/build-apidoc.js diff --git a/api-generator/build-tokens.js b/apps/showcase/api-generator/build-tokens.js similarity index 100% rename from api-generator/build-tokens.js rename to apps/showcase/api-generator/build-tokens.js diff --git a/api-generator/components/accordion.js b/apps/showcase/api-generator/components/accordion.js similarity index 100% rename from api-generator/components/accordion.js rename to apps/showcase/api-generator/components/accordion.js diff --git a/api-generator/components/accordiontab.js b/apps/showcase/api-generator/components/accordiontab.js similarity index 100% rename from api-generator/components/accordiontab.js rename to apps/showcase/api-generator/components/accordiontab.js diff --git a/api-generator/components/autocomplete.js b/apps/showcase/api-generator/components/autocomplete.js similarity index 100% rename from api-generator/components/autocomplete.js rename to apps/showcase/api-generator/components/autocomplete.js diff --git a/api-generator/components/avatar.js b/apps/showcase/api-generator/components/avatar.js similarity index 100% rename from api-generator/components/avatar.js rename to apps/showcase/api-generator/components/avatar.js diff --git a/api-generator/components/avatargroup.js b/apps/showcase/api-generator/components/avatargroup.js similarity index 100% rename from api-generator/components/avatargroup.js rename to apps/showcase/api-generator/components/avatargroup.js diff --git a/api-generator/components/badge.js b/apps/showcase/api-generator/components/badge.js similarity index 100% rename from api-generator/components/badge.js rename to apps/showcase/api-generator/components/badge.js diff --git a/api-generator/components/badgedirective.js b/apps/showcase/api-generator/components/badgedirective.js similarity index 100% rename from api-generator/components/badgedirective.js rename to apps/showcase/api-generator/components/badgedirective.js diff --git a/api-generator/components/blockui.js b/apps/showcase/api-generator/components/blockui.js similarity index 100% rename from api-generator/components/blockui.js rename to apps/showcase/api-generator/components/blockui.js diff --git a/api-generator/components/breadcrumb.js b/apps/showcase/api-generator/components/breadcrumb.js similarity index 100% rename from api-generator/components/breadcrumb.js rename to apps/showcase/api-generator/components/breadcrumb.js diff --git a/api-generator/components/button.js b/apps/showcase/api-generator/components/button.js similarity index 100% rename from api-generator/components/button.js rename to apps/showcase/api-generator/components/button.js diff --git a/api-generator/components/calendar.js b/apps/showcase/api-generator/components/calendar.js similarity index 100% rename from api-generator/components/calendar.js rename to apps/showcase/api-generator/components/calendar.js diff --git a/api-generator/components/card.js b/apps/showcase/api-generator/components/card.js similarity index 100% rename from api-generator/components/card.js rename to apps/showcase/api-generator/components/card.js diff --git a/api-generator/components/carousel.js b/apps/showcase/api-generator/components/carousel.js similarity index 100% rename from api-generator/components/carousel.js rename to apps/showcase/api-generator/components/carousel.js diff --git a/api-generator/components/cascadeselect.js b/apps/showcase/api-generator/components/cascadeselect.js similarity index 100% rename from api-generator/components/cascadeselect.js rename to apps/showcase/api-generator/components/cascadeselect.js diff --git a/api-generator/components/chart.js b/apps/showcase/api-generator/components/chart.js similarity index 100% rename from api-generator/components/chart.js rename to apps/showcase/api-generator/components/chart.js diff --git a/api-generator/components/checkbox.js b/apps/showcase/api-generator/components/checkbox.js similarity index 100% rename from api-generator/components/checkbox.js rename to apps/showcase/api-generator/components/checkbox.js diff --git a/api-generator/components/chip.js b/apps/showcase/api-generator/components/chip.js similarity index 100% rename from api-generator/components/chip.js rename to apps/showcase/api-generator/components/chip.js diff --git a/api-generator/components/chips.js b/apps/showcase/api-generator/components/chips.js similarity index 100% rename from api-generator/components/chips.js rename to apps/showcase/api-generator/components/chips.js diff --git a/api-generator/components/colorpicker.js b/apps/showcase/api-generator/components/colorpicker.js similarity index 100% rename from api-generator/components/colorpicker.js rename to apps/showcase/api-generator/components/colorpicker.js diff --git a/api-generator/components/column.js b/apps/showcase/api-generator/components/column.js similarity index 100% rename from api-generator/components/column.js rename to apps/showcase/api-generator/components/column.js diff --git a/api-generator/components/columngroup.js b/apps/showcase/api-generator/components/columngroup.js similarity index 100% rename from api-generator/components/columngroup.js rename to apps/showcase/api-generator/components/columngroup.js diff --git a/api-generator/components/confirmdialog.js b/apps/showcase/api-generator/components/confirmdialog.js similarity index 100% rename from api-generator/components/confirmdialog.js rename to apps/showcase/api-generator/components/confirmdialog.js diff --git a/api-generator/components/confirmpopup.js b/apps/showcase/api-generator/components/confirmpopup.js similarity index 100% rename from api-generator/components/confirmpopup.js rename to apps/showcase/api-generator/components/confirmpopup.js diff --git a/api-generator/components/contextmenu.js b/apps/showcase/api-generator/components/contextmenu.js similarity index 100% rename from api-generator/components/contextmenu.js rename to apps/showcase/api-generator/components/contextmenu.js diff --git a/api-generator/components/datatable.js b/apps/showcase/api-generator/components/datatable.js similarity index 100% rename from api-generator/components/datatable.js rename to apps/showcase/api-generator/components/datatable.js diff --git a/api-generator/components/dataview.js b/apps/showcase/api-generator/components/dataview.js similarity index 100% rename from api-generator/components/dataview.js rename to apps/showcase/api-generator/components/dataview.js diff --git a/api-generator/components/datepicker.js b/apps/showcase/api-generator/components/datepicker.js similarity index 100% rename from api-generator/components/datepicker.js rename to apps/showcase/api-generator/components/datepicker.js diff --git a/api-generator/components/deferredcontent.js b/apps/showcase/api-generator/components/deferredcontent.js similarity index 100% rename from api-generator/components/deferredcontent.js rename to apps/showcase/api-generator/components/deferredcontent.js diff --git a/api-generator/components/dialog.js b/apps/showcase/api-generator/components/dialog.js similarity index 100% rename from api-generator/components/dialog.js rename to apps/showcase/api-generator/components/dialog.js diff --git a/api-generator/components/divider.js b/apps/showcase/api-generator/components/divider.js similarity index 100% rename from api-generator/components/divider.js rename to apps/showcase/api-generator/components/divider.js diff --git a/api-generator/components/dock.js b/apps/showcase/api-generator/components/dock.js similarity index 100% rename from api-generator/components/dock.js rename to apps/showcase/api-generator/components/dock.js diff --git a/api-generator/components/drawer.js b/apps/showcase/api-generator/components/drawer.js similarity index 100% rename from api-generator/components/drawer.js rename to apps/showcase/api-generator/components/drawer.js diff --git a/api-generator/components/dropdown.js b/apps/showcase/api-generator/components/dropdown.js similarity index 100% rename from api-generator/components/dropdown.js rename to apps/showcase/api-generator/components/dropdown.js diff --git a/api-generator/components/dynamicdialog.js b/apps/showcase/api-generator/components/dynamicdialog.js similarity index 100% rename from api-generator/components/dynamicdialog.js rename to apps/showcase/api-generator/components/dynamicdialog.js diff --git a/api-generator/components/editor.js b/apps/showcase/api-generator/components/editor.js similarity index 100% rename from api-generator/components/editor.js rename to apps/showcase/api-generator/components/editor.js diff --git a/api-generator/components/fieldset.js b/apps/showcase/api-generator/components/fieldset.js similarity index 100% rename from api-generator/components/fieldset.js rename to apps/showcase/api-generator/components/fieldset.js diff --git a/api-generator/components/fileupload.js b/apps/showcase/api-generator/components/fileupload.js similarity index 100% rename from api-generator/components/fileupload.js rename to apps/showcase/api-generator/components/fileupload.js diff --git a/api-generator/components/galleria.js b/apps/showcase/api-generator/components/galleria.js similarity index 100% rename from api-generator/components/galleria.js rename to apps/showcase/api-generator/components/galleria.js diff --git a/api-generator/components/image.js b/apps/showcase/api-generator/components/image.js similarity index 100% rename from api-generator/components/image.js rename to apps/showcase/api-generator/components/image.js diff --git a/api-generator/components/inlinemessage.js b/apps/showcase/api-generator/components/inlinemessage.js similarity index 100% rename from api-generator/components/inlinemessage.js rename to apps/showcase/api-generator/components/inlinemessage.js diff --git a/api-generator/components/inplace.js b/apps/showcase/api-generator/components/inplace.js similarity index 100% rename from api-generator/components/inplace.js rename to apps/showcase/api-generator/components/inplace.js diff --git a/api-generator/components/inputchips.js b/apps/showcase/api-generator/components/inputchips.js similarity index 100% rename from api-generator/components/inputchips.js rename to apps/showcase/api-generator/components/inputchips.js diff --git a/api-generator/components/inputmask.js b/apps/showcase/api-generator/components/inputmask.js similarity index 100% rename from api-generator/components/inputmask.js rename to apps/showcase/api-generator/components/inputmask.js diff --git a/api-generator/components/inputnumber.js b/apps/showcase/api-generator/components/inputnumber.js similarity index 100% rename from api-generator/components/inputnumber.js rename to apps/showcase/api-generator/components/inputnumber.js diff --git a/api-generator/components/inputotp.js b/apps/showcase/api-generator/components/inputotp.js similarity index 100% rename from api-generator/components/inputotp.js rename to apps/showcase/api-generator/components/inputotp.js diff --git a/api-generator/components/inputswitch.js b/apps/showcase/api-generator/components/inputswitch.js similarity index 100% rename from api-generator/components/inputswitch.js rename to apps/showcase/api-generator/components/inputswitch.js diff --git a/api-generator/components/inputtext.js b/apps/showcase/api-generator/components/inputtext.js similarity index 100% rename from api-generator/components/inputtext.js rename to apps/showcase/api-generator/components/inputtext.js diff --git a/api-generator/components/knob.js b/apps/showcase/api-generator/components/knob.js similarity index 100% rename from api-generator/components/knob.js rename to apps/showcase/api-generator/components/knob.js diff --git a/api-generator/components/listbox.js b/apps/showcase/api-generator/components/listbox.js similarity index 100% rename from api-generator/components/listbox.js rename to apps/showcase/api-generator/components/listbox.js diff --git a/api-generator/components/megamenu.js b/apps/showcase/api-generator/components/megamenu.js similarity index 100% rename from api-generator/components/megamenu.js rename to apps/showcase/api-generator/components/megamenu.js diff --git a/api-generator/components/menu.js b/apps/showcase/api-generator/components/menu.js similarity index 100% rename from api-generator/components/menu.js rename to apps/showcase/api-generator/components/menu.js diff --git a/api-generator/components/menubar.js b/apps/showcase/api-generator/components/menubar.js similarity index 100% rename from api-generator/components/menubar.js rename to apps/showcase/api-generator/components/menubar.js diff --git a/api-generator/components/message.js b/apps/showcase/api-generator/components/message.js similarity index 100% rename from api-generator/components/message.js rename to apps/showcase/api-generator/components/message.js diff --git a/api-generator/components/multiselect.js b/apps/showcase/api-generator/components/multiselect.js similarity index 100% rename from api-generator/components/multiselect.js rename to apps/showcase/api-generator/components/multiselect.js diff --git a/api-generator/components/orderlist.js b/apps/showcase/api-generator/components/orderlist.js similarity index 100% rename from api-generator/components/orderlist.js rename to apps/showcase/api-generator/components/orderlist.js diff --git a/api-generator/components/organizationchart.js b/apps/showcase/api-generator/components/organizationchart.js similarity index 100% rename from api-generator/components/organizationchart.js rename to apps/showcase/api-generator/components/organizationchart.js diff --git a/api-generator/components/overlaypanel.js b/apps/showcase/api-generator/components/overlaypanel.js similarity index 100% rename from api-generator/components/overlaypanel.js rename to apps/showcase/api-generator/components/overlaypanel.js diff --git a/api-generator/components/paginator.js b/apps/showcase/api-generator/components/paginator.js similarity index 100% rename from api-generator/components/paginator.js rename to apps/showcase/api-generator/components/paginator.js diff --git a/api-generator/components/panel.js b/apps/showcase/api-generator/components/panel.js similarity index 100% rename from api-generator/components/panel.js rename to apps/showcase/api-generator/components/panel.js diff --git a/api-generator/components/panelmenu.js b/apps/showcase/api-generator/components/panelmenu.js similarity index 100% rename from api-generator/components/panelmenu.js rename to apps/showcase/api-generator/components/panelmenu.js diff --git a/api-generator/components/password.js b/apps/showcase/api-generator/components/password.js similarity index 100% rename from api-generator/components/password.js rename to apps/showcase/api-generator/components/password.js diff --git a/api-generator/components/picklist.js b/apps/showcase/api-generator/components/picklist.js similarity index 100% rename from api-generator/components/picklist.js rename to apps/showcase/api-generator/components/picklist.js diff --git a/api-generator/components/popover.js b/apps/showcase/api-generator/components/popover.js similarity index 100% rename from api-generator/components/popover.js rename to apps/showcase/api-generator/components/popover.js diff --git a/api-generator/components/portal.js b/apps/showcase/api-generator/components/portal.js similarity index 100% rename from api-generator/components/portal.js rename to apps/showcase/api-generator/components/portal.js diff --git a/api-generator/components/progressbar.js b/apps/showcase/api-generator/components/progressbar.js similarity index 100% rename from api-generator/components/progressbar.js rename to apps/showcase/api-generator/components/progressbar.js diff --git a/api-generator/components/progressspinner.js b/apps/showcase/api-generator/components/progressspinner.js similarity index 100% rename from api-generator/components/progressspinner.js rename to apps/showcase/api-generator/components/progressspinner.js diff --git a/api-generator/components/radiobutton.js b/apps/showcase/api-generator/components/radiobutton.js similarity index 100% rename from api-generator/components/radiobutton.js rename to apps/showcase/api-generator/components/radiobutton.js diff --git a/api-generator/components/rating.js b/apps/showcase/api-generator/components/rating.js similarity index 100% rename from api-generator/components/rating.js rename to apps/showcase/api-generator/components/rating.js diff --git a/api-generator/components/ripple.js b/apps/showcase/api-generator/components/ripple.js similarity index 100% rename from api-generator/components/ripple.js rename to apps/showcase/api-generator/components/ripple.js diff --git a/api-generator/components/row.js b/apps/showcase/api-generator/components/row.js similarity index 100% rename from api-generator/components/row.js rename to apps/showcase/api-generator/components/row.js diff --git a/api-generator/components/scrollpanel.js b/apps/showcase/api-generator/components/scrollpanel.js similarity index 100% rename from api-generator/components/scrollpanel.js rename to apps/showcase/api-generator/components/scrollpanel.js diff --git a/api-generator/components/scrolltop.js b/apps/showcase/api-generator/components/scrolltop.js similarity index 100% rename from api-generator/components/scrolltop.js rename to apps/showcase/api-generator/components/scrolltop.js diff --git a/api-generator/components/select.js b/apps/showcase/api-generator/components/select.js similarity index 100% rename from api-generator/components/select.js rename to apps/showcase/api-generator/components/select.js diff --git a/api-generator/components/selectbutton.js b/apps/showcase/api-generator/components/selectbutton.js similarity index 100% rename from api-generator/components/selectbutton.js rename to apps/showcase/api-generator/components/selectbutton.js diff --git a/api-generator/components/sidebar.js b/apps/showcase/api-generator/components/sidebar.js similarity index 100% rename from api-generator/components/sidebar.js rename to apps/showcase/api-generator/components/sidebar.js diff --git a/api-generator/components/skeleton.js b/apps/showcase/api-generator/components/skeleton.js similarity index 100% rename from api-generator/components/skeleton.js rename to apps/showcase/api-generator/components/skeleton.js diff --git a/api-generator/components/slider.js b/apps/showcase/api-generator/components/slider.js similarity index 100% rename from api-generator/components/slider.js rename to apps/showcase/api-generator/components/slider.js diff --git a/api-generator/components/speeddial.js b/apps/showcase/api-generator/components/speeddial.js similarity index 100% rename from api-generator/components/speeddial.js rename to apps/showcase/api-generator/components/speeddial.js diff --git a/api-generator/components/splitbutton.js b/apps/showcase/api-generator/components/splitbutton.js similarity index 100% rename from api-generator/components/splitbutton.js rename to apps/showcase/api-generator/components/splitbutton.js diff --git a/api-generator/components/splitter.js b/apps/showcase/api-generator/components/splitter.js similarity index 100% rename from api-generator/components/splitter.js rename to apps/showcase/api-generator/components/splitter.js diff --git a/api-generator/components/splitterpanel.js b/apps/showcase/api-generator/components/splitterpanel.js similarity index 100% rename from api-generator/components/splitterpanel.js rename to apps/showcase/api-generator/components/splitterpanel.js diff --git a/api-generator/components/steps.js b/apps/showcase/api-generator/components/steps.js similarity index 100% rename from api-generator/components/steps.js rename to apps/showcase/api-generator/components/steps.js diff --git a/api-generator/components/styleclass.js b/apps/showcase/api-generator/components/styleclass.js similarity index 100% rename from api-generator/components/styleclass.js rename to apps/showcase/api-generator/components/styleclass.js diff --git a/api-generator/components/tabmenu.js b/apps/showcase/api-generator/components/tabmenu.js similarity index 100% rename from api-generator/components/tabmenu.js rename to apps/showcase/api-generator/components/tabmenu.js diff --git a/api-generator/components/tabpanel.js b/apps/showcase/api-generator/components/tabpanel.js similarity index 100% rename from api-generator/components/tabpanel.js rename to apps/showcase/api-generator/components/tabpanel.js diff --git a/api-generator/components/tabview.js b/apps/showcase/api-generator/components/tabview.js similarity index 100% rename from api-generator/components/tabview.js rename to apps/showcase/api-generator/components/tabview.js diff --git a/api-generator/components/tag.js b/apps/showcase/api-generator/components/tag.js similarity index 100% rename from api-generator/components/tag.js rename to apps/showcase/api-generator/components/tag.js diff --git a/api-generator/components/terminal.js b/apps/showcase/api-generator/components/terminal.js similarity index 100% rename from api-generator/components/terminal.js rename to apps/showcase/api-generator/components/terminal.js diff --git a/api-generator/components/textarea.js b/apps/showcase/api-generator/components/textarea.js similarity index 100% rename from api-generator/components/textarea.js rename to apps/showcase/api-generator/components/textarea.js diff --git a/api-generator/components/tieredmenu.js b/apps/showcase/api-generator/components/tieredmenu.js similarity index 100% rename from api-generator/components/tieredmenu.js rename to apps/showcase/api-generator/components/tieredmenu.js diff --git a/api-generator/components/timeline.js b/apps/showcase/api-generator/components/timeline.js similarity index 100% rename from api-generator/components/timeline.js rename to apps/showcase/api-generator/components/timeline.js diff --git a/api-generator/components/toast.js b/apps/showcase/api-generator/components/toast.js similarity index 100% rename from api-generator/components/toast.js rename to apps/showcase/api-generator/components/toast.js diff --git a/api-generator/components/togglebutton.js b/apps/showcase/api-generator/components/togglebutton.js similarity index 100% rename from api-generator/components/togglebutton.js rename to apps/showcase/api-generator/components/togglebutton.js diff --git a/api-generator/components/toggleswitch.js b/apps/showcase/api-generator/components/toggleswitch.js similarity index 100% rename from api-generator/components/toggleswitch.js rename to apps/showcase/api-generator/components/toggleswitch.js diff --git a/api-generator/components/toolbar.js b/apps/showcase/api-generator/components/toolbar.js similarity index 100% rename from api-generator/components/toolbar.js rename to apps/showcase/api-generator/components/toolbar.js diff --git a/api-generator/components/tooltip.js b/apps/showcase/api-generator/components/tooltip.js similarity index 100% rename from api-generator/components/tooltip.js rename to apps/showcase/api-generator/components/tooltip.js diff --git a/api-generator/components/tree.js b/apps/showcase/api-generator/components/tree.js similarity index 100% rename from api-generator/components/tree.js rename to apps/showcase/api-generator/components/tree.js diff --git a/api-generator/components/treeselect.js b/apps/showcase/api-generator/components/treeselect.js similarity index 100% rename from api-generator/components/treeselect.js rename to apps/showcase/api-generator/components/treeselect.js diff --git a/api-generator/components/treetable.js b/apps/showcase/api-generator/components/treetable.js similarity index 100% rename from api-generator/components/treetable.js rename to apps/showcase/api-generator/components/treetable.js diff --git a/api-generator/components/virtualscroller.js b/apps/showcase/api-generator/components/virtualscroller.js similarity index 100% rename from api-generator/components/virtualscroller.js rename to apps/showcase/api-generator/components/virtualscroller.js diff --git a/app.vue b/apps/showcase/app.vue similarity index 100% rename from app.vue rename to apps/showcase/app.vue diff --git a/assets/data/news.json b/apps/showcase/assets/data/news.json similarity index 100% rename from assets/data/news.json rename to apps/showcase/assets/data/news.json diff --git a/assets/logo.png b/apps/showcase/assets/logo.png similarity index 100% rename from assets/logo.png rename to apps/showcase/assets/logo.png diff --git a/assets/menu/menu.json b/apps/showcase/assets/menu/menu.json similarity index 100% rename from assets/menu/menu.json rename to apps/showcase/assets/menu/menu.json diff --git a/assets/styles/flags.css b/apps/showcase/assets/styles/flags.css similarity index 100% rename from assets/styles/flags.css rename to apps/showcase/assets/styles/flags.css diff --git a/assets/styles/fonts/Inter-italic.var.woff2 b/apps/showcase/assets/styles/fonts/Inter-italic.var.woff2 similarity index 100% rename from assets/styles/fonts/Inter-italic.var.woff2 rename to apps/showcase/assets/styles/fonts/Inter-italic.var.woff2 diff --git a/assets/styles/fonts/Inter-roman.var.woff2 b/apps/showcase/assets/styles/fonts/Inter-roman.var.woff2 similarity index 100% rename from assets/styles/fonts/Inter-roman.var.woff2 rename to apps/showcase/assets/styles/fonts/Inter-roman.var.woff2 diff --git a/assets/styles/layout/_animation.scss b/apps/showcase/assets/styles/layout/_animation.scss similarity index 100% rename from assets/styles/layout/_animation.scss rename to apps/showcase/assets/styles/layout/_animation.scss diff --git a/assets/styles/layout/_code.scss b/apps/showcase/assets/styles/layout/_code.scss similarity index 100% rename from assets/styles/layout/_code.scss rename to apps/showcase/assets/styles/layout/_code.scss diff --git a/assets/styles/layout/_content.scss b/apps/showcase/assets/styles/layout/_content.scss similarity index 100% rename from assets/styles/layout/_content.scss rename to apps/showcase/assets/styles/layout/_content.scss diff --git a/assets/styles/layout/_core.scss b/apps/showcase/assets/styles/layout/_core.scss similarity index 100% rename from assets/styles/layout/_core.scss rename to apps/showcase/assets/styles/layout/_core.scss diff --git a/assets/styles/layout/_doc.scss b/apps/showcase/assets/styles/layout/_doc.scss similarity index 100% rename from assets/styles/layout/_doc.scss rename to apps/showcase/assets/styles/layout/_doc.scss diff --git a/assets/styles/layout/_docsearch.scss b/apps/showcase/assets/styles/layout/_docsearch.scss similarity index 100% rename from assets/styles/layout/_docsearch.scss rename to apps/showcase/assets/styles/layout/_docsearch.scss diff --git a/assets/styles/layout/_footer.scss b/apps/showcase/assets/styles/layout/_footer.scss similarity index 100% rename from assets/styles/layout/_footer.scss rename to apps/showcase/assets/styles/layout/_footer.scss diff --git a/assets/styles/layout/_glow.scss b/apps/showcase/assets/styles/layout/_glow.scss similarity index 100% rename from assets/styles/layout/_glow.scss rename to apps/showcase/assets/styles/layout/_glow.scss diff --git a/assets/styles/layout/_mixins.scss b/apps/showcase/assets/styles/layout/_mixins.scss similarity index 100% rename from assets/styles/layout/_mixins.scss rename to apps/showcase/assets/styles/layout/_mixins.scss diff --git a/assets/styles/layout/_news.scss b/apps/showcase/assets/styles/layout/_news.scss similarity index 100% rename from assets/styles/layout/_news.scss rename to apps/showcase/assets/styles/layout/_news.scss diff --git a/assets/styles/layout/_responsive.scss b/apps/showcase/assets/styles/layout/_responsive.scss similarity index 100% rename from assets/styles/layout/_responsive.scss rename to apps/showcase/assets/styles/layout/_responsive.scss diff --git a/assets/styles/layout/_sidebar.scss b/apps/showcase/assets/styles/layout/_sidebar.scss similarity index 100% rename from assets/styles/layout/_sidebar.scss rename to apps/showcase/assets/styles/layout/_sidebar.scss diff --git a/assets/styles/layout/_topbar.scss b/apps/showcase/assets/styles/layout/_topbar.scss similarity index 100% rename from assets/styles/layout/_topbar.scss rename to apps/showcase/assets/styles/layout/_topbar.scss diff --git a/assets/styles/layout/landing/_blocks.scss b/apps/showcase/assets/styles/layout/landing/_blocks.scss similarity index 100% rename from assets/styles/layout/landing/_blocks.scss rename to apps/showcase/assets/styles/layout/landing/_blocks.scss diff --git a/assets/styles/layout/landing/_features.scss b/apps/showcase/assets/styles/layout/landing/_features.scss similarity index 100% rename from assets/styles/layout/landing/_features.scss rename to apps/showcase/assets/styles/layout/landing/_features.scss diff --git a/assets/styles/layout/landing/_footer.scss b/apps/showcase/assets/styles/layout/landing/_footer.scss similarity index 100% rename from assets/styles/layout/landing/_footer.scss rename to apps/showcase/assets/styles/layout/landing/_footer.scss diff --git a/assets/styles/layout/landing/_hero.scss b/apps/showcase/assets/styles/layout/landing/_hero.scss similarity index 100% rename from assets/styles/layout/landing/_hero.scss rename to apps/showcase/assets/styles/layout/landing/_hero.scss diff --git a/assets/styles/layout/landing/_landing.scss b/apps/showcase/assets/styles/layout/landing/_landing.scss similarity index 100% rename from assets/styles/layout/landing/_landing.scss rename to apps/showcase/assets/styles/layout/landing/_landing.scss diff --git a/assets/styles/layout/landing/_main.scss b/apps/showcase/assets/styles/layout/landing/_main.scss similarity index 100% rename from assets/styles/layout/landing/_main.scss rename to apps/showcase/assets/styles/layout/landing/_main.scss diff --git a/assets/styles/layout/landing/_templates.scss b/apps/showcase/assets/styles/layout/landing/_templates.scss similarity index 100% rename from assets/styles/layout/landing/_templates.scss rename to apps/showcase/assets/styles/layout/landing/_templates.scss diff --git a/assets/styles/layout/landing/_themes.scss b/apps/showcase/assets/styles/layout/landing/_themes.scss similarity index 100% rename from assets/styles/layout/landing/_themes.scss rename to apps/showcase/assets/styles/layout/landing/_themes.scss diff --git a/assets/styles/layout/landing/_users.scss b/apps/showcase/assets/styles/layout/landing/_users.scss similarity index 100% rename from assets/styles/layout/landing/_users.scss rename to apps/showcase/assets/styles/layout/landing/_users.scss diff --git a/assets/styles/layout/layout.scss b/apps/showcase/assets/styles/layout/layout.scss similarity index 100% rename from assets/styles/layout/layout.scss rename to apps/showcase/assets/styles/layout/layout.scss diff --git a/assets/styles/layout/templates/_apollo.scss b/apps/showcase/assets/styles/layout/templates/_apollo.scss similarity index 100% rename from assets/styles/layout/templates/_apollo.scss rename to apps/showcase/assets/styles/layout/templates/_apollo.scss diff --git a/assets/styles/layout/templates/_atlantis.scss b/apps/showcase/assets/styles/layout/templates/_atlantis.scss similarity index 100% rename from assets/styles/layout/templates/_atlantis.scss rename to apps/showcase/assets/styles/layout/templates/_atlantis.scss diff --git a/assets/styles/layout/templates/_avalon.scss b/apps/showcase/assets/styles/layout/templates/_avalon.scss similarity index 100% rename from assets/styles/layout/templates/_avalon.scss rename to apps/showcase/assets/styles/layout/templates/_avalon.scss diff --git a/assets/styles/layout/templates/_diamond.scss b/apps/showcase/assets/styles/layout/templates/_diamond.scss similarity index 100% rename from assets/styles/layout/templates/_diamond.scss rename to apps/showcase/assets/styles/layout/templates/_diamond.scss diff --git a/assets/styles/layout/templates/_freya.scss b/apps/showcase/assets/styles/layout/templates/_freya.scss similarity index 100% rename from assets/styles/layout/templates/_freya.scss rename to apps/showcase/assets/styles/layout/templates/_freya.scss diff --git a/assets/styles/layout/templates/_poseidon.scss b/apps/showcase/assets/styles/layout/templates/_poseidon.scss similarity index 100% rename from assets/styles/layout/templates/_poseidon.scss rename to apps/showcase/assets/styles/layout/templates/_poseidon.scss diff --git a/assets/styles/layout/templates/_sakai.scss b/apps/showcase/assets/styles/layout/templates/_sakai.scss similarity index 100% rename from assets/styles/layout/templates/_sakai.scss rename to apps/showcase/assets/styles/layout/templates/_sakai.scss diff --git a/assets/styles/layout/templates/_templates.scss b/apps/showcase/assets/styles/layout/templates/_templates.scss similarity index 100% rename from assets/styles/layout/templates/_templates.scss rename to apps/showcase/assets/styles/layout/templates/_templates.scss diff --git a/assets/styles/layout/templates/_ultima.scss b/apps/showcase/assets/styles/layout/templates/_ultima.scss similarity index 100% rename from assets/styles/layout/templates/_ultima.scss rename to apps/showcase/assets/styles/layout/templates/_ultima.scss diff --git a/assets/styles/layout/templates/_verona.scss b/apps/showcase/assets/styles/layout/templates/_verona.scss similarity index 100% rename from assets/styles/layout/templates/_verona.scss rename to apps/showcase/assets/styles/layout/templates/_verona.scss diff --git a/assets/styles/layout/variables/_variables.scss b/apps/showcase/assets/styles/layout/variables/_variables.scss similarity index 100% rename from assets/styles/layout/variables/_variables.scss rename to apps/showcase/assets/styles/layout/variables/_variables.scss diff --git a/assets/styles/layout/variables/landing/_dark.scss b/apps/showcase/assets/styles/layout/variables/landing/_dark.scss similarity index 100% rename from assets/styles/layout/variables/landing/_dark.scss rename to apps/showcase/assets/styles/layout/variables/landing/_dark.scss diff --git a/assets/styles/layout/variables/landing/_light.scss b/apps/showcase/assets/styles/layout/variables/landing/_light.scss similarity index 100% rename from assets/styles/layout/variables/landing/_light.scss rename to apps/showcase/assets/styles/layout/variables/landing/_light.scss diff --git a/assets/styles/layout/variables/main/_dark.scss b/apps/showcase/assets/styles/layout/variables/main/_dark.scss similarity index 100% rename from assets/styles/layout/variables/main/_dark.scss rename to apps/showcase/assets/styles/layout/variables/main/_dark.scss diff --git a/assets/styles/layout/variables/main/_light.scss b/apps/showcase/assets/styles/layout/variables/main/_light.scss similarity index 100% rename from assets/styles/layout/variables/main/_light.scss rename to apps/showcase/assets/styles/layout/variables/main/_light.scss diff --git a/assets/styles/tailwind/main.css b/apps/showcase/assets/styles/tailwind/main.css similarity index 100% rename from assets/styles/tailwind/main.css rename to apps/showcase/assets/styles/tailwind/main.css diff --git a/build-meta.js b/apps/showcase/build-meta.js similarity index 100% rename from build-meta.js rename to apps/showcase/build-meta.js diff --git a/components/demo/DeferredDemo.vue b/apps/showcase/components/demo/DeferredDemo.vue similarity index 100% rename from components/demo/DeferredDemo.vue rename to apps/showcase/components/demo/DeferredDemo.vue diff --git a/components/doc/DocApiSection.vue b/apps/showcase/components/doc/DocApiSection.vue similarity index 100% rename from components/doc/DocApiSection.vue rename to apps/showcase/components/doc/DocApiSection.vue diff --git a/components/doc/DocApiTable.vue b/apps/showcase/components/doc/DocApiTable.vue similarity index 98% rename from components/doc/DocApiTable.vue rename to apps/showcase/components/doc/DocApiTable.vue index 7fb3649fa6..53b12e4da5 100644 --- a/components/doc/DocApiTable.vue +++ b/apps/showcase/components/doc/DocApiTable.vue @@ -36,7 +36,7 @@ diff --git a/components/doc/DocComponent.vue b/apps/showcase/components/doc/DocComponent.vue similarity index 100% rename from components/doc/DocComponent.vue rename to apps/showcase/components/doc/DocComponent.vue diff --git a/components/doc/DocSectionCode.vue b/apps/showcase/components/doc/DocSectionCode.vue similarity index 100% rename from components/doc/DocSectionCode.vue rename to apps/showcase/components/doc/DocSectionCode.vue diff --git a/components/doc/DocSectionNav.vue b/apps/showcase/components/doc/DocSectionNav.vue similarity index 98% rename from components/doc/DocSectionNav.vue rename to apps/showcase/components/doc/DocSectionNav.vue index 6375b47334..b878010d63 100644 --- a/components/doc/DocSectionNav.vue +++ b/apps/showcase/components/doc/DocSectionNav.vue @@ -21,7 +21,7 @@ diff --git a/doc/configuration/UnstyledDoc.vue b/apps/showcase/doc/configuration/UnstyledDoc.vue similarity index 100% rename from doc/configuration/UnstyledDoc.vue rename to apps/showcase/doc/configuration/UnstyledDoc.vue diff --git a/doc/configuration/ZIndexDoc.vue b/apps/showcase/doc/configuration/ZIndexDoc.vue similarity index 100% rename from doc/configuration/ZIndexDoc.vue rename to apps/showcase/doc/configuration/ZIndexDoc.vue diff --git a/doc/configuration/csp/NonceDoc.vue b/apps/showcase/doc/configuration/csp/NonceDoc.vue similarity index 100% rename from doc/configuration/csp/NonceDoc.vue rename to apps/showcase/doc/configuration/csp/NonceDoc.vue diff --git a/doc/configuration/locale/ImportDoc.vue b/apps/showcase/doc/configuration/locale/ImportDoc.vue similarity index 100% rename from doc/configuration/locale/ImportDoc.vue rename to apps/showcase/doc/configuration/locale/ImportDoc.vue diff --git a/doc/configuration/locale/LocaleApiDoc.vue b/apps/showcase/doc/configuration/locale/LocaleApiDoc.vue similarity index 100% rename from doc/configuration/locale/LocaleApiDoc.vue rename to apps/showcase/doc/configuration/locale/LocaleApiDoc.vue diff --git a/doc/configuration/locale/RepositoryDoc.vue b/apps/showcase/doc/configuration/locale/RepositoryDoc.vue similarity index 100% rename from doc/configuration/locale/RepositoryDoc.vue rename to apps/showcase/doc/configuration/locale/RepositoryDoc.vue diff --git a/doc/configuration/locale/SetLocaleDoc.vue b/apps/showcase/doc/configuration/locale/SetLocaleDoc.vue similarity index 100% rename from doc/configuration/locale/SetLocaleDoc.vue rename to apps/showcase/doc/configuration/locale/SetLocaleDoc.vue diff --git a/doc/confirmdialog/AccessibilityDoc.vue b/apps/showcase/doc/confirmdialog/AccessibilityDoc.vue similarity index 100% rename from doc/confirmdialog/AccessibilityDoc.vue rename to apps/showcase/doc/confirmdialog/AccessibilityDoc.vue diff --git a/doc/confirmdialog/BasicDoc.vue b/apps/showcase/doc/confirmdialog/BasicDoc.vue similarity index 100% rename from doc/confirmdialog/BasicDoc.vue rename to apps/showcase/doc/confirmdialog/BasicDoc.vue diff --git a/doc/confirmdialog/ConfirmationServiceDoc.vue b/apps/showcase/doc/confirmdialog/ConfirmationServiceDoc.vue similarity index 100% rename from doc/confirmdialog/ConfirmationServiceDoc.vue rename to apps/showcase/doc/confirmdialog/ConfirmationServiceDoc.vue diff --git a/doc/confirmdialog/HeadlessDoc.vue b/apps/showcase/doc/confirmdialog/HeadlessDoc.vue similarity index 100% rename from doc/confirmdialog/HeadlessDoc.vue rename to apps/showcase/doc/confirmdialog/HeadlessDoc.vue diff --git a/doc/confirmdialog/ImportDoc.vue b/apps/showcase/doc/confirmdialog/ImportDoc.vue similarity index 100% rename from doc/confirmdialog/ImportDoc.vue rename to apps/showcase/doc/confirmdialog/ImportDoc.vue diff --git a/doc/confirmdialog/PositionDoc.vue b/apps/showcase/doc/confirmdialog/PositionDoc.vue similarity index 100% rename from doc/confirmdialog/PositionDoc.vue rename to apps/showcase/doc/confirmdialog/PositionDoc.vue diff --git a/doc/confirmdialog/TemplateDoc.vue b/apps/showcase/doc/confirmdialog/TemplateDoc.vue similarity index 100% rename from doc/confirmdialog/TemplateDoc.vue rename to apps/showcase/doc/confirmdialog/TemplateDoc.vue diff --git a/doc/confirmdialog/pt/PTImage.vue b/apps/showcase/doc/confirmdialog/pt/PTImage.vue similarity index 100% rename from doc/confirmdialog/pt/PTImage.vue rename to apps/showcase/doc/confirmdialog/pt/PTImage.vue diff --git a/doc/confirmdialog/pt/index.vue b/apps/showcase/doc/confirmdialog/pt/index.vue similarity index 100% rename from doc/confirmdialog/pt/index.vue rename to apps/showcase/doc/confirmdialog/pt/index.vue diff --git a/doc/confirmdialog/theming/TailwindDoc.vue b/apps/showcase/doc/confirmdialog/theming/TailwindDoc.vue similarity index 100% rename from doc/confirmdialog/theming/TailwindDoc.vue rename to apps/showcase/doc/confirmdialog/theming/TailwindDoc.vue diff --git a/doc/confirmdialog/theming/index.vue b/apps/showcase/doc/confirmdialog/theming/index.vue similarity index 100% rename from doc/confirmdialog/theming/index.vue rename to apps/showcase/doc/confirmdialog/theming/index.vue diff --git a/doc/confirmpopup/AccessibilityDoc.vue b/apps/showcase/doc/confirmpopup/AccessibilityDoc.vue similarity index 100% rename from doc/confirmpopup/AccessibilityDoc.vue rename to apps/showcase/doc/confirmpopup/AccessibilityDoc.vue diff --git a/doc/confirmpopup/BasicDoc.vue b/apps/showcase/doc/confirmpopup/BasicDoc.vue similarity index 100% rename from doc/confirmpopup/BasicDoc.vue rename to apps/showcase/doc/confirmpopup/BasicDoc.vue diff --git a/doc/confirmpopup/ConfirmationServiceDoc.vue b/apps/showcase/doc/confirmpopup/ConfirmationServiceDoc.vue similarity index 100% rename from doc/confirmpopup/ConfirmationServiceDoc.vue rename to apps/showcase/doc/confirmpopup/ConfirmationServiceDoc.vue diff --git a/doc/confirmpopup/HeadlessDoc.vue b/apps/showcase/doc/confirmpopup/HeadlessDoc.vue similarity index 100% rename from doc/confirmpopup/HeadlessDoc.vue rename to apps/showcase/doc/confirmpopup/HeadlessDoc.vue diff --git a/doc/confirmpopup/ImportDoc.vue b/apps/showcase/doc/confirmpopup/ImportDoc.vue similarity index 100% rename from doc/confirmpopup/ImportDoc.vue rename to apps/showcase/doc/confirmpopup/ImportDoc.vue diff --git a/doc/confirmpopup/TemplateDoc.vue b/apps/showcase/doc/confirmpopup/TemplateDoc.vue similarity index 100% rename from doc/confirmpopup/TemplateDoc.vue rename to apps/showcase/doc/confirmpopup/TemplateDoc.vue diff --git a/doc/confirmpopup/pt/PTImage.vue b/apps/showcase/doc/confirmpopup/pt/PTImage.vue similarity index 100% rename from doc/confirmpopup/pt/PTImage.vue rename to apps/showcase/doc/confirmpopup/pt/PTImage.vue diff --git a/doc/confirmpopup/pt/index.vue b/apps/showcase/doc/confirmpopup/pt/index.vue similarity index 100% rename from doc/confirmpopup/pt/index.vue rename to apps/showcase/doc/confirmpopup/pt/index.vue diff --git a/doc/confirmpopup/theming/TailwindDoc.vue b/apps/showcase/doc/confirmpopup/theming/TailwindDoc.vue similarity index 100% rename from doc/confirmpopup/theming/TailwindDoc.vue rename to apps/showcase/doc/confirmpopup/theming/TailwindDoc.vue diff --git a/doc/confirmpopup/theming/index.vue b/apps/showcase/doc/confirmpopup/theming/index.vue similarity index 100% rename from doc/confirmpopup/theming/index.vue rename to apps/showcase/doc/confirmpopup/theming/index.vue diff --git a/doc/contextmenu/AccessibilityDoc.vue b/apps/showcase/doc/contextmenu/AccessibilityDoc.vue similarity index 100% rename from doc/contextmenu/AccessibilityDoc.vue rename to apps/showcase/doc/contextmenu/AccessibilityDoc.vue diff --git a/doc/contextmenu/BasicDoc.vue b/apps/showcase/doc/contextmenu/BasicDoc.vue similarity index 100% rename from doc/contextmenu/BasicDoc.vue rename to apps/showcase/doc/contextmenu/BasicDoc.vue diff --git a/doc/contextmenu/CommandDoc.vue b/apps/showcase/doc/contextmenu/CommandDoc.vue similarity index 100% rename from doc/contextmenu/CommandDoc.vue rename to apps/showcase/doc/contextmenu/CommandDoc.vue diff --git a/doc/contextmenu/DataTableDoc.vue b/apps/showcase/doc/contextmenu/DataTableDoc.vue similarity index 100% rename from doc/contextmenu/DataTableDoc.vue rename to apps/showcase/doc/contextmenu/DataTableDoc.vue diff --git a/doc/contextmenu/DocumentDoc.vue b/apps/showcase/doc/contextmenu/DocumentDoc.vue similarity index 100% rename from doc/contextmenu/DocumentDoc.vue rename to apps/showcase/doc/contextmenu/DocumentDoc.vue diff --git a/doc/contextmenu/ImportDoc.vue b/apps/showcase/doc/contextmenu/ImportDoc.vue similarity index 100% rename from doc/contextmenu/ImportDoc.vue rename to apps/showcase/doc/contextmenu/ImportDoc.vue diff --git a/doc/contextmenu/RouterDoc.vue b/apps/showcase/doc/contextmenu/RouterDoc.vue similarity index 100% rename from doc/contextmenu/RouterDoc.vue rename to apps/showcase/doc/contextmenu/RouterDoc.vue diff --git a/doc/contextmenu/TemplateDoc.vue b/apps/showcase/doc/contextmenu/TemplateDoc.vue similarity index 100% rename from doc/contextmenu/TemplateDoc.vue rename to apps/showcase/doc/contextmenu/TemplateDoc.vue diff --git a/doc/contextmenu/pt/PTImage.vue b/apps/showcase/doc/contextmenu/pt/PTImage.vue similarity index 100% rename from doc/contextmenu/pt/PTImage.vue rename to apps/showcase/doc/contextmenu/pt/PTImage.vue diff --git a/doc/contextmenu/pt/index.vue b/apps/showcase/doc/contextmenu/pt/index.vue similarity index 100% rename from doc/contextmenu/pt/index.vue rename to apps/showcase/doc/contextmenu/pt/index.vue diff --git a/doc/contextmenu/theming/TailwindDoc.vue b/apps/showcase/doc/contextmenu/theming/TailwindDoc.vue similarity index 100% rename from doc/contextmenu/theming/TailwindDoc.vue rename to apps/showcase/doc/contextmenu/theming/TailwindDoc.vue diff --git a/doc/contextmenu/theming/index.vue b/apps/showcase/doc/contextmenu/theming/index.vue similarity index 100% rename from doc/contextmenu/theming/index.vue rename to apps/showcase/doc/contextmenu/theming/index.vue diff --git a/doc/customicons/FontAwesomeDoc.vue b/apps/showcase/doc/customicons/FontAwesomeDoc.vue similarity index 100% rename from doc/customicons/FontAwesomeDoc.vue rename to apps/showcase/doc/customicons/FontAwesomeDoc.vue diff --git a/doc/customicons/ImageDoc.vue b/apps/showcase/doc/customicons/ImageDoc.vue similarity index 100% rename from doc/customicons/ImageDoc.vue rename to apps/showcase/doc/customicons/ImageDoc.vue diff --git a/doc/customicons/MaterialDoc.vue b/apps/showcase/doc/customicons/MaterialDoc.vue similarity index 100% rename from doc/customicons/MaterialDoc.vue rename to apps/showcase/doc/customicons/MaterialDoc.vue diff --git a/doc/customicons/SVGDoc.vue b/apps/showcase/doc/customicons/SVGDoc.vue similarity index 100% rename from doc/customicons/SVGDoc.vue rename to apps/showcase/doc/customicons/SVGDoc.vue diff --git a/doc/customicons/VideoDoc.vue b/apps/showcase/doc/customicons/VideoDoc.vue similarity index 100% rename from doc/customicons/VideoDoc.vue rename to apps/showcase/doc/customicons/VideoDoc.vue diff --git a/doc/datatable/AccessibilityDoc.vue b/apps/showcase/doc/datatable/AccessibilityDoc.vue similarity index 100% rename from doc/datatable/AccessibilityDoc.vue rename to apps/showcase/doc/datatable/AccessibilityDoc.vue diff --git a/doc/datatable/BasicDoc.vue b/apps/showcase/doc/datatable/BasicDoc.vue similarity index 100% rename from doc/datatable/BasicDoc.vue rename to apps/showcase/doc/datatable/BasicDoc.vue diff --git a/doc/datatable/ColumnGroupDoc.vue b/apps/showcase/doc/datatable/ColumnGroupDoc.vue similarity index 100% rename from doc/datatable/ColumnGroupDoc.vue rename to apps/showcase/doc/datatable/ColumnGroupDoc.vue diff --git a/doc/datatable/ColumnToggleDoc.vue b/apps/showcase/doc/datatable/ColumnToggleDoc.vue similarity index 100% rename from doc/datatable/ColumnToggleDoc.vue rename to apps/showcase/doc/datatable/ColumnToggleDoc.vue diff --git a/doc/datatable/ConditionalStyleDoc.vue b/apps/showcase/doc/datatable/ConditionalStyleDoc.vue similarity index 100% rename from doc/datatable/ConditionalStyleDoc.vue rename to apps/showcase/doc/datatable/ConditionalStyleDoc.vue diff --git a/doc/datatable/ContextMenuDoc.vue b/apps/showcase/doc/datatable/ContextMenuDoc.vue similarity index 100% rename from doc/datatable/ContextMenuDoc.vue rename to apps/showcase/doc/datatable/ContextMenuDoc.vue diff --git a/doc/datatable/DynamicColumnsDoc.vue b/apps/showcase/doc/datatable/DynamicColumnsDoc.vue similarity index 100% rename from doc/datatable/DynamicColumnsDoc.vue rename to apps/showcase/doc/datatable/DynamicColumnsDoc.vue diff --git a/doc/datatable/ExportDoc.vue b/apps/showcase/doc/datatable/ExportDoc.vue similarity index 100% rename from doc/datatable/ExportDoc.vue rename to apps/showcase/doc/datatable/ExportDoc.vue diff --git a/doc/datatable/GridLinesDoc.vue b/apps/showcase/doc/datatable/GridLinesDoc.vue similarity index 100% rename from doc/datatable/GridLinesDoc.vue rename to apps/showcase/doc/datatable/GridLinesDoc.vue diff --git a/doc/datatable/ImportDoc.vue b/apps/showcase/doc/datatable/ImportDoc.vue similarity index 100% rename from doc/datatable/ImportDoc.vue rename to apps/showcase/doc/datatable/ImportDoc.vue diff --git a/doc/datatable/LazyLoadDoc.vue b/apps/showcase/doc/datatable/LazyLoadDoc.vue similarity index 97% rename from doc/datatable/LazyLoadDoc.vue rename to apps/showcase/doc/datatable/LazyLoadDoc.vue index 11e4e61fca..fbc3061ebe 100644 --- a/doc/datatable/LazyLoadDoc.vue +++ b/apps/showcase/doc/datatable/LazyLoadDoc.vue @@ -445,13 +445,16 @@ const onRowUnselect = () => { this.loading = true; this.lazyParams = { ...this.lazyParams, first: event?.first || this.first }; - setTimeout(() => { - CustomerService.getCustomers({ lazyEvent: JSON.stringify(this.lazyParams) }).then((data) => { - this.customers = data.customers; - this.totalRecords = data.totalRecords; - this.loading = false; - }); - }, Math.random() * 1000 + 250); + setTimeout( + () => { + CustomerService.getCustomers({ lazyEvent: JSON.stringify(this.lazyParams) }).then((data) => { + this.customers = data.customers; + this.totalRecords = data.totalRecords; + this.loading = false; + }); + }, + Math.random() * 1000 + 250 + ); }, onPage(event) { this.lazyParams = event; diff --git a/doc/datatable/ReorderDoc.vue b/apps/showcase/doc/datatable/ReorderDoc.vue similarity index 100% rename from doc/datatable/ReorderDoc.vue rename to apps/showcase/doc/datatable/ReorderDoc.vue diff --git a/doc/datatable/RowExpansionDoc.vue b/apps/showcase/doc/datatable/RowExpansionDoc.vue similarity index 100% rename from doc/datatable/RowExpansionDoc.vue rename to apps/showcase/doc/datatable/RowExpansionDoc.vue diff --git a/doc/datatable/SizeDoc.vue b/apps/showcase/doc/datatable/SizeDoc.vue similarity index 100% rename from doc/datatable/SizeDoc.vue rename to apps/showcase/doc/datatable/SizeDoc.vue diff --git a/doc/datatable/StatefulDoc.vue b/apps/showcase/doc/datatable/StatefulDoc.vue similarity index 99% rename from doc/datatable/StatefulDoc.vue rename to apps/showcase/doc/datatable/StatefulDoc.vue index 84f277263a..47a01aa831 100644 --- a/doc/datatable/StatefulDoc.vue +++ b/apps/showcase/doc/datatable/StatefulDoc.vue @@ -85,7 +85,7 @@ diff --git a/doc/datatable/virtualscroll/PreloadVirtualScrollDoc.vue b/apps/showcase/doc/datatable/virtualscroll/PreloadVirtualScrollDoc.vue similarity index 100% rename from doc/datatable/virtualscroll/PreloadVirtualScrollDoc.vue rename to apps/showcase/doc/datatable/virtualscroll/PreloadVirtualScrollDoc.vue diff --git a/doc/dataview/AccessibilityDoc.vue b/apps/showcase/doc/dataview/AccessibilityDoc.vue similarity index 100% rename from doc/dataview/AccessibilityDoc.vue rename to apps/showcase/doc/dataview/AccessibilityDoc.vue diff --git a/doc/dataview/BasicDoc.vue b/apps/showcase/doc/dataview/BasicDoc.vue similarity index 95% rename from doc/dataview/BasicDoc.vue rename to apps/showcase/doc/dataview/BasicDoc.vue index 9a63c558d4..c66dc8d89f 100644 --- a/doc/dataview/BasicDoc.vue +++ b/apps/showcase/doc/dataview/BasicDoc.vue @@ -19,7 +19,15 @@
{{ item.name }}
-
+
{{ item.rating }}
diff --git a/doc/dataview/ImportDoc.vue b/apps/showcase/doc/dataview/ImportDoc.vue similarity index 100% rename from doc/dataview/ImportDoc.vue rename to apps/showcase/doc/dataview/ImportDoc.vue diff --git a/doc/dataview/LayoutDoc.vue b/apps/showcase/doc/dataview/LayoutDoc.vue similarity index 95% rename from doc/dataview/LayoutDoc.vue rename to apps/showcase/doc/dataview/LayoutDoc.vue index 9ee32e4fa8..9739917e16 100644 --- a/doc/dataview/LayoutDoc.vue +++ b/apps/showcase/doc/dataview/LayoutDoc.vue @@ -29,7 +29,15 @@
{{ item.name }}
-
+
{{ item.rating }}
@@ -65,7 +73,15 @@
{{ item.name }}
-
+
{{ item.rating }}
diff --git a/doc/dataview/LoadingDoc.vue b/apps/showcase/doc/dataview/LoadingDoc.vue similarity index 100% rename from doc/dataview/LoadingDoc.vue rename to apps/showcase/doc/dataview/LoadingDoc.vue diff --git a/doc/dataview/PaginationDoc.vue b/apps/showcase/doc/dataview/PaginationDoc.vue similarity index 95% rename from doc/dataview/PaginationDoc.vue rename to apps/showcase/doc/dataview/PaginationDoc.vue index 525255be13..c9a7559a35 100644 --- a/doc/dataview/PaginationDoc.vue +++ b/apps/showcase/doc/dataview/PaginationDoc.vue @@ -19,7 +19,15 @@
{{ item.name }}
-
+
{{ item.rating }}
diff --git a/doc/dataview/SortingDoc.vue b/apps/showcase/doc/dataview/SortingDoc.vue similarity index 96% rename from doc/dataview/SortingDoc.vue rename to apps/showcase/doc/dataview/SortingDoc.vue index e0311b95f1..810301968f 100644 --- a/doc/dataview/SortingDoc.vue +++ b/apps/showcase/doc/dataview/SortingDoc.vue @@ -22,7 +22,15 @@
{{ item.name }}
-
+
{{ item.rating }}
diff --git a/doc/dataview/pt/PTImage.vue b/apps/showcase/doc/dataview/pt/PTImage.vue similarity index 100% rename from doc/dataview/pt/PTImage.vue rename to apps/showcase/doc/dataview/pt/PTImage.vue diff --git a/doc/dataview/pt/index.vue b/apps/showcase/doc/dataview/pt/index.vue similarity index 100% rename from doc/dataview/pt/index.vue rename to apps/showcase/doc/dataview/pt/index.vue diff --git a/doc/dataview/theming/TailwindDoc.vue b/apps/showcase/doc/dataview/theming/TailwindDoc.vue similarity index 100% rename from doc/dataview/theming/TailwindDoc.vue rename to apps/showcase/doc/dataview/theming/TailwindDoc.vue diff --git a/doc/dataview/theming/index.vue b/apps/showcase/doc/dataview/theming/index.vue similarity index 100% rename from doc/dataview/theming/index.vue rename to apps/showcase/doc/dataview/theming/index.vue diff --git a/doc/datepicker/AccessibilityDoc.vue b/apps/showcase/doc/datepicker/AccessibilityDoc.vue similarity index 100% rename from doc/datepicker/AccessibilityDoc.vue rename to apps/showcase/doc/datepicker/AccessibilityDoc.vue diff --git a/doc/datepicker/BasicDoc.vue b/apps/showcase/doc/datepicker/BasicDoc.vue similarity index 100% rename from doc/datepicker/BasicDoc.vue rename to apps/showcase/doc/datepicker/BasicDoc.vue diff --git a/doc/datepicker/ButtonBarDoc.vue b/apps/showcase/doc/datepicker/ButtonBarDoc.vue similarity index 100% rename from doc/datepicker/ButtonBarDoc.vue rename to apps/showcase/doc/datepicker/ButtonBarDoc.vue diff --git a/doc/datepicker/DateTemplateDoc.vue b/apps/showcase/doc/datepicker/DateTemplateDoc.vue similarity index 100% rename from doc/datepicker/DateTemplateDoc.vue rename to apps/showcase/doc/datepicker/DateTemplateDoc.vue diff --git a/doc/datepicker/DisabledDoc.vue b/apps/showcase/doc/datepicker/DisabledDoc.vue similarity index 100% rename from doc/datepicker/DisabledDoc.vue rename to apps/showcase/doc/datepicker/DisabledDoc.vue diff --git a/doc/datepicker/FilledDoc.vue b/apps/showcase/doc/datepicker/FilledDoc.vue similarity index 100% rename from doc/datepicker/FilledDoc.vue rename to apps/showcase/doc/datepicker/FilledDoc.vue diff --git a/doc/datepicker/FloatLabelDoc.vue b/apps/showcase/doc/datepicker/FloatLabelDoc.vue similarity index 100% rename from doc/datepicker/FloatLabelDoc.vue rename to apps/showcase/doc/datepicker/FloatLabelDoc.vue diff --git a/doc/datepicker/FormatDoc.vue b/apps/showcase/doc/datepicker/FormatDoc.vue similarity index 100% rename from doc/datepicker/FormatDoc.vue rename to apps/showcase/doc/datepicker/FormatDoc.vue diff --git a/doc/datepicker/IconDoc.vue b/apps/showcase/doc/datepicker/IconDoc.vue similarity index 100% rename from doc/datepicker/IconDoc.vue rename to apps/showcase/doc/datepicker/IconDoc.vue diff --git a/doc/datepicker/ImportDoc.vue b/apps/showcase/doc/datepicker/ImportDoc.vue similarity index 100% rename from doc/datepicker/ImportDoc.vue rename to apps/showcase/doc/datepicker/ImportDoc.vue diff --git a/doc/datepicker/InlineDoc.vue b/apps/showcase/doc/datepicker/InlineDoc.vue similarity index 100% rename from doc/datepicker/InlineDoc.vue rename to apps/showcase/doc/datepicker/InlineDoc.vue diff --git a/doc/datepicker/InvalidDoc.vue b/apps/showcase/doc/datepicker/InvalidDoc.vue similarity index 100% rename from doc/datepicker/InvalidDoc.vue rename to apps/showcase/doc/datepicker/InvalidDoc.vue diff --git a/doc/datepicker/LocaleDoc.vue b/apps/showcase/doc/datepicker/LocaleDoc.vue similarity index 100% rename from doc/datepicker/LocaleDoc.vue rename to apps/showcase/doc/datepicker/LocaleDoc.vue diff --git a/doc/datepicker/MinMaxDoc.vue b/apps/showcase/doc/datepicker/MinMaxDoc.vue similarity index 100% rename from doc/datepicker/MinMaxDoc.vue rename to apps/showcase/doc/datepicker/MinMaxDoc.vue diff --git a/doc/datepicker/MonthPickerDoc.vue b/apps/showcase/doc/datepicker/MonthPickerDoc.vue similarity index 100% rename from doc/datepicker/MonthPickerDoc.vue rename to apps/showcase/doc/datepicker/MonthPickerDoc.vue diff --git a/doc/datepicker/MultipleDoc.vue b/apps/showcase/doc/datepicker/MultipleDoc.vue similarity index 100% rename from doc/datepicker/MultipleDoc.vue rename to apps/showcase/doc/datepicker/MultipleDoc.vue diff --git a/doc/datepicker/MultipleMonthsDoc.vue b/apps/showcase/doc/datepicker/MultipleMonthsDoc.vue similarity index 100% rename from doc/datepicker/MultipleMonthsDoc.vue rename to apps/showcase/doc/datepicker/MultipleMonthsDoc.vue diff --git a/doc/datepicker/RangeDoc.vue b/apps/showcase/doc/datepicker/RangeDoc.vue similarity index 100% rename from doc/datepicker/RangeDoc.vue rename to apps/showcase/doc/datepicker/RangeDoc.vue diff --git a/doc/datepicker/TimeDoc.vue b/apps/showcase/doc/datepicker/TimeDoc.vue similarity index 100% rename from doc/datepicker/TimeDoc.vue rename to apps/showcase/doc/datepicker/TimeDoc.vue diff --git a/doc/datepicker/YearPickerDoc.vue b/apps/showcase/doc/datepicker/YearPickerDoc.vue similarity index 100% rename from doc/datepicker/YearPickerDoc.vue rename to apps/showcase/doc/datepicker/YearPickerDoc.vue diff --git a/doc/datepicker/pt/PTImage.vue b/apps/showcase/doc/datepicker/pt/PTImage.vue similarity index 100% rename from doc/datepicker/pt/PTImage.vue rename to apps/showcase/doc/datepicker/pt/PTImage.vue diff --git a/doc/datepicker/pt/index.vue b/apps/showcase/doc/datepicker/pt/index.vue similarity index 100% rename from doc/datepicker/pt/index.vue rename to apps/showcase/doc/datepicker/pt/index.vue diff --git a/doc/datepicker/theming/TailwindDoc.vue b/apps/showcase/doc/datepicker/theming/TailwindDoc.vue similarity index 100% rename from doc/datepicker/theming/TailwindDoc.vue rename to apps/showcase/doc/datepicker/theming/TailwindDoc.vue diff --git a/doc/datepicker/theming/index.vue b/apps/showcase/doc/datepicker/theming/index.vue similarity index 100% rename from doc/datepicker/theming/index.vue rename to apps/showcase/doc/datepicker/theming/index.vue diff --git a/doc/deferredcontent/AccessibilityDoc.vue b/apps/showcase/doc/deferredcontent/AccessibilityDoc.vue similarity index 100% rename from doc/deferredcontent/AccessibilityDoc.vue rename to apps/showcase/doc/deferredcontent/AccessibilityDoc.vue diff --git a/doc/deferredcontent/BasicDoc.vue b/apps/showcase/doc/deferredcontent/BasicDoc.vue similarity index 100% rename from doc/deferredcontent/BasicDoc.vue rename to apps/showcase/doc/deferredcontent/BasicDoc.vue diff --git a/doc/deferredcontent/DataTableDoc.vue b/apps/showcase/doc/deferredcontent/DataTableDoc.vue similarity index 100% rename from doc/deferredcontent/DataTableDoc.vue rename to apps/showcase/doc/deferredcontent/DataTableDoc.vue diff --git a/doc/deferredcontent/ImportDoc.vue b/apps/showcase/doc/deferredcontent/ImportDoc.vue similarity index 100% rename from doc/deferredcontent/ImportDoc.vue rename to apps/showcase/doc/deferredcontent/ImportDoc.vue diff --git a/doc/deferredcontent/pt/PTImage.vue b/apps/showcase/doc/deferredcontent/pt/PTImage.vue similarity index 100% rename from doc/deferredcontent/pt/PTImage.vue rename to apps/showcase/doc/deferredcontent/pt/PTImage.vue diff --git a/doc/deferredcontent/pt/index.vue b/apps/showcase/doc/deferredcontent/pt/index.vue similarity index 100% rename from doc/deferredcontent/pt/index.vue rename to apps/showcase/doc/deferredcontent/pt/index.vue diff --git a/doc/deferredcontent/theming/StyledDoc.vue b/apps/showcase/doc/deferredcontent/theming/StyledDoc.vue similarity index 100% rename from doc/deferredcontent/theming/StyledDoc.vue rename to apps/showcase/doc/deferredcontent/theming/StyledDoc.vue diff --git a/doc/deferredcontent/theming/index.vue b/apps/showcase/doc/deferredcontent/theming/index.vue similarity index 100% rename from doc/deferredcontent/theming/index.vue rename to apps/showcase/doc/deferredcontent/theming/index.vue diff --git a/doc/dialog/AccessibilityDoc.vue b/apps/showcase/doc/dialog/AccessibilityDoc.vue similarity index 100% rename from doc/dialog/AccessibilityDoc.vue rename to apps/showcase/doc/dialog/AccessibilityDoc.vue diff --git a/doc/dialog/BasicDoc.vue b/apps/showcase/doc/dialog/BasicDoc.vue similarity index 100% rename from doc/dialog/BasicDoc.vue rename to apps/showcase/doc/dialog/BasicDoc.vue diff --git a/doc/dialog/HeadlessDoc.vue b/apps/showcase/doc/dialog/HeadlessDoc.vue similarity index 100% rename from doc/dialog/HeadlessDoc.vue rename to apps/showcase/doc/dialog/HeadlessDoc.vue diff --git a/doc/dialog/ImportDoc.vue b/apps/showcase/doc/dialog/ImportDoc.vue similarity index 100% rename from doc/dialog/ImportDoc.vue rename to apps/showcase/doc/dialog/ImportDoc.vue diff --git a/doc/dialog/LongContentDoc.vue b/apps/showcase/doc/dialog/LongContentDoc.vue similarity index 100% rename from doc/dialog/LongContentDoc.vue rename to apps/showcase/doc/dialog/LongContentDoc.vue diff --git a/doc/dialog/MaximizableDoc.vue b/apps/showcase/doc/dialog/MaximizableDoc.vue similarity index 100% rename from doc/dialog/MaximizableDoc.vue rename to apps/showcase/doc/dialog/MaximizableDoc.vue diff --git a/doc/dialog/PositionDoc.vue b/apps/showcase/doc/dialog/PositionDoc.vue similarity index 100% rename from doc/dialog/PositionDoc.vue rename to apps/showcase/doc/dialog/PositionDoc.vue diff --git a/doc/dialog/ResponsiveDoc.vue b/apps/showcase/doc/dialog/ResponsiveDoc.vue similarity index 100% rename from doc/dialog/ResponsiveDoc.vue rename to apps/showcase/doc/dialog/ResponsiveDoc.vue diff --git a/doc/dialog/TemplateDoc.vue b/apps/showcase/doc/dialog/TemplateDoc.vue similarity index 100% rename from doc/dialog/TemplateDoc.vue rename to apps/showcase/doc/dialog/TemplateDoc.vue diff --git a/doc/dialog/WithoutModalDoc.vue b/apps/showcase/doc/dialog/WithoutModalDoc.vue similarity index 100% rename from doc/dialog/WithoutModalDoc.vue rename to apps/showcase/doc/dialog/WithoutModalDoc.vue diff --git a/doc/dialog/pt/PTImage.vue b/apps/showcase/doc/dialog/pt/PTImage.vue similarity index 100% rename from doc/dialog/pt/PTImage.vue rename to apps/showcase/doc/dialog/pt/PTImage.vue diff --git a/doc/dialog/pt/index.vue b/apps/showcase/doc/dialog/pt/index.vue similarity index 100% rename from doc/dialog/pt/index.vue rename to apps/showcase/doc/dialog/pt/index.vue diff --git a/doc/dialog/theming/TailwindDoc.vue b/apps/showcase/doc/dialog/theming/TailwindDoc.vue similarity index 100% rename from doc/dialog/theming/TailwindDoc.vue rename to apps/showcase/doc/dialog/theming/TailwindDoc.vue diff --git a/doc/dialog/theming/index.vue b/apps/showcase/doc/dialog/theming/index.vue similarity index 100% rename from doc/dialog/theming/index.vue rename to apps/showcase/doc/dialog/theming/index.vue diff --git a/doc/divider/AccessibilityDoc.vue b/apps/showcase/doc/divider/AccessibilityDoc.vue similarity index 100% rename from doc/divider/AccessibilityDoc.vue rename to apps/showcase/doc/divider/AccessibilityDoc.vue diff --git a/doc/divider/BasicDoc.vue b/apps/showcase/doc/divider/BasicDoc.vue similarity index 100% rename from doc/divider/BasicDoc.vue rename to apps/showcase/doc/divider/BasicDoc.vue diff --git a/doc/divider/ContentDoc.vue b/apps/showcase/doc/divider/ContentDoc.vue similarity index 100% rename from doc/divider/ContentDoc.vue rename to apps/showcase/doc/divider/ContentDoc.vue diff --git a/doc/divider/ImportDoc.vue b/apps/showcase/doc/divider/ImportDoc.vue similarity index 100% rename from doc/divider/ImportDoc.vue rename to apps/showcase/doc/divider/ImportDoc.vue diff --git a/doc/divider/LoginDoc.vue b/apps/showcase/doc/divider/LoginDoc.vue similarity index 100% rename from doc/divider/LoginDoc.vue rename to apps/showcase/doc/divider/LoginDoc.vue diff --git a/doc/divider/TypeDoc.vue b/apps/showcase/doc/divider/TypeDoc.vue similarity index 100% rename from doc/divider/TypeDoc.vue rename to apps/showcase/doc/divider/TypeDoc.vue diff --git a/doc/divider/VerticalDoc.vue b/apps/showcase/doc/divider/VerticalDoc.vue similarity index 100% rename from doc/divider/VerticalDoc.vue rename to apps/showcase/doc/divider/VerticalDoc.vue diff --git a/doc/divider/pt/PTImage.vue b/apps/showcase/doc/divider/pt/PTImage.vue similarity index 100% rename from doc/divider/pt/PTImage.vue rename to apps/showcase/doc/divider/pt/PTImage.vue diff --git a/doc/divider/pt/index.vue b/apps/showcase/doc/divider/pt/index.vue similarity index 100% rename from doc/divider/pt/index.vue rename to apps/showcase/doc/divider/pt/index.vue diff --git a/doc/divider/theming/TailwindDoc.vue b/apps/showcase/doc/divider/theming/TailwindDoc.vue similarity index 100% rename from doc/divider/theming/TailwindDoc.vue rename to apps/showcase/doc/divider/theming/TailwindDoc.vue diff --git a/doc/divider/theming/index.vue b/apps/showcase/doc/divider/theming/index.vue similarity index 100% rename from doc/divider/theming/index.vue rename to apps/showcase/doc/divider/theming/index.vue diff --git a/doc/dock/AccessibilityDoc.vue b/apps/showcase/doc/dock/AccessibilityDoc.vue similarity index 100% rename from doc/dock/AccessibilityDoc.vue rename to apps/showcase/doc/dock/AccessibilityDoc.vue diff --git a/doc/dock/AdvancedDoc.vue b/apps/showcase/doc/dock/AdvancedDoc.vue similarity index 100% rename from doc/dock/AdvancedDoc.vue rename to apps/showcase/doc/dock/AdvancedDoc.vue diff --git a/doc/dock/BasicDoc.vue b/apps/showcase/doc/dock/BasicDoc.vue similarity index 100% rename from doc/dock/BasicDoc.vue rename to apps/showcase/doc/dock/BasicDoc.vue diff --git a/doc/dock/ImportDoc.vue b/apps/showcase/doc/dock/ImportDoc.vue similarity index 100% rename from doc/dock/ImportDoc.vue rename to apps/showcase/doc/dock/ImportDoc.vue diff --git a/doc/dock/pt/PTImage.vue b/apps/showcase/doc/dock/pt/PTImage.vue similarity index 100% rename from doc/dock/pt/PTImage.vue rename to apps/showcase/doc/dock/pt/PTImage.vue diff --git a/doc/dock/pt/index.vue b/apps/showcase/doc/dock/pt/index.vue similarity index 100% rename from doc/dock/pt/index.vue rename to apps/showcase/doc/dock/pt/index.vue diff --git a/doc/dock/theming/TailwindDoc.vue b/apps/showcase/doc/dock/theming/TailwindDoc.vue similarity index 100% rename from doc/dock/theming/TailwindDoc.vue rename to apps/showcase/doc/dock/theming/TailwindDoc.vue diff --git a/doc/dock/theming/index.vue b/apps/showcase/doc/dock/theming/index.vue similarity index 100% rename from doc/dock/theming/index.vue rename to apps/showcase/doc/dock/theming/index.vue diff --git a/doc/drawer/AccessibilityDoc.vue b/apps/showcase/doc/drawer/AccessibilityDoc.vue similarity index 100% rename from doc/drawer/AccessibilityDoc.vue rename to apps/showcase/doc/drawer/AccessibilityDoc.vue diff --git a/doc/drawer/BasicDoc.vue b/apps/showcase/doc/drawer/BasicDoc.vue similarity index 100% rename from doc/drawer/BasicDoc.vue rename to apps/showcase/doc/drawer/BasicDoc.vue diff --git a/doc/drawer/FullScreenDoc.vue b/apps/showcase/doc/drawer/FullScreenDoc.vue similarity index 100% rename from doc/drawer/FullScreenDoc.vue rename to apps/showcase/doc/drawer/FullScreenDoc.vue diff --git a/doc/drawer/HeadlessDoc.vue b/apps/showcase/doc/drawer/HeadlessDoc.vue similarity index 98% rename from doc/drawer/HeadlessDoc.vue rename to apps/showcase/doc/drawer/HeadlessDoc.vue index f911231aea..8ef91ccfd4 100644 --- a/doc/drawer/HeadlessDoc.vue +++ b/apps/showcase/doc/drawer/HeadlessDoc.vue @@ -31,7 +31,7 @@ v-ripple v-styleclass="{ selector: '@next', - enterClass: 'hidden', + enterFromClass: 'hidden', enterActiveClass: 'animate-slidedown', leaveToClass: 'hidden', leaveActiveClass: 'animate-slideup' @@ -59,7 +59,7 @@ v-ripple v-styleclass="{ selector: '@next', - enterClass: 'hidden', + enterFromClass: 'hidden', enterActiveClass: 'animate-slidedown', leaveToClass: 'hidden', leaveActiveClass: 'animate-slideup' @@ -76,7 +76,7 @@ v-ripple v-styleclass="{ selector: '@next', - enterClass: 'hidden', + enterFromClass: 'hidden', enterActiveClass: 'animate-slidedown', leaveToClass: 'hidden', leaveActiveClass: 'animate-slideup' @@ -144,7 +144,7 @@ v-ripple v-styleclass="{ selector: '@next', - enterClass: 'hidden', + enterFromClass: 'hidden', enterActiveClass: 'animate-slidedown', leaveToClass: 'hidden', leaveActiveClass: 'animate-slideup' @@ -221,7 +221,7 @@ export default { v-ripple v-styleclass="{ selector: '@next', - enterClass: 'hidden', + enterFromClass: 'hidden', enterActiveClass: 'animate-slidedown', leaveToClass: 'hidden', leaveActiveClass: 'animate-slideup' @@ -249,7 +249,7 @@ export default { v-ripple v-styleclass="{ selector: '@next', - enterClass: 'hidden', + enterFromClass: 'hidden', enterActiveClass: 'animate-slidedown', leaveToClass: 'hidden', leaveActiveClass: 'animate-slideup' @@ -266,7 +266,7 @@ export default { v-ripple v-styleclass="{ selector: '@next', - enterClass: 'hidden', + enterFromClass: 'hidden', enterActiveClass: 'animate-slidedown', leaveToClass: 'hidden', leaveActiveClass: 'animate-slideup' @@ -334,7 +334,7 @@ export default { v-ripple v-styleclass="{ selector: '@next', - enterClass: 'hidden', + enterFromClass: 'hidden', enterActiveClass: 'animate-slidedown', leaveToClass: 'hidden', leaveActiveClass: 'animate-slideup' @@ -410,7 +410,7 @@ export default { v-ripple v-styleclass="{ selector: '@next', - enterClass: 'hidden', + enterFromClass: 'hidden', enterActiveClass: 'animate-slidedown', leaveToClass: 'hidden', leaveActiveClass: 'animate-slideup' @@ -438,7 +438,7 @@ export default { v-ripple v-styleclass="{ selector: '@next', - enterClass: 'hidden', + enterFromClass: 'hidden', enterActiveClass: 'animate-slidedown', leaveToClass: 'hidden', leaveActiveClass: 'animate-slideup' @@ -455,7 +455,7 @@ export default { v-ripple v-styleclass="{ selector: '@next', - enterClass: 'hidden', + enterFromClass: 'hidden', enterActiveClass: 'animate-slidedown', leaveToClass: 'hidden', leaveActiveClass: 'animate-slideup' @@ -523,7 +523,7 @@ export default { v-ripple v-styleclass="{ selector: '@next', - enterClass: 'hidden', + enterFromClass: 'hidden', enterActiveClass: 'animate-slidedown', leaveToClass: 'hidden', leaveActiveClass: 'animate-slideup' @@ -611,7 +611,7 @@ export default { v-ripple v-styleclass="{ selector: '@next', - enterClass: 'hidden', + enterFromClass: 'hidden', enterActiveClass: 'animate-slidedown', leaveToClass: 'hidden', leaveActiveClass: 'animate-slideup' @@ -639,7 +639,7 @@ export default { v-ripple v-styleclass="{ selector: '@next', - enterClass: 'hidden', + enterFromClass: 'hidden', enterActiveClass: 'animate-slidedown', leaveToClass: 'hidden', leaveActiveClass: 'animate-slideup' @@ -656,7 +656,7 @@ export default { v-ripple v-styleclass="{ selector: '@next', - enterClass: 'hidden', + enterFromClass: 'hidden', enterActiveClass: 'animate-slidedown', leaveToClass: 'hidden', leaveActiveClass: 'animate-slideup' @@ -724,7 +724,7 @@ export default { v-ripple v-styleclass="{ selector: '@next', - enterClass: 'hidden', + enterFromClass: 'hidden', enterActiveClass: 'animate-slidedown', leaveToClass: 'hidden', leaveActiveClass: 'animate-slideup' diff --git a/doc/drawer/ImportDoc.vue b/apps/showcase/doc/drawer/ImportDoc.vue similarity index 100% rename from doc/drawer/ImportDoc.vue rename to apps/showcase/doc/drawer/ImportDoc.vue diff --git a/doc/drawer/PositionDoc.vue b/apps/showcase/doc/drawer/PositionDoc.vue similarity index 100% rename from doc/drawer/PositionDoc.vue rename to apps/showcase/doc/drawer/PositionDoc.vue diff --git a/doc/drawer/SizeDoc.vue b/apps/showcase/doc/drawer/SizeDoc.vue similarity index 100% rename from doc/drawer/SizeDoc.vue rename to apps/showcase/doc/drawer/SizeDoc.vue diff --git a/doc/drawer/TemplateDoc.vue b/apps/showcase/doc/drawer/TemplateDoc.vue similarity index 100% rename from doc/drawer/TemplateDoc.vue rename to apps/showcase/doc/drawer/TemplateDoc.vue diff --git a/doc/drawer/pt/PTImage.vue b/apps/showcase/doc/drawer/pt/PTImage.vue similarity index 100% rename from doc/drawer/pt/PTImage.vue rename to apps/showcase/doc/drawer/pt/PTImage.vue diff --git a/doc/drawer/pt/index.vue b/apps/showcase/doc/drawer/pt/index.vue similarity index 100% rename from doc/drawer/pt/index.vue rename to apps/showcase/doc/drawer/pt/index.vue diff --git a/doc/drawer/theming/TailwindDoc.vue b/apps/showcase/doc/drawer/theming/TailwindDoc.vue similarity index 100% rename from doc/drawer/theming/TailwindDoc.vue rename to apps/showcase/doc/drawer/theming/TailwindDoc.vue diff --git a/doc/drawer/theming/index.vue b/apps/showcase/doc/drawer/theming/index.vue similarity index 100% rename from doc/drawer/theming/index.vue rename to apps/showcase/doc/drawer/theming/index.vue diff --git a/doc/dynamicdialog/AccessibilityDoc.vue b/apps/showcase/doc/dynamicdialog/AccessibilityDoc.vue similarity index 100% rename from doc/dynamicdialog/AccessibilityDoc.vue rename to apps/showcase/doc/dynamicdialog/AccessibilityDoc.vue diff --git a/doc/dynamicdialog/CloseDialogDoc.vue b/apps/showcase/doc/dynamicdialog/CloseDialogDoc.vue similarity index 100% rename from doc/dynamicdialog/CloseDialogDoc.vue rename to apps/showcase/doc/dynamicdialog/CloseDialogDoc.vue diff --git a/doc/dynamicdialog/CustomizationDoc.vue b/apps/showcase/doc/dynamicdialog/CustomizationDoc.vue similarity index 100% rename from doc/dynamicdialog/CustomizationDoc.vue rename to apps/showcase/doc/dynamicdialog/CustomizationDoc.vue diff --git a/doc/dynamicdialog/DialogServiceDoc.vue b/apps/showcase/doc/dynamicdialog/DialogServiceDoc.vue similarity index 100% rename from doc/dynamicdialog/DialogServiceDoc.vue rename to apps/showcase/doc/dynamicdialog/DialogServiceDoc.vue diff --git a/doc/dynamicdialog/EventsDoc.vue b/apps/showcase/doc/dynamicdialog/EventsDoc.vue similarity index 100% rename from doc/dynamicdialog/EventsDoc.vue rename to apps/showcase/doc/dynamicdialog/EventsDoc.vue diff --git a/doc/dynamicdialog/ExampleDoc.vue b/apps/showcase/doc/dynamicdialog/ExampleDoc.vue similarity index 100% rename from doc/dynamicdialog/ExampleDoc.vue rename to apps/showcase/doc/dynamicdialog/ExampleDoc.vue diff --git a/doc/dynamicdialog/ImportDoc.vue b/apps/showcase/doc/dynamicdialog/ImportDoc.vue similarity index 100% rename from doc/dynamicdialog/ImportDoc.vue rename to apps/showcase/doc/dynamicdialog/ImportDoc.vue diff --git a/doc/dynamicdialog/OpenDialogDoc.vue b/apps/showcase/doc/dynamicdialog/OpenDialogDoc.vue similarity index 100% rename from doc/dynamicdialog/OpenDialogDoc.vue rename to apps/showcase/doc/dynamicdialog/OpenDialogDoc.vue diff --git a/doc/dynamicdialog/PassingDataDoc.vue b/apps/showcase/doc/dynamicdialog/PassingDataDoc.vue similarity index 100% rename from doc/dynamicdialog/PassingDataDoc.vue rename to apps/showcase/doc/dynamicdialog/PassingDataDoc.vue diff --git a/doc/dynamicdialog/demo/FooterDemo.vue b/apps/showcase/doc/dynamicdialog/demo/FooterDemo.vue similarity index 100% rename from doc/dynamicdialog/demo/FooterDemo.vue rename to apps/showcase/doc/dynamicdialog/demo/FooterDemo.vue diff --git a/doc/dynamicdialog/demo/InfoDemo.vue b/apps/showcase/doc/dynamicdialog/demo/InfoDemo.vue similarity index 100% rename from doc/dynamicdialog/demo/InfoDemo.vue rename to apps/showcase/doc/dynamicdialog/demo/InfoDemo.vue diff --git a/doc/dynamicdialog/demo/ProductListDemo.vue b/apps/showcase/doc/dynamicdialog/demo/ProductListDemo.vue similarity index 100% rename from doc/dynamicdialog/demo/ProductListDemo.vue rename to apps/showcase/doc/dynamicdialog/demo/ProductListDemo.vue diff --git a/doc/dynamicdialog/pt/PTImage.vue b/apps/showcase/doc/dynamicdialog/pt/PTImage.vue similarity index 100% rename from doc/dynamicdialog/pt/PTImage.vue rename to apps/showcase/doc/dynamicdialog/pt/PTImage.vue diff --git a/doc/dynamicdialog/pt/index.vue b/apps/showcase/doc/dynamicdialog/pt/index.vue similarity index 100% rename from doc/dynamicdialog/pt/index.vue rename to apps/showcase/doc/dynamicdialog/pt/index.vue diff --git a/doc/dynamicdialog/theming/StyledDoc.vue b/apps/showcase/doc/dynamicdialog/theming/StyledDoc.vue similarity index 100% rename from doc/dynamicdialog/theming/StyledDoc.vue rename to apps/showcase/doc/dynamicdialog/theming/StyledDoc.vue diff --git a/doc/dynamicdialog/theming/TailwindDoc.vue b/apps/showcase/doc/dynamicdialog/theming/TailwindDoc.vue similarity index 100% rename from doc/dynamicdialog/theming/TailwindDoc.vue rename to apps/showcase/doc/dynamicdialog/theming/TailwindDoc.vue diff --git a/doc/dynamicdialog/theming/index.vue b/apps/showcase/doc/dynamicdialog/theming/index.vue similarity index 100% rename from doc/dynamicdialog/theming/index.vue rename to apps/showcase/doc/dynamicdialog/theming/index.vue diff --git a/doc/editor/AccessibilityDoc.vue b/apps/showcase/doc/editor/AccessibilityDoc.vue similarity index 100% rename from doc/editor/AccessibilityDoc.vue rename to apps/showcase/doc/editor/AccessibilityDoc.vue diff --git a/doc/editor/BasicDoc.vue b/apps/showcase/doc/editor/BasicDoc.vue similarity index 100% rename from doc/editor/BasicDoc.vue rename to apps/showcase/doc/editor/BasicDoc.vue diff --git a/doc/editor/ImportDoc.vue b/apps/showcase/doc/editor/ImportDoc.vue similarity index 100% rename from doc/editor/ImportDoc.vue rename to apps/showcase/doc/editor/ImportDoc.vue diff --git a/doc/editor/QuillDoc.vue b/apps/showcase/doc/editor/QuillDoc.vue similarity index 100% rename from doc/editor/QuillDoc.vue rename to apps/showcase/doc/editor/QuillDoc.vue diff --git a/doc/editor/ReadOnlyDoc.vue b/apps/showcase/doc/editor/ReadOnlyDoc.vue similarity index 100% rename from doc/editor/ReadOnlyDoc.vue rename to apps/showcase/doc/editor/ReadOnlyDoc.vue diff --git a/doc/editor/TemplateDoc.vue b/apps/showcase/doc/editor/TemplateDoc.vue similarity index 100% rename from doc/editor/TemplateDoc.vue rename to apps/showcase/doc/editor/TemplateDoc.vue diff --git a/doc/editor/pt/PTImage.vue b/apps/showcase/doc/editor/pt/PTImage.vue similarity index 100% rename from doc/editor/pt/PTImage.vue rename to apps/showcase/doc/editor/pt/PTImage.vue diff --git a/doc/editor/pt/index.vue b/apps/showcase/doc/editor/pt/index.vue similarity index 100% rename from doc/editor/pt/index.vue rename to apps/showcase/doc/editor/pt/index.vue diff --git a/doc/editor/theming/TailwindDoc.vue b/apps/showcase/doc/editor/theming/TailwindDoc.vue similarity index 100% rename from doc/editor/theming/TailwindDoc.vue rename to apps/showcase/doc/editor/theming/TailwindDoc.vue diff --git a/doc/editor/theming/index.vue b/apps/showcase/doc/editor/theming/index.vue similarity index 100% rename from doc/editor/theming/index.vue rename to apps/showcase/doc/editor/theming/index.vue diff --git a/doc/fieldset/AccessibilityDoc.vue b/apps/showcase/doc/fieldset/AccessibilityDoc.vue similarity index 100% rename from doc/fieldset/AccessibilityDoc.vue rename to apps/showcase/doc/fieldset/AccessibilityDoc.vue diff --git a/doc/fieldset/BasicDoc.vue b/apps/showcase/doc/fieldset/BasicDoc.vue similarity index 100% rename from doc/fieldset/BasicDoc.vue rename to apps/showcase/doc/fieldset/BasicDoc.vue diff --git a/doc/fieldset/ImportDoc.vue b/apps/showcase/doc/fieldset/ImportDoc.vue similarity index 100% rename from doc/fieldset/ImportDoc.vue rename to apps/showcase/doc/fieldset/ImportDoc.vue diff --git a/doc/fieldset/TemplateDoc.vue b/apps/showcase/doc/fieldset/TemplateDoc.vue similarity index 100% rename from doc/fieldset/TemplateDoc.vue rename to apps/showcase/doc/fieldset/TemplateDoc.vue diff --git a/doc/fieldset/ToggleableDoc.vue b/apps/showcase/doc/fieldset/ToggleableDoc.vue similarity index 100% rename from doc/fieldset/ToggleableDoc.vue rename to apps/showcase/doc/fieldset/ToggleableDoc.vue diff --git a/doc/fieldset/pt/PTImage.vue b/apps/showcase/doc/fieldset/pt/PTImage.vue similarity index 100% rename from doc/fieldset/pt/PTImage.vue rename to apps/showcase/doc/fieldset/pt/PTImage.vue diff --git a/doc/fieldset/pt/index.vue b/apps/showcase/doc/fieldset/pt/index.vue similarity index 100% rename from doc/fieldset/pt/index.vue rename to apps/showcase/doc/fieldset/pt/index.vue diff --git a/doc/fieldset/theming/TailwindDoc.vue b/apps/showcase/doc/fieldset/theming/TailwindDoc.vue similarity index 100% rename from doc/fieldset/theming/TailwindDoc.vue rename to apps/showcase/doc/fieldset/theming/TailwindDoc.vue diff --git a/doc/fieldset/theming/index.vue b/apps/showcase/doc/fieldset/theming/index.vue similarity index 100% rename from doc/fieldset/theming/index.vue rename to apps/showcase/doc/fieldset/theming/index.vue diff --git a/doc/fileupload/AccessibilityDoc.vue b/apps/showcase/doc/fileupload/AccessibilityDoc.vue similarity index 100% rename from doc/fileupload/AccessibilityDoc.vue rename to apps/showcase/doc/fileupload/AccessibilityDoc.vue diff --git a/doc/fileupload/AdvancedDoc.vue b/apps/showcase/doc/fileupload/AdvancedDoc.vue similarity index 100% rename from doc/fileupload/AdvancedDoc.vue rename to apps/showcase/doc/fileupload/AdvancedDoc.vue diff --git a/doc/fileupload/AutoDoc.vue b/apps/showcase/doc/fileupload/AutoDoc.vue similarity index 100% rename from doc/fileupload/AutoDoc.vue rename to apps/showcase/doc/fileupload/AutoDoc.vue diff --git a/doc/fileupload/BasicDoc.vue b/apps/showcase/doc/fileupload/BasicDoc.vue similarity index 100% rename from doc/fileupload/BasicDoc.vue rename to apps/showcase/doc/fileupload/BasicDoc.vue diff --git a/doc/fileupload/CustomUploadDoc.vue b/apps/showcase/doc/fileupload/CustomUploadDoc.vue similarity index 100% rename from doc/fileupload/CustomUploadDoc.vue rename to apps/showcase/doc/fileupload/CustomUploadDoc.vue diff --git a/doc/fileupload/ImportDoc.vue b/apps/showcase/doc/fileupload/ImportDoc.vue similarity index 100% rename from doc/fileupload/ImportDoc.vue rename to apps/showcase/doc/fileupload/ImportDoc.vue diff --git a/doc/fileupload/TemplateDoc.vue b/apps/showcase/doc/fileupload/TemplateDoc.vue similarity index 100% rename from doc/fileupload/TemplateDoc.vue rename to apps/showcase/doc/fileupload/TemplateDoc.vue diff --git a/doc/fileupload/pt/PTImage.vue b/apps/showcase/doc/fileupload/pt/PTImage.vue similarity index 100% rename from doc/fileupload/pt/PTImage.vue rename to apps/showcase/doc/fileupload/pt/PTImage.vue diff --git a/doc/fileupload/pt/index.vue b/apps/showcase/doc/fileupload/pt/index.vue similarity index 100% rename from doc/fileupload/pt/index.vue rename to apps/showcase/doc/fileupload/pt/index.vue diff --git a/doc/fileupload/theming/TailwindDoc.vue b/apps/showcase/doc/fileupload/theming/TailwindDoc.vue similarity index 100% rename from doc/fileupload/theming/TailwindDoc.vue rename to apps/showcase/doc/fileupload/theming/TailwindDoc.vue diff --git a/doc/fileupload/theming/index.vue b/apps/showcase/doc/fileupload/theming/index.vue similarity index 100% rename from doc/fileupload/theming/index.vue rename to apps/showcase/doc/fileupload/theming/index.vue diff --git a/doc/floatlabel/AccessibilityDoc.vue b/apps/showcase/doc/floatlabel/AccessibilityDoc.vue similarity index 100% rename from doc/floatlabel/AccessibilityDoc.vue rename to apps/showcase/doc/floatlabel/AccessibilityDoc.vue diff --git a/doc/floatlabel/BasicDoc.vue b/apps/showcase/doc/floatlabel/BasicDoc.vue similarity index 100% rename from doc/floatlabel/BasicDoc.vue rename to apps/showcase/doc/floatlabel/BasicDoc.vue diff --git a/doc/floatlabel/ImportDoc.vue b/apps/showcase/doc/floatlabel/ImportDoc.vue similarity index 100% rename from doc/floatlabel/ImportDoc.vue rename to apps/showcase/doc/floatlabel/ImportDoc.vue diff --git a/doc/floatlabel/pt/PTImage.vue b/apps/showcase/doc/floatlabel/pt/PTImage.vue similarity index 100% rename from doc/floatlabel/pt/PTImage.vue rename to apps/showcase/doc/floatlabel/pt/PTImage.vue diff --git a/doc/floatlabel/pt/index.vue b/apps/showcase/doc/floatlabel/pt/index.vue similarity index 100% rename from doc/floatlabel/pt/index.vue rename to apps/showcase/doc/floatlabel/pt/index.vue diff --git a/doc/floatlabel/theming/TailwindDoc.vue b/apps/showcase/doc/floatlabel/theming/TailwindDoc.vue similarity index 100% rename from doc/floatlabel/theming/TailwindDoc.vue rename to apps/showcase/doc/floatlabel/theming/TailwindDoc.vue diff --git a/doc/floatlabel/theming/index.vue b/apps/showcase/doc/floatlabel/theming/index.vue similarity index 100% rename from doc/floatlabel/theming/index.vue rename to apps/showcase/doc/floatlabel/theming/index.vue diff --git a/doc/focustrap/BasicDoc.vue b/apps/showcase/doc/focustrap/BasicDoc.vue similarity index 100% rename from doc/focustrap/BasicDoc.vue rename to apps/showcase/doc/focustrap/BasicDoc.vue diff --git a/doc/focustrap/ImportDoc.vue b/apps/showcase/doc/focustrap/ImportDoc.vue similarity index 100% rename from doc/focustrap/ImportDoc.vue rename to apps/showcase/doc/focustrap/ImportDoc.vue diff --git a/doc/galleria/AccessibilityDoc.vue b/apps/showcase/doc/galleria/AccessibilityDoc.vue similarity index 100% rename from doc/galleria/AccessibilityDoc.vue rename to apps/showcase/doc/galleria/AccessibilityDoc.vue diff --git a/doc/galleria/AdvancedDoc.vue b/apps/showcase/doc/galleria/AdvancedDoc.vue similarity index 100% rename from doc/galleria/AdvancedDoc.vue rename to apps/showcase/doc/galleria/AdvancedDoc.vue diff --git a/doc/galleria/AutoPlayDoc.vue b/apps/showcase/doc/galleria/AutoPlayDoc.vue similarity index 100% rename from doc/galleria/AutoPlayDoc.vue rename to apps/showcase/doc/galleria/AutoPlayDoc.vue diff --git a/doc/galleria/BasicDoc.vue b/apps/showcase/doc/galleria/BasicDoc.vue similarity index 100% rename from doc/galleria/BasicDoc.vue rename to apps/showcase/doc/galleria/BasicDoc.vue diff --git a/doc/galleria/CaptionDoc.vue b/apps/showcase/doc/galleria/CaptionDoc.vue similarity index 100% rename from doc/galleria/CaptionDoc.vue rename to apps/showcase/doc/galleria/CaptionDoc.vue diff --git a/doc/galleria/ControlledDoc.vue b/apps/showcase/doc/galleria/ControlledDoc.vue similarity index 100% rename from doc/galleria/ControlledDoc.vue rename to apps/showcase/doc/galleria/ControlledDoc.vue diff --git a/doc/galleria/ImportDoc.vue b/apps/showcase/doc/galleria/ImportDoc.vue similarity index 100% rename from doc/galleria/ImportDoc.vue rename to apps/showcase/doc/galleria/ImportDoc.vue diff --git a/doc/galleria/ResponsiveDoc.vue b/apps/showcase/doc/galleria/ResponsiveDoc.vue similarity index 100% rename from doc/galleria/ResponsiveDoc.vue rename to apps/showcase/doc/galleria/ResponsiveDoc.vue diff --git a/doc/galleria/ThumbnailDoc.vue b/apps/showcase/doc/galleria/ThumbnailDoc.vue similarity index 100% rename from doc/galleria/ThumbnailDoc.vue rename to apps/showcase/doc/galleria/ThumbnailDoc.vue diff --git a/doc/galleria/fullscreen/CustomContentDoc.vue b/apps/showcase/doc/galleria/fullscreen/CustomContentDoc.vue similarity index 100% rename from doc/galleria/fullscreen/CustomContentDoc.vue rename to apps/showcase/doc/galleria/fullscreen/CustomContentDoc.vue diff --git a/doc/galleria/fullscreen/WithThumbnailsDoc.vue b/apps/showcase/doc/galleria/fullscreen/WithThumbnailsDoc.vue similarity index 100% rename from doc/galleria/fullscreen/WithThumbnailsDoc.vue rename to apps/showcase/doc/galleria/fullscreen/WithThumbnailsDoc.vue diff --git a/doc/galleria/fullscreen/WithoutThumbnailsDoc.vue b/apps/showcase/doc/galleria/fullscreen/WithoutThumbnailsDoc.vue similarity index 100% rename from doc/galleria/fullscreen/WithoutThumbnailsDoc.vue rename to apps/showcase/doc/galleria/fullscreen/WithoutThumbnailsDoc.vue diff --git a/doc/galleria/indicator/ClickEventDoc.vue b/apps/showcase/doc/galleria/indicator/ClickEventDoc.vue similarity index 100% rename from doc/galleria/indicator/ClickEventDoc.vue rename to apps/showcase/doc/galleria/indicator/ClickEventDoc.vue diff --git a/doc/galleria/indicator/HoverEventDoc.vue b/apps/showcase/doc/galleria/indicator/HoverEventDoc.vue similarity index 100% rename from doc/galleria/indicator/HoverEventDoc.vue rename to apps/showcase/doc/galleria/indicator/HoverEventDoc.vue diff --git a/doc/galleria/indicator/PositionDoc.vue b/apps/showcase/doc/galleria/indicator/PositionDoc.vue similarity index 100% rename from doc/galleria/indicator/PositionDoc.vue rename to apps/showcase/doc/galleria/indicator/PositionDoc.vue diff --git a/doc/galleria/indicator/TemplateDoc.vue b/apps/showcase/doc/galleria/indicator/TemplateDoc.vue similarity index 100% rename from doc/galleria/indicator/TemplateDoc.vue rename to apps/showcase/doc/galleria/indicator/TemplateDoc.vue diff --git a/doc/galleria/navigator/HoverDoc.vue b/apps/showcase/doc/galleria/navigator/HoverDoc.vue similarity index 100% rename from doc/galleria/navigator/HoverDoc.vue rename to apps/showcase/doc/galleria/navigator/HoverDoc.vue diff --git a/doc/galleria/navigator/IndicatorsDoc.vue b/apps/showcase/doc/galleria/navigator/IndicatorsDoc.vue similarity index 100% rename from doc/galleria/navigator/IndicatorsDoc.vue rename to apps/showcase/doc/galleria/navigator/IndicatorsDoc.vue diff --git a/doc/galleria/navigator/ItemThumbnailsDoc.vue b/apps/showcase/doc/galleria/navigator/ItemThumbnailsDoc.vue similarity index 100% rename from doc/galleria/navigator/ItemThumbnailsDoc.vue rename to apps/showcase/doc/galleria/navigator/ItemThumbnailsDoc.vue diff --git a/doc/galleria/navigator/ItemWithoutThumbnailsDoc.vue b/apps/showcase/doc/galleria/navigator/ItemWithoutThumbnailsDoc.vue similarity index 100% rename from doc/galleria/navigator/ItemWithoutThumbnailsDoc.vue rename to apps/showcase/doc/galleria/navigator/ItemWithoutThumbnailsDoc.vue diff --git a/doc/galleria/pt/PTImage.vue b/apps/showcase/doc/galleria/pt/PTImage.vue similarity index 100% rename from doc/galleria/pt/PTImage.vue rename to apps/showcase/doc/galleria/pt/PTImage.vue diff --git a/doc/galleria/pt/index.vue b/apps/showcase/doc/galleria/pt/index.vue similarity index 100% rename from doc/galleria/pt/index.vue rename to apps/showcase/doc/galleria/pt/index.vue diff --git a/doc/galleria/theming/TailwindDoc.vue b/apps/showcase/doc/galleria/theming/TailwindDoc.vue similarity index 100% rename from doc/galleria/theming/TailwindDoc.vue rename to apps/showcase/doc/galleria/theming/TailwindDoc.vue diff --git a/doc/galleria/theming/index.vue b/apps/showcase/doc/galleria/theming/index.vue similarity index 100% rename from doc/galleria/theming/index.vue rename to apps/showcase/doc/galleria/theming/index.vue diff --git a/doc/guides/accessibility/ColorsDoc.vue b/apps/showcase/doc/guides/accessibility/ColorsDoc.vue similarity index 100% rename from doc/guides/accessibility/ColorsDoc.vue rename to apps/showcase/doc/guides/accessibility/ColorsDoc.vue diff --git a/doc/guides/accessibility/FormControlsDoc.vue b/apps/showcase/doc/guides/accessibility/FormControlsDoc.vue similarity index 100% rename from doc/guides/accessibility/FormControlsDoc.vue rename to apps/showcase/doc/guides/accessibility/FormControlsDoc.vue diff --git a/doc/guides/accessibility/IntroductionDoc.vue b/apps/showcase/doc/guides/accessibility/IntroductionDoc.vue similarity index 100% rename from doc/guides/accessibility/IntroductionDoc.vue rename to apps/showcase/doc/guides/accessibility/IntroductionDoc.vue diff --git a/doc/guides/accessibility/SemanticHTMLDoc.vue b/apps/showcase/doc/guides/accessibility/SemanticHTMLDoc.vue similarity index 100% rename from doc/guides/accessibility/SemanticHTMLDoc.vue rename to apps/showcase/doc/guides/accessibility/SemanticHTMLDoc.vue diff --git a/doc/guides/accessibility/WAIAriaDoc.vue b/apps/showcase/doc/guides/accessibility/WAIAriaDoc.vue similarity index 100% rename from doc/guides/accessibility/WAIAriaDoc.vue rename to apps/showcase/doc/guides/accessibility/WAIAriaDoc.vue diff --git a/doc/guides/accessibility/WCAGDoc.vue b/apps/showcase/doc/guides/accessibility/WCAGDoc.vue similarity index 100% rename from doc/guides/accessibility/WCAGDoc.vue rename to apps/showcase/doc/guides/accessibility/WCAGDoc.vue diff --git a/doc/guides/migration/v4/OverviewDoc.vue b/apps/showcase/doc/guides/migration/v4/OverviewDoc.vue similarity index 100% rename from doc/guides/migration/v4/OverviewDoc.vue rename to apps/showcase/doc/guides/migration/v4/OverviewDoc.vue diff --git a/doc/guides/migration/v4/changes/BreakingDoc.vue b/apps/showcase/doc/guides/migration/v4/changes/BreakingDoc.vue similarity index 100% rename from doc/guides/migration/v4/changes/BreakingDoc.vue rename to apps/showcase/doc/guides/migration/v4/changes/BreakingDoc.vue diff --git a/doc/guides/migration/v4/changes/CompatibleDoc.vue b/apps/showcase/doc/guides/migration/v4/changes/CompatibleDoc.vue similarity index 100% rename from doc/guides/migration/v4/changes/CompatibleDoc.vue rename to apps/showcase/doc/guides/migration/v4/changes/CompatibleDoc.vue diff --git a/doc/guides/primeflex/MigrationDoc.vue b/apps/showcase/doc/guides/primeflex/MigrationDoc.vue similarity index 100% rename from doc/guides/primeflex/MigrationDoc.vue rename to apps/showcase/doc/guides/primeflex/MigrationDoc.vue diff --git a/doc/guides/primeflex/OverviewDoc.vue b/apps/showcase/doc/guides/primeflex/OverviewDoc.vue similarity index 100% rename from doc/guides/primeflex/OverviewDoc.vue rename to apps/showcase/doc/guides/primeflex/OverviewDoc.vue diff --git a/doc/guides/primeflex/PluginDoc.vue b/apps/showcase/doc/guides/primeflex/PluginDoc.vue similarity index 100% rename from doc/guides/primeflex/PluginDoc.vue rename to apps/showcase/doc/guides/primeflex/PluginDoc.vue diff --git a/doc/guides/primeflex/TailwindCSSDoc.vue b/apps/showcase/doc/guides/primeflex/TailwindCSSDoc.vue similarity index 100% rename from doc/guides/primeflex/TailwindCSSDoc.vue rename to apps/showcase/doc/guides/primeflex/TailwindCSSDoc.vue diff --git a/doc/iconfield/AccessibilityDoc.vue b/apps/showcase/doc/iconfield/AccessibilityDoc.vue similarity index 100% rename from doc/iconfield/AccessibilityDoc.vue rename to apps/showcase/doc/iconfield/AccessibilityDoc.vue diff --git a/doc/iconfield/BasicDoc.vue b/apps/showcase/doc/iconfield/BasicDoc.vue similarity index 100% rename from doc/iconfield/BasicDoc.vue rename to apps/showcase/doc/iconfield/BasicDoc.vue diff --git a/doc/iconfield/ImportDoc.vue b/apps/showcase/doc/iconfield/ImportDoc.vue similarity index 100% rename from doc/iconfield/ImportDoc.vue rename to apps/showcase/doc/iconfield/ImportDoc.vue diff --git a/doc/iconfield/TemplateDoc.vue b/apps/showcase/doc/iconfield/TemplateDoc.vue similarity index 100% rename from doc/iconfield/TemplateDoc.vue rename to apps/showcase/doc/iconfield/TemplateDoc.vue diff --git a/doc/iconfield/pt/PTImage.vue b/apps/showcase/doc/iconfield/pt/PTImage.vue similarity index 100% rename from doc/iconfield/pt/PTImage.vue rename to apps/showcase/doc/iconfield/pt/PTImage.vue diff --git a/doc/iconfield/pt/index.vue b/apps/showcase/doc/iconfield/pt/index.vue similarity index 100% rename from doc/iconfield/pt/index.vue rename to apps/showcase/doc/iconfield/pt/index.vue diff --git a/doc/iconfield/theming/TailwindDoc.vue b/apps/showcase/doc/iconfield/theming/TailwindDoc.vue similarity index 100% rename from doc/iconfield/theming/TailwindDoc.vue rename to apps/showcase/doc/iconfield/theming/TailwindDoc.vue diff --git a/doc/iconfield/theming/index.vue b/apps/showcase/doc/iconfield/theming/index.vue similarity index 100% rename from doc/iconfield/theming/index.vue rename to apps/showcase/doc/iconfield/theming/index.vue diff --git a/doc/iconfield/theming/pt/PTImage.vue b/apps/showcase/doc/iconfield/theming/pt/PTImage.vue similarity index 100% rename from doc/iconfield/theming/pt/PTImage.vue rename to apps/showcase/doc/iconfield/theming/pt/PTImage.vue diff --git a/doc/iconfield/theming/pt/index.vue b/apps/showcase/doc/iconfield/theming/pt/index.vue similarity index 100% rename from doc/iconfield/theming/pt/index.vue rename to apps/showcase/doc/iconfield/theming/pt/index.vue diff --git a/doc/icons/BasicDoc.vue b/apps/showcase/doc/icons/BasicDoc.vue similarity index 100% rename from doc/icons/BasicDoc.vue rename to apps/showcase/doc/icons/BasicDoc.vue diff --git a/doc/icons/ColorDoc.vue b/apps/showcase/doc/icons/ColorDoc.vue similarity index 100% rename from doc/icons/ColorDoc.vue rename to apps/showcase/doc/icons/ColorDoc.vue diff --git a/doc/icons/ConstantsDoc.vue b/apps/showcase/doc/icons/ConstantsDoc.vue similarity index 92% rename from doc/icons/ConstantsDoc.vue rename to apps/showcase/doc/icons/ConstantsDoc.vue index 08f15a236d..6c7315dafd 100644 --- a/doc/icons/ConstantsDoc.vue +++ b/apps/showcase/doc/icons/ConstantsDoc.vue @@ -9,7 +9,7 @@ diff --git a/doc/select/LoadingStateDoc.vue b/apps/showcase/doc/select/LoadingStateDoc.vue similarity index 100% rename from doc/select/LoadingStateDoc.vue rename to apps/showcase/doc/select/LoadingStateDoc.vue diff --git a/doc/select/TemplateDoc.vue b/apps/showcase/doc/select/TemplateDoc.vue similarity index 100% rename from doc/select/TemplateDoc.vue rename to apps/showcase/doc/select/TemplateDoc.vue diff --git a/doc/select/VirtualScrollDoc.vue b/apps/showcase/doc/select/VirtualScrollDoc.vue similarity index 100% rename from doc/select/VirtualScrollDoc.vue rename to apps/showcase/doc/select/VirtualScrollDoc.vue diff --git a/doc/select/pt/PTImage.vue b/apps/showcase/doc/select/pt/PTImage.vue similarity index 100% rename from doc/select/pt/PTImage.vue rename to apps/showcase/doc/select/pt/PTImage.vue diff --git a/doc/select/pt/index.vue b/apps/showcase/doc/select/pt/index.vue similarity index 100% rename from doc/select/pt/index.vue rename to apps/showcase/doc/select/pt/index.vue diff --git a/doc/select/theming/TailwindDoc.vue b/apps/showcase/doc/select/theming/TailwindDoc.vue similarity index 100% rename from doc/select/theming/TailwindDoc.vue rename to apps/showcase/doc/select/theming/TailwindDoc.vue diff --git a/doc/select/theming/index.vue b/apps/showcase/doc/select/theming/index.vue similarity index 100% rename from doc/select/theming/index.vue rename to apps/showcase/doc/select/theming/index.vue diff --git a/doc/selectbutton/AccessibilityDoc.vue b/apps/showcase/doc/selectbutton/AccessibilityDoc.vue similarity index 100% rename from doc/selectbutton/AccessibilityDoc.vue rename to apps/showcase/doc/selectbutton/AccessibilityDoc.vue diff --git a/doc/selectbutton/BasicDoc.vue b/apps/showcase/doc/selectbutton/BasicDoc.vue similarity index 100% rename from doc/selectbutton/BasicDoc.vue rename to apps/showcase/doc/selectbutton/BasicDoc.vue diff --git a/doc/selectbutton/DisabledDoc.vue b/apps/showcase/doc/selectbutton/DisabledDoc.vue similarity index 100% rename from doc/selectbutton/DisabledDoc.vue rename to apps/showcase/doc/selectbutton/DisabledDoc.vue diff --git a/doc/selectbutton/ImportDoc.vue b/apps/showcase/doc/selectbutton/ImportDoc.vue similarity index 100% rename from doc/selectbutton/ImportDoc.vue rename to apps/showcase/doc/selectbutton/ImportDoc.vue diff --git a/doc/selectbutton/InvalidDoc.vue b/apps/showcase/doc/selectbutton/InvalidDoc.vue similarity index 100% rename from doc/selectbutton/InvalidDoc.vue rename to apps/showcase/doc/selectbutton/InvalidDoc.vue diff --git a/doc/selectbutton/MultipleDoc.vue b/apps/showcase/doc/selectbutton/MultipleDoc.vue similarity index 100% rename from doc/selectbutton/MultipleDoc.vue rename to apps/showcase/doc/selectbutton/MultipleDoc.vue diff --git a/doc/selectbutton/TemplateDoc.vue b/apps/showcase/doc/selectbutton/TemplateDoc.vue similarity index 100% rename from doc/selectbutton/TemplateDoc.vue rename to apps/showcase/doc/selectbutton/TemplateDoc.vue diff --git a/doc/selectbutton/pt/PTImage.vue b/apps/showcase/doc/selectbutton/pt/PTImage.vue similarity index 100% rename from doc/selectbutton/pt/PTImage.vue rename to apps/showcase/doc/selectbutton/pt/PTImage.vue diff --git a/doc/selectbutton/pt/index.vue b/apps/showcase/doc/selectbutton/pt/index.vue similarity index 100% rename from doc/selectbutton/pt/index.vue rename to apps/showcase/doc/selectbutton/pt/index.vue diff --git a/doc/selectbutton/theming/TailwindDoc.vue b/apps/showcase/doc/selectbutton/theming/TailwindDoc.vue similarity index 100% rename from doc/selectbutton/theming/TailwindDoc.vue rename to apps/showcase/doc/selectbutton/theming/TailwindDoc.vue diff --git a/doc/selectbutton/theming/index.vue b/apps/showcase/doc/selectbutton/theming/index.vue similarity index 100% rename from doc/selectbutton/theming/index.vue rename to apps/showcase/doc/selectbutton/theming/index.vue diff --git a/doc/setup/GuidesDoc.vue b/apps/showcase/doc/setup/GuidesDoc.vue similarity index 100% rename from doc/setup/GuidesDoc.vue rename to apps/showcase/doc/setup/GuidesDoc.vue diff --git a/doc/skeleton/AccessibilityDoc.vue b/apps/showcase/doc/skeleton/AccessibilityDoc.vue similarity index 100% rename from doc/skeleton/AccessibilityDoc.vue rename to apps/showcase/doc/skeleton/AccessibilityDoc.vue diff --git a/doc/skeleton/CardDoc.vue b/apps/showcase/doc/skeleton/CardDoc.vue similarity index 100% rename from doc/skeleton/CardDoc.vue rename to apps/showcase/doc/skeleton/CardDoc.vue diff --git a/doc/skeleton/DataTableDoc.vue b/apps/showcase/doc/skeleton/DataTableDoc.vue similarity index 100% rename from doc/skeleton/DataTableDoc.vue rename to apps/showcase/doc/skeleton/DataTableDoc.vue diff --git a/doc/skeleton/ImportDoc.vue b/apps/showcase/doc/skeleton/ImportDoc.vue similarity index 100% rename from doc/skeleton/ImportDoc.vue rename to apps/showcase/doc/skeleton/ImportDoc.vue diff --git a/doc/skeleton/ListDoc.vue b/apps/showcase/doc/skeleton/ListDoc.vue similarity index 100% rename from doc/skeleton/ListDoc.vue rename to apps/showcase/doc/skeleton/ListDoc.vue diff --git a/doc/skeleton/ShapesDoc.vue b/apps/showcase/doc/skeleton/ShapesDoc.vue similarity index 100% rename from doc/skeleton/ShapesDoc.vue rename to apps/showcase/doc/skeleton/ShapesDoc.vue diff --git a/doc/skeleton/pt/PTImage.vue b/apps/showcase/doc/skeleton/pt/PTImage.vue similarity index 100% rename from doc/skeleton/pt/PTImage.vue rename to apps/showcase/doc/skeleton/pt/PTImage.vue diff --git a/doc/skeleton/pt/index.vue b/apps/showcase/doc/skeleton/pt/index.vue similarity index 100% rename from doc/skeleton/pt/index.vue rename to apps/showcase/doc/skeleton/pt/index.vue diff --git a/doc/skeleton/theming/TailwindDoc.vue b/apps/showcase/doc/skeleton/theming/TailwindDoc.vue similarity index 100% rename from doc/skeleton/theming/TailwindDoc.vue rename to apps/showcase/doc/skeleton/theming/TailwindDoc.vue diff --git a/doc/skeleton/theming/index.vue b/apps/showcase/doc/skeleton/theming/index.vue similarity index 100% rename from doc/skeleton/theming/index.vue rename to apps/showcase/doc/skeleton/theming/index.vue diff --git a/doc/slider/AccessibilityDoc.vue b/apps/showcase/doc/slider/AccessibilityDoc.vue similarity index 100% rename from doc/slider/AccessibilityDoc.vue rename to apps/showcase/doc/slider/AccessibilityDoc.vue diff --git a/doc/slider/BasicDoc.vue b/apps/showcase/doc/slider/BasicDoc.vue similarity index 100% rename from doc/slider/BasicDoc.vue rename to apps/showcase/doc/slider/BasicDoc.vue diff --git a/doc/slider/FilterDoc.vue b/apps/showcase/doc/slider/FilterDoc.vue similarity index 100% rename from doc/slider/FilterDoc.vue rename to apps/showcase/doc/slider/FilterDoc.vue diff --git a/doc/slider/ImportDoc.vue b/apps/showcase/doc/slider/ImportDoc.vue similarity index 100% rename from doc/slider/ImportDoc.vue rename to apps/showcase/doc/slider/ImportDoc.vue diff --git a/doc/slider/InputDoc.vue b/apps/showcase/doc/slider/InputDoc.vue similarity index 100% rename from doc/slider/InputDoc.vue rename to apps/showcase/doc/slider/InputDoc.vue diff --git a/doc/slider/RangeDoc.vue b/apps/showcase/doc/slider/RangeDoc.vue similarity index 100% rename from doc/slider/RangeDoc.vue rename to apps/showcase/doc/slider/RangeDoc.vue diff --git a/doc/slider/StepDoc.vue b/apps/showcase/doc/slider/StepDoc.vue similarity index 100% rename from doc/slider/StepDoc.vue rename to apps/showcase/doc/slider/StepDoc.vue diff --git a/doc/slider/VerticalDoc.vue b/apps/showcase/doc/slider/VerticalDoc.vue similarity index 100% rename from doc/slider/VerticalDoc.vue rename to apps/showcase/doc/slider/VerticalDoc.vue diff --git a/doc/slider/pt/PTImage.vue b/apps/showcase/doc/slider/pt/PTImage.vue similarity index 100% rename from doc/slider/pt/PTImage.vue rename to apps/showcase/doc/slider/pt/PTImage.vue diff --git a/doc/slider/pt/index.vue b/apps/showcase/doc/slider/pt/index.vue similarity index 100% rename from doc/slider/pt/index.vue rename to apps/showcase/doc/slider/pt/index.vue diff --git a/doc/slider/theming/TailwindDoc.vue b/apps/showcase/doc/slider/theming/TailwindDoc.vue similarity index 100% rename from doc/slider/theming/TailwindDoc.vue rename to apps/showcase/doc/slider/theming/TailwindDoc.vue diff --git a/doc/slider/theming/index.vue b/apps/showcase/doc/slider/theming/index.vue similarity index 100% rename from doc/slider/theming/index.vue rename to apps/showcase/doc/slider/theming/index.vue diff --git a/doc/speeddial/AccessibilityDoc.vue b/apps/showcase/doc/speeddial/AccessibilityDoc.vue similarity index 100% rename from doc/speeddial/AccessibilityDoc.vue rename to apps/showcase/doc/speeddial/AccessibilityDoc.vue diff --git a/doc/speeddial/CircleDoc.vue b/apps/showcase/doc/speeddial/CircleDoc.vue similarity index 100% rename from doc/speeddial/CircleDoc.vue rename to apps/showcase/doc/speeddial/CircleDoc.vue diff --git a/doc/speeddial/ImportDoc.vue b/apps/showcase/doc/speeddial/ImportDoc.vue similarity index 100% rename from doc/speeddial/ImportDoc.vue rename to apps/showcase/doc/speeddial/ImportDoc.vue diff --git a/doc/speeddial/LinearDoc.vue b/apps/showcase/doc/speeddial/LinearDoc.vue similarity index 100% rename from doc/speeddial/LinearDoc.vue rename to apps/showcase/doc/speeddial/LinearDoc.vue diff --git a/doc/speeddial/MaskDoc.vue b/apps/showcase/doc/speeddial/MaskDoc.vue similarity index 100% rename from doc/speeddial/MaskDoc.vue rename to apps/showcase/doc/speeddial/MaskDoc.vue diff --git a/doc/speeddial/QuarterCircleDoc.vue b/apps/showcase/doc/speeddial/QuarterCircleDoc.vue similarity index 100% rename from doc/speeddial/QuarterCircleDoc.vue rename to apps/showcase/doc/speeddial/QuarterCircleDoc.vue diff --git a/doc/speeddial/SemiCircleDoc.vue b/apps/showcase/doc/speeddial/SemiCircleDoc.vue similarity index 100% rename from doc/speeddial/SemiCircleDoc.vue rename to apps/showcase/doc/speeddial/SemiCircleDoc.vue diff --git a/doc/speeddial/TemplateDoc.vue b/apps/showcase/doc/speeddial/TemplateDoc.vue similarity index 100% rename from doc/speeddial/TemplateDoc.vue rename to apps/showcase/doc/speeddial/TemplateDoc.vue diff --git a/doc/speeddial/TooltipDoc.vue b/apps/showcase/doc/speeddial/TooltipDoc.vue similarity index 100% rename from doc/speeddial/TooltipDoc.vue rename to apps/showcase/doc/speeddial/TooltipDoc.vue diff --git a/doc/speeddial/pt/PTImage.vue b/apps/showcase/doc/speeddial/pt/PTImage.vue similarity index 100% rename from doc/speeddial/pt/PTImage.vue rename to apps/showcase/doc/speeddial/pt/PTImage.vue diff --git a/doc/speeddial/pt/index.vue b/apps/showcase/doc/speeddial/pt/index.vue similarity index 100% rename from doc/speeddial/pt/index.vue rename to apps/showcase/doc/speeddial/pt/index.vue diff --git a/doc/speeddial/theming/TailwindDoc.vue b/apps/showcase/doc/speeddial/theming/TailwindDoc.vue similarity index 100% rename from doc/speeddial/theming/TailwindDoc.vue rename to apps/showcase/doc/speeddial/theming/TailwindDoc.vue diff --git a/doc/speeddial/theming/index.vue b/apps/showcase/doc/speeddial/theming/index.vue similarity index 100% rename from doc/speeddial/theming/index.vue rename to apps/showcase/doc/speeddial/theming/index.vue diff --git a/doc/splitbutton/AccessibilityDoc.vue b/apps/showcase/doc/splitbutton/AccessibilityDoc.vue similarity index 100% rename from doc/splitbutton/AccessibilityDoc.vue rename to apps/showcase/doc/splitbutton/AccessibilityDoc.vue diff --git a/doc/splitbutton/BasicDoc.vue b/apps/showcase/doc/splitbutton/BasicDoc.vue similarity index 100% rename from doc/splitbutton/BasicDoc.vue rename to apps/showcase/doc/splitbutton/BasicDoc.vue diff --git a/doc/splitbutton/DisabledDoc.vue b/apps/showcase/doc/splitbutton/DisabledDoc.vue similarity index 100% rename from doc/splitbutton/DisabledDoc.vue rename to apps/showcase/doc/splitbutton/DisabledDoc.vue diff --git a/doc/splitbutton/IconsDoc.vue b/apps/showcase/doc/splitbutton/IconsDoc.vue similarity index 100% rename from doc/splitbutton/IconsDoc.vue rename to apps/showcase/doc/splitbutton/IconsDoc.vue diff --git a/doc/splitbutton/ImportDoc.vue b/apps/showcase/doc/splitbutton/ImportDoc.vue similarity index 100% rename from doc/splitbutton/ImportDoc.vue rename to apps/showcase/doc/splitbutton/ImportDoc.vue diff --git a/doc/splitbutton/OutlinedDoc.vue b/apps/showcase/doc/splitbutton/OutlinedDoc.vue similarity index 100% rename from doc/splitbutton/OutlinedDoc.vue rename to apps/showcase/doc/splitbutton/OutlinedDoc.vue diff --git a/doc/splitbutton/RaisedDoc.vue b/apps/showcase/doc/splitbutton/RaisedDoc.vue similarity index 100% rename from doc/splitbutton/RaisedDoc.vue rename to apps/showcase/doc/splitbutton/RaisedDoc.vue diff --git a/doc/splitbutton/RaisedTextDoc.vue b/apps/showcase/doc/splitbutton/RaisedTextDoc.vue similarity index 100% rename from doc/splitbutton/RaisedTextDoc.vue rename to apps/showcase/doc/splitbutton/RaisedTextDoc.vue diff --git a/doc/splitbutton/RoundedDoc.vue b/apps/showcase/doc/splitbutton/RoundedDoc.vue similarity index 100% rename from doc/splitbutton/RoundedDoc.vue rename to apps/showcase/doc/splitbutton/RoundedDoc.vue diff --git a/doc/splitbutton/SeverityDoc.vue b/apps/showcase/doc/splitbutton/SeverityDoc.vue similarity index 100% rename from doc/splitbutton/SeverityDoc.vue rename to apps/showcase/doc/splitbutton/SeverityDoc.vue diff --git a/doc/splitbutton/SizesDoc.vue b/apps/showcase/doc/splitbutton/SizesDoc.vue similarity index 100% rename from doc/splitbutton/SizesDoc.vue rename to apps/showcase/doc/splitbutton/SizesDoc.vue diff --git a/doc/splitbutton/TemplateDoc.vue b/apps/showcase/doc/splitbutton/TemplateDoc.vue similarity index 100% rename from doc/splitbutton/TemplateDoc.vue rename to apps/showcase/doc/splitbutton/TemplateDoc.vue diff --git a/doc/splitbutton/TextDoc.vue b/apps/showcase/doc/splitbutton/TextDoc.vue similarity index 100% rename from doc/splitbutton/TextDoc.vue rename to apps/showcase/doc/splitbutton/TextDoc.vue diff --git a/doc/splitbutton/pt/PTImage.vue b/apps/showcase/doc/splitbutton/pt/PTImage.vue similarity index 100% rename from doc/splitbutton/pt/PTImage.vue rename to apps/showcase/doc/splitbutton/pt/PTImage.vue diff --git a/doc/splitbutton/pt/index.vue b/apps/showcase/doc/splitbutton/pt/index.vue similarity index 100% rename from doc/splitbutton/pt/index.vue rename to apps/showcase/doc/splitbutton/pt/index.vue diff --git a/doc/splitbutton/theming/TailwindDoc.vue b/apps/showcase/doc/splitbutton/theming/TailwindDoc.vue similarity index 100% rename from doc/splitbutton/theming/TailwindDoc.vue rename to apps/showcase/doc/splitbutton/theming/TailwindDoc.vue diff --git a/doc/splitbutton/theming/index.vue b/apps/showcase/doc/splitbutton/theming/index.vue similarity index 100% rename from doc/splitbutton/theming/index.vue rename to apps/showcase/doc/splitbutton/theming/index.vue diff --git a/doc/splitter/AccessibilityDoc.vue b/apps/showcase/doc/splitter/AccessibilityDoc.vue similarity index 100% rename from doc/splitter/AccessibilityDoc.vue rename to apps/showcase/doc/splitter/AccessibilityDoc.vue diff --git a/doc/splitter/HorizontalDoc.vue b/apps/showcase/doc/splitter/HorizontalDoc.vue similarity index 100% rename from doc/splitter/HorizontalDoc.vue rename to apps/showcase/doc/splitter/HorizontalDoc.vue diff --git a/doc/splitter/ImportDoc.vue b/apps/showcase/doc/splitter/ImportDoc.vue similarity index 100% rename from doc/splitter/ImportDoc.vue rename to apps/showcase/doc/splitter/ImportDoc.vue diff --git a/doc/splitter/NestedDoc.vue b/apps/showcase/doc/splitter/NestedDoc.vue similarity index 100% rename from doc/splitter/NestedDoc.vue rename to apps/showcase/doc/splitter/NestedDoc.vue diff --git a/doc/splitter/SizeDoc.vue b/apps/showcase/doc/splitter/SizeDoc.vue similarity index 100% rename from doc/splitter/SizeDoc.vue rename to apps/showcase/doc/splitter/SizeDoc.vue diff --git a/doc/splitter/VerticalDoc.vue b/apps/showcase/doc/splitter/VerticalDoc.vue similarity index 100% rename from doc/splitter/VerticalDoc.vue rename to apps/showcase/doc/splitter/VerticalDoc.vue diff --git a/doc/splitter/pt/PTImage.vue b/apps/showcase/doc/splitter/pt/PTImage.vue similarity index 100% rename from doc/splitter/pt/PTImage.vue rename to apps/showcase/doc/splitter/pt/PTImage.vue diff --git a/doc/splitter/pt/index.vue b/apps/showcase/doc/splitter/pt/index.vue similarity index 100% rename from doc/splitter/pt/index.vue rename to apps/showcase/doc/splitter/pt/index.vue diff --git a/doc/splitter/theming/TailwindDoc.vue b/apps/showcase/doc/splitter/theming/TailwindDoc.vue similarity index 100% rename from doc/splitter/theming/TailwindDoc.vue rename to apps/showcase/doc/splitter/theming/TailwindDoc.vue diff --git a/doc/splitter/theming/index.vue b/apps/showcase/doc/splitter/theming/index.vue similarity index 100% rename from doc/splitter/theming/index.vue rename to apps/showcase/doc/splitter/theming/index.vue diff --git a/doc/stepper/AccessibilityDoc.vue b/apps/showcase/doc/stepper/AccessibilityDoc.vue similarity index 100% rename from doc/stepper/AccessibilityDoc.vue rename to apps/showcase/doc/stepper/AccessibilityDoc.vue diff --git a/doc/stepper/HorizontalDoc.vue b/apps/showcase/doc/stepper/HorizontalDoc.vue similarity index 100% rename from doc/stepper/HorizontalDoc.vue rename to apps/showcase/doc/stepper/HorizontalDoc.vue diff --git a/doc/stepper/ImportDoc.vue b/apps/showcase/doc/stepper/ImportDoc.vue similarity index 100% rename from doc/stepper/ImportDoc.vue rename to apps/showcase/doc/stepper/ImportDoc.vue diff --git a/doc/stepper/LinearDoc.vue b/apps/showcase/doc/stepper/LinearDoc.vue similarity index 100% rename from doc/stepper/LinearDoc.vue rename to apps/showcase/doc/stepper/LinearDoc.vue diff --git a/doc/stepper/TemplateDoc.vue b/apps/showcase/doc/stepper/TemplateDoc.vue similarity index 100% rename from doc/stepper/TemplateDoc.vue rename to apps/showcase/doc/stepper/TemplateDoc.vue diff --git a/doc/stepper/VerticalDoc.vue b/apps/showcase/doc/stepper/VerticalDoc.vue similarity index 100% rename from doc/stepper/VerticalDoc.vue rename to apps/showcase/doc/stepper/VerticalDoc.vue diff --git a/doc/stepper/pt/PTImage.vue b/apps/showcase/doc/stepper/pt/PTImage.vue similarity index 100% rename from doc/stepper/pt/PTImage.vue rename to apps/showcase/doc/stepper/pt/PTImage.vue diff --git a/doc/stepper/pt/index.vue b/apps/showcase/doc/stepper/pt/index.vue similarity index 100% rename from doc/stepper/pt/index.vue rename to apps/showcase/doc/stepper/pt/index.vue diff --git a/doc/stepper/theming/TailwindDoc.vue b/apps/showcase/doc/stepper/theming/TailwindDoc.vue similarity index 100% rename from doc/stepper/theming/TailwindDoc.vue rename to apps/showcase/doc/stepper/theming/TailwindDoc.vue diff --git a/doc/stepper/theming/index.vue b/apps/showcase/doc/stepper/theming/index.vue similarity index 100% rename from doc/stepper/theming/index.vue rename to apps/showcase/doc/stepper/theming/index.vue diff --git a/doc/steps/AccessibilityDoc.vue b/apps/showcase/doc/steps/AccessibilityDoc.vue similarity index 100% rename from doc/steps/AccessibilityDoc.vue rename to apps/showcase/doc/steps/AccessibilityDoc.vue diff --git a/doc/steps/BasicDoc.vue b/apps/showcase/doc/steps/BasicDoc.vue similarity index 100% rename from doc/steps/BasicDoc.vue rename to apps/showcase/doc/steps/BasicDoc.vue diff --git a/doc/steps/ControlledDoc.vue b/apps/showcase/doc/steps/ControlledDoc.vue similarity index 100% rename from doc/steps/ControlledDoc.vue rename to apps/showcase/doc/steps/ControlledDoc.vue diff --git a/doc/steps/ImportDoc.vue b/apps/showcase/doc/steps/ImportDoc.vue similarity index 100% rename from doc/steps/ImportDoc.vue rename to apps/showcase/doc/steps/ImportDoc.vue diff --git a/doc/steps/LinearDoc.vue b/apps/showcase/doc/steps/LinearDoc.vue similarity index 100% rename from doc/steps/LinearDoc.vue rename to apps/showcase/doc/steps/LinearDoc.vue diff --git a/doc/steps/TemplateDoc.vue b/apps/showcase/doc/steps/TemplateDoc.vue similarity index 100% rename from doc/steps/TemplateDoc.vue rename to apps/showcase/doc/steps/TemplateDoc.vue diff --git a/doc/steps/pt/PTImage.vue b/apps/showcase/doc/steps/pt/PTImage.vue similarity index 100% rename from doc/steps/pt/PTImage.vue rename to apps/showcase/doc/steps/pt/PTImage.vue diff --git a/doc/steps/pt/index.vue b/apps/showcase/doc/steps/pt/index.vue similarity index 100% rename from doc/steps/pt/index.vue rename to apps/showcase/doc/steps/pt/index.vue diff --git a/doc/steps/theming/TailwindDoc.vue b/apps/showcase/doc/steps/theming/TailwindDoc.vue similarity index 100% rename from doc/steps/theming/TailwindDoc.vue rename to apps/showcase/doc/steps/theming/TailwindDoc.vue diff --git a/doc/steps/theming/index.vue b/apps/showcase/doc/steps/theming/index.vue similarity index 100% rename from doc/steps/theming/index.vue rename to apps/showcase/doc/steps/theming/index.vue diff --git a/doc/styleclass/AnimationDoc.vue b/apps/showcase/doc/styleclass/AnimationDoc.vue similarity index 100% rename from doc/styleclass/AnimationDoc.vue rename to apps/showcase/doc/styleclass/AnimationDoc.vue diff --git a/doc/styleclass/ImportDoc.vue b/apps/showcase/doc/styleclass/ImportDoc.vue similarity index 100% rename from doc/styleclass/ImportDoc.vue rename to apps/showcase/doc/styleclass/ImportDoc.vue diff --git a/doc/styleclass/ToggleClassDoc.vue b/apps/showcase/doc/styleclass/ToggleClassDoc.vue similarity index 100% rename from doc/styleclass/ToggleClassDoc.vue rename to apps/showcase/doc/styleclass/ToggleClassDoc.vue diff --git a/doc/tabmenu/AccessibilityDoc.vue b/apps/showcase/doc/tabmenu/AccessibilityDoc.vue similarity index 100% rename from doc/tabmenu/AccessibilityDoc.vue rename to apps/showcase/doc/tabmenu/AccessibilityDoc.vue diff --git a/doc/tabmenu/BasicDoc.vue b/apps/showcase/doc/tabmenu/BasicDoc.vue similarity index 100% rename from doc/tabmenu/BasicDoc.vue rename to apps/showcase/doc/tabmenu/BasicDoc.vue diff --git a/doc/tabmenu/CommandDoc.vue b/apps/showcase/doc/tabmenu/CommandDoc.vue similarity index 100% rename from doc/tabmenu/CommandDoc.vue rename to apps/showcase/doc/tabmenu/CommandDoc.vue diff --git a/doc/tabmenu/ControlledDoc.vue b/apps/showcase/doc/tabmenu/ControlledDoc.vue similarity index 100% rename from doc/tabmenu/ControlledDoc.vue rename to apps/showcase/doc/tabmenu/ControlledDoc.vue diff --git a/doc/tabmenu/ImportDoc.vue b/apps/showcase/doc/tabmenu/ImportDoc.vue similarity index 100% rename from doc/tabmenu/ImportDoc.vue rename to apps/showcase/doc/tabmenu/ImportDoc.vue diff --git a/doc/tabmenu/RouterDoc.vue b/apps/showcase/doc/tabmenu/RouterDoc.vue similarity index 100% rename from doc/tabmenu/RouterDoc.vue rename to apps/showcase/doc/tabmenu/RouterDoc.vue diff --git a/doc/tabmenu/TemplateDoc.vue b/apps/showcase/doc/tabmenu/TemplateDoc.vue similarity index 100% rename from doc/tabmenu/TemplateDoc.vue rename to apps/showcase/doc/tabmenu/TemplateDoc.vue diff --git a/doc/tabmenu/pt/PTImage.vue b/apps/showcase/doc/tabmenu/pt/PTImage.vue similarity index 100% rename from doc/tabmenu/pt/PTImage.vue rename to apps/showcase/doc/tabmenu/pt/PTImage.vue diff --git a/doc/tabmenu/pt/index.vue b/apps/showcase/doc/tabmenu/pt/index.vue similarity index 100% rename from doc/tabmenu/pt/index.vue rename to apps/showcase/doc/tabmenu/pt/index.vue diff --git a/doc/tabmenu/theming/TailwindDoc.vue b/apps/showcase/doc/tabmenu/theming/TailwindDoc.vue similarity index 100% rename from doc/tabmenu/theming/TailwindDoc.vue rename to apps/showcase/doc/tabmenu/theming/TailwindDoc.vue diff --git a/doc/tabmenu/theming/index.vue b/apps/showcase/doc/tabmenu/theming/index.vue similarity index 100% rename from doc/tabmenu/theming/index.vue rename to apps/showcase/doc/tabmenu/theming/index.vue diff --git a/doc/tabs/AccessibilityDoc.vue b/apps/showcase/doc/tabs/AccessibilityDoc.vue similarity index 100% rename from doc/tabs/AccessibilityDoc.vue rename to apps/showcase/doc/tabs/AccessibilityDoc.vue diff --git a/doc/tabs/BasicDoc.vue b/apps/showcase/doc/tabs/BasicDoc.vue similarity index 100% rename from doc/tabs/BasicDoc.vue rename to apps/showcase/doc/tabs/BasicDoc.vue diff --git a/doc/tabs/ControlledDoc.vue b/apps/showcase/doc/tabs/ControlledDoc.vue similarity index 100% rename from doc/tabs/ControlledDoc.vue rename to apps/showcase/doc/tabs/ControlledDoc.vue diff --git a/doc/tabs/DisabledDoc.vue b/apps/showcase/doc/tabs/DisabledDoc.vue similarity index 100% rename from doc/tabs/DisabledDoc.vue rename to apps/showcase/doc/tabs/DisabledDoc.vue diff --git a/doc/tabs/DynamicDoc.vue b/apps/showcase/doc/tabs/DynamicDoc.vue similarity index 100% rename from doc/tabs/DynamicDoc.vue rename to apps/showcase/doc/tabs/DynamicDoc.vue diff --git a/doc/tabs/ImportDoc.vue b/apps/showcase/doc/tabs/ImportDoc.vue similarity index 100% rename from doc/tabs/ImportDoc.vue rename to apps/showcase/doc/tabs/ImportDoc.vue diff --git a/doc/tabs/ScrollableDoc.vue b/apps/showcase/doc/tabs/ScrollableDoc.vue similarity index 100% rename from doc/tabs/ScrollableDoc.vue rename to apps/showcase/doc/tabs/ScrollableDoc.vue diff --git a/doc/tabs/TabMenuDoc.vue b/apps/showcase/doc/tabs/TabMenuDoc.vue similarity index 100% rename from doc/tabs/TabMenuDoc.vue rename to apps/showcase/doc/tabs/TabMenuDoc.vue diff --git a/doc/tabs/TemplateDoc.vue b/apps/showcase/doc/tabs/TemplateDoc.vue similarity index 100% rename from doc/tabs/TemplateDoc.vue rename to apps/showcase/doc/tabs/TemplateDoc.vue diff --git a/doc/tabs/pt/PTImage.vue b/apps/showcase/doc/tabs/pt/PTImage.vue similarity index 100% rename from doc/tabs/pt/PTImage.vue rename to apps/showcase/doc/tabs/pt/PTImage.vue diff --git a/doc/tabs/pt/index.vue b/apps/showcase/doc/tabs/pt/index.vue similarity index 100% rename from doc/tabs/pt/index.vue rename to apps/showcase/doc/tabs/pt/index.vue diff --git a/doc/tabs/theming/TailwindDoc.vue b/apps/showcase/doc/tabs/theming/TailwindDoc.vue similarity index 100% rename from doc/tabs/theming/TailwindDoc.vue rename to apps/showcase/doc/tabs/theming/TailwindDoc.vue diff --git a/doc/tabs/theming/index.vue b/apps/showcase/doc/tabs/theming/index.vue similarity index 100% rename from doc/tabs/theming/index.vue rename to apps/showcase/doc/tabs/theming/index.vue diff --git a/doc/tag/AccessibilityDoc.vue b/apps/showcase/doc/tag/AccessibilityDoc.vue similarity index 100% rename from doc/tag/AccessibilityDoc.vue rename to apps/showcase/doc/tag/AccessibilityDoc.vue diff --git a/doc/tag/BasicDoc.vue b/apps/showcase/doc/tag/BasicDoc.vue similarity index 100% rename from doc/tag/BasicDoc.vue rename to apps/showcase/doc/tag/BasicDoc.vue diff --git a/doc/tag/IconDoc.vue b/apps/showcase/doc/tag/IconDoc.vue similarity index 100% rename from doc/tag/IconDoc.vue rename to apps/showcase/doc/tag/IconDoc.vue diff --git a/doc/tag/ImportDoc.vue b/apps/showcase/doc/tag/ImportDoc.vue similarity index 100% rename from doc/tag/ImportDoc.vue rename to apps/showcase/doc/tag/ImportDoc.vue diff --git a/doc/tag/PillDoc.vue b/apps/showcase/doc/tag/PillDoc.vue similarity index 100% rename from doc/tag/PillDoc.vue rename to apps/showcase/doc/tag/PillDoc.vue diff --git a/doc/tag/SeverityDoc.vue b/apps/showcase/doc/tag/SeverityDoc.vue similarity index 100% rename from doc/tag/SeverityDoc.vue rename to apps/showcase/doc/tag/SeverityDoc.vue diff --git a/doc/tag/TemplateDoc.vue b/apps/showcase/doc/tag/TemplateDoc.vue similarity index 100% rename from doc/tag/TemplateDoc.vue rename to apps/showcase/doc/tag/TemplateDoc.vue diff --git a/doc/tag/pt/PTImage.vue b/apps/showcase/doc/tag/pt/PTImage.vue similarity index 100% rename from doc/tag/pt/PTImage.vue rename to apps/showcase/doc/tag/pt/PTImage.vue diff --git a/doc/tag/pt/index.vue b/apps/showcase/doc/tag/pt/index.vue similarity index 100% rename from doc/tag/pt/index.vue rename to apps/showcase/doc/tag/pt/index.vue diff --git a/doc/tag/theming/TailwindDoc.vue b/apps/showcase/doc/tag/theming/TailwindDoc.vue similarity index 100% rename from doc/tag/theming/TailwindDoc.vue rename to apps/showcase/doc/tag/theming/TailwindDoc.vue diff --git a/doc/tag/theming/index.vue b/apps/showcase/doc/tag/theming/index.vue similarity index 100% rename from doc/tag/theming/index.vue rename to apps/showcase/doc/tag/theming/index.vue diff --git a/doc/tailwind/AnimationsDoc.vue b/apps/showcase/doc/tailwind/AnimationsDoc.vue similarity index 100% rename from doc/tailwind/AnimationsDoc.vue rename to apps/showcase/doc/tailwind/AnimationsDoc.vue diff --git a/doc/tailwind/ExtensionsDoc.vue b/apps/showcase/doc/tailwind/ExtensionsDoc.vue similarity index 100% rename from doc/tailwind/ExtensionsDoc.vue rename to apps/showcase/doc/tailwind/ExtensionsDoc.vue diff --git a/doc/tailwind/OverviewDoc.vue b/apps/showcase/doc/tailwind/OverviewDoc.vue similarity index 100% rename from doc/tailwind/OverviewDoc.vue rename to apps/showcase/doc/tailwind/OverviewDoc.vue diff --git a/doc/tailwind/PluginDoc.vue b/apps/showcase/doc/tailwind/PluginDoc.vue similarity index 100% rename from doc/tailwind/PluginDoc.vue rename to apps/showcase/doc/tailwind/PluginDoc.vue diff --git a/doc/tailwind/PresetsDoc.vue b/apps/showcase/doc/tailwind/PresetsDoc.vue similarity index 100% rename from doc/tailwind/PresetsDoc.vue rename to apps/showcase/doc/tailwind/PresetsDoc.vue diff --git a/doc/tailwind/samples/ColorPaletteDoc.vue b/apps/showcase/doc/tailwind/samples/ColorPaletteDoc.vue similarity index 100% rename from doc/tailwind/samples/ColorPaletteDoc.vue rename to apps/showcase/doc/tailwind/samples/ColorPaletteDoc.vue diff --git a/doc/tailwind/samples/FormDoc.vue b/apps/showcase/doc/tailwind/samples/FormDoc.vue similarity index 100% rename from doc/tailwind/samples/FormDoc.vue rename to apps/showcase/doc/tailwind/samples/FormDoc.vue diff --git a/doc/tailwind/samples/HeadlessDoc.vue b/apps/showcase/doc/tailwind/samples/HeadlessDoc.vue similarity index 100% rename from doc/tailwind/samples/HeadlessDoc.vue rename to apps/showcase/doc/tailwind/samples/HeadlessDoc.vue diff --git a/doc/templates/ApolloSeparator.vue b/apps/showcase/doc/templates/ApolloSeparator.vue similarity index 100% rename from doc/templates/ApolloSeparator.vue rename to apps/showcase/doc/templates/ApolloSeparator.vue diff --git a/doc/templates/AtlantisSeparator.vue b/apps/showcase/doc/templates/AtlantisSeparator.vue similarity index 100% rename from doc/templates/AtlantisSeparator.vue rename to apps/showcase/doc/templates/AtlantisSeparator.vue diff --git a/doc/templates/AvalonSeparator.vue b/apps/showcase/doc/templates/AvalonSeparator.vue similarity index 100% rename from doc/templates/AvalonSeparator.vue rename to apps/showcase/doc/templates/AvalonSeparator.vue diff --git a/doc/templates/DiamondSeparator.vue b/apps/showcase/doc/templates/DiamondSeparator.vue similarity index 100% rename from doc/templates/DiamondSeparator.vue rename to apps/showcase/doc/templates/DiamondSeparator.vue diff --git a/doc/templates/FreyaSeparator.vue b/apps/showcase/doc/templates/FreyaSeparator.vue similarity index 100% rename from doc/templates/FreyaSeparator.vue rename to apps/showcase/doc/templates/FreyaSeparator.vue diff --git a/doc/templates/PoseidonSeparator.vue b/apps/showcase/doc/templates/PoseidonSeparator.vue similarity index 100% rename from doc/templates/PoseidonSeparator.vue rename to apps/showcase/doc/templates/PoseidonSeparator.vue diff --git a/doc/templates/SakaiSeparator.vue b/apps/showcase/doc/templates/SakaiSeparator.vue similarity index 100% rename from doc/templates/SakaiSeparator.vue rename to apps/showcase/doc/templates/SakaiSeparator.vue diff --git a/doc/templates/UltimaSeparator.vue b/apps/showcase/doc/templates/UltimaSeparator.vue similarity index 100% rename from doc/templates/UltimaSeparator.vue rename to apps/showcase/doc/templates/UltimaSeparator.vue diff --git a/doc/templates/VeronaSeparator.vue b/apps/showcase/doc/templates/VeronaSeparator.vue similarity index 100% rename from doc/templates/VeronaSeparator.vue rename to apps/showcase/doc/templates/VeronaSeparator.vue diff --git a/doc/terminal/AccessibilityDoc.vue b/apps/showcase/doc/terminal/AccessibilityDoc.vue similarity index 100% rename from doc/terminal/AccessibilityDoc.vue rename to apps/showcase/doc/terminal/AccessibilityDoc.vue diff --git a/doc/terminal/BasicDoc.vue b/apps/showcase/doc/terminal/BasicDoc.vue similarity index 100% rename from doc/terminal/BasicDoc.vue rename to apps/showcase/doc/terminal/BasicDoc.vue diff --git a/doc/terminal/ImportDoc.vue b/apps/showcase/doc/terminal/ImportDoc.vue similarity index 100% rename from doc/terminal/ImportDoc.vue rename to apps/showcase/doc/terminal/ImportDoc.vue diff --git a/doc/terminal/pt/PTImage.vue b/apps/showcase/doc/terminal/pt/PTImage.vue similarity index 100% rename from doc/terminal/pt/PTImage.vue rename to apps/showcase/doc/terminal/pt/PTImage.vue diff --git a/doc/terminal/pt/index.vue b/apps/showcase/doc/terminal/pt/index.vue similarity index 100% rename from doc/terminal/pt/index.vue rename to apps/showcase/doc/terminal/pt/index.vue diff --git a/doc/terminal/theming/TailwindDoc.vue b/apps/showcase/doc/terminal/theming/TailwindDoc.vue similarity index 100% rename from doc/terminal/theming/TailwindDoc.vue rename to apps/showcase/doc/terminal/theming/TailwindDoc.vue diff --git a/doc/terminal/theming/index.vue b/apps/showcase/doc/terminal/theming/index.vue similarity index 100% rename from doc/terminal/theming/index.vue rename to apps/showcase/doc/terminal/theming/index.vue diff --git a/doc/textarea/AccessibilityDoc.vue b/apps/showcase/doc/textarea/AccessibilityDoc.vue similarity index 100% rename from doc/textarea/AccessibilityDoc.vue rename to apps/showcase/doc/textarea/AccessibilityDoc.vue diff --git a/doc/textarea/AutoResizeDoc.vue b/apps/showcase/doc/textarea/AutoResizeDoc.vue similarity index 100% rename from doc/textarea/AutoResizeDoc.vue rename to apps/showcase/doc/textarea/AutoResizeDoc.vue diff --git a/doc/textarea/BasicDoc.vue b/apps/showcase/doc/textarea/BasicDoc.vue similarity index 100% rename from doc/textarea/BasicDoc.vue rename to apps/showcase/doc/textarea/BasicDoc.vue diff --git a/doc/textarea/DisabledDoc.vue b/apps/showcase/doc/textarea/DisabledDoc.vue similarity index 100% rename from doc/textarea/DisabledDoc.vue rename to apps/showcase/doc/textarea/DisabledDoc.vue diff --git a/doc/textarea/FilledDoc.vue b/apps/showcase/doc/textarea/FilledDoc.vue similarity index 100% rename from doc/textarea/FilledDoc.vue rename to apps/showcase/doc/textarea/FilledDoc.vue diff --git a/doc/textarea/FloatLabelDoc.vue b/apps/showcase/doc/textarea/FloatLabelDoc.vue similarity index 100% rename from doc/textarea/FloatLabelDoc.vue rename to apps/showcase/doc/textarea/FloatLabelDoc.vue diff --git a/doc/textarea/ImportDoc.vue b/apps/showcase/doc/textarea/ImportDoc.vue similarity index 100% rename from doc/textarea/ImportDoc.vue rename to apps/showcase/doc/textarea/ImportDoc.vue diff --git a/doc/textarea/InvalidDoc.vue b/apps/showcase/doc/textarea/InvalidDoc.vue similarity index 100% rename from doc/textarea/InvalidDoc.vue rename to apps/showcase/doc/textarea/InvalidDoc.vue diff --git a/doc/textarea/pt/PTImage.vue b/apps/showcase/doc/textarea/pt/PTImage.vue similarity index 100% rename from doc/textarea/pt/PTImage.vue rename to apps/showcase/doc/textarea/pt/PTImage.vue diff --git a/doc/textarea/pt/index.vue b/apps/showcase/doc/textarea/pt/index.vue similarity index 100% rename from doc/textarea/pt/index.vue rename to apps/showcase/doc/textarea/pt/index.vue diff --git a/doc/textarea/theming/TailwindDoc.vue b/apps/showcase/doc/textarea/theming/TailwindDoc.vue similarity index 100% rename from doc/textarea/theming/TailwindDoc.vue rename to apps/showcase/doc/textarea/theming/TailwindDoc.vue diff --git a/doc/textarea/theming/index.vue b/apps/showcase/doc/textarea/theming/index.vue similarity index 100% rename from doc/textarea/theming/index.vue rename to apps/showcase/doc/textarea/theming/index.vue diff --git a/doc/theming/styled/ArchitectureDoc.vue b/apps/showcase/doc/theming/styled/ArchitectureDoc.vue similarity index 100% rename from doc/theming/styled/ArchitectureDoc.vue rename to apps/showcase/doc/theming/styled/ArchitectureDoc.vue diff --git a/doc/theming/styled/CSSModulesDoc.vue b/apps/showcase/doc/theming/styled/CSSModulesDoc.vue similarity index 100% rename from doc/theming/styled/CSSModulesDoc.vue rename to apps/showcase/doc/theming/styled/CSSModulesDoc.vue diff --git a/doc/theming/styled/CaseStyleDoc.vue b/apps/showcase/doc/theming/styled/CaseStyleDoc.vue similarity index 100% rename from doc/theming/styled/CaseStyleDoc.vue rename to apps/showcase/doc/theming/styled/CaseStyleDoc.vue diff --git a/doc/theming/styled/ColorsDoc.vue b/apps/showcase/doc/theming/styled/ColorsDoc.vue similarity index 100% rename from doc/theming/styled/ColorsDoc.vue rename to apps/showcase/doc/theming/styled/ColorsDoc.vue diff --git a/doc/theming/styled/DarkModeToggleDoc.vue b/apps/showcase/doc/theming/styled/DarkModeToggleDoc.vue similarity index 97% rename from doc/theming/styled/DarkModeToggleDoc.vue rename to apps/showcase/doc/theming/styled/DarkModeToggleDoc.vue index 872d51e78b..ccd33988b1 100644 --- a/doc/theming/styled/DarkModeToggleDoc.vue +++ b/apps/showcase/doc/theming/styled/DarkModeToggleDoc.vue @@ -21,7 +21,7 @@ export default { code1: { basic: ` import PrimeVue from 'primevue/config'; -import Aura from 'primevue/themes/aura'; +import Aura from '@primevue/themes/aura'; const app = createApp(App); diff --git a/doc/theming/styled/PresetsDoc.vue b/apps/showcase/doc/theming/styled/PresetsDoc.vue similarity index 99% rename from doc/theming/styled/PresetsDoc.vue rename to apps/showcase/doc/theming/styled/PresetsDoc.vue index ac084fbf1c..c032bcf299 100644 --- a/doc/theming/styled/PresetsDoc.vue +++ b/apps/showcase/doc/theming/styled/PresetsDoc.vue @@ -18,7 +18,7 @@ export default { return { aura: { basic: ` -import accordion from 'primevue/themes/aura/accordion'; +import accordion from '@primevue/themes/aura/accordion'; // ... imports of other component tokens export default { @@ -406,7 +406,7 @@ export default { }, lara: { basic: ` -import accordion from 'primevue/themes/aura/accordion'; +import accordion from '@primevue/themes/aura/accordion'; // ... imports of other component tokens export default { @@ -799,7 +799,7 @@ export default { }, nora: { basic: ` -import accordion from 'primevue/themes/aura/accordion'; +import accordion from '@primevue/themes/aura/accordion'; // ... imports of other component tokens export default { diff --git a/doc/theming/styled/ReservedKeysDoc.vue b/apps/showcase/doc/theming/styled/ReservedKeysDoc.vue similarity index 100% rename from doc/theming/styled/ReservedKeysDoc.vue rename to apps/showcase/doc/theming/styled/ReservedKeysDoc.vue diff --git a/doc/theming/styled/ScaleDoc.vue b/apps/showcase/doc/theming/styled/ScaleDoc.vue similarity index 100% rename from doc/theming/styled/ScaleDoc.vue rename to apps/showcase/doc/theming/styled/ScaleDoc.vue diff --git a/doc/theming/styled/ScopedTokensDoc.vue b/apps/showcase/doc/theming/styled/ScopedTokensDoc.vue similarity index 100% rename from doc/theming/styled/ScopedTokensDoc.vue rename to apps/showcase/doc/theming/styled/ScopedTokensDoc.vue diff --git a/doc/theming/styled/configuration/OptionsDoc.vue b/apps/showcase/doc/theming/styled/configuration/OptionsDoc.vue similarity index 100% rename from doc/theming/styled/configuration/OptionsDoc.vue rename to apps/showcase/doc/theming/styled/configuration/OptionsDoc.vue diff --git a/apps/showcase/doc/theming/styled/configuration/ThemeDoc.vue b/apps/showcase/doc/theming/styled/configuration/ThemeDoc.vue new file mode 100644 index 0000000000..6d692163e6 --- /dev/null +++ b/apps/showcase/doc/theming/styled/configuration/ThemeDoc.vue @@ -0,0 +1,35 @@ + + + diff --git a/doc/theming/styled/csslayer/LibrariesDoc.vue b/apps/showcase/doc/theming/styled/csslayer/LibrariesDoc.vue similarity index 100% rename from doc/theming/styled/csslayer/LibrariesDoc.vue rename to apps/showcase/doc/theming/styled/csslayer/LibrariesDoc.vue diff --git a/doc/theming/styled/csslayer/ResetDoc.vue b/apps/showcase/doc/theming/styled/csslayer/ResetDoc.vue similarity index 100% rename from doc/theming/styled/csslayer/ResetDoc.vue rename to apps/showcase/doc/theming/styled/csslayer/ResetDoc.vue diff --git a/doc/theming/styled/csslayer/SpecificityDoc.vue b/apps/showcase/doc/theming/styled/csslayer/SpecificityDoc.vue similarity index 100% rename from doc/theming/styled/csslayer/SpecificityDoc.vue rename to apps/showcase/doc/theming/styled/csslayer/SpecificityDoc.vue diff --git a/doc/theming/styled/customization/ComponentDoc.vue b/apps/showcase/doc/theming/styled/customization/ComponentDoc.vue similarity index 100% rename from doc/theming/styled/customization/ComponentDoc.vue rename to apps/showcase/doc/theming/styled/customization/ComponentDoc.vue diff --git a/doc/theming/styled/customization/DefinePresetDoc.vue b/apps/showcase/doc/theming/styled/customization/DefinePresetDoc.vue similarity index 89% rename from doc/theming/styled/customization/DefinePresetDoc.vue rename to apps/showcase/doc/theming/styled/customization/DefinePresetDoc.vue index cb2e5fb718..7ed574c2e1 100644 --- a/doc/theming/styled/customization/DefinePresetDoc.vue +++ b/apps/showcase/doc/theming/styled/customization/DefinePresetDoc.vue @@ -12,8 +12,8 @@ export default { code: { basic: ` import PrimeVue from 'primevue/config'; -import { definePreset } from 'primevue/themes'; -import Aura from 'primevue/themes/aura'; +import { definePreset } from '@primevue/themes'; +import Aura from '@primevue/themes/aura'; const MyPreset = definePreset(Aura, { //Your customizations, see the following sections for examples diff --git a/doc/theming/styled/customization/FocusRingDoc.vue b/apps/showcase/doc/theming/styled/customization/FocusRingDoc.vue similarity index 100% rename from doc/theming/styled/customization/FocusRingDoc.vue rename to apps/showcase/doc/theming/styled/customization/FocusRingDoc.vue diff --git a/doc/theming/styled/customization/FontDoc.vue b/apps/showcase/doc/theming/styled/customization/FontDoc.vue similarity index 100% rename from doc/theming/styled/customization/FontDoc.vue rename to apps/showcase/doc/theming/styled/customization/FontDoc.vue diff --git a/doc/theming/styled/customization/FormsDoc.vue b/apps/showcase/doc/theming/styled/customization/FormsDoc.vue similarity index 100% rename from doc/theming/styled/customization/FormsDoc.vue rename to apps/showcase/doc/theming/styled/customization/FormsDoc.vue diff --git a/doc/theming/styled/customization/NoirDoc.vue b/apps/showcase/doc/theming/styled/customization/NoirDoc.vue similarity index 100% rename from doc/theming/styled/customization/NoirDoc.vue rename to apps/showcase/doc/theming/styled/customization/NoirDoc.vue diff --git a/doc/theming/styled/customization/PresetDoc.vue b/apps/showcase/doc/theming/styled/customization/PresetDoc.vue similarity index 100% rename from doc/theming/styled/customization/PresetDoc.vue rename to apps/showcase/doc/theming/styled/customization/PresetDoc.vue diff --git a/doc/theming/styled/customization/PrimaryDoc.vue b/apps/showcase/doc/theming/styled/customization/PrimaryDoc.vue similarity index 100% rename from doc/theming/styled/customization/PrimaryDoc.vue rename to apps/showcase/doc/theming/styled/customization/PrimaryDoc.vue diff --git a/doc/theming/styled/customization/SurfaceDoc.vue b/apps/showcase/doc/theming/styled/customization/SurfaceDoc.vue similarity index 100% rename from doc/theming/styled/customization/SurfaceDoc.vue rename to apps/showcase/doc/theming/styled/customization/SurfaceDoc.vue diff --git a/doc/theming/styled/utils/DTDoc.vue b/apps/showcase/doc/theming/styled/utils/DTDoc.vue similarity index 97% rename from doc/theming/styled/utils/DTDoc.vue rename to apps/showcase/doc/theming/styled/utils/DTDoc.vue index 905783dbb3..8583b15958 100644 --- a/doc/theming/styled/utils/DTDoc.vue +++ b/apps/showcase/doc/theming/styled/utils/DTDoc.vue @@ -11,7 +11,7 @@ export default { return { code: { basic: ` -import { $dt } from 'primevue/themes'; +import { $dt } from '@primevue/themes'; const duration = $dt('transition.duration'); /* diff --git a/doc/theming/styled/utils/PaletteDoc.vue b/apps/showcase/doc/theming/styled/utils/PaletteDoc.vue similarity index 92% rename from doc/theming/styled/utils/PaletteDoc.vue rename to apps/showcase/doc/theming/styled/utils/PaletteDoc.vue index 9a90cc51e0..678e530585 100644 --- a/doc/theming/styled/utils/PaletteDoc.vue +++ b/apps/showcase/doc/theming/styled/utils/PaletteDoc.vue @@ -11,7 +11,7 @@ export default { return { code: { basic: ` -import { palette } from 'primevue/themes'; +import { palette } from '@primevue/themes'; // custom color const values1 = palette('#10b981'); diff --git a/doc/theming/styled/utils/UpdatePresetDoc.vue b/apps/showcase/doc/theming/styled/utils/UpdatePresetDoc.vue similarity index 95% rename from doc/theming/styled/utils/UpdatePresetDoc.vue rename to apps/showcase/doc/theming/styled/utils/UpdatePresetDoc.vue index 34a6ded0fc..decf1e0b73 100644 --- a/doc/theming/styled/utils/UpdatePresetDoc.vue +++ b/apps/showcase/doc/theming/styled/utils/UpdatePresetDoc.vue @@ -11,7 +11,7 @@ export default { return { code: { basic: ` -import { updatePreset } from 'primevue/themes'; +import { updatePreset } from '@primevue/themes'; const changePrimaryColor() { updatePreset({ diff --git a/doc/theming/styled/utils/UpdatePrimaryPaletteDoc.vue b/apps/showcase/doc/theming/styled/utils/UpdatePrimaryPaletteDoc.vue similarity index 93% rename from doc/theming/styled/utils/UpdatePrimaryPaletteDoc.vue rename to apps/showcase/doc/theming/styled/utils/UpdatePrimaryPaletteDoc.vue index 7ccf401a5e..81308ee5fe 100644 --- a/doc/theming/styled/utils/UpdatePrimaryPaletteDoc.vue +++ b/apps/showcase/doc/theming/styled/utils/UpdatePrimaryPaletteDoc.vue @@ -11,7 +11,7 @@ export default { return { code: { basic: ` -import { updatePrimaryPalette } from 'primevue/themes'; +import { updatePrimaryPalette } from '@primevue/themes'; const changePrimaryColor() { updatePrimaryPalette({ diff --git a/doc/theming/styled/utils/UpdateSurfacePaletteDoc.vue b/apps/showcase/doc/theming/styled/utils/UpdateSurfacePaletteDoc.vue similarity index 94% rename from doc/theming/styled/utils/UpdateSurfacePaletteDoc.vue rename to apps/showcase/doc/theming/styled/utils/UpdateSurfacePaletteDoc.vue index ca9f8a3a7b..782bf64bfb 100644 --- a/doc/theming/styled/utils/UpdateSurfacePaletteDoc.vue +++ b/apps/showcase/doc/theming/styled/utils/UpdateSurfacePaletteDoc.vue @@ -11,7 +11,7 @@ export default { return { code: { basic: ` -import { updateSurfacePalette } from 'primevue/themes'; +import { updateSurfacePalette } from '@primevue/themes'; const changeSurfaces() { //changes surfaces both in light and dark mode diff --git a/doc/theming/styled/utils/UsePresetDoc.vue b/apps/showcase/doc/theming/styled/utils/UsePresetDoc.vue similarity index 91% rename from doc/theming/styled/utils/UsePresetDoc.vue rename to apps/showcase/doc/theming/styled/utils/UsePresetDoc.vue index 24e3c9b652..d212946a28 100644 --- a/doc/theming/styled/utils/UsePresetDoc.vue +++ b/apps/showcase/doc/theming/styled/utils/UsePresetDoc.vue @@ -11,7 +11,7 @@ export default { return { code: { basic: ` -import { usePreset } from 'primevue/themes'; +import { usePreset } from '@primevue/themes'; const onButtonClick() { usePreset(MyPreset); diff --git a/doc/theming/unstyled/ArchitectureDoc.vue b/apps/showcase/doc/theming/unstyled/ArchitectureDoc.vue similarity index 100% rename from doc/theming/unstyled/ArchitectureDoc.vue rename to apps/showcase/doc/theming/unstyled/ArchitectureDoc.vue diff --git a/doc/theming/unstyled/ExampleDoc.vue b/apps/showcase/doc/theming/unstyled/ExampleDoc.vue similarity index 100% rename from doc/theming/unstyled/ExampleDoc.vue rename to apps/showcase/doc/theming/unstyled/ExampleDoc.vue diff --git a/doc/theming/unstyled/SetupDoc.vue b/apps/showcase/doc/theming/unstyled/SetupDoc.vue similarity index 100% rename from doc/theming/unstyled/SetupDoc.vue rename to apps/showcase/doc/theming/unstyled/SetupDoc.vue diff --git a/doc/theming/unstyled/ThemeDoc.vue b/apps/showcase/doc/theming/unstyled/ThemeDoc.vue similarity index 100% rename from doc/theming/unstyled/ThemeDoc.vue rename to apps/showcase/doc/theming/unstyled/ThemeDoc.vue diff --git a/doc/theming/unstyled/libraries/TailwindDoc.vue b/apps/showcase/doc/theming/unstyled/libraries/TailwindDoc.vue similarity index 100% rename from doc/theming/unstyled/libraries/TailwindDoc.vue rename to apps/showcase/doc/theming/unstyled/libraries/TailwindDoc.vue diff --git a/doc/theming/unstyled/libraries/UnoCSSDoc.vue b/apps/showcase/doc/theming/unstyled/libraries/UnoCSSDoc.vue similarity index 100% rename from doc/theming/unstyled/libraries/UnoCSSDoc.vue rename to apps/showcase/doc/theming/unstyled/libraries/UnoCSSDoc.vue diff --git a/doc/tieredmenu/AccessibilityDoc.vue b/apps/showcase/doc/tieredmenu/AccessibilityDoc.vue similarity index 100% rename from doc/tieredmenu/AccessibilityDoc.vue rename to apps/showcase/doc/tieredmenu/AccessibilityDoc.vue diff --git a/doc/tieredmenu/BasicDoc.vue b/apps/showcase/doc/tieredmenu/BasicDoc.vue similarity index 100% rename from doc/tieredmenu/BasicDoc.vue rename to apps/showcase/doc/tieredmenu/BasicDoc.vue diff --git a/doc/tieredmenu/CommandDoc.vue b/apps/showcase/doc/tieredmenu/CommandDoc.vue similarity index 100% rename from doc/tieredmenu/CommandDoc.vue rename to apps/showcase/doc/tieredmenu/CommandDoc.vue diff --git a/doc/tieredmenu/ImportDoc.vue b/apps/showcase/doc/tieredmenu/ImportDoc.vue similarity index 100% rename from doc/tieredmenu/ImportDoc.vue rename to apps/showcase/doc/tieredmenu/ImportDoc.vue diff --git a/doc/tieredmenu/PopupDoc.vue b/apps/showcase/doc/tieredmenu/PopupDoc.vue similarity index 100% rename from doc/tieredmenu/PopupDoc.vue rename to apps/showcase/doc/tieredmenu/PopupDoc.vue diff --git a/doc/tieredmenu/RouterDoc.vue b/apps/showcase/doc/tieredmenu/RouterDoc.vue similarity index 100% rename from doc/tieredmenu/RouterDoc.vue rename to apps/showcase/doc/tieredmenu/RouterDoc.vue diff --git a/doc/tieredmenu/TemplateDoc.vue b/apps/showcase/doc/tieredmenu/TemplateDoc.vue similarity index 100% rename from doc/tieredmenu/TemplateDoc.vue rename to apps/showcase/doc/tieredmenu/TemplateDoc.vue diff --git a/doc/tieredmenu/pt/PTImage.vue b/apps/showcase/doc/tieredmenu/pt/PTImage.vue similarity index 100% rename from doc/tieredmenu/pt/PTImage.vue rename to apps/showcase/doc/tieredmenu/pt/PTImage.vue diff --git a/doc/tieredmenu/pt/index.vue b/apps/showcase/doc/tieredmenu/pt/index.vue similarity index 100% rename from doc/tieredmenu/pt/index.vue rename to apps/showcase/doc/tieredmenu/pt/index.vue diff --git a/doc/tieredmenu/theming/TailwindDoc.vue b/apps/showcase/doc/tieredmenu/theming/TailwindDoc.vue similarity index 100% rename from doc/tieredmenu/theming/TailwindDoc.vue rename to apps/showcase/doc/tieredmenu/theming/TailwindDoc.vue diff --git a/doc/tieredmenu/theming/index.vue b/apps/showcase/doc/tieredmenu/theming/index.vue similarity index 100% rename from doc/tieredmenu/theming/index.vue rename to apps/showcase/doc/tieredmenu/theming/index.vue diff --git a/doc/timeline/AccessibilityDoc.vue b/apps/showcase/doc/timeline/AccessibilityDoc.vue similarity index 100% rename from doc/timeline/AccessibilityDoc.vue rename to apps/showcase/doc/timeline/AccessibilityDoc.vue diff --git a/doc/timeline/AlignmentDoc.vue b/apps/showcase/doc/timeline/AlignmentDoc.vue similarity index 100% rename from doc/timeline/AlignmentDoc.vue rename to apps/showcase/doc/timeline/AlignmentDoc.vue diff --git a/doc/timeline/BasicDoc.vue b/apps/showcase/doc/timeline/BasicDoc.vue similarity index 100% rename from doc/timeline/BasicDoc.vue rename to apps/showcase/doc/timeline/BasicDoc.vue diff --git a/doc/timeline/HorizontalDoc.vue b/apps/showcase/doc/timeline/HorizontalDoc.vue similarity index 100% rename from doc/timeline/HorizontalDoc.vue rename to apps/showcase/doc/timeline/HorizontalDoc.vue diff --git a/doc/timeline/ImportDoc.vue b/apps/showcase/doc/timeline/ImportDoc.vue similarity index 100% rename from doc/timeline/ImportDoc.vue rename to apps/showcase/doc/timeline/ImportDoc.vue diff --git a/doc/timeline/OppositeDoc.vue b/apps/showcase/doc/timeline/OppositeDoc.vue similarity index 100% rename from doc/timeline/OppositeDoc.vue rename to apps/showcase/doc/timeline/OppositeDoc.vue diff --git a/doc/timeline/TemplateDoc.vue b/apps/showcase/doc/timeline/TemplateDoc.vue similarity index 100% rename from doc/timeline/TemplateDoc.vue rename to apps/showcase/doc/timeline/TemplateDoc.vue diff --git a/doc/timeline/pt/PTImage.vue b/apps/showcase/doc/timeline/pt/PTImage.vue similarity index 100% rename from doc/timeline/pt/PTImage.vue rename to apps/showcase/doc/timeline/pt/PTImage.vue diff --git a/doc/timeline/pt/index.vue b/apps/showcase/doc/timeline/pt/index.vue similarity index 100% rename from doc/timeline/pt/index.vue rename to apps/showcase/doc/timeline/pt/index.vue diff --git a/doc/timeline/theming/TailwindDoc.vue b/apps/showcase/doc/timeline/theming/TailwindDoc.vue similarity index 100% rename from doc/timeline/theming/TailwindDoc.vue rename to apps/showcase/doc/timeline/theming/TailwindDoc.vue diff --git a/doc/timeline/theming/index.vue b/apps/showcase/doc/timeline/theming/index.vue similarity index 100% rename from doc/timeline/theming/index.vue rename to apps/showcase/doc/timeline/theming/index.vue diff --git a/doc/toast/AccessibilityDoc.vue b/apps/showcase/doc/toast/AccessibilityDoc.vue similarity index 100% rename from doc/toast/AccessibilityDoc.vue rename to apps/showcase/doc/toast/AccessibilityDoc.vue diff --git a/doc/toast/BasicDoc.vue b/apps/showcase/doc/toast/BasicDoc.vue similarity index 100% rename from doc/toast/BasicDoc.vue rename to apps/showcase/doc/toast/BasicDoc.vue diff --git a/doc/toast/HeadlessDoc.vue b/apps/showcase/doc/toast/HeadlessDoc.vue similarity index 100% rename from doc/toast/HeadlessDoc.vue rename to apps/showcase/doc/toast/HeadlessDoc.vue diff --git a/doc/toast/ImportDoc.vue b/apps/showcase/doc/toast/ImportDoc.vue similarity index 100% rename from doc/toast/ImportDoc.vue rename to apps/showcase/doc/toast/ImportDoc.vue diff --git a/doc/toast/MultipleDoc.vue b/apps/showcase/doc/toast/MultipleDoc.vue similarity index 100% rename from doc/toast/MultipleDoc.vue rename to apps/showcase/doc/toast/MultipleDoc.vue diff --git a/doc/toast/PositionDoc.vue b/apps/showcase/doc/toast/PositionDoc.vue similarity index 100% rename from doc/toast/PositionDoc.vue rename to apps/showcase/doc/toast/PositionDoc.vue diff --git a/doc/toast/SeverityDoc.vue b/apps/showcase/doc/toast/SeverityDoc.vue similarity index 100% rename from doc/toast/SeverityDoc.vue rename to apps/showcase/doc/toast/SeverityDoc.vue diff --git a/doc/toast/StickyDoc.vue b/apps/showcase/doc/toast/StickyDoc.vue similarity index 100% rename from doc/toast/StickyDoc.vue rename to apps/showcase/doc/toast/StickyDoc.vue diff --git a/doc/toast/TemplateDoc.vue b/apps/showcase/doc/toast/TemplateDoc.vue similarity index 100% rename from doc/toast/TemplateDoc.vue rename to apps/showcase/doc/toast/TemplateDoc.vue diff --git a/doc/toast/ToastServiceDoc.vue b/apps/showcase/doc/toast/ToastServiceDoc.vue similarity index 100% rename from doc/toast/ToastServiceDoc.vue rename to apps/showcase/doc/toast/ToastServiceDoc.vue diff --git a/doc/toast/pt/PTImage.vue b/apps/showcase/doc/toast/pt/PTImage.vue similarity index 100% rename from doc/toast/pt/PTImage.vue rename to apps/showcase/doc/toast/pt/PTImage.vue diff --git a/doc/toast/pt/index.vue b/apps/showcase/doc/toast/pt/index.vue similarity index 100% rename from doc/toast/pt/index.vue rename to apps/showcase/doc/toast/pt/index.vue diff --git a/doc/toast/theming/TailwindDoc.vue b/apps/showcase/doc/toast/theming/TailwindDoc.vue similarity index 100% rename from doc/toast/theming/TailwindDoc.vue rename to apps/showcase/doc/toast/theming/TailwindDoc.vue diff --git a/doc/toast/theming/index.vue b/apps/showcase/doc/toast/theming/index.vue similarity index 100% rename from doc/toast/theming/index.vue rename to apps/showcase/doc/toast/theming/index.vue diff --git a/doc/togglebutton/AccessibilityDoc.vue b/apps/showcase/doc/togglebutton/AccessibilityDoc.vue similarity index 100% rename from doc/togglebutton/AccessibilityDoc.vue rename to apps/showcase/doc/togglebutton/AccessibilityDoc.vue diff --git a/doc/togglebutton/BasicDoc.vue b/apps/showcase/doc/togglebutton/BasicDoc.vue similarity index 100% rename from doc/togglebutton/BasicDoc.vue rename to apps/showcase/doc/togglebutton/BasicDoc.vue diff --git a/doc/togglebutton/CustomizedDoc.vue b/apps/showcase/doc/togglebutton/CustomizedDoc.vue similarity index 100% rename from doc/togglebutton/CustomizedDoc.vue rename to apps/showcase/doc/togglebutton/CustomizedDoc.vue diff --git a/doc/togglebutton/DisabledDoc.vue b/apps/showcase/doc/togglebutton/DisabledDoc.vue similarity index 100% rename from doc/togglebutton/DisabledDoc.vue rename to apps/showcase/doc/togglebutton/DisabledDoc.vue diff --git a/doc/togglebutton/ImportDoc.vue b/apps/showcase/doc/togglebutton/ImportDoc.vue similarity index 100% rename from doc/togglebutton/ImportDoc.vue rename to apps/showcase/doc/togglebutton/ImportDoc.vue diff --git a/doc/togglebutton/InvalidDoc.vue b/apps/showcase/doc/togglebutton/InvalidDoc.vue similarity index 100% rename from doc/togglebutton/InvalidDoc.vue rename to apps/showcase/doc/togglebutton/InvalidDoc.vue diff --git a/doc/togglebutton/pt/PTImage.vue b/apps/showcase/doc/togglebutton/pt/PTImage.vue similarity index 100% rename from doc/togglebutton/pt/PTImage.vue rename to apps/showcase/doc/togglebutton/pt/PTImage.vue diff --git a/doc/togglebutton/pt/index.vue b/apps/showcase/doc/togglebutton/pt/index.vue similarity index 100% rename from doc/togglebutton/pt/index.vue rename to apps/showcase/doc/togglebutton/pt/index.vue diff --git a/doc/togglebutton/theming/TailwindDoc.vue b/apps/showcase/doc/togglebutton/theming/TailwindDoc.vue similarity index 100% rename from doc/togglebutton/theming/TailwindDoc.vue rename to apps/showcase/doc/togglebutton/theming/TailwindDoc.vue diff --git a/doc/togglebutton/theming/index.vue b/apps/showcase/doc/togglebutton/theming/index.vue similarity index 100% rename from doc/togglebutton/theming/index.vue rename to apps/showcase/doc/togglebutton/theming/index.vue diff --git a/doc/toggleswitch/AccessibilityDoc.vue b/apps/showcase/doc/toggleswitch/AccessibilityDoc.vue similarity index 100% rename from doc/toggleswitch/AccessibilityDoc.vue rename to apps/showcase/doc/toggleswitch/AccessibilityDoc.vue diff --git a/doc/toggleswitch/BasicDoc.vue b/apps/showcase/doc/toggleswitch/BasicDoc.vue similarity index 100% rename from doc/toggleswitch/BasicDoc.vue rename to apps/showcase/doc/toggleswitch/BasicDoc.vue diff --git a/doc/toggleswitch/DisabledDoc.vue b/apps/showcase/doc/toggleswitch/DisabledDoc.vue similarity index 100% rename from doc/toggleswitch/DisabledDoc.vue rename to apps/showcase/doc/toggleswitch/DisabledDoc.vue diff --git a/doc/toggleswitch/ImportDoc.vue b/apps/showcase/doc/toggleswitch/ImportDoc.vue similarity index 100% rename from doc/toggleswitch/ImportDoc.vue rename to apps/showcase/doc/toggleswitch/ImportDoc.vue diff --git a/doc/toggleswitch/InvalidDoc.vue b/apps/showcase/doc/toggleswitch/InvalidDoc.vue similarity index 100% rename from doc/toggleswitch/InvalidDoc.vue rename to apps/showcase/doc/toggleswitch/InvalidDoc.vue diff --git a/doc/toggleswitch/PreselectionDoc.vue b/apps/showcase/doc/toggleswitch/PreselectionDoc.vue similarity index 100% rename from doc/toggleswitch/PreselectionDoc.vue rename to apps/showcase/doc/toggleswitch/PreselectionDoc.vue diff --git a/doc/toggleswitch/pt/PTImage.vue b/apps/showcase/doc/toggleswitch/pt/PTImage.vue similarity index 100% rename from doc/toggleswitch/pt/PTImage.vue rename to apps/showcase/doc/toggleswitch/pt/PTImage.vue diff --git a/doc/toggleswitch/pt/index.vue b/apps/showcase/doc/toggleswitch/pt/index.vue similarity index 100% rename from doc/toggleswitch/pt/index.vue rename to apps/showcase/doc/toggleswitch/pt/index.vue diff --git a/doc/toggleswitch/theming/TailwindDoc.vue b/apps/showcase/doc/toggleswitch/theming/TailwindDoc.vue similarity index 100% rename from doc/toggleswitch/theming/TailwindDoc.vue rename to apps/showcase/doc/toggleswitch/theming/TailwindDoc.vue diff --git a/doc/toggleswitch/theming/index.vue b/apps/showcase/doc/toggleswitch/theming/index.vue similarity index 100% rename from doc/toggleswitch/theming/index.vue rename to apps/showcase/doc/toggleswitch/theming/index.vue diff --git a/doc/toolbar/AccessibilityDoc.vue b/apps/showcase/doc/toolbar/AccessibilityDoc.vue similarity index 100% rename from doc/toolbar/AccessibilityDoc.vue rename to apps/showcase/doc/toolbar/AccessibilityDoc.vue diff --git a/doc/toolbar/BasicDoc.vue b/apps/showcase/doc/toolbar/BasicDoc.vue similarity index 100% rename from doc/toolbar/BasicDoc.vue rename to apps/showcase/doc/toolbar/BasicDoc.vue diff --git a/doc/toolbar/CustomDoc.vue b/apps/showcase/doc/toolbar/CustomDoc.vue similarity index 100% rename from doc/toolbar/CustomDoc.vue rename to apps/showcase/doc/toolbar/CustomDoc.vue diff --git a/doc/toolbar/ImportDoc.vue b/apps/showcase/doc/toolbar/ImportDoc.vue similarity index 100% rename from doc/toolbar/ImportDoc.vue rename to apps/showcase/doc/toolbar/ImportDoc.vue diff --git a/doc/toolbar/pt/PTImage.vue b/apps/showcase/doc/toolbar/pt/PTImage.vue similarity index 100% rename from doc/toolbar/pt/PTImage.vue rename to apps/showcase/doc/toolbar/pt/PTImage.vue diff --git a/doc/toolbar/pt/index.vue b/apps/showcase/doc/toolbar/pt/index.vue similarity index 100% rename from doc/toolbar/pt/index.vue rename to apps/showcase/doc/toolbar/pt/index.vue diff --git a/doc/toolbar/theming/TailwindDoc.vue b/apps/showcase/doc/toolbar/theming/TailwindDoc.vue similarity index 100% rename from doc/toolbar/theming/TailwindDoc.vue rename to apps/showcase/doc/toolbar/theming/TailwindDoc.vue diff --git a/doc/toolbar/theming/index.vue b/apps/showcase/doc/toolbar/theming/index.vue similarity index 100% rename from doc/toolbar/theming/index.vue rename to apps/showcase/doc/toolbar/theming/index.vue diff --git a/doc/tooltip/AccessibilityDoc.vue b/apps/showcase/doc/tooltip/AccessibilityDoc.vue similarity index 100% rename from doc/tooltip/AccessibilityDoc.vue rename to apps/showcase/doc/tooltip/AccessibilityDoc.vue diff --git a/doc/tooltip/AutoHideDoc.vue b/apps/showcase/doc/tooltip/AutoHideDoc.vue similarity index 100% rename from doc/tooltip/AutoHideDoc.vue rename to apps/showcase/doc/tooltip/AutoHideDoc.vue diff --git a/doc/tooltip/CustomDoc.vue b/apps/showcase/doc/tooltip/CustomDoc.vue similarity index 100% rename from doc/tooltip/CustomDoc.vue rename to apps/showcase/doc/tooltip/CustomDoc.vue diff --git a/doc/tooltip/DelayDoc.vue b/apps/showcase/doc/tooltip/DelayDoc.vue similarity index 100% rename from doc/tooltip/DelayDoc.vue rename to apps/showcase/doc/tooltip/DelayDoc.vue diff --git a/doc/tooltip/EventDoc.vue b/apps/showcase/doc/tooltip/EventDoc.vue similarity index 100% rename from doc/tooltip/EventDoc.vue rename to apps/showcase/doc/tooltip/EventDoc.vue diff --git a/doc/tooltip/ImportDoc.vue b/apps/showcase/doc/tooltip/ImportDoc.vue similarity index 100% rename from doc/tooltip/ImportDoc.vue rename to apps/showcase/doc/tooltip/ImportDoc.vue diff --git a/doc/tooltip/PositionDoc.vue b/apps/showcase/doc/tooltip/PositionDoc.vue similarity index 100% rename from doc/tooltip/PositionDoc.vue rename to apps/showcase/doc/tooltip/PositionDoc.vue diff --git a/doc/tooltip/pt/PTImage.vue b/apps/showcase/doc/tooltip/pt/PTImage.vue similarity index 100% rename from doc/tooltip/pt/PTImage.vue rename to apps/showcase/doc/tooltip/pt/PTImage.vue diff --git a/doc/tooltip/pt/index.vue b/apps/showcase/doc/tooltip/pt/index.vue similarity index 100% rename from doc/tooltip/pt/index.vue rename to apps/showcase/doc/tooltip/pt/index.vue diff --git a/doc/tooltip/theming/TailwindDoc.vue b/apps/showcase/doc/tooltip/theming/TailwindDoc.vue similarity index 100% rename from doc/tooltip/theming/TailwindDoc.vue rename to apps/showcase/doc/tooltip/theming/TailwindDoc.vue diff --git a/doc/tooltip/theming/index.vue b/apps/showcase/doc/tooltip/theming/index.vue similarity index 100% rename from doc/tooltip/theming/index.vue rename to apps/showcase/doc/tooltip/theming/index.vue diff --git a/doc/tree/AccessibilityDoc.vue b/apps/showcase/doc/tree/AccessibilityDoc.vue similarity index 100% rename from doc/tree/AccessibilityDoc.vue rename to apps/showcase/doc/tree/AccessibilityDoc.vue diff --git a/doc/tree/BasicDoc.vue b/apps/showcase/doc/tree/BasicDoc.vue similarity index 100% rename from doc/tree/BasicDoc.vue rename to apps/showcase/doc/tree/BasicDoc.vue diff --git a/doc/tree/ControlledDoc.vue b/apps/showcase/doc/tree/ControlledDoc.vue similarity index 100% rename from doc/tree/ControlledDoc.vue rename to apps/showcase/doc/tree/ControlledDoc.vue diff --git a/doc/tree/EventsDoc.vue b/apps/showcase/doc/tree/EventsDoc.vue similarity index 100% rename from doc/tree/EventsDoc.vue rename to apps/showcase/doc/tree/EventsDoc.vue diff --git a/doc/tree/FilterDoc.vue b/apps/showcase/doc/tree/FilterDoc.vue similarity index 100% rename from doc/tree/FilterDoc.vue rename to apps/showcase/doc/tree/FilterDoc.vue diff --git a/doc/tree/ImportDoc.vue b/apps/showcase/doc/tree/ImportDoc.vue similarity index 100% rename from doc/tree/ImportDoc.vue rename to apps/showcase/doc/tree/ImportDoc.vue diff --git a/doc/tree/LazyDoc.vue b/apps/showcase/doc/tree/LazyDoc.vue similarity index 100% rename from doc/tree/LazyDoc.vue rename to apps/showcase/doc/tree/LazyDoc.vue diff --git a/doc/tree/TemplateDoc.vue b/apps/showcase/doc/tree/TemplateDoc.vue similarity index 100% rename from doc/tree/TemplateDoc.vue rename to apps/showcase/doc/tree/TemplateDoc.vue diff --git a/doc/tree/pt/PTImage.vue b/apps/showcase/doc/tree/pt/PTImage.vue similarity index 100% rename from doc/tree/pt/PTImage.vue rename to apps/showcase/doc/tree/pt/PTImage.vue diff --git a/doc/tree/pt/index.vue b/apps/showcase/doc/tree/pt/index.vue similarity index 100% rename from doc/tree/pt/index.vue rename to apps/showcase/doc/tree/pt/index.vue diff --git a/doc/tree/selection/CheckboxDoc.vue b/apps/showcase/doc/tree/selection/CheckboxDoc.vue similarity index 100% rename from doc/tree/selection/CheckboxDoc.vue rename to apps/showcase/doc/tree/selection/CheckboxDoc.vue diff --git a/doc/tree/selection/MultipleDoc.vue b/apps/showcase/doc/tree/selection/MultipleDoc.vue similarity index 100% rename from doc/tree/selection/MultipleDoc.vue rename to apps/showcase/doc/tree/selection/MultipleDoc.vue diff --git a/doc/tree/selection/SingleDoc.vue b/apps/showcase/doc/tree/selection/SingleDoc.vue similarity index 100% rename from doc/tree/selection/SingleDoc.vue rename to apps/showcase/doc/tree/selection/SingleDoc.vue diff --git a/doc/tree/theming/TailwindDoc.vue b/apps/showcase/doc/tree/theming/TailwindDoc.vue similarity index 100% rename from doc/tree/theming/TailwindDoc.vue rename to apps/showcase/doc/tree/theming/TailwindDoc.vue diff --git a/doc/tree/theming/index.vue b/apps/showcase/doc/tree/theming/index.vue similarity index 100% rename from doc/tree/theming/index.vue rename to apps/showcase/doc/tree/theming/index.vue diff --git a/doc/treeselect/AccessibilityDoc.vue b/apps/showcase/doc/treeselect/AccessibilityDoc.vue similarity index 100% rename from doc/treeselect/AccessibilityDoc.vue rename to apps/showcase/doc/treeselect/AccessibilityDoc.vue diff --git a/doc/treeselect/BasicDoc.vue b/apps/showcase/doc/treeselect/BasicDoc.vue similarity index 100% rename from doc/treeselect/BasicDoc.vue rename to apps/showcase/doc/treeselect/BasicDoc.vue diff --git a/doc/treeselect/CheckboxDoc.vue b/apps/showcase/doc/treeselect/CheckboxDoc.vue similarity index 100% rename from doc/treeselect/CheckboxDoc.vue rename to apps/showcase/doc/treeselect/CheckboxDoc.vue diff --git a/doc/treeselect/DisabledDoc.vue b/apps/showcase/doc/treeselect/DisabledDoc.vue similarity index 100% rename from doc/treeselect/DisabledDoc.vue rename to apps/showcase/doc/treeselect/DisabledDoc.vue diff --git a/doc/treeselect/FilledDoc.vue b/apps/showcase/doc/treeselect/FilledDoc.vue similarity index 100% rename from doc/treeselect/FilledDoc.vue rename to apps/showcase/doc/treeselect/FilledDoc.vue diff --git a/doc/treeselect/FloatLabelDoc.vue b/apps/showcase/doc/treeselect/FloatLabelDoc.vue similarity index 100% rename from doc/treeselect/FloatLabelDoc.vue rename to apps/showcase/doc/treeselect/FloatLabelDoc.vue diff --git a/doc/treeselect/ImportDoc.vue b/apps/showcase/doc/treeselect/ImportDoc.vue similarity index 100% rename from doc/treeselect/ImportDoc.vue rename to apps/showcase/doc/treeselect/ImportDoc.vue diff --git a/doc/treeselect/InvalidDoc.vue b/apps/showcase/doc/treeselect/InvalidDoc.vue similarity index 100% rename from doc/treeselect/InvalidDoc.vue rename to apps/showcase/doc/treeselect/InvalidDoc.vue diff --git a/doc/treeselect/MultipleDoc.vue b/apps/showcase/doc/treeselect/MultipleDoc.vue similarity index 100% rename from doc/treeselect/MultipleDoc.vue rename to apps/showcase/doc/treeselect/MultipleDoc.vue diff --git a/doc/treeselect/pt/PTImage.vue b/apps/showcase/doc/treeselect/pt/PTImage.vue similarity index 100% rename from doc/treeselect/pt/PTImage.vue rename to apps/showcase/doc/treeselect/pt/PTImage.vue diff --git a/doc/treeselect/pt/index.vue b/apps/showcase/doc/treeselect/pt/index.vue similarity index 100% rename from doc/treeselect/pt/index.vue rename to apps/showcase/doc/treeselect/pt/index.vue diff --git a/doc/treeselect/theming/TailwindDoc.vue b/apps/showcase/doc/treeselect/theming/TailwindDoc.vue similarity index 100% rename from doc/treeselect/theming/TailwindDoc.vue rename to apps/showcase/doc/treeselect/theming/TailwindDoc.vue diff --git a/doc/treeselect/theming/index.vue b/apps/showcase/doc/treeselect/theming/index.vue similarity index 100% rename from doc/treeselect/theming/index.vue rename to apps/showcase/doc/treeselect/theming/index.vue diff --git a/doc/treetable/AccessibilityDoc.vue b/apps/showcase/doc/treetable/AccessibilityDoc.vue similarity index 100% rename from doc/treetable/AccessibilityDoc.vue rename to apps/showcase/doc/treetable/AccessibilityDoc.vue diff --git a/doc/treetable/BasicDoc.vue b/apps/showcase/doc/treetable/BasicDoc.vue similarity index 100% rename from doc/treetable/BasicDoc.vue rename to apps/showcase/doc/treetable/BasicDoc.vue diff --git a/doc/treetable/ColumnToggleDoc.vue b/apps/showcase/doc/treetable/ColumnToggleDoc.vue similarity index 100% rename from doc/treetable/ColumnToggleDoc.vue rename to apps/showcase/doc/treetable/ColumnToggleDoc.vue diff --git a/doc/treetable/ControlledDoc.vue b/apps/showcase/doc/treetable/ControlledDoc.vue similarity index 100% rename from doc/treetable/ControlledDoc.vue rename to apps/showcase/doc/treetable/ControlledDoc.vue diff --git a/doc/treetable/DynamicColumnsDoc.vue b/apps/showcase/doc/treetable/DynamicColumnsDoc.vue similarity index 100% rename from doc/treetable/DynamicColumnsDoc.vue rename to apps/showcase/doc/treetable/DynamicColumnsDoc.vue diff --git a/doc/treetable/FilterDoc.vue b/apps/showcase/doc/treetable/FilterDoc.vue similarity index 100% rename from doc/treetable/FilterDoc.vue rename to apps/showcase/doc/treetable/FilterDoc.vue diff --git a/doc/treetable/ImportDoc.vue b/apps/showcase/doc/treetable/ImportDoc.vue similarity index 100% rename from doc/treetable/ImportDoc.vue rename to apps/showcase/doc/treetable/ImportDoc.vue diff --git a/doc/treetable/LazyLoadDoc.vue b/apps/showcase/doc/treetable/LazyLoadDoc.vue similarity index 100% rename from doc/treetable/LazyLoadDoc.vue rename to apps/showcase/doc/treetable/LazyLoadDoc.vue diff --git a/doc/treetable/SizeDoc.vue b/apps/showcase/doc/treetable/SizeDoc.vue similarity index 100% rename from doc/treetable/SizeDoc.vue rename to apps/showcase/doc/treetable/SizeDoc.vue diff --git a/doc/treetable/TemplateDoc.vue b/apps/showcase/doc/treetable/TemplateDoc.vue similarity index 100% rename from doc/treetable/TemplateDoc.vue rename to apps/showcase/doc/treetable/TemplateDoc.vue diff --git a/doc/treetable/pagination/PaginationBasicDoc.vue b/apps/showcase/doc/treetable/pagination/PaginationBasicDoc.vue similarity index 100% rename from doc/treetable/pagination/PaginationBasicDoc.vue rename to apps/showcase/doc/treetable/pagination/PaginationBasicDoc.vue diff --git a/doc/treetable/pagination/PaginationTemplateDoc.vue b/apps/showcase/doc/treetable/pagination/PaginationTemplateDoc.vue similarity index 100% rename from doc/treetable/pagination/PaginationTemplateDoc.vue rename to apps/showcase/doc/treetable/pagination/PaginationTemplateDoc.vue diff --git a/doc/treetable/pt/PTImage.vue b/apps/showcase/doc/treetable/pt/PTImage.vue similarity index 100% rename from doc/treetable/pt/PTImage.vue rename to apps/showcase/doc/treetable/pt/PTImage.vue diff --git a/doc/treetable/pt/index.vue b/apps/showcase/doc/treetable/pt/index.vue similarity index 100% rename from doc/treetable/pt/index.vue rename to apps/showcase/doc/treetable/pt/index.vue diff --git a/doc/treetable/resize/ExpandModeDoc.vue b/apps/showcase/doc/treetable/resize/ExpandModeDoc.vue similarity index 100% rename from doc/treetable/resize/ExpandModeDoc.vue rename to apps/showcase/doc/treetable/resize/ExpandModeDoc.vue diff --git a/doc/treetable/resize/FitModeDoc.vue b/apps/showcase/doc/treetable/resize/FitModeDoc.vue similarity index 100% rename from doc/treetable/resize/FitModeDoc.vue rename to apps/showcase/doc/treetable/resize/FitModeDoc.vue diff --git a/doc/treetable/scroll/FlexibleScrollDoc.vue b/apps/showcase/doc/treetable/scroll/FlexibleScrollDoc.vue similarity index 100% rename from doc/treetable/scroll/FlexibleScrollDoc.vue rename to apps/showcase/doc/treetable/scroll/FlexibleScrollDoc.vue diff --git a/doc/treetable/scroll/FrozenColumnsDoc.vue b/apps/showcase/doc/treetable/scroll/FrozenColumnsDoc.vue similarity index 100% rename from doc/treetable/scroll/FrozenColumnsDoc.vue rename to apps/showcase/doc/treetable/scroll/FrozenColumnsDoc.vue diff --git a/doc/treetable/scroll/HorizontalScrollDoc.vue b/apps/showcase/doc/treetable/scroll/HorizontalScrollDoc.vue similarity index 100% rename from doc/treetable/scroll/HorizontalScrollDoc.vue rename to apps/showcase/doc/treetable/scroll/HorizontalScrollDoc.vue diff --git a/doc/treetable/scroll/VerticalScrollDoc.vue b/apps/showcase/doc/treetable/scroll/VerticalScrollDoc.vue similarity index 100% rename from doc/treetable/scroll/VerticalScrollDoc.vue rename to apps/showcase/doc/treetable/scroll/VerticalScrollDoc.vue diff --git a/doc/treetable/selection/CheckboxRowSelectionDoc.vue b/apps/showcase/doc/treetable/selection/CheckboxRowSelectionDoc.vue similarity index 100% rename from doc/treetable/selection/CheckboxRowSelectionDoc.vue rename to apps/showcase/doc/treetable/selection/CheckboxRowSelectionDoc.vue diff --git a/doc/treetable/selection/MultipleRowsSelectionDoc.vue b/apps/showcase/doc/treetable/selection/MultipleRowsSelectionDoc.vue similarity index 100% rename from doc/treetable/selection/MultipleRowsSelectionDoc.vue rename to apps/showcase/doc/treetable/selection/MultipleRowsSelectionDoc.vue diff --git a/doc/treetable/selection/RowSelectionEventsDoc.vue b/apps/showcase/doc/treetable/selection/RowSelectionEventsDoc.vue similarity index 100% rename from doc/treetable/selection/RowSelectionEventsDoc.vue rename to apps/showcase/doc/treetable/selection/RowSelectionEventsDoc.vue diff --git a/doc/treetable/selection/SingleRowSelectionDoc.vue b/apps/showcase/doc/treetable/selection/SingleRowSelectionDoc.vue similarity index 100% rename from doc/treetable/selection/SingleRowSelectionDoc.vue rename to apps/showcase/doc/treetable/selection/SingleRowSelectionDoc.vue diff --git a/doc/treetable/sort/MultipleColumnsDoc.vue b/apps/showcase/doc/treetable/sort/MultipleColumnsDoc.vue similarity index 100% rename from doc/treetable/sort/MultipleColumnsDoc.vue rename to apps/showcase/doc/treetable/sort/MultipleColumnsDoc.vue diff --git a/doc/treetable/sort/RemovableSortDoc.vue b/apps/showcase/doc/treetable/sort/RemovableSortDoc.vue similarity index 100% rename from doc/treetable/sort/RemovableSortDoc.vue rename to apps/showcase/doc/treetable/sort/RemovableSortDoc.vue diff --git a/doc/treetable/sort/SingleColumnDoc.vue b/apps/showcase/doc/treetable/sort/SingleColumnDoc.vue similarity index 100% rename from doc/treetable/sort/SingleColumnDoc.vue rename to apps/showcase/doc/treetable/sort/SingleColumnDoc.vue diff --git a/doc/treetable/theming/TailwindDoc.vue b/apps/showcase/doc/treetable/theming/TailwindDoc.vue similarity index 100% rename from doc/treetable/theming/TailwindDoc.vue rename to apps/showcase/doc/treetable/theming/TailwindDoc.vue diff --git a/doc/treetable/theming/index.vue b/apps/showcase/doc/treetable/theming/index.vue similarity index 100% rename from doc/treetable/theming/index.vue rename to apps/showcase/doc/treetable/theming/index.vue diff --git a/doc/virtualscroller/AccessibilityDoc.vue b/apps/showcase/doc/virtualscroller/AccessibilityDoc.vue similarity index 100% rename from doc/virtualscroller/AccessibilityDoc.vue rename to apps/showcase/doc/virtualscroller/AccessibilityDoc.vue diff --git a/doc/virtualscroller/BasicDoc.vue b/apps/showcase/doc/virtualscroller/BasicDoc.vue similarity index 100% rename from doc/virtualscroller/BasicDoc.vue rename to apps/showcase/doc/virtualscroller/BasicDoc.vue diff --git a/doc/virtualscroller/DelayDoc.vue b/apps/showcase/doc/virtualscroller/DelayDoc.vue similarity index 100% rename from doc/virtualscroller/DelayDoc.vue rename to apps/showcase/doc/virtualscroller/DelayDoc.vue diff --git a/doc/virtualscroller/GridDoc.vue b/apps/showcase/doc/virtualscroller/GridDoc.vue similarity index 100% rename from doc/virtualscroller/GridDoc.vue rename to apps/showcase/doc/virtualscroller/GridDoc.vue diff --git a/doc/virtualscroller/HorizontalDoc.vue b/apps/showcase/doc/virtualscroller/HorizontalDoc.vue similarity index 100% rename from doc/virtualscroller/HorizontalDoc.vue rename to apps/showcase/doc/virtualscroller/HorizontalDoc.vue diff --git a/doc/virtualscroller/ImportDoc.vue b/apps/showcase/doc/virtualscroller/ImportDoc.vue similarity index 100% rename from doc/virtualscroller/ImportDoc.vue rename to apps/showcase/doc/virtualscroller/ImportDoc.vue diff --git a/doc/virtualscroller/LazyDoc.vue b/apps/showcase/doc/virtualscroller/LazyDoc.vue similarity index 90% rename from doc/virtualscroller/LazyDoc.vue rename to apps/showcase/doc/virtualscroller/LazyDoc.vue index feb6d48152..9816cfef49 100644 --- a/doc/virtualscroller/LazyDoc.vue +++ b/apps/showcase/doc/virtualscroller/LazyDoc.vue @@ -134,17 +134,20 @@ const onLazyLoad = (event) => { } //imitate delay of a backend call - this.loadLazyTimeout = setTimeout(() => { - const { first, last } = event; - const lazyItems = [...this.lazyItems]; - - for (let i = first; i < last; i++) { - lazyItems[i] = `Item #${i}`; - } - - this.lazyItems = lazyItems; - this.lazyLoading = false; - }, Math.random() * 1000 + 250); + this.loadLazyTimeout = setTimeout( + () => { + const { first, last } = event; + const lazyItems = [...this.lazyItems]; + + for (let i = first; i < last; i++) { + lazyItems[i] = `Item #${i}`; + } + + this.lazyItems = lazyItems; + this.lazyLoading = false; + }, + Math.random() * 1000 + 250 + ); } } }; diff --git a/doc/virtualscroller/LoadingDoc.vue b/apps/showcase/doc/virtualscroller/LoadingDoc.vue similarity index 100% rename from doc/virtualscroller/LoadingDoc.vue rename to apps/showcase/doc/virtualscroller/LoadingDoc.vue diff --git a/doc/virtualscroller/pt/PTImage.vue b/apps/showcase/doc/virtualscroller/pt/PTImage.vue similarity index 100% rename from doc/virtualscroller/pt/PTImage.vue rename to apps/showcase/doc/virtualscroller/pt/PTImage.vue diff --git a/doc/virtualscroller/pt/index.vue b/apps/showcase/doc/virtualscroller/pt/index.vue similarity index 100% rename from doc/virtualscroller/pt/index.vue rename to apps/showcase/doc/virtualscroller/pt/index.vue diff --git a/doc/virtualscroller/theming/index.vue b/apps/showcase/doc/virtualscroller/theming/index.vue similarity index 100% rename from doc/virtualscroller/theming/index.vue rename to apps/showcase/doc/virtualscroller/theming/index.vue diff --git a/doc/vite/DownloadDoc.vue b/apps/showcase/doc/vite/DownloadDoc.vue similarity index 100% rename from doc/vite/DownloadDoc.vue rename to apps/showcase/doc/vite/DownloadDoc.vue diff --git a/doc/vite/ExamplesDoc.vue b/apps/showcase/doc/vite/ExamplesDoc.vue similarity index 100% rename from doc/vite/ExamplesDoc.vue rename to apps/showcase/doc/vite/ExamplesDoc.vue diff --git a/doc/vite/PluginDoc.vue b/apps/showcase/doc/vite/PluginDoc.vue similarity index 100% rename from doc/vite/PluginDoc.vue rename to apps/showcase/doc/vite/PluginDoc.vue diff --git a/doc/vite/StyledModeDoc.vue b/apps/showcase/doc/vite/StyledModeDoc.vue similarity index 94% rename from doc/vite/StyledModeDoc.vue rename to apps/showcase/doc/vite/StyledModeDoc.vue index 8dee603ab2..8fe98cadf3 100644 --- a/doc/vite/StyledModeDoc.vue +++ b/apps/showcase/doc/vite/StyledModeDoc.vue @@ -13,7 +13,7 @@ export default { basic: ` import { createApp } from 'vue'; import PrimeVue from 'primevue/config'; -import Aura from 'primevue/themes/aura'; +import Aura from '@primevue/themes/aura'; const app = createApp(App); app.use(PrimeVue, { diff --git a/doc/vite/UnstyledModeDoc.vue b/apps/showcase/doc/vite/UnstyledModeDoc.vue similarity index 100% rename from doc/vite/UnstyledModeDoc.vue rename to apps/showcase/doc/vite/UnstyledModeDoc.vue diff --git a/doc/vite/UsageDoc.vue b/apps/showcase/doc/vite/UsageDoc.vue similarity index 100% rename from doc/vite/UsageDoc.vue rename to apps/showcase/doc/vite/UsageDoc.vue diff --git a/doc/vite/videos/CreateVueDoc.vue b/apps/showcase/doc/vite/videos/CreateVueDoc.vue similarity index 100% rename from doc/vite/videos/CreateVueDoc.vue rename to apps/showcase/doc/vite/videos/CreateVueDoc.vue diff --git a/error-backup.vue b/apps/showcase/error-backup.vue similarity index 100% rename from error-backup.vue rename to apps/showcase/error-backup.vue diff --git a/error.vue b/apps/showcase/error.vue similarity index 100% rename from error.vue rename to apps/showcase/error.vue diff --git a/layouts/AppConfigurator.vue b/apps/showcase/layouts/AppConfigurator.vue similarity index 98% rename from layouts/AppConfigurator.vue rename to apps/showcase/layouts/AppConfigurator.vue index c6cd66867e..c7125d5e5c 100755 --- a/layouts/AppConfigurator.vue +++ b/apps/showcase/layouts/AppConfigurator.vue @@ -43,10 +43,10 @@ diff --git a/components/lib/datatable/FooterCell.vue b/components/lib/datatable/FooterCell.vue deleted file mode 100644 index 4d6ee856c6..0000000000 --- a/components/lib/datatable/FooterCell.vue +++ /dev/null @@ -1,104 +0,0 @@ - - - diff --git a/components/lib/datatable/HeaderCell.vue b/components/lib/datatable/HeaderCell.vue deleted file mode 100644 index 2e87b3917f..0000000000 --- a/components/lib/datatable/HeaderCell.vue +++ /dev/null @@ -1,377 +0,0 @@ - - - diff --git a/components/lib/datatable/package.json b/components/lib/datatable/package.json deleted file mode 100644 index e1180374d2..0000000000 --- a/components/lib/datatable/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./datatable.mjs", - "module": "./datatable.mjs", - "types": "./DataTable.d.ts", - "browser": { - "./sfc": "./DataTable.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/datatable/style/package.json b/components/lib/datatable/style/package.json deleted file mode 100644 index bdddfb85f0..0000000000 --- a/components/lib/datatable/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./datatablestyle.mjs", - "module": "./datatablestyle.mjs", - "types": "./DataTableStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/dataview/package.json b/components/lib/dataview/package.json deleted file mode 100644 index 813cf4aa49..0000000000 --- a/components/lib/dataview/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./dataview.mjs", - "module": "./dataview.mjs", - "types": "./DataView.d.ts", - "browser": { - "./sfc": "./DataView.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/dataview/style/package.json b/components/lib/dataview/style/package.json deleted file mode 100644 index f89f0494fc..0000000000 --- a/components/lib/dataview/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./dataviewstyle.mjs", - "module": "./dataviewstyle.mjs", - "types": "./DataViewStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/datepicker/package.json b/components/lib/datepicker/package.json deleted file mode 100644 index db082aa950..0000000000 --- a/components/lib/datepicker/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./datepicker.mjs", - "module": "./datepicker.mjs", - "types": "./DatePicker.d.ts", - "browser": { - "./sfc": "./DatePicker.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/datepicker/style/package.json b/components/lib/datepicker/style/package.json deleted file mode 100644 index fd28851e20..0000000000 --- a/components/lib/datepicker/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./datepickerstyle.mjs", - "module": "./datepickerstyle.mjs", - "types": "./DatePickerStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/deferredcontent/package.json b/components/lib/deferredcontent/package.json deleted file mode 100644 index 05cdcf5b45..0000000000 --- a/components/lib/deferredcontent/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./deferredcontent.mjs", - "module": "./deferredcontent.mjs", - "types": "./DeferredContent.d.ts", - "browser": { - "./sfc": "./DeferredContent.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/deferredcontent/style/DeferredContentStyle.js b/components/lib/deferredcontent/style/DeferredContentStyle.js deleted file mode 100644 index 7a4e543fd5..0000000000 --- a/components/lib/deferredcontent/style/DeferredContentStyle.js +++ /dev/null @@ -1,5 +0,0 @@ -import BaseStyle from 'primevue/base/style'; - -export default BaseStyle.extend({ - name: 'deferredcontent' -}); diff --git a/components/lib/deferredcontent/style/package.json b/components/lib/deferredcontent/style/package.json deleted file mode 100644 index b899f228c0..0000000000 --- a/components/lib/deferredcontent/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./deferredcontentstyle.mjs", - "module": "./deferredcontentstyle.mjs", - "types": "./DeferredContentStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/dialog/package.json b/components/lib/dialog/package.json deleted file mode 100644 index 008ec521ff..0000000000 --- a/components/lib/dialog/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./dialog.mjs", - "module": "./dialog.mjs", - "types": "./Dialog.d.ts", - "browser": { - "./sfc": "./Dialog.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/dialog/style/package.json b/components/lib/dialog/style/package.json deleted file mode 100644 index 858b912efd..0000000000 --- a/components/lib/dialog/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./dialogstyle.mjs", - "module": "./dialogstyle.mjs", - "types": "./DialogStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/dialogservice/package.json b/components/lib/dialogservice/package.json deleted file mode 100644 index 8bc2abd3f4..0000000000 --- a/components/lib/dialogservice/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./dialogservice.mjs", - "module": "./dialogservice.mjs", - "types": "./DialogService.d.ts" -} diff --git a/components/lib/divider/package.json b/components/lib/divider/package.json deleted file mode 100644 index d7b6e8a4c1..0000000000 --- a/components/lib/divider/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./divider.mjs", - "module": "./divider.mjs", - "types": "./Divider.d.ts", - "browser": { - "./sfc": "./Divider.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/divider/style/package.json b/components/lib/divider/style/package.json deleted file mode 100644 index bb419c43dc..0000000000 --- a/components/lib/divider/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./dividerstyle.mjs", - "module": "./dividerstyle.mjs", - "types": "./DividerStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/dock/package.json b/components/lib/dock/package.json deleted file mode 100644 index 645d0b208e..0000000000 --- a/components/lib/dock/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./dock.mjs", - "module": "./dock.mjs", - "types": "./Dock.d.ts", - "browser": { - "./sfc": "./Dock.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/dock/style/package.json b/components/lib/dock/style/package.json deleted file mode 100644 index 7e3482ecd5..0000000000 --- a/components/lib/dock/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./dockstyle.mjs", - "module": "./dockstyle.mjs", - "types": "./DockStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/drawer/package.json b/components/lib/drawer/package.json deleted file mode 100644 index 4b5b4cfc87..0000000000 --- a/components/lib/drawer/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./drawer.mjs", - "module": "./drawer.mjs", - "types": "./Drawer.d.ts", - "browser": { - "./sfc": "./Drawer.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/drawer/style/package.json b/components/lib/drawer/style/package.json deleted file mode 100644 index b06bde7d93..0000000000 --- a/components/lib/drawer/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./drawerstyle.mjs", - "module": "./drawerstyle.mjs", - "types": "./DrawerStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/dropdown/package.json b/components/lib/dropdown/package.json deleted file mode 100644 index 17e8ff87d1..0000000000 --- a/components/lib/dropdown/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./dropdown.mjs", - "module": "./dropdown.mjs", - "types": "./Dropdown.d.ts", - "browser": { - "./sfc": "./Dropdown.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/dropdown/style/DropdownStyle.js b/components/lib/dropdown/style/DropdownStyle.js deleted file mode 100644 index ff5bcd0afc..0000000000 --- a/components/lib/dropdown/style/DropdownStyle.js +++ /dev/null @@ -1,5 +0,0 @@ -import BaseStyle from 'primevue/base/style'; - -export default BaseStyle.extend({ - name: 'dropdown' -}); diff --git a/components/lib/dropdown/style/package.json b/components/lib/dropdown/style/package.json deleted file mode 100644 index bf739b9757..0000000000 --- a/components/lib/dropdown/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./dropdownstyle.mjs", - "module": "./dropdownstyle.mjs", - "types": "./DropdownStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/dynamicdialog/package.json b/components/lib/dynamicdialog/package.json deleted file mode 100644 index 9048d8a2bd..0000000000 --- a/components/lib/dynamicdialog/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./dynamicdialog.mjs", - "module": "./dynamicdialog.mjs", - "types": "./DynamicDialog.d.ts", - "browser": { - "./sfc": "./DynamicDialog.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/dynamicdialog/style/DynamicDialogStyle.js b/components/lib/dynamicdialog/style/DynamicDialogStyle.js deleted file mode 100644 index 533a35adc8..0000000000 --- a/components/lib/dynamicdialog/style/DynamicDialogStyle.js +++ /dev/null @@ -1,5 +0,0 @@ -import BaseStyle from 'primevue/base/style'; - -export default BaseStyle.extend({ - name: 'dynamicdialog' -}); diff --git a/components/lib/dynamicdialog/style/package.json b/components/lib/dynamicdialog/style/package.json deleted file mode 100644 index 6e8ca8c391..0000000000 --- a/components/lib/dynamicdialog/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./dynamicdialogstyle.mjs", - "module": "./dynamicdialogstyle.mjs", - "types": "./DynamicDialogStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/dynamicdialogeventbus/DynamicDialogEventBus.js b/components/lib/dynamicdialogeventbus/DynamicDialogEventBus.js deleted file mode 100644 index 602940783d..0000000000 --- a/components/lib/dynamicdialogeventbus/DynamicDialogEventBus.js +++ /dev/null @@ -1,3 +0,0 @@ -import { EventBus } from 'primevue/utils'; - -export default EventBus(); diff --git a/components/lib/dynamicdialogeventbus/package.json b/components/lib/dynamicdialogeventbus/package.json deleted file mode 100644 index 582e40d888..0000000000 --- a/components/lib/dynamicdialogeventbus/package.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "main": "./dynamicdialogeventbus.mjs", - "module": "./dynamicdialogeventbus.mjs" -} diff --git a/components/lib/editor/package.json b/components/lib/editor/package.json deleted file mode 100644 index 11a0c9f32d..0000000000 --- a/components/lib/editor/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./editor.mjs", - "module": "./editor.mjs", - "types": "./Editor.d.ts", - "browser": { - "./sfc": "./Editor.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/editor/style/package.json b/components/lib/editor/style/package.json deleted file mode 100644 index 155c0b69a7..0000000000 --- a/components/lib/editor/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./editorstyle.mjs", - "module": "./editorstyle.mjs", - "types": "./EditorStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/fieldset/package.json b/components/lib/fieldset/package.json deleted file mode 100644 index 4c68a086c6..0000000000 --- a/components/lib/fieldset/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./fieldset.mjs", - "module": "./fieldset.mjs", - "types": "./Fieldset.d.ts", - "browser": { - "./sfc": "./Fieldset.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/fieldset/style/package.json b/components/lib/fieldset/style/package.json deleted file mode 100644 index 6107f7f448..0000000000 --- a/components/lib/fieldset/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./fieldsetstyle.mjs", - "module": "./fieldsetstyle.mjs", - "types": "./FieldsetStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/fileupload/package.json b/components/lib/fileupload/package.json deleted file mode 100644 index fd6e64d554..0000000000 --- a/components/lib/fileupload/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./fileupload.mjs", - "module": "./fileupload.mjs", - "types": "./FileUpload.d.ts", - "browser": { - "./sfc": "./FileUpload.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/fileupload/style/package.json b/components/lib/fileupload/style/package.json deleted file mode 100644 index 32abe80263..0000000000 --- a/components/lib/fileupload/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./fileuploadstyle.mjs", - "module": "./fileuploadstyle.mjs", - "types": "./FileUploadStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/floatlabel/package.json b/components/lib/floatlabel/package.json deleted file mode 100644 index 5c5b7626d4..0000000000 --- a/components/lib/floatlabel/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./floatlabel.mjs", - "module": "./floatlabel.mjs", - "types": "./FloatLabel.d.ts", - "browser": { - "./sfc": "./FloatLabel.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/floatlabel/style/package.json b/components/lib/floatlabel/style/package.json deleted file mode 100644 index 87bc28982b..0000000000 --- a/components/lib/floatlabel/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./floatlabelstyle.mjs", - "module": "./floatlabelstyle.mjs", - "types": "./FloatLabelStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/focustrap/BaseFocusTrap.js b/components/lib/focustrap/BaseFocusTrap.js deleted file mode 100644 index 22431a156f..0000000000 --- a/components/lib/focustrap/BaseFocusTrap.js +++ /dev/null @@ -1,8 +0,0 @@ -import BaseDirective from 'primevue/basedirective'; -import FocusTrapStyle from 'primevue/focustrap/style'; - -const BaseFocusTrap = BaseDirective.extend({ - style: FocusTrapStyle -}); - -export default BaseFocusTrap; diff --git a/components/lib/focustrap/package.json b/components/lib/focustrap/package.json deleted file mode 100644 index 4d073e39e6..0000000000 --- a/components/lib/focustrap/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./focustrap.mjs", - "module": "./focustrap.mjs", - "types": "./FocusTrap.d.ts" -} diff --git a/components/lib/focustrap/style/FocusTrapStyle.js b/components/lib/focustrap/style/FocusTrapStyle.js deleted file mode 100644 index ea23215b92..0000000000 --- a/components/lib/focustrap/style/FocusTrapStyle.js +++ /dev/null @@ -1,5 +0,0 @@ -import BaseStyle from 'primevue/base/style'; - -export default BaseStyle.extend({ - name: 'focustrap-directive' -}); diff --git a/components/lib/focustrap/style/package.json b/components/lib/focustrap/style/package.json deleted file mode 100644 index a745b2a525..0000000000 --- a/components/lib/focustrap/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./focustrapstyle.mjs", - "module": "./focustrapstyle.mjs", - "types": "./FocusTrapStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/galleria/package.json b/components/lib/galleria/package.json deleted file mode 100644 index a00db614f0..0000000000 --- a/components/lib/galleria/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./galleria.mjs", - "module": "./galleria.mjs", - "types": "./Galleria.d.ts", - "browser": { - "./sfc": "./Galleria.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/galleria/style/package.json b/components/lib/galleria/style/package.json deleted file mode 100644 index 3192f21139..0000000000 --- a/components/lib/galleria/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./galleriastyle.mjs", - "module": "./galleriastyle.mjs", - "types": "./GalleriaStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/iconfield/package.json b/components/lib/iconfield/package.json deleted file mode 100644 index a8030eca1e..0000000000 --- a/components/lib/iconfield/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./iconfield.mjs", - "module": "./iconfield.mjs", - "types": "./IconField.d.ts", - "browser": { - "./sfc": "./IconField.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/iconfield/style/package.json b/components/lib/iconfield/style/package.json deleted file mode 100644 index 4bd491ae8e..0000000000 --- a/components/lib/iconfield/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./iconfieldstyle.mjs", - "module": "./iconfieldstyle.mjs", - "types": "./IconFieldStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/icons/angledoubledown/index.d.ts b/components/lib/icons/angledoubledown/index.d.ts deleted file mode 100644 index cb0234d390..0000000000 --- a/components/lib/icons/angledoubledown/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { GlobalComponentConstructor } from '../../ts-helpers'; -import { Icon } from '../index'; - -declare class AngleDoubleDownIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - AngleDoubleDownIcon: GlobalComponentConstructor; - } -} - -export default AngleDoubleDownIcon; diff --git a/components/lib/icons/angledoubledown/index.vue b/components/lib/icons/angledoubledown/index.vue deleted file mode 100644 index c5c98e98ed..0000000000 --- a/components/lib/icons/angledoubledown/index.vue +++ /dev/null @@ -1,18 +0,0 @@ - - diff --git a/components/lib/icons/angledoubledown/package.json b/components/lib/icons/angledoubledown/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/angledoubledown/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/angledoubleleft/index.d.ts b/components/lib/icons/angledoubleleft/index.d.ts deleted file mode 100644 index ffa75c79eb..0000000000 --- a/components/lib/icons/angledoubleleft/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class AngleDoubleLeftIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - AngleDoubleLeftIcon: GlobalComponentConstructor; - } -} - -export default AngleDoubleLeftIcon; diff --git a/components/lib/icons/angledoubleleft/index.vue b/components/lib/icons/angledoubleleft/index.vue deleted file mode 100644 index effedeed83..0000000000 --- a/components/lib/icons/angledoubleleft/index.vue +++ /dev/null @@ -1,18 +0,0 @@ - - diff --git a/components/lib/icons/angledoubleleft/package.json b/components/lib/icons/angledoubleleft/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/angledoubleleft/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/angledoubleright/index.d.ts b/components/lib/icons/angledoubleright/index.d.ts deleted file mode 100644 index fbdeabfcdd..0000000000 --- a/components/lib/icons/angledoubleright/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class AngleDoubleRightIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - AngleDoubleRightIcon: GlobalComponentConstructor; - } -} - -export default AngleDoubleRightIcon; diff --git a/components/lib/icons/angledoubleright/index.vue b/components/lib/icons/angledoubleright/index.vue deleted file mode 100644 index f0dd340316..0000000000 --- a/components/lib/icons/angledoubleright/index.vue +++ /dev/null @@ -1,18 +0,0 @@ - - diff --git a/components/lib/icons/angledoubleright/package.json b/components/lib/icons/angledoubleright/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/angledoubleright/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/angledoubleup/index.d.ts b/components/lib/icons/angledoubleup/index.d.ts deleted file mode 100644 index ef26df0be7..0000000000 --- a/components/lib/icons/angledoubleup/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class AngleDoubleUpIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - AngleDoubleUpIcon: GlobalComponentConstructor; - } -} - -export default AngleDoubleUpIcon; diff --git a/components/lib/icons/angledoubleup/index.vue b/components/lib/icons/angledoubleup/index.vue deleted file mode 100644 index b2ee7c1937..0000000000 --- a/components/lib/icons/angledoubleup/index.vue +++ /dev/null @@ -1,18 +0,0 @@ - - diff --git a/components/lib/icons/angledoubleup/package.json b/components/lib/icons/angledoubleup/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/angledoubleup/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/angledown/index.d.ts b/components/lib/icons/angledown/index.d.ts deleted file mode 100644 index 1682a6ff68..0000000000 --- a/components/lib/icons/angledown/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class AngleDownIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - AngleDownIcon: GlobalComponentConstructor; - } -} - -export default AngleDownIcon; diff --git a/components/lib/icons/angledown/index.vue b/components/lib/icons/angledown/index.vue deleted file mode 100644 index e5848a8ad6..0000000000 --- a/components/lib/icons/angledown/index.vue +++ /dev/null @@ -1,16 +0,0 @@ - - diff --git a/components/lib/icons/angledown/package.json b/components/lib/icons/angledown/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/angledown/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/angleleft/index.d.ts b/components/lib/icons/angleleft/index.d.ts deleted file mode 100644 index 82c0bfae27..0000000000 --- a/components/lib/icons/angleleft/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class AngleLeftIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - AngleLeftIcon: GlobalComponentConstructor; - } -} - -export default AngleLeftIcon; diff --git a/components/lib/icons/angleleft/index.vue b/components/lib/icons/angleleft/index.vue deleted file mode 100644 index 6c28947205..0000000000 --- a/components/lib/icons/angleleft/index.vue +++ /dev/null @@ -1,16 +0,0 @@ - - diff --git a/components/lib/icons/angleleft/package.json b/components/lib/icons/angleleft/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/angleleft/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/angleright/index.d.ts b/components/lib/icons/angleright/index.d.ts deleted file mode 100644 index d9d00be6cc..0000000000 --- a/components/lib/icons/angleright/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class AngleRightIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - AngleRightIcon: GlobalComponentConstructor; - } -} - -export default AngleRightIcon; diff --git a/components/lib/icons/angleright/index.vue b/components/lib/icons/angleright/index.vue deleted file mode 100644 index a1cce1e8de..0000000000 --- a/components/lib/icons/angleright/index.vue +++ /dev/null @@ -1,16 +0,0 @@ - - diff --git a/components/lib/icons/angleright/package.json b/components/lib/icons/angleright/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/angleright/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/angleup/index.d.ts b/components/lib/icons/angleup/index.d.ts deleted file mode 100644 index 7d91df0938..0000000000 --- a/components/lib/icons/angleup/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class AngleUpIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - AngleUpIcon: GlobalComponentConstructor; - } -} - -export default AngleUpIcon; diff --git a/components/lib/icons/angleup/index.vue b/components/lib/icons/angleup/index.vue deleted file mode 100644 index 683a09e8dd..0000000000 --- a/components/lib/icons/angleup/index.vue +++ /dev/null @@ -1,16 +0,0 @@ - - diff --git a/components/lib/icons/angleup/package.json b/components/lib/icons/angleup/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/angleup/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/arrowdown/index.d.ts b/components/lib/icons/arrowdown/index.d.ts deleted file mode 100644 index cdce64bad7..0000000000 --- a/components/lib/icons/arrowdown/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class ArrowDownIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - ArrowDownIcon: GlobalComponentConstructor; - } -} - -export default ArrowDownIcon; diff --git a/components/lib/icons/arrowdown/index.vue b/components/lib/icons/arrowdown/index.vue deleted file mode 100644 index 5c168330e8..0000000000 --- a/components/lib/icons/arrowdown/index.vue +++ /dev/null @@ -1,19 +0,0 @@ - - - diff --git a/components/lib/icons/arrowdown/package.json b/components/lib/icons/arrowdown/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/arrowdown/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/arrowup/index.d.ts b/components/lib/icons/arrowup/index.d.ts deleted file mode 100644 index 8d410e0a68..0000000000 --- a/components/lib/icons/arrowup/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class ArrowUpIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - ArrowUpIcon: GlobalComponentConstructor; - } -} - -export default ArrowUpIcon; diff --git a/components/lib/icons/arrowup/index.vue b/components/lib/icons/arrowup/index.vue deleted file mode 100644 index 458b8add89..0000000000 --- a/components/lib/icons/arrowup/index.vue +++ /dev/null @@ -1,19 +0,0 @@ - - - diff --git a/components/lib/icons/arrowup/package.json b/components/lib/icons/arrowup/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/arrowup/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/ban/index.d.ts b/components/lib/icons/ban/index.d.ts deleted file mode 100644 index 5454cbeeed..0000000000 --- a/components/lib/icons/ban/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class BanIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - BanIcon: GlobalComponentConstructor; - } -} - -export default BanIcon; diff --git a/components/lib/icons/ban/index.vue b/components/lib/icons/ban/index.vue deleted file mode 100644 index 03224f2606..0000000000 --- a/components/lib/icons/ban/index.vue +++ /dev/null @@ -1,17 +0,0 @@ - - - diff --git a/components/lib/icons/ban/package.json b/components/lib/icons/ban/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/ban/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/bars/index.d.ts b/components/lib/icons/bars/index.d.ts deleted file mode 100644 index 01302e39bd..0000000000 --- a/components/lib/icons/bars/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class BarsIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - BarsIcon: GlobalComponentConstructor; - } -} - -export default BarsIcon; diff --git a/components/lib/icons/bars/index.vue b/components/lib/icons/bars/index.vue deleted file mode 100644 index 7f3a5afb7c..0000000000 --- a/components/lib/icons/bars/index.vue +++ /dev/null @@ -1,18 +0,0 @@ - - diff --git a/components/lib/icons/bars/package.json b/components/lib/icons/bars/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/bars/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/blank/index.d.ts b/components/lib/icons/blank/index.d.ts deleted file mode 100644 index 3b32ead726..0000000000 --- a/components/lib/icons/blank/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class BlankIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - BlankIcon: GlobalComponentConstructor; - } -} - -export default BlankIcon; diff --git a/components/lib/icons/blank/index.vue b/components/lib/icons/blank/index.vue deleted file mode 100644 index 95d12e2eee..0000000000 --- a/components/lib/icons/blank/index.vue +++ /dev/null @@ -1,13 +0,0 @@ - - diff --git a/components/lib/icons/blank/package.json b/components/lib/icons/blank/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/blank/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/calendar/index.d.ts b/components/lib/icons/calendar/index.d.ts deleted file mode 100644 index 8f974393b8..0000000000 --- a/components/lib/icons/calendar/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class CalendarIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - CalendarIcon: GlobalComponentConstructor; - } -} - -export default CalendarIcon; diff --git a/components/lib/icons/calendar/index.vue b/components/lib/icons/calendar/index.vue deleted file mode 100644 index 9d6feb976f..0000000000 --- a/components/lib/icons/calendar/index.vue +++ /dev/null @@ -1,16 +0,0 @@ - - diff --git a/components/lib/icons/calendar/package.json b/components/lib/icons/calendar/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/calendar/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/check/index.d.ts b/components/lib/icons/check/index.d.ts deleted file mode 100644 index cab7a5338f..0000000000 --- a/components/lib/icons/check/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class CheckIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - CheckIcon: GlobalComponentConstructor; - } -} - -export default CheckIcon; diff --git a/components/lib/icons/check/index.vue b/components/lib/icons/check/index.vue deleted file mode 100644 index da217216cb..0000000000 --- a/components/lib/icons/check/index.vue +++ /dev/null @@ -1,16 +0,0 @@ - - diff --git a/components/lib/icons/check/package.json b/components/lib/icons/check/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/check/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/chevrondown/index.d.ts b/components/lib/icons/chevrondown/index.d.ts deleted file mode 100644 index e7fc946a42..0000000000 --- a/components/lib/icons/chevrondown/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class ChevronDownIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - ChevronDownIcon: GlobalComponentConstructor; - } -} - -export default ChevronDownIcon; diff --git a/components/lib/icons/chevrondown/index.vue b/components/lib/icons/chevrondown/index.vue deleted file mode 100644 index 1e5efac192..0000000000 --- a/components/lib/icons/chevrondown/index.vue +++ /dev/null @@ -1,16 +0,0 @@ - - diff --git a/components/lib/icons/chevrondown/package.json b/components/lib/icons/chevrondown/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/chevrondown/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/chevronleft/index.d.ts b/components/lib/icons/chevronleft/index.d.ts deleted file mode 100644 index dfa195fa89..0000000000 --- a/components/lib/icons/chevronleft/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class ChevronLeftIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - ChevronLeftIcon: GlobalComponentConstructor; - } -} - -export default ChevronLeftIcon; diff --git a/components/lib/icons/chevronleft/index.vue b/components/lib/icons/chevronleft/index.vue deleted file mode 100644 index a92584aa90..0000000000 --- a/components/lib/icons/chevronleft/index.vue +++ /dev/null @@ -1,16 +0,0 @@ - - diff --git a/components/lib/icons/chevronleft/package.json b/components/lib/icons/chevronleft/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/chevronleft/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/chevronright/index.d.ts b/components/lib/icons/chevronright/index.d.ts deleted file mode 100644 index e586e7d701..0000000000 --- a/components/lib/icons/chevronright/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class ChevronRightIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - ChevronRightIcon: GlobalComponentConstructor; - } -} - -export default ChevronRightIcon; diff --git a/components/lib/icons/chevronright/index.vue b/components/lib/icons/chevronright/index.vue deleted file mode 100644 index 10da885937..0000000000 --- a/components/lib/icons/chevronright/index.vue +++ /dev/null @@ -1,16 +0,0 @@ - - diff --git a/components/lib/icons/chevronright/package.json b/components/lib/icons/chevronright/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/chevronright/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/chevronup/index.d.ts b/components/lib/icons/chevronup/index.d.ts deleted file mode 100644 index f0aa3d5138..0000000000 --- a/components/lib/icons/chevronup/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class ChevronUpIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - ChevronUpIcon: GlobalComponentConstructor; - } -} - -export default ChevronUpIcon; diff --git a/components/lib/icons/chevronup/index.vue b/components/lib/icons/chevronup/index.vue deleted file mode 100644 index 98e96de64e..0000000000 --- a/components/lib/icons/chevronup/index.vue +++ /dev/null @@ -1,16 +0,0 @@ - - diff --git a/components/lib/icons/chevronup/package.json b/components/lib/icons/chevronup/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/chevronup/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/exclamationtriangle/index.d.ts b/components/lib/icons/exclamationtriangle/index.d.ts deleted file mode 100644 index f6eca93750..0000000000 --- a/components/lib/icons/exclamationtriangle/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class ExclamationTriangleIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - ExclamationTriangleIcon: GlobalComponentConstructor; - } -} - -export default ExclamationTriangleIcon; diff --git a/components/lib/icons/exclamationtriangle/index.vue b/components/lib/icons/exclamationtriangle/index.vue deleted file mode 100644 index b5f1a48085..0000000000 --- a/components/lib/icons/exclamationtriangle/index.vue +++ /dev/null @@ -1,25 +0,0 @@ - - - diff --git a/components/lib/icons/exclamationtriangle/package.json b/components/lib/icons/exclamationtriangle/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/exclamationtriangle/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/eye/index.d.ts b/components/lib/icons/eye/index.d.ts deleted file mode 100644 index aeeb38104f..0000000000 --- a/components/lib/icons/eye/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class EyeIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - EyeIcon: GlobalComponentConstructor; - } -} - -export default EyeIcon; diff --git a/components/lib/icons/eye/index.vue b/components/lib/icons/eye/index.vue deleted file mode 100644 index caf60c577c..0000000000 --- a/components/lib/icons/eye/index.vue +++ /dev/null @@ -1,18 +0,0 @@ - - diff --git a/components/lib/icons/eye/package.json b/components/lib/icons/eye/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/eye/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/eyeslash/index.d.ts b/components/lib/icons/eyeslash/index.d.ts deleted file mode 100644 index edf508717d..0000000000 --- a/components/lib/icons/eyeslash/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class EyeSlashIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - EyeSlashIcon: GlobalComponentConstructor; - } -} - -export default EyeSlashIcon; diff --git a/components/lib/icons/eyeslash/index.vue b/components/lib/icons/eyeslash/index.vue deleted file mode 100644 index 484d787100..0000000000 --- a/components/lib/icons/eyeslash/index.vue +++ /dev/null @@ -1,19 +0,0 @@ - - - diff --git a/components/lib/icons/eyeslash/package.json b/components/lib/icons/eyeslash/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/eyeslash/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/filter/index.d.ts b/components/lib/icons/filter/index.d.ts deleted file mode 100644 index 475d2ef123..0000000000 --- a/components/lib/icons/filter/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class FilterIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - FilterIcon: GlobalComponentConstructor; - } -} - -export default FilterIcon; diff --git a/components/lib/icons/filter/index.vue b/components/lib/icons/filter/index.vue deleted file mode 100644 index dbc45ed8f5..0000000000 --- a/components/lib/icons/filter/index.vue +++ /dev/null @@ -1,17 +0,0 @@ - - - diff --git a/components/lib/icons/filter/package.json b/components/lib/icons/filter/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/filter/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/filterslash/index.d.ts b/components/lib/icons/filterslash/index.d.ts deleted file mode 100644 index 904c30a003..0000000000 --- a/components/lib/icons/filterslash/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class FilterSlashIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - FilterSlashIcon: GlobalComponentConstructor; - } -} - -export default FilterSlashIcon; diff --git a/components/lib/icons/filterslash/index.vue b/components/lib/icons/filterslash/index.vue deleted file mode 100644 index b8f1175400..0000000000 --- a/components/lib/icons/filterslash/index.vue +++ /dev/null @@ -1,19 +0,0 @@ - - - diff --git a/components/lib/icons/filterslash/package.json b/components/lib/icons/filterslash/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/filterslash/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/index.d.ts b/components/lib/icons/index.d.ts deleted file mode 100644 index 3d04575007..0000000000 --- a/components/lib/icons/index.d.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { DefineComponent, EmitFn } from '../ts-helpers'; - -export interface IconProps { - label?: string | undefined; - spin?: boolean; -} - -export interface IconSlots {} - -export interface IconEmitsOptions {} - -export declare type IconEmits = EmitFn; - -declare const Icon: DefineComponent; diff --git a/components/lib/icons/infocircle/index.d.ts b/components/lib/icons/infocircle/index.d.ts deleted file mode 100644 index 879752aa7a..0000000000 --- a/components/lib/icons/infocircle/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class InfoCircleIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - InfoCircleIcon: GlobalComponentConstructor; - } -} - -export default InfoCircleIcon; diff --git a/components/lib/icons/infocircle/index.vue b/components/lib/icons/infocircle/index.vue deleted file mode 100644 index f5434f1164..0000000000 --- a/components/lib/icons/infocircle/index.vue +++ /dev/null @@ -1,19 +0,0 @@ - - - diff --git a/components/lib/icons/infocircle/package.json b/components/lib/icons/infocircle/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/infocircle/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/minus/index.d.ts b/components/lib/icons/minus/index.d.ts deleted file mode 100644 index 83fd7cbe32..0000000000 --- a/components/lib/icons/minus/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class MinusIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - MinusIcon: GlobalComponentConstructor; - } -} - -export default MinusIcon; diff --git a/components/lib/icons/minus/index.vue b/components/lib/icons/minus/index.vue deleted file mode 100644 index 593b0e60a9..0000000000 --- a/components/lib/icons/minus/index.vue +++ /dev/null @@ -1,16 +0,0 @@ - - diff --git a/components/lib/icons/minus/package.json b/components/lib/icons/minus/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/minus/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/pencil/index.d.ts b/components/lib/icons/pencil/index.d.ts deleted file mode 100644 index 0ecf0ae412..0000000000 --- a/components/lib/icons/pencil/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class PencilIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - PencilIcon: GlobalComponentConstructor; - } -} - -export default PencilIcon; diff --git a/components/lib/icons/pencil/index.vue b/components/lib/icons/pencil/index.vue deleted file mode 100644 index 92bd3d41ec..0000000000 --- a/components/lib/icons/pencil/index.vue +++ /dev/null @@ -1,17 +0,0 @@ - - - diff --git a/components/lib/icons/pencil/package.json b/components/lib/icons/pencil/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/pencil/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/plus/index.d.ts b/components/lib/icons/plus/index.d.ts deleted file mode 100644 index fe3b54a19b..0000000000 --- a/components/lib/icons/plus/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class PlusIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - PlusIcon: GlobalComponentConstructor; - } -} - -export default PlusIcon; diff --git a/components/lib/icons/plus/index.vue b/components/lib/icons/plus/index.vue deleted file mode 100644 index 84cd9bdef5..0000000000 --- a/components/lib/icons/plus/index.vue +++ /dev/null @@ -1,17 +0,0 @@ - - - diff --git a/components/lib/icons/plus/package.json b/components/lib/icons/plus/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/plus/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/refresh/index.d.ts b/components/lib/icons/refresh/index.d.ts deleted file mode 100644 index c87d04657b..0000000000 --- a/components/lib/icons/refresh/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class RefreshIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - RefreshIcon: GlobalComponentConstructor; - } -} - -export default RefreshIcon; diff --git a/components/lib/icons/refresh/index.vue b/components/lib/icons/refresh/index.vue deleted file mode 100644 index 23a46f5947..0000000000 --- a/components/lib/icons/refresh/index.vue +++ /dev/null @@ -1,19 +0,0 @@ - - - diff --git a/components/lib/icons/refresh/package.json b/components/lib/icons/refresh/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/refresh/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/search/index.d.ts b/components/lib/icons/search/index.d.ts deleted file mode 100644 index 19a2821c2e..0000000000 --- a/components/lib/icons/search/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class SearchIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - SearchIcon: GlobalComponentConstructor; - } -} - -export default SearchIcon; diff --git a/components/lib/icons/search/index.vue b/components/lib/icons/search/index.vue deleted file mode 100644 index cbba58a1dd..0000000000 --- a/components/lib/icons/search/index.vue +++ /dev/null @@ -1,19 +0,0 @@ - - - diff --git a/components/lib/icons/search/package.json b/components/lib/icons/search/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/search/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/searchminus/index.d.ts b/components/lib/icons/searchminus/index.d.ts deleted file mode 100644 index adc4230951..0000000000 --- a/components/lib/icons/searchminus/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class SearchMinusIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - SearchMinusIcon: GlobalComponentConstructor; - } -} - -export default SearchMinusIcon; diff --git a/components/lib/icons/searchminus/index.vue b/components/lib/icons/searchminus/index.vue deleted file mode 100644 index 169bd7ed33..0000000000 --- a/components/lib/icons/searchminus/index.vue +++ /dev/null @@ -1,19 +0,0 @@ - - - diff --git a/components/lib/icons/searchminus/package.json b/components/lib/icons/searchminus/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/searchminus/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/searchplus/index.d.ts b/components/lib/icons/searchplus/index.d.ts deleted file mode 100644 index 2501c379b9..0000000000 --- a/components/lib/icons/searchplus/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class SearchPlusIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - SearchPlusIcon: GlobalComponentConstructor; - } -} - -export default SearchPlusIcon; diff --git a/components/lib/icons/searchplus/index.vue b/components/lib/icons/searchplus/index.vue deleted file mode 100644 index b228f63931..0000000000 --- a/components/lib/icons/searchplus/index.vue +++ /dev/null @@ -1,19 +0,0 @@ - - - diff --git a/components/lib/icons/searchplus/package.json b/components/lib/icons/searchplus/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/searchplus/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/sortalt/index.d.ts b/components/lib/icons/sortalt/index.d.ts deleted file mode 100644 index 4f02ca0ebe..0000000000 --- a/components/lib/icons/sortalt/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class SortAltIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - SortAltIcon: GlobalComponentConstructor; - } -} - -export default SortAltIcon; diff --git a/components/lib/icons/sortalt/index.vue b/components/lib/icons/sortalt/index.vue deleted file mode 100644 index 348a12ed71..0000000000 --- a/components/lib/icons/sortalt/index.vue +++ /dev/null @@ -1,23 +0,0 @@ - - - diff --git a/components/lib/icons/sortalt/package.json b/components/lib/icons/sortalt/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/sortalt/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/sortamountdown/index.d.ts b/components/lib/icons/sortamountdown/index.d.ts deleted file mode 100644 index 57d3ad0ace..0000000000 --- a/components/lib/icons/sortamountdown/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class SortAmountDownIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - SortAmountDownIcon: GlobalComponentConstructor; - } -} - -export default SortAmountDownIcon; diff --git a/components/lib/icons/sortamountdown/index.vue b/components/lib/icons/sortamountdown/index.vue deleted file mode 100644 index d1481ac83f..0000000000 --- a/components/lib/icons/sortamountdown/index.vue +++ /dev/null @@ -1,17 +0,0 @@ - - - diff --git a/components/lib/icons/sortamountdown/package.json b/components/lib/icons/sortamountdown/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/sortamountdown/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/sortamountupalt/index.d.ts b/components/lib/icons/sortamountupalt/index.d.ts deleted file mode 100644 index c19b03b073..0000000000 --- a/components/lib/icons/sortamountupalt/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class SortAmountUpAltIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - SortAmountUpAltIcon: GlobalComponentConstructor; - } -} - -export default SortAmountUpAltIcon; diff --git a/components/lib/icons/sortamountupalt/index.vue b/components/lib/icons/sortamountupalt/index.vue deleted file mode 100644 index 229d1694bf..0000000000 --- a/components/lib/icons/sortamountupalt/index.vue +++ /dev/null @@ -1,17 +0,0 @@ - - - diff --git a/components/lib/icons/sortamountupalt/package.json b/components/lib/icons/sortamountupalt/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/sortamountupalt/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/spinner/index.d.ts b/components/lib/icons/spinner/index.d.ts deleted file mode 100644 index 7b2e35f2ab..0000000000 --- a/components/lib/icons/spinner/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class SpinnerIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - SpinnerIcon: GlobalComponentConstructor; - } -} - -export default SpinnerIcon; diff --git a/components/lib/icons/spinner/index.vue b/components/lib/icons/spinner/index.vue deleted file mode 100644 index d2fc3e2823..0000000000 --- a/components/lib/icons/spinner/index.vue +++ /dev/null @@ -1,17 +0,0 @@ - - - diff --git a/components/lib/icons/spinner/package.json b/components/lib/icons/spinner/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/spinner/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/star/index.d.ts b/components/lib/icons/star/index.d.ts deleted file mode 100644 index c3f4749f31..0000000000 --- a/components/lib/icons/star/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class StarIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - StarIcon: GlobalComponentConstructor; - } -} - -export default StarIcon; diff --git a/components/lib/icons/star/index.vue b/components/lib/icons/star/index.vue deleted file mode 100644 index aa99c33cc0..0000000000 --- a/components/lib/icons/star/index.vue +++ /dev/null @@ -1,17 +0,0 @@ - - - diff --git a/components/lib/icons/star/package.json b/components/lib/icons/star/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/star/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/starfill/index.d.ts b/components/lib/icons/starfill/index.d.ts deleted file mode 100644 index 5f6e6970a4..0000000000 --- a/components/lib/icons/starfill/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class StarFillIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - StarFillIcon: GlobalComponentConstructor; - } -} - -export default StarFillIcon; diff --git a/components/lib/icons/starfill/index.vue b/components/lib/icons/starfill/index.vue deleted file mode 100644 index ac1934f52b..0000000000 --- a/components/lib/icons/starfill/index.vue +++ /dev/null @@ -1,17 +0,0 @@ - - - diff --git a/components/lib/icons/starfill/package.json b/components/lib/icons/starfill/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/starfill/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/thlarge/index.d.ts b/components/lib/icons/thlarge/index.d.ts deleted file mode 100644 index 2c2231d292..0000000000 --- a/components/lib/icons/thlarge/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class ThLargeIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - ThLargeIcon: GlobalComponentConstructor; - } -} - -export default ThLargeIcon; diff --git a/components/lib/icons/thlarge/index.vue b/components/lib/icons/thlarge/index.vue deleted file mode 100644 index 2d7143c1b0..0000000000 --- a/components/lib/icons/thlarge/index.vue +++ /dev/null @@ -1,19 +0,0 @@ - - - diff --git a/components/lib/icons/thlarge/package.json b/components/lib/icons/thlarge/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/thlarge/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/times/index.d.ts b/components/lib/icons/times/index.d.ts deleted file mode 100644 index 719de8110a..0000000000 --- a/components/lib/icons/times/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class TimesIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - TimesIcon: GlobalComponentConstructor; - } -} - -export default TimesIcon; diff --git a/components/lib/icons/times/index.vue b/components/lib/icons/times/index.vue deleted file mode 100644 index 080d0f803a..0000000000 --- a/components/lib/icons/times/index.vue +++ /dev/null @@ -1,16 +0,0 @@ - - diff --git a/components/lib/icons/times/package.json b/components/lib/icons/times/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/times/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/timescircle/index.d.ts b/components/lib/icons/timescircle/index.d.ts deleted file mode 100644 index 6b69c4ca49..0000000000 --- a/components/lib/icons/timescircle/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class TimesCircleIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - TimesCircleIcon: GlobalComponentConstructor; - } -} - -export default TimesCircleIcon; diff --git a/components/lib/icons/timescircle/index.vue b/components/lib/icons/timescircle/index.vue deleted file mode 100644 index 5c36f04d90..0000000000 --- a/components/lib/icons/timescircle/index.vue +++ /dev/null @@ -1,19 +0,0 @@ - - - diff --git a/components/lib/icons/timescircle/package.json b/components/lib/icons/timescircle/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/timescircle/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/trash/index.d.ts b/components/lib/icons/trash/index.d.ts deleted file mode 100644 index 0e16e6f822..0000000000 --- a/components/lib/icons/trash/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class TrashIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - TrashIcon: GlobalComponentConstructor; - } -} - -export default TrashIcon; diff --git a/components/lib/icons/trash/index.vue b/components/lib/icons/trash/index.vue deleted file mode 100644 index 88fe8f16fc..0000000000 --- a/components/lib/icons/trash/index.vue +++ /dev/null @@ -1,19 +0,0 @@ - - - diff --git a/components/lib/icons/trash/package.json b/components/lib/icons/trash/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/trash/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/undo/index.d.ts b/components/lib/icons/undo/index.d.ts deleted file mode 100644 index d49b5799de..0000000000 --- a/components/lib/icons/undo/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class UndoIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - UndoIcon: GlobalComponentConstructor; - } -} - -export default UndoIcon; diff --git a/components/lib/icons/undo/index.vue b/components/lib/icons/undo/index.vue deleted file mode 100644 index 5cefcc9404..0000000000 --- a/components/lib/icons/undo/index.vue +++ /dev/null @@ -1,19 +0,0 @@ - - - diff --git a/components/lib/icons/undo/package.json b/components/lib/icons/undo/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/undo/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/upload/index.d.ts b/components/lib/icons/upload/index.d.ts deleted file mode 100644 index 0c13203915..0000000000 --- a/components/lib/icons/upload/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class UploadIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - UploadIcon: GlobalComponentConstructor; - } -} - -export default UploadIcon; diff --git a/components/lib/icons/upload/index.vue b/components/lib/icons/upload/index.vue deleted file mode 100644 index 4b4198f60e..0000000000 --- a/components/lib/icons/upload/index.vue +++ /dev/null @@ -1,19 +0,0 @@ - - - diff --git a/components/lib/icons/upload/package.json b/components/lib/icons/upload/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/upload/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/windowmaximize/index.d.ts b/components/lib/icons/windowmaximize/index.d.ts deleted file mode 100644 index 2677c09715..0000000000 --- a/components/lib/icons/windowmaximize/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class WindowMaximizeIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - WindowMaximizeIcon: GlobalComponentConstructor; - } -} - -export default WindowMaximizeIcon; diff --git a/components/lib/icons/windowmaximize/index.vue b/components/lib/icons/windowmaximize/index.vue deleted file mode 100644 index 4bd7ffd179..0000000000 --- a/components/lib/icons/windowmaximize/index.vue +++ /dev/null @@ -1,19 +0,0 @@ - - - diff --git a/components/lib/icons/windowmaximize/package.json b/components/lib/icons/windowmaximize/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/windowmaximize/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/icons/windowminimize/index.d.ts b/components/lib/icons/windowminimize/index.d.ts deleted file mode 100644 index c5a50a2dd5..0000000000 --- a/components/lib/icons/windowminimize/index.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Icon } from '../../icons/index'; -import { GlobalComponentConstructor } from '../../ts-helpers'; - -declare class WindowMinimizeIcon extends Icon {} - -declare module 'vue' { - export interface GlobalComponents { - WindowMinimizeIcon: GlobalComponentConstructor; - } -} - -export default WindowMinimizeIcon; diff --git a/components/lib/icons/windowminimize/index.vue b/components/lib/icons/windowminimize/index.vue deleted file mode 100644 index bfc70d7199..0000000000 --- a/components/lib/icons/windowminimize/index.vue +++ /dev/null @@ -1,19 +0,0 @@ - - - diff --git a/components/lib/icons/windowminimize/package.json b/components/lib/icons/windowminimize/package.json deleted file mode 100644 index 52e6c8eda5..0000000000 --- a/components/lib/icons/windowminimize/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts", - "browser": { - "./sfc": "./index.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/image/package.json b/components/lib/image/package.json deleted file mode 100644 index 41992079a2..0000000000 --- a/components/lib/image/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./image.mjs", - "module": "./image.mjs", - "types": "./Image.d.ts", - "browser": { - "./sfc": "./Image.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/image/style/package.json b/components/lib/image/style/package.json deleted file mode 100644 index 1d0cd636e6..0000000000 --- a/components/lib/image/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./imagestyle.mjs", - "module": "./imagestyle.mjs", - "types": "./ImageStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/inlinemessage/package.json b/components/lib/inlinemessage/package.json deleted file mode 100644 index 8c60ab48a9..0000000000 --- a/components/lib/inlinemessage/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./inlinemessage.mjs", - "module": "./inlinemessage.mjs", - "types": "./InlineMessage.d.ts", - "browser": { - "./sfc": "./InlineMessage.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/inlinemessage/style/package.json b/components/lib/inlinemessage/style/package.json deleted file mode 100644 index 049f34545b..0000000000 --- a/components/lib/inlinemessage/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./inlinemessagestyle.mjs", - "module": "./inlinemessagestyle.mjs", - "types": "./InlineMessageStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/inplace/package.json b/components/lib/inplace/package.json deleted file mode 100644 index 21d84e41aa..0000000000 --- a/components/lib/inplace/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./inplace.mjs", - "module": "./inplace.mjs", - "types": "./Inplace.d.ts", - "browser": { - "./sfc": "./Inplace.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/inplace/style/package.json b/components/lib/inplace/style/package.json deleted file mode 100644 index ea1ba2f7a4..0000000000 --- a/components/lib/inplace/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./inplacestyle.mjs", - "module": "./inplacestyle.mjs", - "types": "./InplaceStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/inputchips/package.json b/components/lib/inputchips/package.json deleted file mode 100644 index 275ee632b7..0000000000 --- a/components/lib/inputchips/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./inputchips.mjs", - "module": "./inputchips.mjs", - "types": "./InputChips.d.ts", - "browser": { - "./sfc": "./InputChips.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/inputchips/style/package.json b/components/lib/inputchips/style/package.json deleted file mode 100644 index e6aa8b271d..0000000000 --- a/components/lib/inputchips/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./inputchipsstyle.mjs", - "module": "./inputchipsstyle.mjs", - "types": "./InputChipsStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/inputgroup/package.json b/components/lib/inputgroup/package.json deleted file mode 100644 index ad4996ff1a..0000000000 --- a/components/lib/inputgroup/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./inputgroup.mjs", - "module": "./inputgroup.mjs", - "types": "./InputGroup.d.ts", - "browser": { - "./sfc": "./InputGroup.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/inputgroup/style/package.json b/components/lib/inputgroup/style/package.json deleted file mode 100644 index a560f1503e..0000000000 --- a/components/lib/inputgroup/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./inputgroupstyle.mjs", - "module": "./inputgroupstyle.mjs", - "types": "./InputGroupStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/inputgroupaddon/package.json b/components/lib/inputgroupaddon/package.json deleted file mode 100644 index aa0a931836..0000000000 --- a/components/lib/inputgroupaddon/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./inputgroupaddon.mjs", - "module": "./inputgroupaddon.mjs", - "types": "./InputGroupAddon.d.ts", - "browser": { - "./sfc": "./InputGroupAddon.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/inputgroupaddon/style/InputGroupAddonStyle.js b/components/lib/inputgroupaddon/style/InputGroupAddonStyle.js deleted file mode 100644 index fec78840b0..0000000000 --- a/components/lib/inputgroupaddon/style/InputGroupAddonStyle.js +++ /dev/null @@ -1,10 +0,0 @@ -import BaseStyle from 'primevue/base/style'; - -const classes = { - root: 'p-inputgroupaddon' -}; - -export default BaseStyle.extend({ - name: 'inputgroupaddon', - classes -}); diff --git a/components/lib/inputgroupaddon/style/package.json b/components/lib/inputgroupaddon/style/package.json deleted file mode 100644 index ebe55b5ee2..0000000000 --- a/components/lib/inputgroupaddon/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./inputgroupaddonstyle.mjs", - "module": "./inputgroupaddonstyle.mjs", - "types": "./InputGroupAddonStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/inputicon/package.json b/components/lib/inputicon/package.json deleted file mode 100644 index 9e4ec4608b..0000000000 --- a/components/lib/inputicon/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./inputicon.mjs", - "module": "./inputicon.mjs", - "types": "./InputIcon.d.ts", - "browser": { - "./sfc": "./InputIcon.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/inputicon/style/InputIconStyle.js b/components/lib/inputicon/style/InputIconStyle.js deleted file mode 100644 index 34976f30de..0000000000 --- a/components/lib/inputicon/style/InputIconStyle.js +++ /dev/null @@ -1,10 +0,0 @@ -import BaseStyle from 'primevue/base/style'; - -const classes = { - root: 'p-inputicon' -}; - -export default BaseStyle.extend({ - name: 'inputicon', - classes -}); diff --git a/components/lib/inputicon/style/package.json b/components/lib/inputicon/style/package.json deleted file mode 100644 index 5c0e79ca48..0000000000 --- a/components/lib/inputicon/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./inputiconstyle.mjs", - "module": "./inputiconstyle.mjs", - "types": "./InputIconStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/inputmask/package.json b/components/lib/inputmask/package.json deleted file mode 100644 index dd857e7633..0000000000 --- a/components/lib/inputmask/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./inputmask.mjs", - "module": "./inputmask.mjs", - "types": "./InputMask.d.ts", - "browser": { - "./sfc": "./InputMask.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/inputmask/style/InputMaskStyle.js b/components/lib/inputmask/style/InputMaskStyle.js deleted file mode 100644 index a5def282bd..0000000000 --- a/components/lib/inputmask/style/InputMaskStyle.js +++ /dev/null @@ -1,10 +0,0 @@ -import BaseStyle from 'primevue/base/style'; - -const classes = { - root: 'p-inputmask' -}; - -export default BaseStyle.extend({ - name: 'inputmask', - classes -}); diff --git a/components/lib/inputmask/style/package.json b/components/lib/inputmask/style/package.json deleted file mode 100644 index 8fd036c7d4..0000000000 --- a/components/lib/inputmask/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./inputmaskstyle.mjs", - "module": "./inputmaskstyle.mjs", - "types": "./InputMaskStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/inputnumber/package.json b/components/lib/inputnumber/package.json deleted file mode 100644 index 01a31b4a77..0000000000 --- a/components/lib/inputnumber/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./inputnumber.mjs", - "module": "./inputnumber.mjs", - "types": "./InputNumber.d.ts", - "browser": { - "./sfc": "./InputNumber.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/inputnumber/style/package.json b/components/lib/inputnumber/style/package.json deleted file mode 100644 index eb928d49f7..0000000000 --- a/components/lib/inputnumber/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./inputnumberstyle.mjs", - "module": "./inputnumberstyle.mjs", - "types": "./InputNumberStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/inputotp/package.json b/components/lib/inputotp/package.json deleted file mode 100644 index 09a16b2921..0000000000 --- a/components/lib/inputotp/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./inputotp.mjs", - "module": "./inputotp.mjs", - "types": "./InputOtp.d.ts", - "browser": { - "./sfc": "./InputOtp.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/inputotp/style/package.json b/components/lib/inputotp/style/package.json deleted file mode 100644 index f3ab5c53e5..0000000000 --- a/components/lib/inputotp/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./inputotpstyle.mjs", - "module": "./inputotpstyle.mjs", - "types": "./InputOtpStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/inputswitch/package.json b/components/lib/inputswitch/package.json deleted file mode 100644 index 98f70e3701..0000000000 --- a/components/lib/inputswitch/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./inputswitch.mjs", - "module": "./inputswitch.mjs", - "types": "./InputSwitch.d.ts", - "browser": { - "./sfc": "./InputSwitch.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/inputswitch/style/InputSwitchStyle.js b/components/lib/inputswitch/style/InputSwitchStyle.js deleted file mode 100644 index a685371389..0000000000 --- a/components/lib/inputswitch/style/InputSwitchStyle.js +++ /dev/null @@ -1,5 +0,0 @@ -import BaseStyle from 'primevue/base/style'; - -export default BaseStyle.extend({ - name: 'inputswitch' -}); diff --git a/components/lib/inputswitch/style/package.json b/components/lib/inputswitch/style/package.json deleted file mode 100644 index f347f1cd81..0000000000 --- a/components/lib/inputswitch/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./inputswitchstyle.mjs", - "module": "./inputswitchstyle.mjs", - "types": "./InputSwitchStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/inputtext/package.json b/components/lib/inputtext/package.json deleted file mode 100644 index d178ec0ae9..0000000000 --- a/components/lib/inputtext/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./inputtext.mjs", - "module": "./inputtext.mjs", - "types": "./InputText.d.ts", - "browser": { - "./sfc": "./InputText.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/inputtext/style/package.json b/components/lib/inputtext/style/package.json deleted file mode 100644 index 9410480192..0000000000 --- a/components/lib/inputtext/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./inputtextstyle.mjs", - "module": "./inputtextstyle.mjs", - "types": "./InputTextStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/knob/package.json b/components/lib/knob/package.json deleted file mode 100644 index 35a0a0efb5..0000000000 --- a/components/lib/knob/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./knob.mjs", - "module": "./knob.mjs", - "types": "./Knob.d.ts", - "browser": { - "./sfc": "./Knob.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/knob/style/package.json b/components/lib/knob/style/package.json deleted file mode 100644 index 721abde412..0000000000 --- a/components/lib/knob/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./knobstyle.mjs", - "module": "./knobstyle.mjs", - "types": "./KnobStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/listbox/package.json b/components/lib/listbox/package.json deleted file mode 100644 index 2262cc33e2..0000000000 --- a/components/lib/listbox/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./listbox.mjs", - "module": "./listbox.mjs", - "types": "./Listbox.d.ts", - "browser": { - "./sfc": "./Listbox.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/listbox/style/package.json b/components/lib/listbox/style/package.json deleted file mode 100644 index 084c6ed8e2..0000000000 --- a/components/lib/listbox/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./listboxstyle.mjs", - "module": "./listboxstyle.mjs", - "types": "./ListboxStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/megamenu/package.json b/components/lib/megamenu/package.json deleted file mode 100644 index 19c84046a6..0000000000 --- a/components/lib/megamenu/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./megamenu.mjs", - "module": "./megamenu.mjs", - "types": "./MegaMenu.d.ts", - "browser": { - "./sfc": "./MegaMenu.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/megamenu/style/package.json b/components/lib/megamenu/style/package.json deleted file mode 100644 index 47344d2f79..0000000000 --- a/components/lib/megamenu/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./megamenustyle.mjs", - "module": "./megamenustyle.mjs", - "types": "./MegaMenuStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/menu/package.json b/components/lib/menu/package.json deleted file mode 100644 index 413963c892..0000000000 --- a/components/lib/menu/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./menu.mjs", - "module": "./menu.mjs", - "types": "./Menu.d.ts", - "browser": { - "./sfc": "./Menu.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/menu/style/package.json b/components/lib/menu/style/package.json deleted file mode 100644 index 127db9b33e..0000000000 --- a/components/lib/menu/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./menustyle.mjs", - "module": "./menustyle.mjs", - "types": "./MenuStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/menubar/package.json b/components/lib/menubar/package.json deleted file mode 100644 index d7c5ef259c..0000000000 --- a/components/lib/menubar/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./menubar.mjs", - "module": "./menubar.mjs", - "types": "./Menubar.d.ts", - "browser": { - "./sfc": "./Menubar.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/menubar/style/package.json b/components/lib/menubar/style/package.json deleted file mode 100644 index 121a9704f4..0000000000 --- a/components/lib/menubar/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./menubarstyle.mjs", - "module": "./menubarstyle.mjs", - "types": "./MenubarStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/message/package.json b/components/lib/message/package.json deleted file mode 100644 index 57eb1665c6..0000000000 --- a/components/lib/message/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./message.mjs", - "module": "./message.mjs", - "types": "./Message.d.ts", - "browser": { - "./sfc": "./Message.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/message/style/package.json b/components/lib/message/style/package.json deleted file mode 100644 index 4c0afee1ad..0000000000 --- a/components/lib/message/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./messagestyle.mjs", - "module": "./messagestyle.mjs", - "types": "./MessageStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/metergroup/package.json b/components/lib/metergroup/package.json deleted file mode 100644 index e972401faa..0000000000 --- a/components/lib/metergroup/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./metergroup.mjs", - "module": "./metergroup.mjs", - "types": "./MeterGroup.d.ts", - "browser": { - "./sfc": "./MeterGroup.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/metergroup/style/package.json b/components/lib/metergroup/style/package.json deleted file mode 100644 index 74a28cc0eb..0000000000 --- a/components/lib/metergroup/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./metergroupstyle.mjs", - "module": "./metergroupstyle.mjs", - "types": "./MeterGroupStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/multiselect/package.json b/components/lib/multiselect/package.json deleted file mode 100644 index e8e7429715..0000000000 --- a/components/lib/multiselect/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./multiselect.mjs", - "module": "./multiselect.mjs", - "types": "./MultiSelect.d.ts", - "browser": { - "./sfc": "./MultiSelect.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/multiselect/style/package.json b/components/lib/multiselect/style/package.json deleted file mode 100644 index 1639695e14..0000000000 --- a/components/lib/multiselect/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./multiselectstyle.mjs", - "module": "./multiselectstyle.mjs", - "types": "./MultiSelectStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/orderlist/package.json b/components/lib/orderlist/package.json deleted file mode 100644 index cd675aa785..0000000000 --- a/components/lib/orderlist/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./orderlist.mjs", - "module": "./orderlist.mjs", - "types": "./OrderList.d.ts", - "browser": { - "./sfc": "./OrderList.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/orderlist/style/package.json b/components/lib/orderlist/style/package.json deleted file mode 100644 index 853ded4e0e..0000000000 --- a/components/lib/orderlist/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./orderliststyle.mjs", - "module": "./orderliststyle.mjs", - "types": "./OrderListStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/organizationchart/package.json b/components/lib/organizationchart/package.json deleted file mode 100644 index 39136c852d..0000000000 --- a/components/lib/organizationchart/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./organizationchart.mjs", - "module": "./organizationchart.mjs", - "types": "./OrganizationChart.d.ts", - "browser": { - "./sfc": "./OrganizationChart.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/organizationchart/style/package.json b/components/lib/organizationchart/style/package.json deleted file mode 100644 index a003dd968f..0000000000 --- a/components/lib/organizationchart/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./organizationchartstyle.mjs", - "module": "./organizationchartstyle.mjs", - "types": "./OrganizationChartStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/overlaybadge/package.json b/components/lib/overlaybadge/package.json deleted file mode 100644 index 84a3afeefc..0000000000 --- a/components/lib/overlaybadge/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./overlaybadge.mjs", - "module": "./overlaybadge.mjs", - "types": "./OverlayBadge.d.ts", - "browser": { - "./sfc": "./OverlayBadge.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/overlaybadge/style/package.json b/components/lib/overlaybadge/style/package.json deleted file mode 100644 index a694db4fed..0000000000 --- a/components/lib/overlaybadge/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./overlaybadgestyle.mjs", - "module": "./overlaybadgestyle.mjs", - "types": "./OverlayBadgeStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/overlayeventbus/OverlayEventBus.js b/components/lib/overlayeventbus/OverlayEventBus.js deleted file mode 100644 index 602940783d..0000000000 --- a/components/lib/overlayeventbus/OverlayEventBus.js +++ /dev/null @@ -1,3 +0,0 @@ -import { EventBus } from 'primevue/utils'; - -export default EventBus(); diff --git a/components/lib/overlayeventbus/package.json b/components/lib/overlayeventbus/package.json deleted file mode 100644 index 49b9619d55..0000000000 --- a/components/lib/overlayeventbus/package.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "main": "./overlayeventbus.mjs", - "module": "./overlayeventbus.mjs" -} diff --git a/components/lib/overlaypanel/package.json b/components/lib/overlaypanel/package.json deleted file mode 100644 index e5136e0ba8..0000000000 --- a/components/lib/overlaypanel/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./overlaypanel.mjs", - "module": "./overlaypanel.mjs", - "types": "./OverlayPanel.d.ts", - "browser": { - "./sfc": "./OverlayPanel.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/overlaypanel/style/OverlayPanelStyle.js b/components/lib/overlaypanel/style/OverlayPanelStyle.js deleted file mode 100644 index 5f49164cb4..0000000000 --- a/components/lib/overlaypanel/style/OverlayPanelStyle.js +++ /dev/null @@ -1,5 +0,0 @@ -import BaseStyle from 'primevue/base/style'; - -export default BaseStyle.extend({ - name: 'overlaypanel' -}); diff --git a/components/lib/overlaypanel/style/package.json b/components/lib/overlaypanel/style/package.json deleted file mode 100644 index b98449574f..0000000000 --- a/components/lib/overlaypanel/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./overlaypanelstyle.mjs", - "module": "./overlaypanelstyle.mjs", - "types": "./OverlayPanelStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/paginator/package.json b/components/lib/paginator/package.json deleted file mode 100644 index 7268c67d48..0000000000 --- a/components/lib/paginator/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./paginator.mjs", - "module": "./paginator.mjs", - "types": "./Paginator.d.ts", - "browser": { - "./sfc": "./Paginator.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/paginator/style/package.json b/components/lib/paginator/style/package.json deleted file mode 100644 index 6f13f9eb04..0000000000 --- a/components/lib/paginator/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./paginatorstyle.mjs", - "module": "./paginatorstyle.mjs", - "types": "./PaginatorStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/panel/package.json b/components/lib/panel/package.json deleted file mode 100644 index 20a307c4d2..0000000000 --- a/components/lib/panel/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./panel.mjs", - "module": "./panel.mjs", - "types": "./Panel.d.ts", - "browser": { - "./sfc": "./Panel.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/panel/style/package.json b/components/lib/panel/style/package.json deleted file mode 100644 index e18b165384..0000000000 --- a/components/lib/panel/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./panelstyle.mjs", - "module": "./panelstyle.mjs", - "types": "./PanelStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/panelmenu/package.json b/components/lib/panelmenu/package.json deleted file mode 100644 index df50c36ff9..0000000000 --- a/components/lib/panelmenu/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./panelmenu.mjs", - "module": "./panelmenu.mjs", - "types": "./PanelMenu.d.ts", - "browser": { - "./sfc": "./PanelMenu.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/panelmenu/style/package.json b/components/lib/panelmenu/style/package.json deleted file mode 100644 index 70d43b0ae1..0000000000 --- a/components/lib/panelmenu/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./panelmenustyle.mjs", - "module": "./panelmenustyle.mjs", - "types": "./PanelMenuStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/passthrough/package.json b/components/lib/passthrough/package.json deleted file mode 100644 index 839cff7f9f..0000000000 --- a/components/lib/passthrough/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts" -} diff --git a/components/lib/password/package.json b/components/lib/password/package.json deleted file mode 100644 index 69347c2cd5..0000000000 --- a/components/lib/password/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./password.mjs", - "module": "./password.mjs", - "types": "./Password.d.ts", - "browser": { - "./sfc": "./Password.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/password/style/package.json b/components/lib/password/style/package.json deleted file mode 100644 index 4084a41401..0000000000 --- a/components/lib/password/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./passwordstyle.mjs", - "module": "./passwordstyle.mjs", - "types": "./PasswordStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/picklist/package.json b/components/lib/picklist/package.json deleted file mode 100644 index 34ef2a3f58..0000000000 --- a/components/lib/picklist/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./picklist.mjs", - "module": "./picklist.mjs", - "types": "./PickList.d.ts", - "browser": { - "./sfc": "./PickList.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/picklist/style/package.json b/components/lib/picklist/style/package.json deleted file mode 100644 index 66032bd7c8..0000000000 --- a/components/lib/picklist/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./pickliststyle.mjs", - "module": "./pickliststyle.mjs", - "types": "./PickListStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/popover/package.json b/components/lib/popover/package.json deleted file mode 100644 index a72eed43a0..0000000000 --- a/components/lib/popover/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./popover.mjs", - "module": "./popover.mjs", - "types": "./Popover.d.ts", - "browser": { - "./sfc": "./Popover.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/popover/style/package.json b/components/lib/popover/style/package.json deleted file mode 100644 index a66e8a459c..0000000000 --- a/components/lib/popover/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./popoverstyle.mjs", - "module": "./popoverstyle.mjs", - "types": "./PopoverStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/portal/package.json b/components/lib/portal/package.json deleted file mode 100644 index 79d3ad15bd..0000000000 --- a/components/lib/portal/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./portal.mjs", - "module": "./portal.mjs", - "types": "./Portal.d.ts", - "browser": { - "./sfc": "./Portal.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/portal/style/PortalStyle.js b/components/lib/portal/style/PortalStyle.js deleted file mode 100644 index 396a98c8c3..0000000000 --- a/components/lib/portal/style/PortalStyle.js +++ /dev/null @@ -1,5 +0,0 @@ -import BaseStyle from 'primevue/base/style'; - -export default BaseStyle.extend({ - name: 'portal' -}); diff --git a/components/lib/portal/style/package.json b/components/lib/portal/style/package.json deleted file mode 100644 index 14b1e38527..0000000000 --- a/components/lib/portal/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./portalstyle.mjs", - "module": "./portalstyle.mjs", - "types": "./PortalStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/progressbar/package.json b/components/lib/progressbar/package.json deleted file mode 100644 index 75c9600c6e..0000000000 --- a/components/lib/progressbar/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./progressbar.mjs", - "module": "./progressbar.mjs", - "types": "./ProgressBar.d.ts", - "browser": { - "./sfc": "./ProgressBar.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/progressbar/style/package.json b/components/lib/progressbar/style/package.json deleted file mode 100644 index 039c022730..0000000000 --- a/components/lib/progressbar/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./progressbarstyle.mjs", - "module": "./progressbarstyle.mjs", - "types": "./ProgressBarStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/progressspinner/package.json b/components/lib/progressspinner/package.json deleted file mode 100644 index 55690b1f7e..0000000000 --- a/components/lib/progressspinner/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./progressspinner.mjs", - "module": "./progressspinner.mjs", - "types": "./ProgressSpinner.d.ts", - "browser": { - "./sfc": "./ProgressSpinner.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/progressspinner/style/package.json b/components/lib/progressspinner/style/package.json deleted file mode 100644 index ff75578726..0000000000 --- a/components/lib/progressspinner/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./progressspinnerstyle.mjs", - "module": "./progressspinnerstyle.mjs", - "types": "./ProgressSpinnerStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/radiobutton/package.json b/components/lib/radiobutton/package.json deleted file mode 100644 index a59e36d875..0000000000 --- a/components/lib/radiobutton/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./radiobutton.mjs", - "module": "./radiobutton.mjs", - "types": "./RadioButton.d.ts", - "browser": { - "./sfc": "./RadioButton.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/radiobutton/style/package.json b/components/lib/radiobutton/style/package.json deleted file mode 100644 index 3a2da63f99..0000000000 --- a/components/lib/radiobutton/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./radiobuttonstyle.mjs", - "module": "./radiobuttonstyle.mjs", - "types": "./RadioButtonStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/rating/package.json b/components/lib/rating/package.json deleted file mode 100644 index 073afc00a9..0000000000 --- a/components/lib/rating/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./rating.mjs", - "module": "./rating.mjs", - "types": "./Rating.d.ts", - "browser": { - "./sfc": "./Rating.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/rating/style/package.json b/components/lib/rating/style/package.json deleted file mode 100644 index 33ed671189..0000000000 --- a/components/lib/rating/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./ratingstyle.mjs", - "module": "./ratingstyle.mjs", - "types": "./RatingStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/ripple/BaseRipple.js b/components/lib/ripple/BaseRipple.js deleted file mode 100644 index 1120fffecf..0000000000 --- a/components/lib/ripple/BaseRipple.js +++ /dev/null @@ -1,8 +0,0 @@ -import BaseDirective from 'primevue/basedirective'; -import RippleStyle from 'primevue/ripple/style'; - -const BaseRipple = BaseDirective.extend({ - style: RippleStyle -}); - -export default BaseRipple; diff --git a/components/lib/ripple/package.json b/components/lib/ripple/package.json deleted file mode 100644 index 515e74e109..0000000000 --- a/components/lib/ripple/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./ripple.mjs", - "module": "./ripple.mjs", - "types": "./Ripple.d.ts" -} diff --git a/components/lib/ripple/style/package.json b/components/lib/ripple/style/package.json deleted file mode 100644 index 1c0c0ab996..0000000000 --- a/components/lib/ripple/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./ripplestyle.mjs", - "module": "./ripplestyle.mjs", - "types": "./RippleStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/row/package.json b/components/lib/row/package.json deleted file mode 100644 index 538a5ecd7f..0000000000 --- a/components/lib/row/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./row.mjs", - "module": "./row.mjs", - "types": "./Row.d.ts", - "browser": { - "./sfc": "./Row.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/row/style/RowStyle.js b/components/lib/row/style/RowStyle.js deleted file mode 100644 index b731ba8c94..0000000000 --- a/components/lib/row/style/RowStyle.js +++ /dev/null @@ -1,5 +0,0 @@ -import BaseStyle from 'primevue/base/style'; - -export default BaseStyle.extend({ - name: 'row' -}); diff --git a/components/lib/row/style/package.json b/components/lib/row/style/package.json deleted file mode 100644 index 1cf2fb388f..0000000000 --- a/components/lib/row/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./rowstyle.mjs", - "module": "./rowstyle.mjs", - "types": "./RowStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/scrollpanel/package.json b/components/lib/scrollpanel/package.json deleted file mode 100644 index 831f03753b..0000000000 --- a/components/lib/scrollpanel/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./scrollpanel.mjs", - "module": "./scrollpanel.mjs", - "types": "./ScrollPanel.d.ts", - "browser": { - "./sfc": "./ScrollPanel.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/scrollpanel/style/package.json b/components/lib/scrollpanel/style/package.json deleted file mode 100644 index 2870221538..0000000000 --- a/components/lib/scrollpanel/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./scrollpanelstyle.mjs", - "module": "./scrollpanelstyle.mjs", - "types": "./ScrollPanelStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/scrolltop/package.json b/components/lib/scrolltop/package.json deleted file mode 100644 index 995c76310f..0000000000 --- a/components/lib/scrolltop/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./scrolltop.mjs", - "module": "./scrolltop.mjs", - "types": "./ScrollTop.d.ts", - "browser": { - "./sfc": "./ScrollTop.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/scrolltop/style/package.json b/components/lib/scrolltop/style/package.json deleted file mode 100644 index d5f62bd6b1..0000000000 --- a/components/lib/scrolltop/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./scrolltopstyle.mjs", - "module": "./scrolltopstyle.mjs", - "types": "./ScrollTopStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/select/package.json b/components/lib/select/package.json deleted file mode 100644 index a0ea292f78..0000000000 --- a/components/lib/select/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./select.mjs", - "module": "./select.mjs", - "types": "./Select.d.ts", - "browser": { - "./sfc": "./Select.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/select/style/package.json b/components/lib/select/style/package.json deleted file mode 100644 index 3dc7e1849a..0000000000 --- a/components/lib/select/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./selectstyle.mjs", - "module": "./selectstyle.mjs", - "types": "./SelectStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/selectbutton/package.json b/components/lib/selectbutton/package.json deleted file mode 100644 index f8e6e8ec9d..0000000000 --- a/components/lib/selectbutton/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./selectbutton.mjs", - "module": "./selectbutton.mjs", - "types": "./SelectButton.d.ts", - "browser": { - "./sfc": "./SelectButton.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/selectbutton/style/package.json b/components/lib/selectbutton/style/package.json deleted file mode 100644 index 6dd76b7573..0000000000 --- a/components/lib/selectbutton/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./selectbuttonstyle.mjs", - "module": "./selectbuttonstyle.mjs", - "types": "./SelectButtonStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/service/PrimeVueService.js b/components/lib/service/PrimeVueService.js deleted file mode 100644 index 602940783d..0000000000 --- a/components/lib/service/PrimeVueService.js +++ /dev/null @@ -1,3 +0,0 @@ -import { EventBus } from 'primevue/utils'; - -export default EventBus(); diff --git a/components/lib/service/package.json b/components/lib/service/package.json deleted file mode 100644 index 4d6865b865..0000000000 --- a/components/lib/service/package.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "main": "./primevueservice.mjs", - "module": "./primevueservice.mjs" -} diff --git a/components/lib/sidebar/package.json b/components/lib/sidebar/package.json deleted file mode 100644 index 435803e8a1..0000000000 --- a/components/lib/sidebar/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./sidebar.mjs", - "module": "./sidebar.mjs", - "types": "./Sidebar.d.ts", - "browser": { - "./sfc": "./Sidebar.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/sidebar/style/SidebarStyle.js b/components/lib/sidebar/style/SidebarStyle.js deleted file mode 100644 index c998bcddf1..0000000000 --- a/components/lib/sidebar/style/SidebarStyle.js +++ /dev/null @@ -1,5 +0,0 @@ -import BaseStyle from 'primevue/base/style'; - -export default BaseStyle.extend({ - name: 'sidebar' -}); diff --git a/components/lib/sidebar/style/package.json b/components/lib/sidebar/style/package.json deleted file mode 100644 index 69643d62ef..0000000000 --- a/components/lib/sidebar/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./sidebarstyle.mjs", - "module": "./sidebarstyle.mjs", - "types": "./SidebarStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/skeleton/package.json b/components/lib/skeleton/package.json deleted file mode 100644 index 3d9316108b..0000000000 --- a/components/lib/skeleton/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./skeleton.mjs", - "module": "./skeleton.mjs", - "types": "./Skeleton.d.ts", - "browser": { - "./sfc": "./Skeleton.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/skeleton/style/package.json b/components/lib/skeleton/style/package.json deleted file mode 100644 index 644ce28dd7..0000000000 --- a/components/lib/skeleton/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./skeletonstyle.mjs", - "module": "./skeletonstyle.mjs", - "types": "./SkeletonStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/slider/package.json b/components/lib/slider/package.json deleted file mode 100644 index cad9c45120..0000000000 --- a/components/lib/slider/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./slider.mjs", - "module": "./slider.mjs", - "types": "./Slider.d.ts", - "browser": { - "./sfc": "./Slider.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/slider/style/package.json b/components/lib/slider/style/package.json deleted file mode 100644 index d9b4c55d2e..0000000000 --- a/components/lib/slider/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./sliderstyle.mjs", - "module": "./sliderstyle.mjs", - "types": "./SliderStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/speeddial/package.json b/components/lib/speeddial/package.json deleted file mode 100644 index 7bca327986..0000000000 --- a/components/lib/speeddial/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./speeddial.mjs", - "module": "./speeddial.mjs", - "types": "./SpeedDial.d.ts", - "browser": { - "./sfc": "./SpeedDial.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/speeddial/style/package.json b/components/lib/speeddial/style/package.json deleted file mode 100644 index f8dbc56b82..0000000000 --- a/components/lib/speeddial/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./speeddialstyle.mjs", - "module": "./speeddialstyle.mjs", - "types": "./SpeedDialStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/splitbutton/package.json b/components/lib/splitbutton/package.json deleted file mode 100644 index 7de9927577..0000000000 --- a/components/lib/splitbutton/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./splitbutton.mjs", - "module": "./splitbutton.mjs", - "types": "./SplitButton.d.ts", - "browser": { - "./sfc": "./SplitButton.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/splitbutton/style/package.json b/components/lib/splitbutton/style/package.json deleted file mode 100644 index 7b9aa90eb6..0000000000 --- a/components/lib/splitbutton/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./splitbuttonstyle.mjs", - "module": "./splitbuttonstyle.mjs", - "types": "./SplitButtonStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/splitter/package.json b/components/lib/splitter/package.json deleted file mode 100644 index 00fad69307..0000000000 --- a/components/lib/splitter/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./splitter.mjs", - "module": "./splitter.mjs", - "types": "./Splitter.d.ts", - "browser": { - "./sfc": "./Splitter.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/splitter/style/package.json b/components/lib/splitter/style/package.json deleted file mode 100644 index 5268c554a5..0000000000 --- a/components/lib/splitter/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./splitterstyle.mjs", - "module": "./splitterstyle.mjs", - "types": "./SplitterStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/splitterpanel/package.json b/components/lib/splitterpanel/package.json deleted file mode 100644 index ae07cfa923..0000000000 --- a/components/lib/splitterpanel/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./splitterpanel.mjs", - "module": "./splitterpanel.mjs", - "types": "./SplitterPanel.d.ts", - "browser": { - "./sfc": "./SplitterPanel.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/splitterpanel/style/package.json b/components/lib/splitterpanel/style/package.json deleted file mode 100644 index 03a093df87..0000000000 --- a/components/lib/splitterpanel/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./splitterpanelstyle.mjs", - "module": "./splitterpanelstyle.mjs", - "types": "./SplitterPanelStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/step/package.json b/components/lib/step/package.json deleted file mode 100644 index 889ffe7bd3..0000000000 --- a/components/lib/step/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./step.mjs", - "module": "./step.mjs", - "types": "./Step.d.ts", - "browser": { - "./sfc": "./Step.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/step/style/package.json b/components/lib/step/style/package.json deleted file mode 100644 index bb4bf5fcdd..0000000000 --- a/components/lib/step/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./stepstyle.mjs", - "module": "./stepstyle.mjs", - "types": "./StepStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/stepitem/package.json b/components/lib/stepitem/package.json deleted file mode 100644 index 13a00c1516..0000000000 --- a/components/lib/stepitem/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./stepitem.mjs", - "module": "./stepitem.mjs", - "types": "./StepItem.d.ts", - "browser": { - "./sfc": "./StepItem.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/stepitem/style/package.json b/components/lib/stepitem/style/package.json deleted file mode 100644 index 9dc8960301..0000000000 --- a/components/lib/stepitem/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./stepitemstyle.mjs", - "module": "./stepitemstyle.mjs", - "types": "./StepItemStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/steplist/package.json b/components/lib/steplist/package.json deleted file mode 100644 index 3fd9218d53..0000000000 --- a/components/lib/steplist/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./steplist.mjs", - "module": "./steplist.mjs", - "types": "./StepList.d.ts", - "browser": { - "./sfc": "./StepList.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/steplist/style/StepListStyle.js b/components/lib/steplist/style/StepListStyle.js deleted file mode 100644 index c885f0461f..0000000000 --- a/components/lib/steplist/style/StepListStyle.js +++ /dev/null @@ -1,10 +0,0 @@ -import BaseStyle from 'primevue/base/style'; - -const classes = { - root: 'p-steplist' -}; - -export default BaseStyle.extend({ - name: 'steplist', - classes -}); diff --git a/components/lib/steplist/style/package.json b/components/lib/steplist/style/package.json deleted file mode 100644 index c5e27601f1..0000000000 --- a/components/lib/steplist/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./stepliststyle.mjs", - "module": "./stepliststyle.mjs", - "types": "./StepListStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/steppanel/package.json b/components/lib/steppanel/package.json deleted file mode 100644 index 92a1d10938..0000000000 --- a/components/lib/steppanel/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./steppanel.mjs", - "module": "./steppanel.mjs", - "types": "./StepPanel.d.ts", - "browser": { - "./sfc": "./StepPanel.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/steppanel/style/package.json b/components/lib/steppanel/style/package.json deleted file mode 100644 index a41306a2e7..0000000000 --- a/components/lib/steppanel/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./steppanelstyle.mjs", - "module": "./steppanelstyle.mjs", - "types": "./StepPanelStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/steppanels/package.json b/components/lib/steppanels/package.json deleted file mode 100644 index 2f063f57e6..0000000000 --- a/components/lib/steppanels/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./steppanels.mjs", - "module": "./steppanels.mjs", - "types": "./StepPanels.d.ts", - "browser": { - "./sfc": "./StepPanels.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/steppanels/style/StepPanelsStyle.js b/components/lib/steppanels/style/StepPanelsStyle.js deleted file mode 100644 index 1a13c986bb..0000000000 --- a/components/lib/steppanels/style/StepPanelsStyle.js +++ /dev/null @@ -1,10 +0,0 @@ -import BaseStyle from 'primevue/base/style'; - -const classes = { - root: 'p-steppanels' -}; - -export default BaseStyle.extend({ - name: 'steppanels', - classes -}); diff --git a/components/lib/steppanels/style/package.json b/components/lib/steppanels/style/package.json deleted file mode 100644 index c327af15f4..0000000000 --- a/components/lib/steppanels/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./steppanelsstyle.mjs", - "module": "./steppanelsstyle.mjs", - "types": "./StepPanelsStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/stepper/package.json b/components/lib/stepper/package.json deleted file mode 100644 index 8adcd09ae3..0000000000 --- a/components/lib/stepper/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./stepper.mjs", - "module": "./stepper.mjs", - "types": "./Stepper.d.ts", - "browser": { - "./sfc": "./Stepper.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/stepper/style/package.json b/components/lib/stepper/style/package.json deleted file mode 100644 index ea3fe05c2e..0000000000 --- a/components/lib/stepper/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./stepperstyle.mjs", - "module": "./stepperstyle.mjs", - "types": "./StepperStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/stepperpanel/package.json b/components/lib/stepperpanel/package.json deleted file mode 100644 index c6eddec67d..0000000000 --- a/components/lib/stepperpanel/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./stepperpanel.mjs", - "module": "./stepperpanel.mjs", - "types": "./StepperPanel.d.ts", - "browser": { - "./sfc": "./StepperPanel.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/stepperpanel/style/StepperPanelStyle.js b/components/lib/stepperpanel/style/StepperPanelStyle.js deleted file mode 100644 index a3d90ebade..0000000000 --- a/components/lib/stepperpanel/style/StepperPanelStyle.js +++ /dev/null @@ -1,5 +0,0 @@ -import BaseStyle from 'primevue/base/style'; - -export default BaseStyle.extend({ - name: 'stepperpanel' -}); diff --git a/components/lib/stepperpanel/style/package.json b/components/lib/stepperpanel/style/package.json deleted file mode 100644 index 6b7a410d09..0000000000 --- a/components/lib/stepperpanel/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./stepperpanelstyle.mjs", - "module": "./stepperpanelstyle.mjs", - "types": "./StepperPanelStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/steps/package.json b/components/lib/steps/package.json deleted file mode 100644 index f682f7bedb..0000000000 --- a/components/lib/steps/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./steps.mjs", - "module": "./steps.mjs", - "types": "./Steps.d.ts", - "browser": { - "./sfc": "./Steps.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/steps/style/package.json b/components/lib/steps/style/package.json deleted file mode 100644 index 5738f3d71c..0000000000 --- a/components/lib/steps/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./stepsstyle.mjs", - "module": "./stepsstyle.mjs", - "types": "./StepsStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/styleclass/BaseStyleClass.js b/components/lib/styleclass/BaseStyleClass.js deleted file mode 100644 index 131427fca3..0000000000 --- a/components/lib/styleclass/BaseStyleClass.js +++ /dev/null @@ -1,8 +0,0 @@ -import BaseDirective from 'primevue/basedirective'; -import StyleClassStyle from 'primevue/styleclass/style'; - -const BaseStyleClass = BaseDirective.extend({ - style: StyleClassStyle -}); - -export default BaseStyleClass; diff --git a/components/lib/styleclass/package.json b/components/lib/styleclass/package.json deleted file mode 100644 index d952f5d44c..0000000000 --- a/components/lib/styleclass/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./styleclass.mjs", - "module": "./styleclass.mjs", - "types": "./StyleClass.d.ts" -} diff --git a/components/lib/styleclass/style/StyleClassStyle.js b/components/lib/styleclass/style/StyleClassStyle.js deleted file mode 100644 index 52ef8d3c95..0000000000 --- a/components/lib/styleclass/style/StyleClassStyle.js +++ /dev/null @@ -1,5 +0,0 @@ -import BaseStyle from 'primevue/base/style'; - -export default BaseStyle.extend({ - name: 'styleclass-directive' -}); diff --git a/components/lib/styleclass/style/package.json b/components/lib/styleclass/style/package.json deleted file mode 100644 index f3757de41e..0000000000 --- a/components/lib/styleclass/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./styleclassstyle.mjs", - "module": "./styleclassstyle.mjs", - "types": "./StyleClassStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/tab/package.json b/components/lib/tab/package.json deleted file mode 100644 index 41d36c1924..0000000000 --- a/components/lib/tab/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./tab.mjs", - "module": "./tab.mjs", - "types": "./Tab.d.ts", - "browser": { - "./sfc": "./Tab.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/tab/style/package.json b/components/lib/tab/style/package.json deleted file mode 100644 index 667776dc84..0000000000 --- a/components/lib/tab/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./tabstyle.mjs", - "module": "./tabstyle.mjs", - "types": "./TabStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/tablist/package.json b/components/lib/tablist/package.json deleted file mode 100644 index 79cae3a990..0000000000 --- a/components/lib/tablist/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./tablist.mjs", - "module": "./tablist.mjs", - "types": "./TabList.d.ts", - "browser": { - "./sfc": "./TabList.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/tablist/style/package.json b/components/lib/tablist/style/package.json deleted file mode 100644 index 84288cf201..0000000000 --- a/components/lib/tablist/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./tabliststyle.mjs", - "module": "./tabliststyle.mjs", - "types": "./TabListStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/tabmenu/package.json b/components/lib/tabmenu/package.json deleted file mode 100644 index 1a3a24b6fb..0000000000 --- a/components/lib/tabmenu/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./tabmenu.mjs", - "module": "./tabmenu.mjs", - "types": "./TabMenu.d.ts", - "browser": { - "./sfc": "./TabMenu.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/tabmenu/style/package.json b/components/lib/tabmenu/style/package.json deleted file mode 100644 index aadbcbc32b..0000000000 --- a/components/lib/tabmenu/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./tabmenustyle.mjs", - "module": "./tabmenustyle.mjs", - "types": "./TabMenuStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/tabpanel/package.json b/components/lib/tabpanel/package.json deleted file mode 100644 index 7aaeb66668..0000000000 --- a/components/lib/tabpanel/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./tabpanel.mjs", - "module": "./tabpanel.mjs", - "types": "./TabPanel.d.ts", - "browser": { - "./sfc": "./TabPanel.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/tabpanel/style/package.json b/components/lib/tabpanel/style/package.json deleted file mode 100644 index 023d307af7..0000000000 --- a/components/lib/tabpanel/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./tabpanelstyle.mjs", - "module": "./tabpanelstyle.mjs", - "types": "./TabPanelStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/tabpanels/package.json b/components/lib/tabpanels/package.json deleted file mode 100644 index 2748a2d857..0000000000 --- a/components/lib/tabpanels/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./tabpanels.mjs", - "module": "./tabpanels.mjs", - "types": "./TabPanels.d.ts", - "browser": { - "./sfc": "./TabPanels.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/tabpanels/style/TabPanelsStyle.js b/components/lib/tabpanels/style/TabPanelsStyle.js deleted file mode 100644 index 9a373a3d0c..0000000000 --- a/components/lib/tabpanels/style/TabPanelsStyle.js +++ /dev/null @@ -1,10 +0,0 @@ -import BaseStyle from 'primevue/base/style'; - -const classes = { - root: 'p-tabpanels' -}; - -export default BaseStyle.extend({ - name: 'tabpanels', - classes -}); diff --git a/components/lib/tabpanels/style/package.json b/components/lib/tabpanels/style/package.json deleted file mode 100644 index bdef4b71a1..0000000000 --- a/components/lib/tabpanels/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./tabpanelsstyle.mjs", - "module": "./tabpanelsstyle.mjs", - "types": "./TabPanelsStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/tabs/package.json b/components/lib/tabs/package.json deleted file mode 100644 index a66db02787..0000000000 --- a/components/lib/tabs/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./tabs.mjs", - "module": "./tabs.mjs", - "types": "./Tabs.d.ts", - "browser": { - "./sfc": "./Tabs.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/tabs/style/package.json b/components/lib/tabs/style/package.json deleted file mode 100644 index 5941addf88..0000000000 --- a/components/lib/tabs/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./tabsstyle.mjs", - "module": "./tabsstyle.mjs", - "types": "./TabsStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/tabview/package.json b/components/lib/tabview/package.json deleted file mode 100644 index de027308b2..0000000000 --- a/components/lib/tabview/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./tabview.mjs", - "module": "./tabview.mjs", - "types": "./TabView.d.ts", - "browser": { - "./sfc": "./TabView.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/tabview/style/package.json b/components/lib/tabview/style/package.json deleted file mode 100644 index 26338153c9..0000000000 --- a/components/lib/tabview/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./tabviewstyle.mjs", - "module": "./tabviewstyle.mjs", - "types": "./TabViewStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/tag/package.json b/components/lib/tag/package.json deleted file mode 100644 index 3b4f4ae746..0000000000 --- a/components/lib/tag/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./tag.mjs", - "module": "./tag.mjs", - "types": "./Tag.d.ts", - "browser": { - "./sfc": "./Tag.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/tag/style/package.json b/components/lib/tag/style/package.json deleted file mode 100644 index 7fc81c2f8a..0000000000 --- a/components/lib/tag/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./tagstyle.mjs", - "module": "./tagstyle.mjs", - "types": "./TagStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/terminal/package.json b/components/lib/terminal/package.json deleted file mode 100644 index 6bed51bcd3..0000000000 --- a/components/lib/terminal/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./terminal.mjs", - "module": "./terminal.mjs", - "types": "./Terminal.d.ts", - "browser": { - "./sfc": "./Terminal.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/terminal/style/package.json b/components/lib/terminal/style/package.json deleted file mode 100644 index d5a23fd69f..0000000000 --- a/components/lib/terminal/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./terminalstyle.mjs", - "module": "./terminalstyle.mjs", - "types": "./TerminalStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/terminalservice/TerminalService.js b/components/lib/terminalservice/TerminalService.js deleted file mode 100755 index 602940783d..0000000000 --- a/components/lib/terminalservice/TerminalService.js +++ /dev/null @@ -1,3 +0,0 @@ -import { EventBus } from 'primevue/utils'; - -export default EventBus(); diff --git a/components/lib/terminalservice/package.json b/components/lib/terminalservice/package.json deleted file mode 100644 index 3336ac506d..0000000000 --- a/components/lib/terminalservice/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./terminalservice.mjs", - "module": "./terminalservice.mjs", - "types": "./TerminalService.d.ts" -} diff --git a/components/lib/textarea/package.json b/components/lib/textarea/package.json deleted file mode 100644 index dbf2d68f4d..0000000000 --- a/components/lib/textarea/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./textarea.mjs", - "module": "./textarea.mjs", - "types": "./Textarea.d.ts", - "browser": { - "./sfc": "./Textarea.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/textarea/style/package.json b/components/lib/textarea/style/package.json deleted file mode 100644 index a3cd10d5a1..0000000000 --- a/components/lib/textarea/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./textareastyle.mjs", - "module": "./textareastyle.mjs", - "types": "./TextareaStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/themes/actions/definePreset.js b/components/lib/themes/actions/definePreset.js deleted file mode 100644 index f18347e479..0000000000 --- a/components/lib/themes/actions/definePreset.js +++ /dev/null @@ -1,3 +0,0 @@ -import { SharedUtils } from 'primevue/themes'; - -export default (...presets) => SharedUtils.object.mergeKeys(...presets); diff --git a/components/lib/themes/actions/package.json b/components/lib/themes/actions/package.json deleted file mode 100644 index 839cff7f9f..0000000000 --- a/components/lib/themes/actions/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts" -} diff --git a/components/lib/themes/actions/updatePreset.js b/components/lib/themes/actions/updatePreset.js deleted file mode 100644 index b4b328d2eb..0000000000 --- a/components/lib/themes/actions/updatePreset.js +++ /dev/null @@ -1,9 +0,0 @@ -import { SharedUtils, Theme } from 'primevue/themes'; - -export default (...presets) => { - const newPreset = SharedUtils.object.mergeKeys(Theme.getPreset(), ...presets); - - Theme.setPreset(newPreset); - - return newPreset; -}; diff --git a/components/lib/themes/actions/updatePrimaryPalette.js b/components/lib/themes/actions/updatePrimaryPalette.js deleted file mode 100644 index 558bd14c8f..0000000000 --- a/components/lib/themes/actions/updatePrimaryPalette.js +++ /dev/null @@ -1,3 +0,0 @@ -import { $t } from 'primevue/themes'; - -export default (primary) => $t().primaryPalette(primary).update().preset; diff --git a/components/lib/themes/actions/updateSurfacePalette.js b/components/lib/themes/actions/updateSurfacePalette.js deleted file mode 100644 index 2eb22fa458..0000000000 --- a/components/lib/themes/actions/updateSurfacePalette.js +++ /dev/null @@ -1,3 +0,0 @@ -import { $t } from 'primevue/themes'; - -export default (surface) => $t().surfacePalette(surface).update().preset; diff --git a/components/lib/themes/actions/usePreset.js b/components/lib/themes/actions/usePreset.js deleted file mode 100644 index 4ac4ef6766..0000000000 --- a/components/lib/themes/actions/usePreset.js +++ /dev/null @@ -1,9 +0,0 @@ -import { Theme } from 'primevue/themes'; - -export default (...presets) => { - const newPreset = SharedUtils.object.mergeKeys(...presets); - - Theme.setPreset(newPreset); - - return newPreset; -}; diff --git a/components/lib/themes/actions/useTheme.js b/components/lib/themes/actions/useTheme.js deleted file mode 100644 index 265a27d267..0000000000 --- a/components/lib/themes/actions/useTheme.js +++ /dev/null @@ -1,3 +0,0 @@ -import { $t } from 'primevue/themes'; - -export default (theme) => $t(theme).update({ mergePresets: false }); diff --git a/components/lib/themes/aura/accordion/package.json b/components/lib/themes/aura/accordion/package.json deleted file mode 100644 index aa2ffa7893..0000000000 --- a/components/lib/themes/aura/accordion/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/accordion/index.d.ts" -} diff --git a/components/lib/themes/aura/autocomplete/package.json b/components/lib/themes/aura/autocomplete/package.json deleted file mode 100644 index 4dc53ee5b4..0000000000 --- a/components/lib/themes/aura/autocomplete/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/autocomplete/index.d.ts" -} diff --git a/components/lib/themes/aura/avatar/package.json b/components/lib/themes/aura/avatar/package.json deleted file mode 100644 index 7d3175f314..0000000000 --- a/components/lib/themes/aura/avatar/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/avatar/index.d.ts" -} diff --git a/components/lib/themes/aura/badge/package.json b/components/lib/themes/aura/badge/package.json deleted file mode 100644 index b6ec412c06..0000000000 --- a/components/lib/themes/aura/badge/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/badge/index.d.ts" -} diff --git a/components/lib/themes/aura/blockui/package.json b/components/lib/themes/aura/blockui/package.json deleted file mode 100644 index 093846ca19..0000000000 --- a/components/lib/themes/aura/blockui/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/blockui/index.d.ts" -} diff --git a/components/lib/themes/aura/breadcrumb/package.json b/components/lib/themes/aura/breadcrumb/package.json deleted file mode 100644 index 40c3e24b44..0000000000 --- a/components/lib/themes/aura/breadcrumb/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/breadcrumb/index.d.ts" -} diff --git a/components/lib/themes/aura/button/package.json b/components/lib/themes/aura/button/package.json deleted file mode 100644 index 9f0083f568..0000000000 --- a/components/lib/themes/aura/button/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/button/index.d.ts" -} diff --git a/components/lib/themes/aura/card/package.json b/components/lib/themes/aura/card/package.json deleted file mode 100644 index 615dc5261f..0000000000 --- a/components/lib/themes/aura/card/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/card/index.d.ts" -} diff --git a/components/lib/themes/aura/carousel/package.json b/components/lib/themes/aura/carousel/package.json deleted file mode 100644 index 918ea81fd5..0000000000 --- a/components/lib/themes/aura/carousel/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/carousel/index.d.ts" -} diff --git a/components/lib/themes/aura/cascadeselect/package.json b/components/lib/themes/aura/cascadeselect/package.json deleted file mode 100644 index 83823fb482..0000000000 --- a/components/lib/themes/aura/cascadeselect/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/cascadeselect/index.d.ts" -} diff --git a/components/lib/themes/aura/checkbox/package.json b/components/lib/themes/aura/checkbox/package.json deleted file mode 100644 index 6e041f8077..0000000000 --- a/components/lib/themes/aura/checkbox/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/checkbox/index.d.ts" -} diff --git a/components/lib/themes/aura/chip/package.json b/components/lib/themes/aura/chip/package.json deleted file mode 100644 index 80c1810443..0000000000 --- a/components/lib/themes/aura/chip/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/chip/index.d.ts" -} diff --git a/components/lib/themes/aura/colorpicker/package.json b/components/lib/themes/aura/colorpicker/package.json deleted file mode 100644 index 6ccfbedbe9..0000000000 --- a/components/lib/themes/aura/colorpicker/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/colorpicker/index.d.ts" -} diff --git a/components/lib/themes/aura/confirmdialog/package.json b/components/lib/themes/aura/confirmdialog/package.json deleted file mode 100644 index 7d6c819fdd..0000000000 --- a/components/lib/themes/aura/confirmdialog/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/confirmdialog/index.d.ts" -} diff --git a/components/lib/themes/aura/confirmpopup/package.json b/components/lib/themes/aura/confirmpopup/package.json deleted file mode 100644 index db691643ec..0000000000 --- a/components/lib/themes/aura/confirmpopup/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/confirmpopup/index.d.ts" -} diff --git a/components/lib/themes/aura/contextmenu/package.json b/components/lib/themes/aura/contextmenu/package.json deleted file mode 100644 index abc487dc56..0000000000 --- a/components/lib/themes/aura/contextmenu/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/contextmenu/index.d.ts" -} diff --git a/components/lib/themes/aura/datatable/package.json b/components/lib/themes/aura/datatable/package.json deleted file mode 100644 index 14aacef4b6..0000000000 --- a/components/lib/themes/aura/datatable/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/datatable/index.d.ts" -} diff --git a/components/lib/themes/aura/dataview/package.json b/components/lib/themes/aura/dataview/package.json deleted file mode 100644 index 6dd3ed3430..0000000000 --- a/components/lib/themes/aura/dataview/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/dataview/index.d.ts" -} diff --git a/components/lib/themes/aura/datepicker/package.json b/components/lib/themes/aura/datepicker/package.json deleted file mode 100644 index 15b62e3228..0000000000 --- a/components/lib/themes/aura/datepicker/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/datepicker/index.d.ts" -} diff --git a/components/lib/themes/aura/dialog/package.json b/components/lib/themes/aura/dialog/package.json deleted file mode 100644 index 85b726e49b..0000000000 --- a/components/lib/themes/aura/dialog/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/dialog/index.d.ts" -} diff --git a/components/lib/themes/aura/divider/package.json b/components/lib/themes/aura/divider/package.json deleted file mode 100644 index 2c9948dc33..0000000000 --- a/components/lib/themes/aura/divider/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/divider/index.d.ts" -} diff --git a/components/lib/themes/aura/dock/package.json b/components/lib/themes/aura/dock/package.json deleted file mode 100644 index 22f1f5bb87..0000000000 --- a/components/lib/themes/aura/dock/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/dock/index.d.ts" -} diff --git a/components/lib/themes/aura/drawer/package.json b/components/lib/themes/aura/drawer/package.json deleted file mode 100644 index 8d1ae8a242..0000000000 --- a/components/lib/themes/aura/drawer/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/drawer/index.d.ts" -} diff --git a/components/lib/themes/aura/editor/package.json b/components/lib/themes/aura/editor/package.json deleted file mode 100644 index 0181ce7796..0000000000 --- a/components/lib/themes/aura/editor/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/editor/index.d.ts" -} diff --git a/components/lib/themes/aura/fieldset/package.json b/components/lib/themes/aura/fieldset/package.json deleted file mode 100644 index 8bf77039c2..0000000000 --- a/components/lib/themes/aura/fieldset/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/fieldset/index.d.ts" -} diff --git a/components/lib/themes/aura/fileupload/package.json b/components/lib/themes/aura/fileupload/package.json deleted file mode 100644 index e40d755919..0000000000 --- a/components/lib/themes/aura/fileupload/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/fileupload/index.d.ts" -} diff --git a/components/lib/themes/aura/floatlabel/package.json b/components/lib/themes/aura/floatlabel/package.json deleted file mode 100644 index dc6ddf77d7..0000000000 --- a/components/lib/themes/aura/floatlabel/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/floatlabel/index.d.ts" -} diff --git a/components/lib/themes/aura/galleria/package.json b/components/lib/themes/aura/galleria/package.json deleted file mode 100644 index ae4ffb21b5..0000000000 --- a/components/lib/themes/aura/galleria/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/galleria/index.d.ts" -} diff --git a/components/lib/themes/aura/iconfield/package.json b/components/lib/themes/aura/iconfield/package.json deleted file mode 100644 index 0e46466afb..0000000000 --- a/components/lib/themes/aura/iconfield/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/iconfield/index.d.ts" -} diff --git a/components/lib/themes/aura/image/package.json b/components/lib/themes/aura/image/package.json deleted file mode 100644 index f9f5eb7f78..0000000000 --- a/components/lib/themes/aura/image/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/image/index.d.ts" -} diff --git a/components/lib/themes/aura/index.js b/components/lib/themes/aura/index.js deleted file mode 100644 index 9e78b689f1..0000000000 --- a/components/lib/themes/aura/index.js +++ /dev/null @@ -1,550 +0,0 @@ -import accordion from 'primevue/themes/aura/accordion'; -import autocomplete from 'primevue/themes/aura/autocomplete'; -import avatar from 'primevue/themes/aura/avatar'; -import badge from 'primevue/themes/aura/badge'; -import blockui from 'primevue/themes/aura/blockui'; -import breadcrumb from 'primevue/themes/aura/breadcrumb'; -import button from 'primevue/themes/aura/button'; -import card from 'primevue/themes/aura/card'; -import carousel from 'primevue/themes/aura/carousel'; -import cascadeselect from 'primevue/themes/aura/cascadeselect'; -import checkbox from 'primevue/themes/aura/checkbox'; -import chip from 'primevue/themes/aura/chip'; -import colorpicker from 'primevue/themes/aura/colorpicker'; -import confirmdialog from 'primevue/themes/aura/confirmdialog'; -import confirmpopup from 'primevue/themes/aura/confirmpopup'; -import contextmenu from 'primevue/themes/aura/contextmenu'; -import datatable from 'primevue/themes/aura/datatable'; -import dataview from 'primevue/themes/aura/dataview'; -import datepicker from 'primevue/themes/aura/datepicker'; -import dialog from 'primevue/themes/aura/dialog'; -import divider from 'primevue/themes/aura/divider'; -import dock from 'primevue/themes/aura/dock'; -import drawer from 'primevue/themes/aura/drawer'; -import editor from 'primevue/themes/aura/editor'; -import fieldset from 'primevue/themes/aura/fieldset'; -import fileupload from 'primevue/themes/aura/fileupload'; -import floatlabel from 'primevue/themes/aura/floatlabel'; -import galleria from 'primevue/themes/aura/galleria'; -import iconfield from 'primevue/themes/aura/iconfield'; -import image from 'primevue/themes/aura/image'; -import inlinemessage from 'primevue/themes/aura/inlinemessage'; -import inplace from 'primevue/themes/aura/inplace'; -import inputchips from 'primevue/themes/aura/inputchips'; -import inputgroup from 'primevue/themes/aura/inputgroup'; -import inputnumber from 'primevue/themes/aura/inputnumber'; -import inputtext from 'primevue/themes/aura/inputtext'; -import knob from 'primevue/themes/aura/knob'; -import listbox from 'primevue/themes/aura/listbox'; -import megamenu from 'primevue/themes/aura/megamenu'; -import menu from 'primevue/themes/aura/menu'; -import menubar from 'primevue/themes/aura/menubar'; -import message from 'primevue/themes/aura/message'; -import metergroup from 'primevue/themes/aura/metergroup'; -import multiselect from 'primevue/themes/aura/multiselect'; -import orderlist from 'primevue/themes/aura/orderlist'; -import organizationchart from 'primevue/themes/aura/organizationchart'; -import overlaybadge from 'primevue/themes/aura/overlaybadge'; -import paginator from 'primevue/themes/aura/paginator'; -import panel from 'primevue/themes/aura/panel'; -import panelmenu from 'primevue/themes/aura/panelmenu'; -import password from 'primevue/themes/aura/password'; -import picklist from 'primevue/themes/aura/picklist'; -import popover from 'primevue/themes/aura/popover'; -import progressbar from 'primevue/themes/aura/progressbar'; -import progressspinner from 'primevue/themes/aura/progressspinner'; -import radiobutton from 'primevue/themes/aura/radiobutton'; -import rating from 'primevue/themes/aura/rating'; -import ripple from 'primevue/themes/aura/ripple'; -import scrollpanel from 'primevue/themes/aura/scrollpanel'; -import select from 'primevue/themes/aura/select'; -import selectbutton from 'primevue/themes/aura/selectbutton'; -import skeleton from 'primevue/themes/aura/skeleton'; -import slider from 'primevue/themes/aura/slider'; -import speeddial from 'primevue/themes/aura/speeddial'; -import splitbutton from 'primevue/themes/aura/splitbutton'; -import splitter from 'primevue/themes/aura/splitter'; -import stepper from 'primevue/themes/aura/stepper'; -import steps from 'primevue/themes/aura/steps'; -import tabmenu from 'primevue/themes/aura/tabmenu'; -import tabs from 'primevue/themes/aura/tabs'; -import tabview from 'primevue/themes/aura/tabview'; -import tag from 'primevue/themes/aura/tag'; -import terminal from 'primevue/themes/aura/terminal'; -import textarea from 'primevue/themes/aura/textarea'; -import tieredmenu from 'primevue/themes/aura/tieredmenu'; -import timeline from 'primevue/themes/aura/timeline'; -import toast from 'primevue/themes/aura/toast'; -import togglebutton from 'primevue/themes/aura/togglebutton'; -import toggleswitch from 'primevue/themes/aura/toggleswitch'; -import toolbar from 'primevue/themes/aura/toolbar'; -import tooltip from 'primevue/themes/aura/tooltip'; -import tree from 'primevue/themes/aura/tree'; -import treeselect from 'primevue/themes/aura/treeselect'; -import treetable from 'primevue/themes/aura/treetable'; - -export default { - primitive: { - borderRadius: { - none: '0', - xs: '2px', - sm: '4px', - md: '6px', - lg: '8px', - xl: '12px' - }, - emerald: { 50: '#ecfdf5', 100: '#d1fae5', 200: '#a7f3d0', 300: '#6ee7b7', 400: '#34d399', 500: '#10b981', 600: '#059669', 700: '#047857', 800: '#065f46', 900: '#064e3b', 950: '#022c22' }, - green: { 50: '#f0fdf4', 100: '#dcfce7', 200: '#bbf7d0', 300: '#86efac', 400: '#4ade80', 500: '#22c55e', 600: '#16a34a', 700: '#15803d', 800: '#166534', 900: '#14532d', 950: '#052e16' }, - lime: { 50: '#f7fee7', 100: '#ecfccb', 200: '#d9f99d', 300: '#bef264', 400: '#a3e635', 500: '#84cc16', 600: '#65a30d', 700: '#4d7c0f', 800: '#3f6212', 900: '#365314', 950: '#1a2e05' }, - red: { 50: '#fef2f2', 100: '#fee2e2', 200: '#fecaca', 300: '#fca5a5', 400: '#f87171', 500: '#ef4444', 600: '#dc2626', 700: '#b91c1c', 800: '#991b1b', 900: '#7f1d1d', 950: '#450a0a' }, - orange: { 50: '#fff7ed', 100: '#ffedd5', 200: '#fed7aa', 300: '#fdba74', 400: '#fb923c', 500: '#f97316', 600: '#ea580c', 700: '#c2410c', 800: '#9a3412', 900: '#7c2d12', 950: '#431407' }, - amber: { 50: '#fffbeb', 100: '#fef3c7', 200: '#fde68a', 300: '#fcd34d', 400: '#fbbf24', 500: '#f59e0b', 600: '#d97706', 700: '#b45309', 800: '#92400e', 900: '#78350f', 950: '#451a03' }, - yellow: { 50: '#fefce8', 100: '#fef9c3', 200: '#fef08a', 300: '#fde047', 400: '#facc15', 500: '#eab308', 600: '#ca8a04', 700: '#a16207', 800: '#854d0e', 900: '#713f12', 950: '#422006' }, - teal: { 50: '#f0fdfa', 100: '#ccfbf1', 200: '#99f6e4', 300: '#5eead4', 400: '#2dd4bf', 500: '#14b8a6', 600: '#0d9488', 700: '#0f766e', 800: '#115e59', 900: '#134e4a', 950: '#042f2e' }, - cyan: { 50: '#ecfeff', 100: '#cffafe', 200: '#a5f3fc', 300: '#67e8f9', 400: '#22d3ee', 500: '#06b6d4', 600: '#0891b2', 700: '#0e7490', 800: '#155e75', 900: '#164e63', 950: '#083344' }, - sky: { 50: '#f0f9ff', 100: '#e0f2fe', 200: '#bae6fd', 300: '#7dd3fc', 400: '#38bdf8', 500: '#0ea5e9', 600: '#0284c7', 700: '#0369a1', 800: '#075985', 900: '#0c4a6e', 950: '#082f49' }, - blue: { 50: '#eff6ff', 100: '#dbeafe', 200: '#bfdbfe', 300: '#93c5fd', 400: '#60a5fa', 500: '#3b82f6', 600: '#2563eb', 700: '#1d4ed8', 800: '#1e40af', 900: '#1e3a8a', 950: '#172554' }, - indigo: { 50: '#eef2ff', 100: '#e0e7ff', 200: '#c7d2fe', 300: '#a5b4fc', 400: '#818cf8', 500: '#6366f1', 600: '#4f46e5', 700: '#4338ca', 800: '#3730a3', 900: '#312e81', 950: '#1e1b4b' }, - violet: { 50: '#f5f3ff', 100: '#ede9fe', 200: '#ddd6fe', 300: '#c4b5fd', 400: '#a78bfa', 500: '#8b5cf6', 600: '#7c3aed', 700: '#6d28d9', 800: '#5b21b6', 900: '#4c1d95', 950: '#2e1065' }, - purple: { 50: '#faf5ff', 100: '#f3e8ff', 200: '#e9d5ff', 300: '#d8b4fe', 400: '#c084fc', 500: '#a855f7', 600: '#9333ea', 700: '#7e22ce', 800: '#6b21a8', 900: '#581c87', 950: '#3b0764' }, - fuchsia: { 50: '#fdf4ff', 100: '#fae8ff', 200: '#f5d0fe', 300: '#f0abfc', 400: '#e879f9', 500: '#d946ef', 600: '#c026d3', 700: '#a21caf', 800: '#86198f', 900: '#701a75', 950: '#4a044e' }, - pink: { 50: '#fdf2f8', 100: '#fce7f3', 200: '#fbcfe8', 300: '#f9a8d4', 400: '#f472b6', 500: '#ec4899', 600: '#db2777', 700: '#be185d', 800: '#9d174d', 900: '#831843', 950: '#500724' }, - rose: { 50: '#fff1f2', 100: '#ffe4e6', 200: '#fecdd3', 300: '#fda4af', 400: '#fb7185', 500: '#f43f5e', 600: '#e11d48', 700: '#be123c', 800: '#9f1239', 900: '#881337', 950: '#4c0519' }, - slate: { 50: '#f8fafc', 100: '#f1f5f9', 200: '#e2e8f0', 300: '#cbd5e1', 400: '#94a3b8', 500: '#64748b', 600: '#475569', 700: '#334155', 800: '#1e293b', 900: '#0f172a', 950: '#020617' }, - gray: { 50: '#f9fafb', 100: '#f3f4f6', 200: '#e5e7eb', 300: '#d1d5db', 400: '#9ca3af', 500: '#6b7280', 600: '#4b5563', 700: '#374151', 800: '#1f2937', 900: '#111827', 950: '#030712' }, - zinc: { 50: '#fafafa', 100: '#f4f4f5', 200: '#e4e4e7', 300: '#d4d4d8', 400: '#a1a1aa', 500: '#71717a', 600: '#52525b', 700: '#3f3f46', 800: '#27272a', 900: '#18181b', 950: '#09090b' }, - neutral: { 50: '#fafafa', 100: '#f5f5f5', 200: '#e5e5e5', 300: '#d4d4d4', 400: '#a3a3a3', 500: '#737373', 600: '#525252', 700: '#404040', 800: '#262626', 900: '#171717', 950: '#0a0a0a' }, - stone: { 50: '#fafaf9', 100: '#f5f5f4', 200: '#e7e5e4', 300: '#d6d3d1', 400: '#a8a29e', 500: '#78716c', 600: '#57534e', 700: '#44403c', 800: '#292524', 900: '#1c1917', 950: '#0c0a09' } - }, - semantic: { - transitionDuration: '0.2s', - focusRing: { - width: '1px', - style: 'solid', - color: '{primary.color}', - offset: '2px', - shadow: 'none' - }, - disabledOpacity: '0.6', - iconSize: '1rem', - anchorGutter: '2px', - primary: { - 50: '{emerald.50}', - 100: '{emerald.100}', - 200: '{emerald.200}', - 300: '{emerald.300}', - 400: '{emerald.400}', - 500: '{emerald.500}', - 600: '{emerald.600}', - 700: '{emerald.700}', - 800: '{emerald.800}', - 900: '{emerald.900}', - 950: '{emerald.950}' - }, - formField: { - paddingX: '0.75rem', - paddingY: '0.5rem', - borderRadius: '{border.radius.md}', - focusRing: { - width: '0', - style: 'none', - color: 'transparent', - offset: '0', - shadow: 'none' - }, - transitionDuration: '{transition.duration}' - }, - list: { - padding: '0.25rem 0.25rem', - gap: '2px', - header: { - padding: '0.5rem 0.75rem 0.25rem 0.75rem' - }, - option: { - padding: '0.5rem 0.75rem', - borderRadius: '{border.radius.sm}' - }, - optionGroup: { - padding: '0.5rem 0.75rem', - fontWeight: '600' - } - }, - content: { - borderRadius: '{border.radius.md}' - }, - mask: { - transitionDuration: '0.15s' - }, - navigation: { - list: { - padding: '0.25rem 0.25rem', - gap: '2px' - }, - item: { - padding: '0.5rem 0.75rem', - borderRadius: '{border.radius.sm}', - gap: '0.5rem' - }, - submenuLabel: { - padding: '0.5rem 0.75rem', - fontWeight: '600' - }, - submenuIcon: { - size: '0.875rem' - } - }, - overlay: { - select: { - borderRadius: '{border.radius.md}', - shadow: '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)' - }, - popover: { - borderRadius: '{border.radius.md}', - padding: '0.75rem', - shadow: '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)' - }, - modal: { - borderRadius: '{border.radius.xl}', - padding: '1.25rem', - shadow: '0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1)' - }, - navigation: { - shadow: '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)' - } - }, - colorScheme: { - light: { - surface: { - 0: '#ffffff', - 50: '{slate.50}', - 100: '{slate.100}', - 200: '{slate.200}', - 300: '{slate.300}', - 400: '{slate.400}', - 500: '{slate.500}', - 600: '{slate.600}', - 700: '{slate.700}', - 800: '{slate.800}', - 900: '{slate.900}', - 950: '{slate.950}' - }, - primary: { - color: '{primary.500}', - contrastColor: '#ffffff', - hoverColor: '{primary.600}', - activeColor: '{primary.700}' - }, - highlight: { - background: '{primary.50}', - focusBackground: '{primary.100}', - color: '{primary.700}', - focusColor: '{primary.800}' - }, - mask: { - background: 'rgba(0,0,0,0.4)', - color: '{surface.200}' - }, - formField: { - background: '{surface.0}', - disabledBackground: '{surface.200}', - filledBackground: '{surface.50}', - filledFocusBackground: '{surface.50}', - borderColor: '{surface.300}', - hoverBorderColor: '{surface.400}', - focusBorderColor: '{primary.color}', - invalidBorderColor: '{red.400}', - color: '{surface.700}', - disabledColor: '{surface.500}', - placeholderColor: '{surface.500}', - floatLabelColor: '{surface.500}', - floatLabelFocusColor: '{surface.500}', - floatLabelInvalidColor: '{red.400}', - iconColor: '{surface.400}', - shadow: '0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgba(18, 18, 23, 0.05)' - }, - text: { - color: '{surface.700}', - hoverColor: '{surface.800}', - mutedColor: '{surface.500}', - hoverMutedColor: '{surface.600}' - }, - content: { - background: '{surface.0}', - hoverBackground: '{surface.100}', - borderColor: '{surface.200}', - color: '{text.color}', - hoverColor: '{text.hover.color}' - }, - overlay: { - select: { - background: '{surface.0}', - borderColor: '{surface.200}', - color: '{text.color}' - }, - popover: { - background: '{surface.0}', - borderColor: '{surface.200}', - color: '{text.color}' - }, - modal: { - background: '{surface.0}', - borderColor: '{surface.200}', - color: '{text.color}' - } - }, - list: { - option: { - focusBackground: '{surface.100}', - selectedBackground: '{highlight.background}', - selectedFocusBackground: '{highlight.focus.background}', - color: '{text.color}', - focusColor: '{text.hover.color}', - selectedColor: '{highlight.color}', - selectedFocusColor: '{highlight.focus.color}', - icon: { - color: '{surface.400}', - focusColor: '{surface.500}' - } - }, - optionGroup: { - background: 'transparent', - color: '{text.muted.color}' - } - }, - navigation: { - item: { - focusBackground: '{surface.100}', - activeBackground: '{surface.100}', - color: '{text.color}', - focusColor: '{text.hover.color}', - activeColor: '{text.hover.color}', - icon: { - color: '{surface.400}', - focusColor: '{surface.500}', - activeColor: '{surface.500}' - } - }, - submenuLabel: { - background: 'transparent', - color: '{text.muted.color}' - }, - submenuIcon: { - color: '{surface.400}', - focusColor: '{surface.500}', - activeColor: '{surface.500}' - } - } - }, - dark: { - surface: { - 0: '#ffffff', - 50: '{zinc.50}', - 100: '{zinc.100}', - 200: '{zinc.200}', - 300: '{zinc.300}', - 400: '{zinc.400}', - 500: '{zinc.500}', - 600: '{zinc.600}', - 700: '{zinc.700}', - 800: '{zinc.800}', - 900: '{zinc.900}', - 950: '{zinc.950}' - }, - primary: { - color: '{primary.400}', - contrastColor: '{surface.900}', - hoverColor: '{primary.300}', - activeColor: '{primary.200}' - }, - highlight: { - background: 'color-mix(in srgb, {primary.400}, transparent 84%)', - focusBackground: 'color-mix(in srgb, {primary.400}, transparent 76%)', - color: 'rgba(255,255,255,.87)', - focusColor: 'rgba(255,255,255,.87)' - }, - mask: { - background: 'rgba(0,0,0,0.6)', - color: '{surface.200}' - }, - formField: { - background: '{surface.950}', - disabledBackground: '{surface.700}', - filledBackground: '{surface.800}', - filledFocusBackground: '{surface.800}', - borderColor: '{surface.700}', - hoverBorderColor: '{surface.600}', - focusBorderColor: '{primary.color}', - invalidBorderColor: '{red.300}', - color: '{surface.0}', - disabledColor: '{surface.400}', - placeholderColor: '{surface.400}', - floatLabelColor: '{surface.400}', - floatLabelFocusColor: '{surface.400}', - floatLabelInvalidColor: '{red.300}', - iconColor: '{surface.400}', - shadow: '0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgba(18, 18, 23, 0.05)' - }, - text: { - color: '{surface.0}', - hoverColor: '{surface.0}', - mutedColor: '{surface.400}', - hoverMutedColor: '{surface.300}' - }, - content: { - background: '{surface.900}', - hoverBackground: '{surface.800}', - borderColor: '{surface.700}', - color: '{text.color}', - hoverColor: '{text.hover.color}' - }, - overlay: { - select: { - background: '{surface.900}', - borderColor: '{surface.700}', - color: '{text.color}' - }, - popover: { - background: '{surface.900}', - borderColor: '{surface.700}', - color: '{text.color}' - }, - modal: { - background: '{surface.900}', - borderColor: '{surface.700}', - color: '{text.color}' - } - }, - list: { - option: { - focusBackground: '{surface.800}', - selectedBackground: '{highlight.background}', - selectedFocusBackground: '{highlight.focus.background}', - color: '{text.color}', - focusColor: '{text.hover.color}', - selectedColor: '{highlight.color}', - selectedFocusColor: '{highlight.focus.color}', - icon: { - color: '{surface.500}', - focusColor: '{surface.400}' - } - }, - optionGroup: { - background: 'transparent', - color: '{text.muted.color}' - } - }, - navigation: { - item: { - focusBackground: '{surface.800}', - activeBackground: '{surface.800}', - color: '{text.color}', - focusColor: '{text.hover.color}', - activeColor: '{text.hover.color}', - icon: { - color: '{surface.500}', - focusColor: '{surface.400}', - activeColor: '{surface.400}' - } - }, - submenuLabel: { - background: 'transparent', - color: '{text.muted.color}' - }, - submenuIcon: { - color: '{surface.500}', - focusColor: '{surface.400}', - activeColor: '{surface.400}' - } - } - } - } - }, - components: { - accordion, - autocomplete, - avatar, - badge, - blockui, - breadcrumb, - button, - datepicker, - card, - carousel, - cascadeselect, - checkbox, - chip, - colorpicker, - confirmdialog, - confirmpopup, - contextmenu, - dataview, - datatable, - dialog, - divider, - dock, - drawer, - editor, - fieldset, - fileupload, - floatlabel, - galleria, - iconfield, - image, - inlinemessage, - inplace, - inputchips, - inputgroup, - inputnumber, - inputtext, - knob, - listbox, - megamenu, - menu, - menubar, - message, - metergroup, - multiselect, - orderlist, - organizationchart, - overlaybadge, - popover, - paginator, - password, - panel, - panelmenu, - picklist, - progressbar, - progressspinner, - radiobutton, - rating, - scrollpanel, - select, - selectbutton, - skeleton, - slider, - speeddial, - splitter, - splitbutton, - stepper, - steps, - tabmenu, - tabs, - tabview, - textarea, - tieredmenu, - tag, - terminal, - timeline, - togglebutton, - toggleswitch, - tree, - treeselect, - treetable, - toast, - toolbar - }, - directives: { - tooltip, - ripple - } -}; diff --git a/components/lib/themes/aura/inlinemessage/package.json b/components/lib/themes/aura/inlinemessage/package.json deleted file mode 100644 index 540807d36b..0000000000 --- a/components/lib/themes/aura/inlinemessage/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/inlinemessage/index.d.ts" -} diff --git a/components/lib/themes/aura/inplace/package.json b/components/lib/themes/aura/inplace/package.json deleted file mode 100644 index 514c33b271..0000000000 --- a/components/lib/themes/aura/inplace/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/inplace/index.d.ts" -} diff --git a/components/lib/themes/aura/inputchips/package.json b/components/lib/themes/aura/inputchips/package.json deleted file mode 100644 index aff7027ae4..0000000000 --- a/components/lib/themes/aura/inputchips/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/inputchips/index.d.ts" -} diff --git a/components/lib/themes/aura/inputgroup/package.json b/components/lib/themes/aura/inputgroup/package.json deleted file mode 100644 index 53cdc6ec23..0000000000 --- a/components/lib/themes/aura/inputgroup/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/inputgroup/index.d.ts" -} diff --git a/components/lib/themes/aura/inputnumber/package.json b/components/lib/themes/aura/inputnumber/package.json deleted file mode 100644 index d2776ca5fe..0000000000 --- a/components/lib/themes/aura/inputnumber/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/inputnumber/index.d.ts" -} diff --git a/components/lib/themes/aura/inputtext/package.json b/components/lib/themes/aura/inputtext/package.json deleted file mode 100644 index 7f21dedd79..0000000000 --- a/components/lib/themes/aura/inputtext/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/inputtext/index.d.ts" -} diff --git a/components/lib/themes/aura/knob/package.json b/components/lib/themes/aura/knob/package.json deleted file mode 100644 index a5db94c60e..0000000000 --- a/components/lib/themes/aura/knob/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/knob/index.d.ts" -} diff --git a/components/lib/themes/aura/listbox/package.json b/components/lib/themes/aura/listbox/package.json deleted file mode 100644 index 97f0f03c10..0000000000 --- a/components/lib/themes/aura/listbox/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/listbox/index.d.ts" -} diff --git a/components/lib/themes/aura/megamenu/package.json b/components/lib/themes/aura/megamenu/package.json deleted file mode 100644 index dbdcbfa11a..0000000000 --- a/components/lib/themes/aura/megamenu/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/megamenu/index.d.ts" -} diff --git a/components/lib/themes/aura/menu/package.json b/components/lib/themes/aura/menu/package.json deleted file mode 100644 index 2857ee2479..0000000000 --- a/components/lib/themes/aura/menu/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/menu/index.d.ts" -} diff --git a/components/lib/themes/aura/menubar/package.json b/components/lib/themes/aura/menubar/package.json deleted file mode 100644 index 0268f23f32..0000000000 --- a/components/lib/themes/aura/menubar/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/menubar/index.d.ts" -} diff --git a/components/lib/themes/aura/message/package.json b/components/lib/themes/aura/message/package.json deleted file mode 100644 index b49899c688..0000000000 --- a/components/lib/themes/aura/message/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/message/index.d.ts" -} diff --git a/components/lib/themes/aura/metergroup/package.json b/components/lib/themes/aura/metergroup/package.json deleted file mode 100644 index 13e4623ce3..0000000000 --- a/components/lib/themes/aura/metergroup/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/metergroup/index.d.ts" -} diff --git a/components/lib/themes/aura/multiselect/package.json b/components/lib/themes/aura/multiselect/package.json deleted file mode 100644 index 4479bbc95f..0000000000 --- a/components/lib/themes/aura/multiselect/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/multiselect/index.d.ts" -} diff --git a/components/lib/themes/aura/orderlist/package.json b/components/lib/themes/aura/orderlist/package.json deleted file mode 100644 index c455336034..0000000000 --- a/components/lib/themes/aura/orderlist/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/orderlist/index.d.ts" -} diff --git a/components/lib/themes/aura/organizationchart/package.json b/components/lib/themes/aura/organizationchart/package.json deleted file mode 100644 index f765754e32..0000000000 --- a/components/lib/themes/aura/organizationchart/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/organizationchart/index.d.ts" -} diff --git a/components/lib/themes/aura/overlaybadge/package.json b/components/lib/themes/aura/overlaybadge/package.json deleted file mode 100644 index 0beda4e00a..0000000000 --- a/components/lib/themes/aura/overlaybadge/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/overlaybadge/index.d.ts" -} diff --git a/components/lib/themes/aura/package.json b/components/lib/themes/aura/package.json deleted file mode 100644 index 839cff7f9f..0000000000 --- a/components/lib/themes/aura/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts" -} diff --git a/components/lib/themes/aura/paginator/package.json b/components/lib/themes/aura/paginator/package.json deleted file mode 100644 index 510e46f245..0000000000 --- a/components/lib/themes/aura/paginator/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/paginator/index.d.ts" -} diff --git a/components/lib/themes/aura/panel/package.json b/components/lib/themes/aura/panel/package.json deleted file mode 100644 index 3e980f175f..0000000000 --- a/components/lib/themes/aura/panel/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/panel/index.d.ts" -} diff --git a/components/lib/themes/aura/panelmenu/package.json b/components/lib/themes/aura/panelmenu/package.json deleted file mode 100644 index af86f732f2..0000000000 --- a/components/lib/themes/aura/panelmenu/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/panelmenu/index.d.ts" -} diff --git a/components/lib/themes/aura/password/package.json b/components/lib/themes/aura/password/package.json deleted file mode 100644 index 53a2d3041b..0000000000 --- a/components/lib/themes/aura/password/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/password/index.d.ts" -} diff --git a/components/lib/themes/aura/picklist/package.json b/components/lib/themes/aura/picklist/package.json deleted file mode 100644 index 93ce47205d..0000000000 --- a/components/lib/themes/aura/picklist/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/picklist/index.d.ts" -} diff --git a/components/lib/themes/aura/popover/package.json b/components/lib/themes/aura/popover/package.json deleted file mode 100644 index c0b2465ebd..0000000000 --- a/components/lib/themes/aura/popover/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/popover/index.d.ts" -} diff --git a/components/lib/themes/aura/progressbar/package.json b/components/lib/themes/aura/progressbar/package.json deleted file mode 100644 index b1eea69fc7..0000000000 --- a/components/lib/themes/aura/progressbar/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/progressbar/index.d.ts" -} diff --git a/components/lib/themes/aura/progressspinner/package.json b/components/lib/themes/aura/progressspinner/package.json deleted file mode 100644 index 489cf83fd1..0000000000 --- a/components/lib/themes/aura/progressspinner/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/progressspinner/index.d.ts" -} diff --git a/components/lib/themes/aura/radiobutton/package.json b/components/lib/themes/aura/radiobutton/package.json deleted file mode 100644 index 64983e8e83..0000000000 --- a/components/lib/themes/aura/radiobutton/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/radiobutton/index.d.ts" -} diff --git a/components/lib/themes/aura/rating/package.json b/components/lib/themes/aura/rating/package.json deleted file mode 100644 index 0844be83d4..0000000000 --- a/components/lib/themes/aura/rating/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/rating/index.d.ts" -} diff --git a/components/lib/themes/aura/ripple/package.json b/components/lib/themes/aura/ripple/package.json deleted file mode 100644 index 08d35bef26..0000000000 --- a/components/lib/themes/aura/ripple/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/ripple/index.d.ts" -} diff --git a/components/lib/themes/aura/scrollpanel/package.json b/components/lib/themes/aura/scrollpanel/package.json deleted file mode 100644 index b982aed758..0000000000 --- a/components/lib/themes/aura/scrollpanel/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/scrollpanel/index.d.ts" -} diff --git a/components/lib/themes/aura/select/package.json b/components/lib/themes/aura/select/package.json deleted file mode 100644 index d1347db919..0000000000 --- a/components/lib/themes/aura/select/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/select/index.d.ts" -} diff --git a/components/lib/themes/aura/selectbutton/package.json b/components/lib/themes/aura/selectbutton/package.json deleted file mode 100644 index 9f030656cd..0000000000 --- a/components/lib/themes/aura/selectbutton/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/selectbutton/index.d.ts" -} diff --git a/components/lib/themes/aura/skeleton/package.json b/components/lib/themes/aura/skeleton/package.json deleted file mode 100644 index ed0dd70584..0000000000 --- a/components/lib/themes/aura/skeleton/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/skeleton/index.d.ts" -} diff --git a/components/lib/themes/aura/slider/package.json b/components/lib/themes/aura/slider/package.json deleted file mode 100644 index b8ce848676..0000000000 --- a/components/lib/themes/aura/slider/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/slider/index.d.ts" -} diff --git a/components/lib/themes/aura/speeddial/package.json b/components/lib/themes/aura/speeddial/package.json deleted file mode 100644 index 0cb82ae7a7..0000000000 --- a/components/lib/themes/aura/speeddial/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/speeddial/index.d.ts" -} diff --git a/components/lib/themes/aura/splitbutton/package.json b/components/lib/themes/aura/splitbutton/package.json deleted file mode 100644 index e9e61fa3fe..0000000000 --- a/components/lib/themes/aura/splitbutton/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/splitbutton/index.d.ts" -} diff --git a/components/lib/themes/aura/splitter/package.json b/components/lib/themes/aura/splitter/package.json deleted file mode 100644 index 6bbd93500b..0000000000 --- a/components/lib/themes/aura/splitter/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/splitter/index.d.ts" -} diff --git a/components/lib/themes/aura/stepper/package.json b/components/lib/themes/aura/stepper/package.json deleted file mode 100644 index fb90a7f329..0000000000 --- a/components/lib/themes/aura/stepper/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/stepper/index.d.ts" -} diff --git a/components/lib/themes/aura/steps/package.json b/components/lib/themes/aura/steps/package.json deleted file mode 100644 index 640ac77cb9..0000000000 --- a/components/lib/themes/aura/steps/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/steps/index.d.ts" -} diff --git a/components/lib/themes/aura/tabmenu/package.json b/components/lib/themes/aura/tabmenu/package.json deleted file mode 100644 index 5b72ce818c..0000000000 --- a/components/lib/themes/aura/tabmenu/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/tabmenu/index.d.ts" -} diff --git a/components/lib/themes/aura/tabs/package.json b/components/lib/themes/aura/tabs/package.json deleted file mode 100644 index c6aeb09f1e..0000000000 --- a/components/lib/themes/aura/tabs/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/tabs/index.d.ts" -} diff --git a/components/lib/themes/aura/tabview/package.json b/components/lib/themes/aura/tabview/package.json deleted file mode 100644 index 18a57fc4ce..0000000000 --- a/components/lib/themes/aura/tabview/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/tabview/index.d.ts" -} diff --git a/components/lib/themes/aura/tag/package.json b/components/lib/themes/aura/tag/package.json deleted file mode 100644 index c535679a7e..0000000000 --- a/components/lib/themes/aura/tag/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/tag/index.d.ts" -} diff --git a/components/lib/themes/aura/terminal/package.json b/components/lib/themes/aura/terminal/package.json deleted file mode 100644 index 43c12ad943..0000000000 --- a/components/lib/themes/aura/terminal/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/terminal/index.d.ts" -} diff --git a/components/lib/themes/aura/textarea/package.json b/components/lib/themes/aura/textarea/package.json deleted file mode 100644 index 8e4600426a..0000000000 --- a/components/lib/themes/aura/textarea/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/textarea/index.d.ts" -} diff --git a/components/lib/themes/aura/tieredmenu/package.json b/components/lib/themes/aura/tieredmenu/package.json deleted file mode 100644 index ad015d9254..0000000000 --- a/components/lib/themes/aura/tieredmenu/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/tieredmenu/index.d.ts" -} diff --git a/components/lib/themes/aura/timeline/package.json b/components/lib/themes/aura/timeline/package.json deleted file mode 100644 index e6a15c9187..0000000000 --- a/components/lib/themes/aura/timeline/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/timeline/index.d.ts" -} diff --git a/components/lib/themes/aura/toast/package.json b/components/lib/themes/aura/toast/package.json deleted file mode 100644 index 776e92eba0..0000000000 --- a/components/lib/themes/aura/toast/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/toast/index.d.ts" -} diff --git a/components/lib/themes/aura/togglebutton/package.json b/components/lib/themes/aura/togglebutton/package.json deleted file mode 100644 index 4620391b09..0000000000 --- a/components/lib/themes/aura/togglebutton/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/togglebutton/index.d.ts" -} diff --git a/components/lib/themes/aura/toggleswitch/package.json b/components/lib/themes/aura/toggleswitch/package.json deleted file mode 100644 index b9f63c9468..0000000000 --- a/components/lib/themes/aura/toggleswitch/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/toggleswitch/index.d.ts" -} diff --git a/components/lib/themes/aura/toolbar/package.json b/components/lib/themes/aura/toolbar/package.json deleted file mode 100644 index f93fe0ce3c..0000000000 --- a/components/lib/themes/aura/toolbar/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/toolbar/index.d.ts" -} diff --git a/components/lib/themes/aura/tooltip/package.json b/components/lib/themes/aura/tooltip/package.json deleted file mode 100644 index 9ff49a1ac9..0000000000 --- a/components/lib/themes/aura/tooltip/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/tooltip/index.d.ts" -} diff --git a/components/lib/themes/aura/tree/package.json b/components/lib/themes/aura/tree/package.json deleted file mode 100644 index dea10be01d..0000000000 --- a/components/lib/themes/aura/tree/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/tree/index.d.ts" -} diff --git a/components/lib/themes/aura/treeselect/package.json b/components/lib/themes/aura/treeselect/package.json deleted file mode 100644 index ef52adf6b0..0000000000 --- a/components/lib/themes/aura/treeselect/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/treeselect/index.d.ts" -} diff --git a/components/lib/themes/aura/treetable/package.json b/components/lib/themes/aura/treetable/package.json deleted file mode 100644 index d575e61519..0000000000 --- a/components/lib/themes/aura/treetable/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/treetable/index.d.ts" -} diff --git a/components/lib/themes/config/index.d.ts b/components/lib/themes/config/index.d.ts deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/components/lib/themes/config/index.js b/components/lib/themes/config/index.js deleted file mode 100644 index 0b06eab713..0000000000 --- a/components/lib/themes/config/index.js +++ /dev/null @@ -1,144 +0,0 @@ -import { ThemeService, ThemeUtils } from 'primevue/themes'; - -export default { - defaults: { - variable: { - prefix: 'p', - selector: ':root', - excludedKeyRegex: /^(primitive|semantic|components|directives|variables|colorscheme|light|dark|common|root|states)$/gi - }, - options: { - prefix: 'p', - darkModeSelector: 'system', - cssLayer: false - } - }, - _theme: undefined, - _layerNames: new Set(), - _loadedStyleNames: new Set(), - _loadingStyles: new Set(), - _tokens: {}, - update(newValues = {}) { - const { theme } = newValues; - - if (theme) { - this._theme = { - ...theme, - options: { - ...this.defaults.options, - ...theme.options - } - }; - this._tokens = ThemeUtils.createTokens(this.preset, this.defaults); - this.clearLoadedStyleNames(); - } - }, - get theme() { - return this._theme; - }, - get preset() { - return this.theme?.preset || {}; - }, - get options() { - return this.theme?.options || {}; - }, - get tokens() { - return this._tokens; - }, - getTheme() { - return this.theme; - }, - setTheme(newValue) { - this.update({ theme: newValue }); - ThemeService.emit('theme:change', newValue); - }, - getPreset() { - return this.preset; - }, - setPreset(newValue) { - this._theme = { ...this.theme, preset: newValue }; - this._tokens = ThemeUtils.createTokens(newValue, this.defaults); - - this.clearLoadedStyleNames(); - ThemeService.emit('preset:change', newValue); - ThemeService.emit('theme:change', this.theme); - }, - getOptions() { - return this.options; - }, - setOptions(newValue) { - this._theme = { ...this.theme, options: newValue }; - - this.clearLoadedStyleNames(); - ThemeService.emit('options:change', newValue); - ThemeService.emit('theme:change', this.theme); - }, - getLayerNames() { - return [...this._layerNames]; - }, - setLayerNames(layerName) { - this._layerNames.add(layerName); - }, - getLoadedStyleNames() { - return this._loadedStyleNames; - }, - isStyleNameLoaded(name) { - return this._loadedStyleNames.has(name); - }, - setLoadedStyleName(name) { - this._loadedStyleNames.add(name); - }, - deleteLoadedStyleName(name) { - this._loadedStyleNames.delete(name); - }, - clearLoadedStyleNames() { - this._loadedStyleNames.clear(); - }, - getTokenValue(tokenPath) { - return ThemeUtils.getTokenValue(this.tokens, tokenPath, this.defaults); - }, - getCommon(name = '', params) { - return ThemeUtils.getCommon({ name, theme: this.theme, params, defaults: this.defaults, set: { layerNames: this.setLayerNames.bind(this) } }); - }, - getComponent(name = '', params) { - const options = { name, theme: this.theme, params, defaults: this.defaults, set: { layerNames: this.setLayerNames.bind(this) } }; - - return ThemeUtils.getPresetC(options); - }, - getDirective(name = '', params) { - const options = { name, theme: this.theme, params, defaults: this.defaults, set: { layerNames: this.setLayerNames.bind(this) } }; - - return ThemeUtils.getPresetD(options); - }, - getCustomPreset(name = '', preset, selector, params) { - const options = { name, preset, options: this.options, selector, params, defaults: this.defaults, set: { layerNames: this.setLayerNames.bind(this) } }; - - return ThemeUtils.getPreset(options); - }, - getLayerOrderCSS(name = '') { - return ThemeUtils.getLayerOrder(name, this.options, { names: this.getLayerNames() }, this.defaults); - }, - transformCSS(name = '', css, type = 'style', mode) { - return ThemeUtils.transformCSS(name, css, mode, type, this.options, { layerNames: this.setLayerNames.bind(this) }, this.defaults); - }, - getCommonStyleSheet(name = '', params, props = {}) { - return ThemeUtils.getCommonStyleSheet({ name, theme: this.theme, params, props, defaults: this.defaults, set: { layerNames: this.setLayerNames.bind(this) } }); - }, - getStyleSheet(name, params, props = {}) { - return ThemeUtils.getStyleSheet({ name, theme: this.theme, params, props, defaults: this.defaults, set: { layerNames: this.setLayerNames.bind(this) } }); - }, - onStyleMounted(name) { - this._loadingStyles.add(name); - }, - onStyleUpdated(name) { - this._loadingStyles.add(name); - }, - onStyleLoaded(event, { name }) { - if (this._loadingStyles.size) { - this._loadingStyles.delete(name); - - ThemeService.emit(`theme:${name}:load`, event); // Exp: ThemeService.emit('theme:panel-style:load', event) - !this._loadingStyles.size && ThemeService.emit('theme:load'); - } - } -}; diff --git a/components/lib/themes/config/package.json b/components/lib/themes/config/package.json deleted file mode 100644 index 839cff7f9f..0000000000 --- a/components/lib/themes/config/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts" -} diff --git a/components/lib/themes/helpers/css.js b/components/lib/themes/helpers/css.js deleted file mode 100644 index eaf052ad80..0000000000 --- a/components/lib/themes/helpers/css.js +++ /dev/null @@ -1,3 +0,0 @@ -import { dt, SharedUtils } from 'primevue/themes'; - -export const css = (style) => SharedUtils.object.getItemValue(style, { dt }); diff --git a/components/lib/themes/helpers/index.d.ts b/components/lib/themes/helpers/index.d.ts deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/components/lib/themes/helpers/package.json b/components/lib/themes/helpers/package.json deleted file mode 100644 index 839cff7f9f..0000000000 --- a/components/lib/themes/helpers/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts" -} diff --git a/components/lib/themes/index.d.ts b/components/lib/themes/index.d.ts deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/components/lib/themes/index.js b/components/lib/themes/index.js deleted file mode 100644 index 2764c409b0..0000000000 --- a/components/lib/themes/index.js +++ /dev/null @@ -1,5 +0,0 @@ -export * from 'primevue/themes/actions'; -export { default as Theme } from 'primevue/themes/config'; -export * from 'primevue/themes/helpers'; -export { default as ThemeService } from 'primevue/themes/service'; -export * from 'primevue/themes/utils'; diff --git a/components/lib/themes/lara/accordion/package.json b/components/lib/themes/lara/accordion/package.json deleted file mode 100644 index aa2ffa7893..0000000000 --- a/components/lib/themes/lara/accordion/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/accordion/index.d.ts" -} diff --git a/components/lib/themes/lara/autocomplete/package.json b/components/lib/themes/lara/autocomplete/package.json deleted file mode 100644 index 4dc53ee5b4..0000000000 --- a/components/lib/themes/lara/autocomplete/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/autocomplete/index.d.ts" -} diff --git a/components/lib/themes/lara/avatar/package.json b/components/lib/themes/lara/avatar/package.json deleted file mode 100644 index 7d3175f314..0000000000 --- a/components/lib/themes/lara/avatar/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/avatar/index.d.ts" -} diff --git a/components/lib/themes/lara/badge/package.json b/components/lib/themes/lara/badge/package.json deleted file mode 100644 index b6ec412c06..0000000000 --- a/components/lib/themes/lara/badge/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/badge/index.d.ts" -} diff --git a/components/lib/themes/lara/blockui/package.json b/components/lib/themes/lara/blockui/package.json deleted file mode 100644 index 093846ca19..0000000000 --- a/components/lib/themes/lara/blockui/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/blockui/index.d.ts" -} diff --git a/components/lib/themes/lara/breadcrumb/package.json b/components/lib/themes/lara/breadcrumb/package.json deleted file mode 100644 index 40c3e24b44..0000000000 --- a/components/lib/themes/lara/breadcrumb/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/breadcrumb/index.d.ts" -} diff --git a/components/lib/themes/lara/button/package.json b/components/lib/themes/lara/button/package.json deleted file mode 100644 index 9f0083f568..0000000000 --- a/components/lib/themes/lara/button/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/button/index.d.ts" -} diff --git a/components/lib/themes/lara/card/package.json b/components/lib/themes/lara/card/package.json deleted file mode 100644 index 615dc5261f..0000000000 --- a/components/lib/themes/lara/card/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/card/index.d.ts" -} diff --git a/components/lib/themes/lara/carousel/package.json b/components/lib/themes/lara/carousel/package.json deleted file mode 100644 index 918ea81fd5..0000000000 --- a/components/lib/themes/lara/carousel/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/carousel/index.d.ts" -} diff --git a/components/lib/themes/lara/cascadeselect/package.json b/components/lib/themes/lara/cascadeselect/package.json deleted file mode 100644 index 83823fb482..0000000000 --- a/components/lib/themes/lara/cascadeselect/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/cascadeselect/index.d.ts" -} diff --git a/components/lib/themes/lara/checkbox/package.json b/components/lib/themes/lara/checkbox/package.json deleted file mode 100644 index 6e041f8077..0000000000 --- a/components/lib/themes/lara/checkbox/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/checkbox/index.d.ts" -} diff --git a/components/lib/themes/lara/chip/package.json b/components/lib/themes/lara/chip/package.json deleted file mode 100644 index 80c1810443..0000000000 --- a/components/lib/themes/lara/chip/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/chip/index.d.ts" -} diff --git a/components/lib/themes/lara/colorpicker/package.json b/components/lib/themes/lara/colorpicker/package.json deleted file mode 100644 index 6ccfbedbe9..0000000000 --- a/components/lib/themes/lara/colorpicker/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/colorpicker/index.d.ts" -} diff --git a/components/lib/themes/lara/confirmdialog/package.json b/components/lib/themes/lara/confirmdialog/package.json deleted file mode 100644 index 7d6c819fdd..0000000000 --- a/components/lib/themes/lara/confirmdialog/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/confirmdialog/index.d.ts" -} diff --git a/components/lib/themes/lara/confirmpopup/package.json b/components/lib/themes/lara/confirmpopup/package.json deleted file mode 100644 index db691643ec..0000000000 --- a/components/lib/themes/lara/confirmpopup/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/confirmpopup/index.d.ts" -} diff --git a/components/lib/themes/lara/contextmenu/package.json b/components/lib/themes/lara/contextmenu/package.json deleted file mode 100644 index abc487dc56..0000000000 --- a/components/lib/themes/lara/contextmenu/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/contextmenu/index.d.ts" -} diff --git a/components/lib/themes/lara/datatable/package.json b/components/lib/themes/lara/datatable/package.json deleted file mode 100644 index 14aacef4b6..0000000000 --- a/components/lib/themes/lara/datatable/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/datatable/index.d.ts" -} diff --git a/components/lib/themes/lara/dataview/package.json b/components/lib/themes/lara/dataview/package.json deleted file mode 100644 index 6dd3ed3430..0000000000 --- a/components/lib/themes/lara/dataview/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/dataview/index.d.ts" -} diff --git a/components/lib/themes/lara/datepicker/package.json b/components/lib/themes/lara/datepicker/package.json deleted file mode 100644 index 15b62e3228..0000000000 --- a/components/lib/themes/lara/datepicker/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/datepicker/index.d.ts" -} diff --git a/components/lib/themes/lara/dialog/package.json b/components/lib/themes/lara/dialog/package.json deleted file mode 100644 index 85b726e49b..0000000000 --- a/components/lib/themes/lara/dialog/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/dialog/index.d.ts" -} diff --git a/components/lib/themes/lara/divider/package.json b/components/lib/themes/lara/divider/package.json deleted file mode 100644 index 2c9948dc33..0000000000 --- a/components/lib/themes/lara/divider/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/divider/index.d.ts" -} diff --git a/components/lib/themes/lara/dock/package.json b/components/lib/themes/lara/dock/package.json deleted file mode 100644 index 22f1f5bb87..0000000000 --- a/components/lib/themes/lara/dock/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/dock/index.d.ts" -} diff --git a/components/lib/themes/lara/drawer/package.json b/components/lib/themes/lara/drawer/package.json deleted file mode 100644 index 8d1ae8a242..0000000000 --- a/components/lib/themes/lara/drawer/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/drawer/index.d.ts" -} diff --git a/components/lib/themes/lara/editor/package.json b/components/lib/themes/lara/editor/package.json deleted file mode 100644 index 0181ce7796..0000000000 --- a/components/lib/themes/lara/editor/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/editor/index.d.ts" -} diff --git a/components/lib/themes/lara/fieldset/package.json b/components/lib/themes/lara/fieldset/package.json deleted file mode 100644 index 8bf77039c2..0000000000 --- a/components/lib/themes/lara/fieldset/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/fieldset/index.d.ts" -} diff --git a/components/lib/themes/lara/fileupload/package.json b/components/lib/themes/lara/fileupload/package.json deleted file mode 100644 index e40d755919..0000000000 --- a/components/lib/themes/lara/fileupload/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/fileupload/index.d.ts" -} diff --git a/components/lib/themes/lara/floatlabel/package.json b/components/lib/themes/lara/floatlabel/package.json deleted file mode 100644 index dc6ddf77d7..0000000000 --- a/components/lib/themes/lara/floatlabel/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/floatlabel/index.d.ts" -} diff --git a/components/lib/themes/lara/galleria/package.json b/components/lib/themes/lara/galleria/package.json deleted file mode 100644 index ae4ffb21b5..0000000000 --- a/components/lib/themes/lara/galleria/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/galleria/index.d.ts" -} diff --git a/components/lib/themes/lara/iconfield/package.json b/components/lib/themes/lara/iconfield/package.json deleted file mode 100644 index 0e46466afb..0000000000 --- a/components/lib/themes/lara/iconfield/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/iconfield/index.d.ts" -} diff --git a/components/lib/themes/lara/image/package.json b/components/lib/themes/lara/image/package.json deleted file mode 100644 index f9f5eb7f78..0000000000 --- a/components/lib/themes/lara/image/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/image/index.d.ts" -} diff --git a/components/lib/themes/lara/index.js b/components/lib/themes/lara/index.js deleted file mode 100644 index cbdd40c128..0000000000 --- a/components/lib/themes/lara/index.js +++ /dev/null @@ -1,555 +0,0 @@ -import accordion from 'primevue/themes/lara/accordion'; -import autocomplete from 'primevue/themes/lara/autocomplete'; -import avatar from 'primevue/themes/lara/avatar'; -import badge from 'primevue/themes/lara/badge'; -import blockui from 'primevue/themes/lara/blockui'; -import breadcrumb from 'primevue/themes/lara/breadcrumb'; -import button from 'primevue/themes/lara/button'; -import card from 'primevue/themes/lara/card'; -import carousel from 'primevue/themes/lara/carousel'; -import cascadeselect from 'primevue/themes/lara/cascadeselect'; -import checkbox from 'primevue/themes/lara/checkbox'; -import chip from 'primevue/themes/lara/chip'; -import colorpicker from 'primevue/themes/lara/colorpicker'; -import confirmdialog from 'primevue/themes/lara/confirmdialog'; -import confirmpopup from 'primevue/themes/lara/confirmpopup'; -import contextmenu from 'primevue/themes/lara/contextmenu'; -import datatable from 'primevue/themes/lara/datatable'; -import dataview from 'primevue/themes/lara/dataview'; -import datepicker from 'primevue/themes/lara/datepicker'; -import dialog from 'primevue/themes/lara/dialog'; -import divider from 'primevue/themes/lara/divider'; -import dock from 'primevue/themes/lara/dock'; -import drawer from 'primevue/themes/lara/drawer'; -import editor from 'primevue/themes/lara/editor'; -import fieldset from 'primevue/themes/lara/fieldset'; -import fileupload from 'primevue/themes/lara/fileupload'; -import floatlabel from 'primevue/themes/lara/floatlabel'; -import galleria from 'primevue/themes/lara/galleria'; -import iconfield from 'primevue/themes/lara/iconfield'; -import image from 'primevue/themes/lara/image'; -import inlinemessage from 'primevue/themes/lara/inlinemessage'; -import inplace from 'primevue/themes/lara/inplace'; -import inputchips from 'primevue/themes/lara/inputchips'; -import inputgroup from 'primevue/themes/lara/inputgroup'; -import inputnumber from 'primevue/themes/lara/inputnumber'; -import inputtext from 'primevue/themes/lara/inputtext'; -import knob from 'primevue/themes/lara/knob'; -import listbox from 'primevue/themes/lara/listbox'; -import megamenu from 'primevue/themes/lara/megamenu'; -import menu from 'primevue/themes/lara/menu'; -import menubar from 'primevue/themes/lara/menubar'; -import message from 'primevue/themes/lara/message'; -import metergroup from 'primevue/themes/lara/metergroup'; -import multiselect from 'primevue/themes/lara/multiselect'; -import orderlist from 'primevue/themes/lara/orderlist'; -import organizationchart from 'primevue/themes/lara/organizationchart'; -import overlaybadge from 'primevue/themes/lara/overlaybadge'; -import paginator from 'primevue/themes/lara/paginator'; -import panel from 'primevue/themes/lara/panel'; -import panelmenu from 'primevue/themes/lara/panelmenu'; -import password from 'primevue/themes/lara/password'; -import picklist from 'primevue/themes/lara/picklist'; -import popover from 'primevue/themes/lara/popover'; -import progressbar from 'primevue/themes/lara/progressbar'; -import progressspinner from 'primevue/themes/lara/progressspinner'; -import radiobutton from 'primevue/themes/lara/radiobutton'; -import rating from 'primevue/themes/lara/rating'; -import ripple from 'primevue/themes/lara/ripple'; -import scrollpanel from 'primevue/themes/lara/scrollpanel'; -import select from 'primevue/themes/lara/select'; -import selectbutton from 'primevue/themes/lara/selectbutton'; -import skeleton from 'primevue/themes/lara/skeleton'; -import slider from 'primevue/themes/lara/slider'; -import speeddial from 'primevue/themes/lara/speeddial'; -import splitbutton from 'primevue/themes/lara/splitbutton'; -import splitter from 'primevue/themes/lara/splitter'; -import stepper from 'primevue/themes/lara/stepper'; -import steps from 'primevue/themes/lara/steps'; -import tabmenu from 'primevue/themes/lara/tabmenu'; -import tabs from 'primevue/themes/lara/tabs'; -import tabview from 'primevue/themes/lara/tabview'; -import tag from 'primevue/themes/lara/tag'; -import terminal from 'primevue/themes/lara/terminal'; -import textarea from 'primevue/themes/lara/textarea'; -import tieredmenu from 'primevue/themes/lara/tieredmenu'; -import timeline from 'primevue/themes/lara/timeline'; -import toast from 'primevue/themes/lara/toast'; -import togglebutton from 'primevue/themes/lara/togglebutton'; -import toggleswitch from 'primevue/themes/lara/toggleswitch'; -import toolbar from 'primevue/themes/lara/toolbar'; -import tooltip from 'primevue/themes/lara/tooltip'; -import tree from 'primevue/themes/lara/tree'; -import treeselect from 'primevue/themes/lara/treeselect'; -import treetable from 'primevue/themes/lara/treetable'; - -export default { - primitive: { - borderRadius: { - none: '0', - xs: '2px', - sm: '4px', - md: '6px', - lg: '8px', - xl: '12px' - }, - emerald: { 50: '#ecfdf5', 100: '#d1fae5', 200: '#a7f3d0', 300: '#6ee7b7', 400: '#34d399', 500: '#10b981', 600: '#059669', 700: '#047857', 800: '#065f46', 900: '#064e3b', 950: '#022c22' }, - green: { 50: '#f0fdf4', 100: '#dcfce7', 200: '#bbf7d0', 300: '#86efac', 400: '#4ade80', 500: '#22c55e', 600: '#16a34a', 700: '#15803d', 800: '#166534', 900: '#14532d', 950: '#052e16' }, - lime: { 50: '#f7fee7', 100: '#ecfccb', 200: '#d9f99d', 300: '#bef264', 400: '#a3e635', 500: '#84cc16', 600: '#65a30d', 700: '#4d7c0f', 800: '#3f6212', 900: '#365314', 950: '#1a2e05' }, - red: { 50: '#fef2f2', 100: '#fee2e2', 200: '#fecaca', 300: '#fca5a5', 400: '#f87171', 500: '#ef4444', 600: '#dc2626', 700: '#b91c1c', 800: '#991b1b', 900: '#7f1d1d', 950: '#450a0a' }, - orange: { 50: '#fff7ed', 100: '#ffedd5', 200: '#fed7aa', 300: '#fdba74', 400: '#fb923c', 500: '#f97316', 600: '#ea580c', 700: '#c2410c', 800: '#9a3412', 900: '#7c2d12', 950: '#431407' }, - amber: { 50: '#fffbeb', 100: '#fef3c7', 200: '#fde68a', 300: '#fcd34d', 400: '#fbbf24', 500: '#f59e0b', 600: '#d97706', 700: '#b45309', 800: '#92400e', 900: '#78350f', 950: '#451a03' }, - yellow: { 50: '#fefce8', 100: '#fef9c3', 200: '#fef08a', 300: '#fde047', 400: '#facc15', 500: '#eab308', 600: '#ca8a04', 700: '#a16207', 800: '#854d0e', 900: '#713f12', 950: '#422006' }, - teal: { 50: '#f0fdfa', 100: '#ccfbf1', 200: '#99f6e4', 300: '#5eead4', 400: '#2dd4bf', 500: '#14b8a6', 600: '#0d9488', 700: '#0f766e', 800: '#115e59', 900: '#134e4a', 950: '#042f2e' }, - cyan: { 50: '#ecfeff', 100: '#cffafe', 200: '#a5f3fc', 300: '#67e8f9', 400: '#22d3ee', 500: '#06b6d4', 600: '#0891b2', 700: '#0e7490', 800: '#155e75', 900: '#164e63', 950: '#083344' }, - sky: { 50: '#f0f9ff', 100: '#e0f2fe', 200: '#bae6fd', 300: '#7dd3fc', 400: '#38bdf8', 500: '#0ea5e9', 600: '#0284c7', 700: '#0369a1', 800: '#075985', 900: '#0c4a6e', 950: '#082f49' }, - blue: { 50: '#eff6ff', 100: '#dbeafe', 200: '#bfdbfe', 300: '#93c5fd', 400: '#60a5fa', 500: '#3b82f6', 600: '#2563eb', 700: '#1d4ed8', 800: '#1e40af', 900: '#1e3a8a', 950: '#172554' }, - indigo: { 50: '#eef2ff', 100: '#e0e7ff', 200: '#c7d2fe', 300: '#a5b4fc', 400: '#818cf8', 500: '#6366f1', 600: '#4f46e5', 700: '#4338ca', 800: '#3730a3', 900: '#312e81', 950: '#1e1b4b' }, - violet: { 50: '#f5f3ff', 100: '#ede9fe', 200: '#ddd6fe', 300: '#c4b5fd', 400: '#a78bfa', 500: '#8b5cf6', 600: '#7c3aed', 700: '#6d28d9', 800: '#5b21b6', 900: '#4c1d95', 950: '#2e1065' }, - purple: { 50: '#faf5ff', 100: '#f3e8ff', 200: '#e9d5ff', 300: '#d8b4fe', 400: '#c084fc', 500: '#a855f7', 600: '#9333ea', 700: '#7e22ce', 800: '#6b21a8', 900: '#581c87', 950: '#3b0764' }, - fuchsia: { 50: '#fdf4ff', 100: '#fae8ff', 200: '#f5d0fe', 300: '#f0abfc', 400: '#e879f9', 500: '#d946ef', 600: '#c026d3', 700: '#a21caf', 800: '#86198f', 900: '#701a75', 950: '#4a044e' }, - pink: { 50: '#fdf2f8', 100: '#fce7f3', 200: '#fbcfe8', 300: '#f9a8d4', 400: '#f472b6', 500: '#ec4899', 600: '#db2777', 700: '#be185d', 800: '#9d174d', 900: '#831843', 950: '#500724' }, - rose: { 50: '#fff1f2', 100: '#ffe4e6', 200: '#fecdd3', 300: '#fda4af', 400: '#fb7185', 500: '#f43f5e', 600: '#e11d48', 700: '#be123c', 800: '#9f1239', 900: '#881337', 950: '#4c0519' }, - slate: { 50: '#f8fafc', 100: '#f1f5f9', 200: '#e2e8f0', 300: '#cbd5e1', 400: '#94a3b8', 500: '#64748b', 600: '#475569', 700: '#334155', 800: '#1e293b', 900: '#0f172a', 950: '#020617' }, - gray: { 50: '#f9fafb', 100: '#f3f4f6', 200: '#e5e7eb', 300: '#d1d5db', 400: '#9ca3af', 500: '#6b7280', 600: '#4b5563', 700: '#374151', 800: '#1f2937', 900: '#111827', 950: '#030712' }, - zinc: { 50: '#fafafa', 100: '#f4f4f5', 200: '#e4e4e7', 300: '#d4d4d8', 400: '#a1a1aa', 500: '#71717a', 600: '#52525b', 700: '#3f3f46', 800: '#27272a', 900: '#18181b', 950: '#09090b' }, - neutral: { 50: '#fafafa', 100: '#f5f5f5', 200: '#e5e5e5', 300: '#d4d4d4', 400: '#a3a3a3', 500: '#737373', 600: '#525252', 700: '#404040', 800: '#262626', 900: '#171717', 950: '#0a0a0a' }, - stone: { 50: '#fafaf9', 100: '#f5f5f4', 200: '#e7e5e4', 300: '#d6d3d1', 400: '#a8a29e', 500: '#78716c', 600: '#57534e', 700: '#44403c', 800: '#292524', 900: '#1c1917', 950: '#0c0a09' } - }, - semantic: { - transitionDuration: '0.2s', - focusRing: { - width: '0', - style: 'none', - color: 'transparent', - offset: '0' - }, - disabledOpacity: '0.6', - iconSize: '1rem', - anchorGutter: '2px', - primary: { - 50: '{emerald.50}', - 100: '{emerald.100}', - 200: '{emerald.200}', - 300: '{emerald.300}', - 400: '{emerald.400}', - 500: '{emerald.500}', - 600: '{emerald.600}', - 700: '{emerald.700}', - 800: '{emerald.800}', - 900: '{emerald.900}', - 950: '{emerald.950}' - }, - formField: { - paddingX: '0.75rem', - paddingY: '0.625rem', - borderRadius: '{border.radius.md}', - focusRing: { - width: '{focus.ring.width}', - style: '{focus.ring.style}', - color: '{focus.ring.color}', - offset: '{focus.ring.offset}', - shadow: '{focus.ring.shadow}' - }, - transitionDuration: '{transition.duration}' - }, - list: { - padding: '0.5rem 0', - gap: '0', - header: { - padding: '0.625rem 1rem 0 1rem' - }, - option: { - padding: '0.625rem 1rem', - borderRadius: '0' - }, - optionGroup: { - padding: '0.625rem 1rem', - fontWeight: '600' - } - }, - content: { - borderRadius: '{border.radius.md}' - }, - mask: { - transitionDuration: '0.15s' - }, - navigation: { - list: { - padding: '0.5rem 0', - gap: '0' - }, - item: { - padding: '0.625rem 1rem', - borderRadius: '0', - gap: '0.5rem' - }, - submenuLabel: { - padding: '0.625rem 1rem', - fontWeight: '600' - }, - submenuIcon: { - size: '0.875rem' - } - }, - overlay: { - select: { - borderRadius: '{border.radius.md}', - shadow: '0 2px 12px 0 rgba(0, 0, 0, 0.1)' - }, - popover: { - borderRadius: '{border.radius.md}', - padding: '1rem', - shadow: '0 1px 3px rgba(0, 0, 0, 0.1)' - }, - modal: { - borderRadius: '{border.radius.xl}', - padding: '1.5rem', - shadow: '0 1px 3px rgba(0, 0, 0, 0.3)' - }, - navigation: { - shadow: '0 2px 12px 0 rgba(0, 0, 0, 0.1)' - } - }, - colorScheme: { - light: { - surface: { - 0: '#ffffff', - 50: '{slate.50}', - 100: '{slate.100}', - 200: '{slate.200}', - 300: '{slate.300}', - 400: '{slate.400}', - 500: '{slate.500}', - 600: '{slate.600}', - 700: '{slate.700}', - 800: '{slate.800}', - 900: '{slate.900}', - 950: '{slate.950}' - }, - primary: { - color: '{primary.500}', - contrastColor: '#ffffff', - hoverColor: '{primary.600}', - activeColor: '{primary.700}' - }, - highlight: { - background: '{primary.50}', - focusBackground: '{primary.100}', - color: '{primary.700}', - focusColor: '{primary.800}' - }, - focusRing: { - shadow: '0 0 0 0.2rem {primary.200}' - }, - mask: { - background: 'rgba(0,0,0,0.4)', - color: '{surface.200}' - }, - formField: { - background: '{surface.0}', - disabledBackground: '{surface.200}', - filledBackground: '{surface.50}', - filledFocusBackground: '{surface.0}', - borderColor: '{surface.300}', - hoverBorderColor: '{primary.color}', - focusBorderColor: '{primary.color}', - invalidBorderColor: '{red.400}', - color: '{surface.700}', - disabledColor: '{surface.500}', - placeholderColor: '{surface.500}', - floatLabelColor: '{surface.500}', - floatLabelFocusColor: '{surface.500}', - floatLabelInvalidColor: '{red.400}', - iconColor: '{surface.500}', - shadow: 'none' - }, - text: { - color: '{surface.700}', - hoverColor: '{surface.800}', - mutedColor: '{surface.500}', - hoverMutedColor: '{surface.600}' - }, - content: { - background: '{surface.0}', - hoverBackground: '{surface.100}', - borderColor: '{surface.200}', - color: '{text.color}', - hoverColor: '{text.hover.color}' - }, - overlay: { - select: { - background: '{surface.0}', - borderColor: '{surface.200}', - color: '{text.color}' - }, - popover: { - background: '{surface.0}', - borderColor: '{surface.200}', - color: '{text.color}' - }, - modal: { - background: '{surface.0}', - borderColor: '{surface.200}', - color: '{text.color}' - } - }, - list: { - option: { - focusBackground: '{surface.100}', - selectedBackground: '{highlight.background}', - selectedFocusBackground: '{highlight.focus.background}', - color: '{text.color}', - focusColor: '{text.hover.color}', - selectedColor: '{highlight.color}', - selectedFocusColor: '{highlight.focus.color}', - icon: { - color: '{surface.400}', - focusColor: '{surface.500}' - } - }, - optionGroup: { - background: 'transparent', - color: '{text.color}' - } - }, - navigation: { - item: { - focusBackground: '{surface.100}', - activeBackground: '{surface.100}', - color: '{text.color}', - focusColor: '{text.hover.color}', - activeColor: '{text.hover.color}', - icon: { - color: '{surface.400}', - focusColor: '{surface.500}', - activeColor: '{surface.500}' - } - }, - submenuLabel: { - background: 'transparent', - color: '{text.color}' - }, - submenuIcon: { - color: '{surface.400}', - focusColor: '{surface.500}', - activeColor: '{surface.500}' - } - } - }, - dark: { - surface: { - 0: '#ffffff', - 50: '{zinc.50}', - 100: '{zinc.100}', - 200: '{zinc.200}', - 300: '{zinc.300}', - 400: '{zinc.400}', - 500: '{zinc.500}', - 600: '{zinc.600}', - 700: '{zinc.700}', - 800: '{zinc.800}', - 900: '{zinc.900}', - 950: '{zinc.950}' - }, - primary: { - color: '{primary.400}', - contrastColor: '{surface.900}', - hoverColor: '{primary.300}', - activeColor: '{primary.200}' - }, - highlight: { - background: 'color-mix(in srgb, {primary.400}, transparent 84%)', - focusBackground: 'color-mix(in srgb, {primary.400}, transparent 76%)', - color: 'rgba(255,255,255,.87)', - focusColor: 'rgba(255,255,255,.87)' - }, - focusRing: { - shadow: '0 0 0 0.2rem color-mix(in srgb, {primary.color}, transparent 80%)' - }, - mask: { - background: 'rgba(0,0,0,0.6)', - color: '{surface.200}' - }, - formField: { - background: '{surface.950}', - disabledBackground: '{surface.700}', - filledBackground: '{surface.800}', - filledFocusBackground: '{surface.950}', - borderColor: '{surface.700}', - hoverBorderColor: '{primary.color}', - focusBorderColor: '{primary.color}', - invalidBorderColor: '{red.300}', - color: '{surface.0}', - disabledColor: '{surface.400}', - placeholderColor: '{surface.400}', - floatLabelColor: '{surface.400}', - floatLabelFocusColor: '{surface.400}', - floatLabelInvalidColor: '{red.300}', - iconColor: '{surface.400}', - shadow: 'none' - }, - text: { - color: '{surface.0}', - hoverColor: '{surface.0}', - mutedColor: '{surface.400}', - hoverMutedColor: '{surface.300}' - }, - content: { - background: '{surface.900}', - hoverBackground: '{surface.800}', - borderColor: '{surface.700}', - color: '{text.color}', - hoverColor: '{text.hover.color}' - }, - overlay: { - select: { - background: '{surface.900}', - borderColor: '{surface.700}', - color: '{text.color}' - }, - popover: { - background: '{surface.900}', - borderColor: '{surface.700}', - color: '{text.color}' - }, - modal: { - background: '{surface.900}', - borderColor: '{surface.700}', - color: '{text.color}' - } - }, - list: { - option: { - focusBackground: '{surface.800}', - selectedBackground: '{highlight.background}', - selectedFocusBackground: '{highlight.focus.background}', - color: '{text.color}', - focusColor: '{text.hover.color}', - selectedColor: '{highlight.color}', - selectedFocusColor: '{highlight.focus.color}', - icon: { - color: '{surface.500}', - focusColor: '{surface.400}' - } - }, - optionGroup: { - background: 'transparent', - color: '{text.color}' - } - }, - navigation: { - item: { - focusBackground: '{surface.800}', - activeBackground: '{surface.800}', - color: '{text.color}', - focusColor: '{text.hover.color}', - activeColor: '{text.hover.color}', - icon: { - color: '{surface.500}', - focusColor: '{surface.400}', - activeColor: '{surface.400}' - } - }, - submenuLabel: { - background: 'transparent', - color: '{text.color}' - }, - submenuIcon: { - color: '{surface.500}', - focusColor: '{surface.400}', - activeColor: '{surface.400}' - } - } - } - } - }, - components: { - accordion, - autocomplete, - avatar, - badge, - blockui, - breadcrumb, - button, - datepicker, - card, - carousel, - cascadeselect, - checkbox, - chip, - colorpicker, - confirmdialog, - confirmpopup, - contextmenu, - dataview, - datatable, - dialog, - divider, - dock, - drawer, - editor, - fieldset, - fileupload, - floatlabel, - galleria, - iconfield, - image, - inlinemessage, - inplace, - inputchips, - inputgroup, - inputnumber, - inputtext, - knob, - listbox, - megamenu, - menu, - menubar, - message, - metergroup, - multiselect, - orderlist, - organizationchart, - overlaybadge, - popover, - paginator, - password, - panel, - panelmenu, - picklist, - progressbar, - progressspinner, - radiobutton, - rating, - scrollpanel, - select, - selectbutton, - skeleton, - slider, - speeddial, - splitter, - splitbutton, - stepper, - steps, - tabmenu, - tabs, - tabview, - textarea, - tieredmenu, - tag, - terminal, - timeline, - togglebutton, - toggleswitch, - tree, - treeselect, - treetable, - toast, - toolbar - }, - directives: { - tooltip, - ripple - } -}; diff --git a/components/lib/themes/lara/inlinemessage/package.json b/components/lib/themes/lara/inlinemessage/package.json deleted file mode 100644 index 540807d36b..0000000000 --- a/components/lib/themes/lara/inlinemessage/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/inlinemessage/index.d.ts" -} diff --git a/components/lib/themes/lara/inplace/package.json b/components/lib/themes/lara/inplace/package.json deleted file mode 100644 index 514c33b271..0000000000 --- a/components/lib/themes/lara/inplace/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/inplace/index.d.ts" -} diff --git a/components/lib/themes/lara/inputchips/package.json b/components/lib/themes/lara/inputchips/package.json deleted file mode 100644 index aff7027ae4..0000000000 --- a/components/lib/themes/lara/inputchips/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/inputchips/index.d.ts" -} diff --git a/components/lib/themes/lara/inputgroup/package.json b/components/lib/themes/lara/inputgroup/package.json deleted file mode 100644 index 53cdc6ec23..0000000000 --- a/components/lib/themes/lara/inputgroup/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/inputgroup/index.d.ts" -} diff --git a/components/lib/themes/lara/inputnumber/package.json b/components/lib/themes/lara/inputnumber/package.json deleted file mode 100644 index d2776ca5fe..0000000000 --- a/components/lib/themes/lara/inputnumber/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/inputnumber/index.d.ts" -} diff --git a/components/lib/themes/lara/inputtext/package.json b/components/lib/themes/lara/inputtext/package.json deleted file mode 100644 index 7f21dedd79..0000000000 --- a/components/lib/themes/lara/inputtext/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/inputtext/index.d.ts" -} diff --git a/components/lib/themes/lara/knob/package.json b/components/lib/themes/lara/knob/package.json deleted file mode 100644 index a5db94c60e..0000000000 --- a/components/lib/themes/lara/knob/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/knob/index.d.ts" -} diff --git a/components/lib/themes/lara/listbox/package.json b/components/lib/themes/lara/listbox/package.json deleted file mode 100644 index 97f0f03c10..0000000000 --- a/components/lib/themes/lara/listbox/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/listbox/index.d.ts" -} diff --git a/components/lib/themes/lara/megamenu/package.json b/components/lib/themes/lara/megamenu/package.json deleted file mode 100644 index dbdcbfa11a..0000000000 --- a/components/lib/themes/lara/megamenu/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/megamenu/index.d.ts" -} diff --git a/components/lib/themes/lara/menu/package.json b/components/lib/themes/lara/menu/package.json deleted file mode 100644 index 2857ee2479..0000000000 --- a/components/lib/themes/lara/menu/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/menu/index.d.ts" -} diff --git a/components/lib/themes/lara/menubar/package.json b/components/lib/themes/lara/menubar/package.json deleted file mode 100644 index 0268f23f32..0000000000 --- a/components/lib/themes/lara/menubar/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/menubar/index.d.ts" -} diff --git a/components/lib/themes/lara/message/package.json b/components/lib/themes/lara/message/package.json deleted file mode 100644 index b49899c688..0000000000 --- a/components/lib/themes/lara/message/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/message/index.d.ts" -} diff --git a/components/lib/themes/lara/metergroup/package.json b/components/lib/themes/lara/metergroup/package.json deleted file mode 100644 index 13e4623ce3..0000000000 --- a/components/lib/themes/lara/metergroup/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/metergroup/index.d.ts" -} diff --git a/components/lib/themes/lara/multiselect/package.json b/components/lib/themes/lara/multiselect/package.json deleted file mode 100644 index 4479bbc95f..0000000000 --- a/components/lib/themes/lara/multiselect/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/multiselect/index.d.ts" -} diff --git a/components/lib/themes/lara/orderlist/package.json b/components/lib/themes/lara/orderlist/package.json deleted file mode 100644 index c455336034..0000000000 --- a/components/lib/themes/lara/orderlist/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/orderlist/index.d.ts" -} diff --git a/components/lib/themes/lara/organizationchart/package.json b/components/lib/themes/lara/organizationchart/package.json deleted file mode 100644 index f765754e32..0000000000 --- a/components/lib/themes/lara/organizationchart/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/organizationchart/index.d.ts" -} diff --git a/components/lib/themes/lara/overlaybadge/package.json b/components/lib/themes/lara/overlaybadge/package.json deleted file mode 100644 index 0beda4e00a..0000000000 --- a/components/lib/themes/lara/overlaybadge/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/overlaybadge/index.d.ts" -} diff --git a/components/lib/themes/lara/package.json b/components/lib/themes/lara/package.json deleted file mode 100644 index 839cff7f9f..0000000000 --- a/components/lib/themes/lara/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts" -} diff --git a/components/lib/themes/lara/paginator/package.json b/components/lib/themes/lara/paginator/package.json deleted file mode 100644 index 510e46f245..0000000000 --- a/components/lib/themes/lara/paginator/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/paginator/index.d.ts" -} diff --git a/components/lib/themes/lara/panel/package.json b/components/lib/themes/lara/panel/package.json deleted file mode 100644 index 3e980f175f..0000000000 --- a/components/lib/themes/lara/panel/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/panel/index.d.ts" -} diff --git a/components/lib/themes/lara/panelmenu/package.json b/components/lib/themes/lara/panelmenu/package.json deleted file mode 100644 index af86f732f2..0000000000 --- a/components/lib/themes/lara/panelmenu/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/panelmenu/index.d.ts" -} diff --git a/components/lib/themes/lara/password/package.json b/components/lib/themes/lara/password/package.json deleted file mode 100644 index 53a2d3041b..0000000000 --- a/components/lib/themes/lara/password/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/password/index.d.ts" -} diff --git a/components/lib/themes/lara/picklist/package.json b/components/lib/themes/lara/picklist/package.json deleted file mode 100644 index 93ce47205d..0000000000 --- a/components/lib/themes/lara/picklist/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/picklist/index.d.ts" -} diff --git a/components/lib/themes/lara/popover/package.json b/components/lib/themes/lara/popover/package.json deleted file mode 100644 index c0b2465ebd..0000000000 --- a/components/lib/themes/lara/popover/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/popover/index.d.ts" -} diff --git a/components/lib/themes/lara/progressbar/package.json b/components/lib/themes/lara/progressbar/package.json deleted file mode 100644 index b1eea69fc7..0000000000 --- a/components/lib/themes/lara/progressbar/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/progressbar/index.d.ts" -} diff --git a/components/lib/themes/lara/progressspinner/package.json b/components/lib/themes/lara/progressspinner/package.json deleted file mode 100644 index 489cf83fd1..0000000000 --- a/components/lib/themes/lara/progressspinner/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/progressspinner/index.d.ts" -} diff --git a/components/lib/themes/lara/radiobutton/package.json b/components/lib/themes/lara/radiobutton/package.json deleted file mode 100644 index 64983e8e83..0000000000 --- a/components/lib/themes/lara/radiobutton/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/radiobutton/index.d.ts" -} diff --git a/components/lib/themes/lara/rating/package.json b/components/lib/themes/lara/rating/package.json deleted file mode 100644 index 0844be83d4..0000000000 --- a/components/lib/themes/lara/rating/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/rating/index.d.ts" -} diff --git a/components/lib/themes/lara/ripple/package.json b/components/lib/themes/lara/ripple/package.json deleted file mode 100644 index 08d35bef26..0000000000 --- a/components/lib/themes/lara/ripple/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/ripple/index.d.ts" -} diff --git a/components/lib/themes/lara/scrollpanel/package.json b/components/lib/themes/lara/scrollpanel/package.json deleted file mode 100644 index b982aed758..0000000000 --- a/components/lib/themes/lara/scrollpanel/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/scrollpanel/index.d.ts" -} diff --git a/components/lib/themes/lara/select/package.json b/components/lib/themes/lara/select/package.json deleted file mode 100644 index d1347db919..0000000000 --- a/components/lib/themes/lara/select/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/select/index.d.ts" -} diff --git a/components/lib/themes/lara/selectbutton/package.json b/components/lib/themes/lara/selectbutton/package.json deleted file mode 100644 index 9f030656cd..0000000000 --- a/components/lib/themes/lara/selectbutton/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/selectbutton/index.d.ts" -} diff --git a/components/lib/themes/lara/skeleton/package.json b/components/lib/themes/lara/skeleton/package.json deleted file mode 100644 index ed0dd70584..0000000000 --- a/components/lib/themes/lara/skeleton/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/skeleton/index.d.ts" -} diff --git a/components/lib/themes/lara/slider/package.json b/components/lib/themes/lara/slider/package.json deleted file mode 100644 index b8ce848676..0000000000 --- a/components/lib/themes/lara/slider/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/slider/index.d.ts" -} diff --git a/components/lib/themes/lara/speeddial/package.json b/components/lib/themes/lara/speeddial/package.json deleted file mode 100644 index 0cb82ae7a7..0000000000 --- a/components/lib/themes/lara/speeddial/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/speeddial/index.d.ts" -} diff --git a/components/lib/themes/lara/splitbutton/package.json b/components/lib/themes/lara/splitbutton/package.json deleted file mode 100644 index e9e61fa3fe..0000000000 --- a/components/lib/themes/lara/splitbutton/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/splitbutton/index.d.ts" -} diff --git a/components/lib/themes/lara/splitter/package.json b/components/lib/themes/lara/splitter/package.json deleted file mode 100644 index 6bbd93500b..0000000000 --- a/components/lib/themes/lara/splitter/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/splitter/index.d.ts" -} diff --git a/components/lib/themes/lara/stepper/package.json b/components/lib/themes/lara/stepper/package.json deleted file mode 100644 index fb90a7f329..0000000000 --- a/components/lib/themes/lara/stepper/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/stepper/index.d.ts" -} diff --git a/components/lib/themes/lara/steps/package.json b/components/lib/themes/lara/steps/package.json deleted file mode 100644 index 640ac77cb9..0000000000 --- a/components/lib/themes/lara/steps/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/steps/index.d.ts" -} diff --git a/components/lib/themes/lara/tabmenu/package.json b/components/lib/themes/lara/tabmenu/package.json deleted file mode 100644 index 5b72ce818c..0000000000 --- a/components/lib/themes/lara/tabmenu/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/tabmenu/index.d.ts" -} diff --git a/components/lib/themes/lara/tabs/package.json b/components/lib/themes/lara/tabs/package.json deleted file mode 100644 index c6aeb09f1e..0000000000 --- a/components/lib/themes/lara/tabs/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/tabs/index.d.ts" -} diff --git a/components/lib/themes/lara/tabview/package.json b/components/lib/themes/lara/tabview/package.json deleted file mode 100644 index 18a57fc4ce..0000000000 --- a/components/lib/themes/lara/tabview/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/tabview/index.d.ts" -} diff --git a/components/lib/themes/lara/tag/package.json b/components/lib/themes/lara/tag/package.json deleted file mode 100644 index c535679a7e..0000000000 --- a/components/lib/themes/lara/tag/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/tag/index.d.ts" -} diff --git a/components/lib/themes/lara/terminal/package.json b/components/lib/themes/lara/terminal/package.json deleted file mode 100644 index 43c12ad943..0000000000 --- a/components/lib/themes/lara/terminal/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/terminal/index.d.ts" -} diff --git a/components/lib/themes/lara/textarea/package.json b/components/lib/themes/lara/textarea/package.json deleted file mode 100644 index 8e4600426a..0000000000 --- a/components/lib/themes/lara/textarea/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/textarea/index.d.ts" -} diff --git a/components/lib/themes/lara/tieredmenu/package.json b/components/lib/themes/lara/tieredmenu/package.json deleted file mode 100644 index ad015d9254..0000000000 --- a/components/lib/themes/lara/tieredmenu/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/tieredmenu/index.d.ts" -} diff --git a/components/lib/themes/lara/timeline/package.json b/components/lib/themes/lara/timeline/package.json deleted file mode 100644 index e6a15c9187..0000000000 --- a/components/lib/themes/lara/timeline/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/timeline/index.d.ts" -} diff --git a/components/lib/themes/lara/toast/package.json b/components/lib/themes/lara/toast/package.json deleted file mode 100644 index 776e92eba0..0000000000 --- a/components/lib/themes/lara/toast/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/toast/index.d.ts" -} diff --git a/components/lib/themes/lara/togglebutton/package.json b/components/lib/themes/lara/togglebutton/package.json deleted file mode 100644 index 4620391b09..0000000000 --- a/components/lib/themes/lara/togglebutton/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/togglebutton/index.d.ts" -} diff --git a/components/lib/themes/lara/toggleswitch/package.json b/components/lib/themes/lara/toggleswitch/package.json deleted file mode 100644 index b9f63c9468..0000000000 --- a/components/lib/themes/lara/toggleswitch/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/toggleswitch/index.d.ts" -} diff --git a/components/lib/themes/lara/toolbar/package.json b/components/lib/themes/lara/toolbar/package.json deleted file mode 100644 index f93fe0ce3c..0000000000 --- a/components/lib/themes/lara/toolbar/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/toolbar/index.d.ts" -} diff --git a/components/lib/themes/lara/tooltip/package.json b/components/lib/themes/lara/tooltip/package.json deleted file mode 100644 index 9ff49a1ac9..0000000000 --- a/components/lib/themes/lara/tooltip/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/tooltip/index.d.ts" -} diff --git a/components/lib/themes/lara/tree/package.json b/components/lib/themes/lara/tree/package.json deleted file mode 100644 index dea10be01d..0000000000 --- a/components/lib/themes/lara/tree/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/tree/index.d.ts" -} diff --git a/components/lib/themes/lara/treeselect/package.json b/components/lib/themes/lara/treeselect/package.json deleted file mode 100644 index ef52adf6b0..0000000000 --- a/components/lib/themes/lara/treeselect/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/treeselect/index.d.ts" -} diff --git a/components/lib/themes/lara/treetable/package.json b/components/lib/themes/lara/treetable/package.json deleted file mode 100644 index d575e61519..0000000000 --- a/components/lib/themes/lara/treetable/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/treetable/index.d.ts" -} diff --git a/components/lib/themes/nora/accordion/package.json b/components/lib/themes/nora/accordion/package.json deleted file mode 100644 index aa2ffa7893..0000000000 --- a/components/lib/themes/nora/accordion/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/accordion/index.d.ts" -} diff --git a/components/lib/themes/nora/autocomplete/package.json b/components/lib/themes/nora/autocomplete/package.json deleted file mode 100644 index 4dc53ee5b4..0000000000 --- a/components/lib/themes/nora/autocomplete/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/autocomplete/index.d.ts" -} diff --git a/components/lib/themes/nora/avatar/package.json b/components/lib/themes/nora/avatar/package.json deleted file mode 100644 index 7d3175f314..0000000000 --- a/components/lib/themes/nora/avatar/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/avatar/index.d.ts" -} diff --git a/components/lib/themes/nora/badge/package.json b/components/lib/themes/nora/badge/package.json deleted file mode 100644 index b6ec412c06..0000000000 --- a/components/lib/themes/nora/badge/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/badge/index.d.ts" -} diff --git a/components/lib/themes/nora/blockui/package.json b/components/lib/themes/nora/blockui/package.json deleted file mode 100644 index 093846ca19..0000000000 --- a/components/lib/themes/nora/blockui/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/blockui/index.d.ts" -} diff --git a/components/lib/themes/nora/breadcrumb/package.json b/components/lib/themes/nora/breadcrumb/package.json deleted file mode 100644 index 40c3e24b44..0000000000 --- a/components/lib/themes/nora/breadcrumb/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/breadcrumb/index.d.ts" -} diff --git a/components/lib/themes/nora/button/package.json b/components/lib/themes/nora/button/package.json deleted file mode 100644 index 9f0083f568..0000000000 --- a/components/lib/themes/nora/button/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/button/index.d.ts" -} diff --git a/components/lib/themes/nora/card/package.json b/components/lib/themes/nora/card/package.json deleted file mode 100644 index 615dc5261f..0000000000 --- a/components/lib/themes/nora/card/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/card/index.d.ts" -} diff --git a/components/lib/themes/nora/carousel/package.json b/components/lib/themes/nora/carousel/package.json deleted file mode 100644 index 918ea81fd5..0000000000 --- a/components/lib/themes/nora/carousel/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/carousel/index.d.ts" -} diff --git a/components/lib/themes/nora/cascadeselect/package.json b/components/lib/themes/nora/cascadeselect/package.json deleted file mode 100644 index 83823fb482..0000000000 --- a/components/lib/themes/nora/cascadeselect/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/cascadeselect/index.d.ts" -} diff --git a/components/lib/themes/nora/checkbox/package.json b/components/lib/themes/nora/checkbox/package.json deleted file mode 100644 index 6e041f8077..0000000000 --- a/components/lib/themes/nora/checkbox/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/checkbox/index.d.ts" -} diff --git a/components/lib/themes/nora/chip/package.json b/components/lib/themes/nora/chip/package.json deleted file mode 100644 index 80c1810443..0000000000 --- a/components/lib/themes/nora/chip/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/chip/index.d.ts" -} diff --git a/components/lib/themes/nora/colorpicker/package.json b/components/lib/themes/nora/colorpicker/package.json deleted file mode 100644 index 6ccfbedbe9..0000000000 --- a/components/lib/themes/nora/colorpicker/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/colorpicker/index.d.ts" -} diff --git a/components/lib/themes/nora/confirmdialog/package.json b/components/lib/themes/nora/confirmdialog/package.json deleted file mode 100644 index 7d6c819fdd..0000000000 --- a/components/lib/themes/nora/confirmdialog/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/confirmdialog/index.d.ts" -} diff --git a/components/lib/themes/nora/confirmpopup/package.json b/components/lib/themes/nora/confirmpopup/package.json deleted file mode 100644 index db691643ec..0000000000 --- a/components/lib/themes/nora/confirmpopup/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/confirmpopup/index.d.ts" -} diff --git a/components/lib/themes/nora/contextmenu/package.json b/components/lib/themes/nora/contextmenu/package.json deleted file mode 100644 index abc487dc56..0000000000 --- a/components/lib/themes/nora/contextmenu/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/contextmenu/index.d.ts" -} diff --git a/components/lib/themes/nora/datatable/package.json b/components/lib/themes/nora/datatable/package.json deleted file mode 100644 index 14aacef4b6..0000000000 --- a/components/lib/themes/nora/datatable/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/datatable/index.d.ts" -} diff --git a/components/lib/themes/nora/dataview/package.json b/components/lib/themes/nora/dataview/package.json deleted file mode 100644 index 6dd3ed3430..0000000000 --- a/components/lib/themes/nora/dataview/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/dataview/index.d.ts" -} diff --git a/components/lib/themes/nora/datepicker/package.json b/components/lib/themes/nora/datepicker/package.json deleted file mode 100644 index 15b62e3228..0000000000 --- a/components/lib/themes/nora/datepicker/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/datepicker/index.d.ts" -} diff --git a/components/lib/themes/nora/dialog/package.json b/components/lib/themes/nora/dialog/package.json deleted file mode 100644 index 85b726e49b..0000000000 --- a/components/lib/themes/nora/dialog/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/dialog/index.d.ts" -} diff --git a/components/lib/themes/nora/divider/package.json b/components/lib/themes/nora/divider/package.json deleted file mode 100644 index 2c9948dc33..0000000000 --- a/components/lib/themes/nora/divider/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/divider/index.d.ts" -} diff --git a/components/lib/themes/nora/dock/package.json b/components/lib/themes/nora/dock/package.json deleted file mode 100644 index 22f1f5bb87..0000000000 --- a/components/lib/themes/nora/dock/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/dock/index.d.ts" -} diff --git a/components/lib/themes/nora/drawer/package.json b/components/lib/themes/nora/drawer/package.json deleted file mode 100644 index 8d1ae8a242..0000000000 --- a/components/lib/themes/nora/drawer/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/drawer/index.d.ts" -} diff --git a/components/lib/themes/nora/editor/package.json b/components/lib/themes/nora/editor/package.json deleted file mode 100644 index 0181ce7796..0000000000 --- a/components/lib/themes/nora/editor/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/editor/index.d.ts" -} diff --git a/components/lib/themes/nora/fieldset/package.json b/components/lib/themes/nora/fieldset/package.json deleted file mode 100644 index 8bf77039c2..0000000000 --- a/components/lib/themes/nora/fieldset/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/fieldset/index.d.ts" -} diff --git a/components/lib/themes/nora/fileupload/package.json b/components/lib/themes/nora/fileupload/package.json deleted file mode 100644 index e40d755919..0000000000 --- a/components/lib/themes/nora/fileupload/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/fileupload/index.d.ts" -} diff --git a/components/lib/themes/nora/floatlabel/package.json b/components/lib/themes/nora/floatlabel/package.json deleted file mode 100644 index dc6ddf77d7..0000000000 --- a/components/lib/themes/nora/floatlabel/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/floatlabel/index.d.ts" -} diff --git a/components/lib/themes/nora/galleria/package.json b/components/lib/themes/nora/galleria/package.json deleted file mode 100644 index ae4ffb21b5..0000000000 --- a/components/lib/themes/nora/galleria/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/galleria/index.d.ts" -} diff --git a/components/lib/themes/nora/iconfield/package.json b/components/lib/themes/nora/iconfield/package.json deleted file mode 100644 index 0e46466afb..0000000000 --- a/components/lib/themes/nora/iconfield/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/iconfield/index.d.ts" -} diff --git a/components/lib/themes/nora/image/package.json b/components/lib/themes/nora/image/package.json deleted file mode 100644 index f9f5eb7f78..0000000000 --- a/components/lib/themes/nora/image/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/image/index.d.ts" -} diff --git a/components/lib/themes/nora/index.js b/components/lib/themes/nora/index.js deleted file mode 100644 index 54b8b12f72..0000000000 --- a/components/lib/themes/nora/index.js +++ /dev/null @@ -1,550 +0,0 @@ -import accordion from 'primevue/themes/nora/accordion'; -import autocomplete from 'primevue/themes/nora/autocomplete'; -import avatar from 'primevue/themes/nora/avatar'; -import badge from 'primevue/themes/nora/badge'; -import blockui from 'primevue/themes/nora/blockui'; -import breadcrumb from 'primevue/themes/nora/breadcrumb'; -import button from 'primevue/themes/nora/button'; -import card from 'primevue/themes/nora/card'; -import carousel from 'primevue/themes/nora/carousel'; -import cascadeselect from 'primevue/themes/nora/cascadeselect'; -import checkbox from 'primevue/themes/nora/checkbox'; -import chip from 'primevue/themes/nora/chip'; -import colorpicker from 'primevue/themes/nora/colorpicker'; -import confirmdialog from 'primevue/themes/nora/confirmdialog'; -import confirmpopup from 'primevue/themes/nora/confirmpopup'; -import contextmenu from 'primevue/themes/nora/contextmenu'; -import datatable from 'primevue/themes/nora/datatable'; -import dataview from 'primevue/themes/nora/dataview'; -import datepicker from 'primevue/themes/nora/datepicker'; -import dialog from 'primevue/themes/nora/dialog'; -import divider from 'primevue/themes/nora/divider'; -import dock from 'primevue/themes/nora/dock'; -import drawer from 'primevue/themes/nora/drawer'; -import editor from 'primevue/themes/nora/editor'; -import fieldset from 'primevue/themes/nora/fieldset'; -import fileupload from 'primevue/themes/nora/fileupload'; -import floatlabel from 'primevue/themes/nora/floatlabel'; -import galleria from 'primevue/themes/nora/galleria'; -import iconfield from 'primevue/themes/nora/iconfield'; -import image from 'primevue/themes/nora/image'; -import inlinemessage from 'primevue/themes/nora/inlinemessage'; -import inplace from 'primevue/themes/nora/inplace'; -import inputchips from 'primevue/themes/nora/inputchips'; -import inputgroup from 'primevue/themes/nora/inputgroup'; -import inputnumber from 'primevue/themes/nora/inputnumber'; -import inputtext from 'primevue/themes/nora/inputtext'; -import knob from 'primevue/themes/nora/knob'; -import listbox from 'primevue/themes/nora/listbox'; -import megamenu from 'primevue/themes/nora/megamenu'; -import menu from 'primevue/themes/nora/menu'; -import menubar from 'primevue/themes/nora/menubar'; -import message from 'primevue/themes/nora/message'; -import metergroup from 'primevue/themes/nora/metergroup'; -import multiselect from 'primevue/themes/nora/multiselect'; -import orderlist from 'primevue/themes/nora/orderlist'; -import organizationchart from 'primevue/themes/nora/organizationchart'; -import overlaybadge from 'primevue/themes/nora/overlaybadge'; -import paginator from 'primevue/themes/nora/paginator'; -import panel from 'primevue/themes/nora/panel'; -import panelmenu from 'primevue/themes/nora/panelmenu'; -import password from 'primevue/themes/nora/password'; -import picklist from 'primevue/themes/nora/picklist'; -import popover from 'primevue/themes/nora/popover'; -import progressbar from 'primevue/themes/nora/progressbar'; -import progressspinner from 'primevue/themes/nora/progressspinner'; -import radiobutton from 'primevue/themes/nora/radiobutton'; -import rating from 'primevue/themes/nora/rating'; -import ripple from 'primevue/themes/nora/ripple'; -import scrollpanel from 'primevue/themes/nora/scrollpanel'; -import select from 'primevue/themes/nora/select'; -import selectbutton from 'primevue/themes/nora/selectbutton'; -import skeleton from 'primevue/themes/nora/skeleton'; -import slider from 'primevue/themes/nora/slider'; -import speeddial from 'primevue/themes/nora/speeddial'; -import splitbutton from 'primevue/themes/nora/splitbutton'; -import splitter from 'primevue/themes/nora/splitter'; -import stepper from 'primevue/themes/nora/stepper'; -import steps from 'primevue/themes/nora/steps'; -import tabmenu from 'primevue/themes/nora/tabmenu'; -import tabs from 'primevue/themes/nora/tabs'; -import tabview from 'primevue/themes/nora/tabview'; -import tag from 'primevue/themes/nora/tag'; -import terminal from 'primevue/themes/nora/terminal'; -import textarea from 'primevue/themes/nora/textarea'; -import tieredmenu from 'primevue/themes/nora/tieredmenu'; -import timeline from 'primevue/themes/nora/timeline'; -import toast from 'primevue/themes/nora/toast'; -import togglebutton from 'primevue/themes/nora/togglebutton'; -import toggleswitch from 'primevue/themes/nora/toggleswitch'; -import toolbar from 'primevue/themes/nora/toolbar'; -import tooltip from 'primevue/themes/nora/tooltip'; -import tree from 'primevue/themes/nora/tree'; -import treeselect from 'primevue/themes/nora/treeselect'; -import treetable from 'primevue/themes/nora/treetable'; - -export default { - primitive: { - borderRadius: { - none: '0', - xs: '2px', - sm: '4px', - md: '6px', - lg: '8px', - xl: '12px' - }, - emerald: { 50: '#ecfdf5', 100: '#d1fae5', 200: '#a7f3d0', 300: '#6ee7b7', 400: '#34d399', 500: '#10b981', 600: '#059669', 700: '#047857', 800: '#065f46', 900: '#064e3b', 950: '#022c22' }, - green: { 50: '#f0fdf4', 100: '#dcfce7', 200: '#bbf7d0', 300: '#86efac', 400: '#4ade80', 500: '#22c55e', 600: '#16a34a', 700: '#15803d', 800: '#166534', 900: '#14532d', 950: '#052e16' }, - lime: { 50: '#f7fee7', 100: '#ecfccb', 200: '#d9f99d', 300: '#bef264', 400: '#a3e635', 500: '#84cc16', 600: '#65a30d', 700: '#4d7c0f', 800: '#3f6212', 900: '#365314', 950: '#1a2e05' }, - red: { 50: '#fef2f2', 100: '#fee2e2', 200: '#fecaca', 300: '#fca5a5', 400: '#f87171', 500: '#ef4444', 600: '#dc2626', 700: '#b91c1c', 800: '#991b1b', 900: '#7f1d1d', 950: '#450a0a' }, - orange: { 50: '#fff7ed', 100: '#ffedd5', 200: '#fed7aa', 300: '#fdba74', 400: '#fb923c', 500: '#f97316', 600: '#ea580c', 700: '#c2410c', 800: '#9a3412', 900: '#7c2d12', 950: '#431407' }, - amber: { 50: '#fffbeb', 100: '#fef3c7', 200: '#fde68a', 300: '#fcd34d', 400: '#fbbf24', 500: '#f59e0b', 600: '#d97706', 700: '#b45309', 800: '#92400e', 900: '#78350f', 950: '#451a03' }, - yellow: { 50: '#fefce8', 100: '#fef9c3', 200: '#fef08a', 300: '#fde047', 400: '#facc15', 500: '#eab308', 600: '#ca8a04', 700: '#a16207', 800: '#854d0e', 900: '#713f12', 950: '#422006' }, - teal: { 50: '#f0fdfa', 100: '#ccfbf1', 200: '#99f6e4', 300: '#5eead4', 400: '#2dd4bf', 500: '#14b8a6', 600: '#0d9488', 700: '#0f766e', 800: '#115e59', 900: '#134e4a', 950: '#042f2e' }, - cyan: { 50: '#ecfeff', 100: '#cffafe', 200: '#a5f3fc', 300: '#67e8f9', 400: '#22d3ee', 500: '#06b6d4', 600: '#0891b2', 700: '#0e7490', 800: '#155e75', 900: '#164e63', 950: '#083344' }, - sky: { 50: '#f0f9ff', 100: '#e0f2fe', 200: '#bae6fd', 300: '#7dd3fc', 400: '#38bdf8', 500: '#0ea5e9', 600: '#0284c7', 700: '#0369a1', 800: '#075985', 900: '#0c4a6e', 950: '#082f49' }, - blue: { 50: '#eff6ff', 100: '#dbeafe', 200: '#bfdbfe', 300: '#93c5fd', 400: '#60a5fa', 500: '#3b82f6', 600: '#2563eb', 700: '#1d4ed8', 800: '#1e40af', 900: '#1e3a8a', 950: '#172554' }, - indigo: { 50: '#eef2ff', 100: '#e0e7ff', 200: '#c7d2fe', 300: '#a5b4fc', 400: '#818cf8', 500: '#6366f1', 600: '#4f46e5', 700: '#4338ca', 800: '#3730a3', 900: '#312e81', 950: '#1e1b4b' }, - violet: { 50: '#f5f3ff', 100: '#ede9fe', 200: '#ddd6fe', 300: '#c4b5fd', 400: '#a78bfa', 500: '#8b5cf6', 600: '#7c3aed', 700: '#6d28d9', 800: '#5b21b6', 900: '#4c1d95', 950: '#2e1065' }, - purple: { 50: '#faf5ff', 100: '#f3e8ff', 200: '#e9d5ff', 300: '#d8b4fe', 400: '#c084fc', 500: '#a855f7', 600: '#9333ea', 700: '#7e22ce', 800: '#6b21a8', 900: '#581c87', 950: '#3b0764' }, - fuchsia: { 50: '#fdf4ff', 100: '#fae8ff', 200: '#f5d0fe', 300: '#f0abfc', 400: '#e879f9', 500: '#d946ef', 600: '#c026d3', 700: '#a21caf', 800: '#86198f', 900: '#701a75', 950: '#4a044e' }, - pink: { 50: '#fdf2f8', 100: '#fce7f3', 200: '#fbcfe8', 300: '#f9a8d4', 400: '#f472b6', 500: '#ec4899', 600: '#db2777', 700: '#be185d', 800: '#9d174d', 900: '#831843', 950: '#500724' }, - rose: { 50: '#fff1f2', 100: '#ffe4e6', 200: '#fecdd3', 300: '#fda4af', 400: '#fb7185', 500: '#f43f5e', 600: '#e11d48', 700: '#be123c', 800: '#9f1239', 900: '#881337', 950: '#4c0519' }, - slate: { 50: '#f8fafc', 100: '#f1f5f9', 200: '#e2e8f0', 300: '#cbd5e1', 400: '#94a3b8', 500: '#64748b', 600: '#475569', 700: '#334155', 800: '#1e293b', 900: '#0f172a', 950: '#020617' }, - gray: { 50: '#f9fafb', 100: '#f3f4f6', 200: '#e5e7eb', 300: '#d1d5db', 400: '#9ca3af', 500: '#6b7280', 600: '#4b5563', 700: '#374151', 800: '#1f2937', 900: '#111827', 950: '#030712' }, - zinc: { 50: '#fafafa', 100: '#f4f4f5', 200: '#e4e4e7', 300: '#d4d4d8', 400: '#a1a1aa', 500: '#71717a', 600: '#52525b', 700: '#3f3f46', 800: '#27272a', 900: '#18181b', 950: '#09090b' }, - neutral: { 50: '#fafafa', 100: '#f5f5f5', 200: '#e5e5e5', 300: '#d4d4d4', 400: '#a3a3a3', 500: '#737373', 600: '#525252', 700: '#404040', 800: '#262626', 900: '#171717', 950: '#0a0a0a' }, - stone: { 50: '#fafaf9', 100: '#f5f5f4', 200: '#e7e5e4', 300: '#d6d3d1', 400: '#a8a29e', 500: '#78716c', 600: '#57534e', 700: '#44403c', 800: '#292524', 900: '#1c1917', 950: '#0c0a09' } - }, - semantic: { - transitionDuration: '0s', - focusRing: { - width: '2px', - style: 'solid', - color: '{primary.color}', - offset: '2px', - shadow: 'none' - }, - disabledOpacity: '0.6', - iconSize: '1rem', - anchorGutter: '0', - primary: { - 50: '{emerald.50}', - 100: '{emerald.100}', - 200: '{emerald.200}', - 300: '{emerald.300}', - 400: '{emerald.400}', - 500: '{emerald.500}', - 600: '{emerald.600}', - 700: '{emerald.700}', - 800: '{emerald.800}', - 900: '{emerald.900}', - 950: '{emerald.950}' - }, - formField: { - paddingX: '0.75rem', - paddingY: '0.5rem', - borderRadius: '{border.radius.xs}', - focusRing: { - width: '2px', - style: 'solid', - color: '{primary.color}', - offset: '-1px', - shadow: 'none' - }, - transitionDuration: '{transition.duration}' - }, - list: { - padding: '0.125rem 0', - gap: '0', - header: { - padding: '0.5rem 0.75rem 0.375rem 0.75rem' - }, - option: { - padding: '0.5rem 0.75rem', - borderRadius: '0' - }, - optionGroup: { - padding: '0.5rem 0.75rem', - fontWeight: '700' - } - }, - content: { - borderRadius: '{border.radius.xs}' - }, - mask: { - transitionDuration: '0.15s' - }, - navigation: { - list: { - padding: '0.125rem 0', - gap: '0' - }, - item: { - padding: '0.5rem 0.75rem', - borderRadius: '0', - gap: '0.5rem' - }, - submenuLabel: { - padding: '0.5rem 0.75rem', - fontWeight: '700' - }, - submenuIcon: { - size: '0.875rem' - } - }, - overlay: { - select: { - borderRadius: '{border.radius.xs}', - shadow: '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)' - }, - popover: { - borderRadius: '{border.radius.xs}', - padding: '0.75rem', - shadow: '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)' - }, - modal: { - borderRadius: '{border.radius.xs}', - padding: '1.25rem', - shadow: '0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1)' - }, - navigation: { - shadow: '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)' - } - }, - colorScheme: { - light: { - surface: { - 0: '#ffffff', - 50: '{slate.50}', - 100: '{slate.100}', - 200: '{slate.200}', - 300: '{slate.300}', - 400: '{slate.400}', - 500: '{slate.500}', - 600: '{slate.600}', - 700: '{slate.700}', - 800: '{slate.800}', - 900: '{slate.900}', - 950: '{slate.950}' - }, - primary: { - color: '{primary.600}', - contrastColor: '#ffffff', - hoverColor: '{primary.700}', - activeColor: '{primary.800}' - }, - highlight: { - background: '{primary.600}', - focusBackground: '{primary.700}', - color: '#ffffff', - focusColor: '#ffffff' - }, - mask: { - background: 'rgba(0,0,0,0.4)', - color: '{surface.200}' - }, - formField: { - background: '{surface.0}', - disabledBackground: '{surface.300}', - filledBackground: '{surface.100}', - filledFocusBackground: '{surface.100}', - borderColor: '{surface.500}', - hoverBorderColor: '{surface.500}', - focusBorderColor: '{surface.500}', - invalidBorderColor: '{red.500}', - color: '{surface.900}', - disabledColor: '{surface.600}', - placeholderColor: '{surface.600}', - floatLabelColor: '{surface.600}', - floatLabelFocusColor: '{surface.600}', - floatLabelInvalidColor: '{red.500}', - iconColor: '{surface.900}', - shadow: 'none' - }, - text: { - color: '{surface.900}', - hoverColor: '{surface.950}', - mutedColor: '{surface.600}', - hoverMutedColor: '{surface.700}' - }, - content: { - background: '{surface.0}', - hoverBackground: '{surface.200}', - borderColor: '{surface.400}', - color: '{text.color}', - hoverColor: '{text.hover.color}' - }, - overlay: { - select: { - background: '{surface.0}', - borderColor: 'transparent', - color: '{text.color}' - }, - popover: { - background: '{surface.0}', - borderColor: 'transparent', - color: '{text.color}' - }, - modal: { - background: '{surface.0}', - borderColor: 'transparent', - color: '{text.color}' - } - }, - list: { - option: { - focusBackground: '{surface.200}', - selectedBackground: '{highlight.background}', - selectedFocusBackground: '{highlight.focus.background}', - color: '{text.color}', - focusColor: '{text.hover.color}', - selectedColor: '{highlight.color}', - selectedFocusColor: '{highlight.focus.color}', - icon: { - color: '{text.muted.color}', - focusColor: '{text.hover.muted.color}' - } - }, - optionGroup: { - background: 'transparent', - color: '{text.color}' - } - }, - navigation: { - item: { - focusBackground: '{primary.color}', - activeBackground: '{surface.200}', - color: '{text.color}', - focusColor: '{primary.contrast.color}', - activeColor: '{text.hover.color}', - icon: { - color: '{text.muted.color}', - focusColor: '{primary.contrast.color}', - activeColor: '{text.hover.muted.color}' - } - }, - submenuLabel: { - background: 'transparent', - color: '{text.color}' - }, - submenuIcon: { - color: '{text.muted.color}', - focusColor: '{primary.contrast.color}', - activeColor: '{text.hover.muted.color}' - } - } - }, - dark: { - surface: { - 0: '#ffffff', - 50: '{zinc.50}', - 100: '{zinc.100}', - 200: '{zinc.200}', - 300: '{zinc.300}', - 400: '{zinc.400}', - 500: '{zinc.500}', - 600: '{zinc.600}', - 700: '{zinc.700}', - 800: '{zinc.800}', - 900: '{zinc.900}', - 950: '{zinc.950}' - }, - primary: { - color: '{primary.500}', - contrastColor: '{surface.950}', - hoverColor: '{primary.400}', - activeColor: '{primary.300}' - }, - highlight: { - background: '{primary.500}', - focusBackground: '{primary.400}', - color: '{surface.950}', - focusColor: '{surface.950}' - }, - mask: { - background: 'rgba(0,0,0,0.6)', - color: '{surface.200}' - }, - formField: { - background: '{surface.950}', - disabledBackground: '{surface.700}', - filledBackground: '{surface.800}', - filledFocusBackground: '{surface.800}', - borderColor: '{surface.500}', - hoverBorderColor: '{surface.500}', - focusBorderColor: '{surface.500}', - invalidBorderColor: '{red.400}', - color: '{surface.0}', - disabledColor: '{surface.400}', - placeholderColor: '{surface.400}', - floatLabelColor: '{surface.400}', - floatLabelFocusColor: '{surface.400}', - floatLabelInvalidColor: '{red.400}', - iconColor: '{surface.0}', - shadow: 'none' - }, - text: { - color: '{surface.0}', - hoverColor: '{surface.0}', - mutedColor: '{surface.400}', - hoverMutedColor: '{surface.300}' - }, - content: { - background: '{surface.900}', - hoverBackground: '{surface.700}', - borderColor: '{surface.500}', - color: '{text.color}', - hoverColor: '{text.hover.color}' - }, - overlay: { - select: { - background: '{surface.900}', - borderColor: '{surface.700}', - color: '{text.color}' - }, - popover: { - background: '{surface.900}', - borderColor: '{surface.700}', - color: '{text.color}' - }, - modal: { - background: '{surface.900}', - borderColor: '{surface.700}', - color: '{text.color}' - } - }, - list: { - option: { - focusBackground: '{surface.700}', - selectedBackground: '{highlight.background}', - selectedFocusBackground: '{highlight.focus.background}', - color: '{text.color}', - focusColor: '{text.hover.color}', - selectedColor: '{highlight.color}', - selectedFocusColor: '{highlight.focus.color}', - icon: { - color: '{text.muted.color}', - focusColor: '{text.hover.muted.color}' - } - }, - optionGroup: { - background: 'transparent', - color: '{text.color}' - } - }, - navigation: { - item: { - focusBackground: '{primary.color}', - activeBackground: '{surface.700}', - color: '{text.color}', - focusColor: '{primary.contrast.color}', - activeColor: '{text.color}', - icon: { - color: '{text.muted.color}', - focusColor: '{primary.contrast.color}', - activeColor: '{text.hover.muted.color}' - } - }, - submenuLabel: { - background: 'transparent', - color: '{text.color}' - }, - submenuIcon: { - color: '{text.muted.color}', - focusColor: '{primary.contrast.color}', - activeColor: '{text.hover.muted.color}' - } - } - } - } - }, - components: { - accordion, - autocomplete, - avatar, - badge, - blockui, - breadcrumb, - button, - datepicker, - card, - carousel, - cascadeselect, - checkbox, - chip, - colorpicker, - confirmdialog, - confirmpopup, - contextmenu, - dataview, - datatable, - dialog, - divider, - dock, - drawer, - editor, - fieldset, - fileupload, - floatlabel, - galleria, - iconfield, - image, - inlinemessage, - inplace, - inputchips, - inputgroup, - inputnumber, - inputtext, - knob, - listbox, - megamenu, - menu, - menubar, - message, - metergroup, - multiselect, - orderlist, - organizationchart, - overlaybadge, - popover, - paginator, - password, - panel, - panelmenu, - picklist, - progressbar, - progressspinner, - radiobutton, - rating, - scrollpanel, - select, - selectbutton, - skeleton, - slider, - speeddial, - splitter, - splitbutton, - stepper, - steps, - tabmenu, - tabs, - tabview, - textarea, - tieredmenu, - tag, - terminal, - timeline, - togglebutton, - toggleswitch, - tree, - treeselect, - treetable, - toast, - toolbar - }, - directives: { - tooltip, - ripple - } -}; diff --git a/components/lib/themes/nora/inlinemessage/package.json b/components/lib/themes/nora/inlinemessage/package.json deleted file mode 100644 index 540807d36b..0000000000 --- a/components/lib/themes/nora/inlinemessage/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/inlinemessage/index.d.ts" -} diff --git a/components/lib/themes/nora/inplace/package.json b/components/lib/themes/nora/inplace/package.json deleted file mode 100644 index 514c33b271..0000000000 --- a/components/lib/themes/nora/inplace/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/inplace/index.d.ts" -} diff --git a/components/lib/themes/nora/inputchips/package.json b/components/lib/themes/nora/inputchips/package.json deleted file mode 100644 index aff7027ae4..0000000000 --- a/components/lib/themes/nora/inputchips/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/inputchips/index.d.ts" -} diff --git a/components/lib/themes/nora/inputgroup/package.json b/components/lib/themes/nora/inputgroup/package.json deleted file mode 100644 index 53cdc6ec23..0000000000 --- a/components/lib/themes/nora/inputgroup/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/inputgroup/index.d.ts" -} diff --git a/components/lib/themes/nora/inputnumber/package.json b/components/lib/themes/nora/inputnumber/package.json deleted file mode 100644 index d2776ca5fe..0000000000 --- a/components/lib/themes/nora/inputnumber/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/inputnumber/index.d.ts" -} diff --git a/components/lib/themes/nora/inputtext/package.json b/components/lib/themes/nora/inputtext/package.json deleted file mode 100644 index 7f21dedd79..0000000000 --- a/components/lib/themes/nora/inputtext/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/inputtext/index.d.ts" -} diff --git a/components/lib/themes/nora/knob/package.json b/components/lib/themes/nora/knob/package.json deleted file mode 100644 index a5db94c60e..0000000000 --- a/components/lib/themes/nora/knob/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/knob/index.d.ts" -} diff --git a/components/lib/themes/nora/listbox/package.json b/components/lib/themes/nora/listbox/package.json deleted file mode 100644 index 97f0f03c10..0000000000 --- a/components/lib/themes/nora/listbox/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/listbox/index.d.ts" -} diff --git a/components/lib/themes/nora/megamenu/package.json b/components/lib/themes/nora/megamenu/package.json deleted file mode 100644 index dbdcbfa11a..0000000000 --- a/components/lib/themes/nora/megamenu/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/megamenu/index.d.ts" -} diff --git a/components/lib/themes/nora/menu/package.json b/components/lib/themes/nora/menu/package.json deleted file mode 100644 index 2857ee2479..0000000000 --- a/components/lib/themes/nora/menu/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/menu/index.d.ts" -} diff --git a/components/lib/themes/nora/menubar/package.json b/components/lib/themes/nora/menubar/package.json deleted file mode 100644 index 0268f23f32..0000000000 --- a/components/lib/themes/nora/menubar/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/menubar/index.d.ts" -} diff --git a/components/lib/themes/nora/message/package.json b/components/lib/themes/nora/message/package.json deleted file mode 100644 index b49899c688..0000000000 --- a/components/lib/themes/nora/message/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/message/index.d.ts" -} diff --git a/components/lib/themes/nora/metergroup/package.json b/components/lib/themes/nora/metergroup/package.json deleted file mode 100644 index 13e4623ce3..0000000000 --- a/components/lib/themes/nora/metergroup/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/metergroup/index.d.ts" -} diff --git a/components/lib/themes/nora/multiselect/package.json b/components/lib/themes/nora/multiselect/package.json deleted file mode 100644 index 4479bbc95f..0000000000 --- a/components/lib/themes/nora/multiselect/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/multiselect/index.d.ts" -} diff --git a/components/lib/themes/nora/orderlist/package.json b/components/lib/themes/nora/orderlist/package.json deleted file mode 100644 index c455336034..0000000000 --- a/components/lib/themes/nora/orderlist/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/orderlist/index.d.ts" -} diff --git a/components/lib/themes/nora/organizationchart/package.json b/components/lib/themes/nora/organizationchart/package.json deleted file mode 100644 index f765754e32..0000000000 --- a/components/lib/themes/nora/organizationchart/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/organizationchart/index.d.ts" -} diff --git a/components/lib/themes/nora/overlaybadge/package.json b/components/lib/themes/nora/overlaybadge/package.json deleted file mode 100644 index 0beda4e00a..0000000000 --- a/components/lib/themes/nora/overlaybadge/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/overlaybadge/index.d.ts" -} diff --git a/components/lib/themes/nora/package.json b/components/lib/themes/nora/package.json deleted file mode 100644 index 839cff7f9f..0000000000 --- a/components/lib/themes/nora/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts" -} diff --git a/components/lib/themes/nora/paginator/package.json b/components/lib/themes/nora/paginator/package.json deleted file mode 100644 index 510e46f245..0000000000 --- a/components/lib/themes/nora/paginator/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/paginator/index.d.ts" -} diff --git a/components/lib/themes/nora/panel/package.json b/components/lib/themes/nora/panel/package.json deleted file mode 100644 index 3e980f175f..0000000000 --- a/components/lib/themes/nora/panel/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/panel/index.d.ts" -} diff --git a/components/lib/themes/nora/panelmenu/package.json b/components/lib/themes/nora/panelmenu/package.json deleted file mode 100644 index af86f732f2..0000000000 --- a/components/lib/themes/nora/panelmenu/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/panelmenu/index.d.ts" -} diff --git a/components/lib/themes/nora/password/package.json b/components/lib/themes/nora/password/package.json deleted file mode 100644 index 53a2d3041b..0000000000 --- a/components/lib/themes/nora/password/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/password/index.d.ts" -} diff --git a/components/lib/themes/nora/picklist/package.json b/components/lib/themes/nora/picklist/package.json deleted file mode 100644 index 93ce47205d..0000000000 --- a/components/lib/themes/nora/picklist/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/picklist/index.d.ts" -} diff --git a/components/lib/themes/nora/popover/package.json b/components/lib/themes/nora/popover/package.json deleted file mode 100644 index c0b2465ebd..0000000000 --- a/components/lib/themes/nora/popover/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/popover/index.d.ts" -} diff --git a/components/lib/themes/nora/progressbar/package.json b/components/lib/themes/nora/progressbar/package.json deleted file mode 100644 index b1eea69fc7..0000000000 --- a/components/lib/themes/nora/progressbar/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/progressbar/index.d.ts" -} diff --git a/components/lib/themes/nora/progressspinner/package.json b/components/lib/themes/nora/progressspinner/package.json deleted file mode 100644 index 489cf83fd1..0000000000 --- a/components/lib/themes/nora/progressspinner/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/progressspinner/index.d.ts" -} diff --git a/components/lib/themes/nora/radiobutton/package.json b/components/lib/themes/nora/radiobutton/package.json deleted file mode 100644 index 64983e8e83..0000000000 --- a/components/lib/themes/nora/radiobutton/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/radiobutton/index.d.ts" -} diff --git a/components/lib/themes/nora/rating/package.json b/components/lib/themes/nora/rating/package.json deleted file mode 100644 index 0844be83d4..0000000000 --- a/components/lib/themes/nora/rating/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/rating/index.d.ts" -} diff --git a/components/lib/themes/nora/ripple/package.json b/components/lib/themes/nora/ripple/package.json deleted file mode 100644 index 08d35bef26..0000000000 --- a/components/lib/themes/nora/ripple/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/ripple/index.d.ts" -} diff --git a/components/lib/themes/nora/scrollpanel/package.json b/components/lib/themes/nora/scrollpanel/package.json deleted file mode 100644 index b982aed758..0000000000 --- a/components/lib/themes/nora/scrollpanel/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/scrollpanel/index.d.ts" -} diff --git a/components/lib/themes/nora/select/package.json b/components/lib/themes/nora/select/package.json deleted file mode 100644 index d1347db919..0000000000 --- a/components/lib/themes/nora/select/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/select/index.d.ts" -} diff --git a/components/lib/themes/nora/selectbutton/package.json b/components/lib/themes/nora/selectbutton/package.json deleted file mode 100644 index 9f030656cd..0000000000 --- a/components/lib/themes/nora/selectbutton/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/selectbutton/index.d.ts" -} diff --git a/components/lib/themes/nora/skeleton/package.json b/components/lib/themes/nora/skeleton/package.json deleted file mode 100644 index ed0dd70584..0000000000 --- a/components/lib/themes/nora/skeleton/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/skeleton/index.d.ts" -} diff --git a/components/lib/themes/nora/slider/package.json b/components/lib/themes/nora/slider/package.json deleted file mode 100644 index b8ce848676..0000000000 --- a/components/lib/themes/nora/slider/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/slider/index.d.ts" -} diff --git a/components/lib/themes/nora/speeddial/package.json b/components/lib/themes/nora/speeddial/package.json deleted file mode 100644 index 0cb82ae7a7..0000000000 --- a/components/lib/themes/nora/speeddial/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/speeddial/index.d.ts" -} diff --git a/components/lib/themes/nora/splitbutton/package.json b/components/lib/themes/nora/splitbutton/package.json deleted file mode 100644 index e9e61fa3fe..0000000000 --- a/components/lib/themes/nora/splitbutton/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/splitbutton/index.d.ts" -} diff --git a/components/lib/themes/nora/splitter/package.json b/components/lib/themes/nora/splitter/package.json deleted file mode 100644 index 6bbd93500b..0000000000 --- a/components/lib/themes/nora/splitter/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/splitter/index.d.ts" -} diff --git a/components/lib/themes/nora/stepper/package.json b/components/lib/themes/nora/stepper/package.json deleted file mode 100644 index fb90a7f329..0000000000 --- a/components/lib/themes/nora/stepper/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/stepper/index.d.ts" -} diff --git a/components/lib/themes/nora/steps/package.json b/components/lib/themes/nora/steps/package.json deleted file mode 100644 index 640ac77cb9..0000000000 --- a/components/lib/themes/nora/steps/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/steps/index.d.ts" -} diff --git a/components/lib/themes/nora/tabmenu/package.json b/components/lib/themes/nora/tabmenu/package.json deleted file mode 100644 index 5b72ce818c..0000000000 --- a/components/lib/themes/nora/tabmenu/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/tabmenu/index.d.ts" -} diff --git a/components/lib/themes/nora/tabs/package.json b/components/lib/themes/nora/tabs/package.json deleted file mode 100644 index c6aeb09f1e..0000000000 --- a/components/lib/themes/nora/tabs/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/tabs/index.d.ts" -} diff --git a/components/lib/themes/nora/tabview/package.json b/components/lib/themes/nora/tabview/package.json deleted file mode 100644 index 18a57fc4ce..0000000000 --- a/components/lib/themes/nora/tabview/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/tabview/index.d.ts" -} diff --git a/components/lib/themes/nora/tag/package.json b/components/lib/themes/nora/tag/package.json deleted file mode 100644 index c535679a7e..0000000000 --- a/components/lib/themes/nora/tag/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/tag/index.d.ts" -} diff --git a/components/lib/themes/nora/terminal/package.json b/components/lib/themes/nora/terminal/package.json deleted file mode 100644 index 43c12ad943..0000000000 --- a/components/lib/themes/nora/terminal/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/terminal/index.d.ts" -} diff --git a/components/lib/themes/nora/textarea/package.json b/components/lib/themes/nora/textarea/package.json deleted file mode 100644 index 8e4600426a..0000000000 --- a/components/lib/themes/nora/textarea/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/textarea/index.d.ts" -} diff --git a/components/lib/themes/nora/tieredmenu/package.json b/components/lib/themes/nora/tieredmenu/package.json deleted file mode 100644 index ad015d9254..0000000000 --- a/components/lib/themes/nora/tieredmenu/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/tieredmenu/index.d.ts" -} diff --git a/components/lib/themes/nora/timeline/package.json b/components/lib/themes/nora/timeline/package.json deleted file mode 100644 index e6a15c9187..0000000000 --- a/components/lib/themes/nora/timeline/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/timeline/index.d.ts" -} diff --git a/components/lib/themes/nora/toast/package.json b/components/lib/themes/nora/toast/package.json deleted file mode 100644 index 776e92eba0..0000000000 --- a/components/lib/themes/nora/toast/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/toast/index.d.ts" -} diff --git a/components/lib/themes/nora/togglebutton/package.json b/components/lib/themes/nora/togglebutton/package.json deleted file mode 100644 index 4620391b09..0000000000 --- a/components/lib/themes/nora/togglebutton/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/togglebutton/index.d.ts" -} diff --git a/components/lib/themes/nora/toggleswitch/package.json b/components/lib/themes/nora/toggleswitch/package.json deleted file mode 100644 index b9f63c9468..0000000000 --- a/components/lib/themes/nora/toggleswitch/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/toggleswitch/index.d.ts" -} diff --git a/components/lib/themes/nora/toolbar/package.json b/components/lib/themes/nora/toolbar/package.json deleted file mode 100644 index f93fe0ce3c..0000000000 --- a/components/lib/themes/nora/toolbar/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/toolbar/index.d.ts" -} diff --git a/components/lib/themes/nora/tooltip/package.json b/components/lib/themes/nora/tooltip/package.json deleted file mode 100644 index 9ff49a1ac9..0000000000 --- a/components/lib/themes/nora/tooltip/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/tooltip/index.d.ts" -} diff --git a/components/lib/themes/nora/tree/package.json b/components/lib/themes/nora/tree/package.json deleted file mode 100644 index dea10be01d..0000000000 --- a/components/lib/themes/nora/tree/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/tree/index.d.ts" -} diff --git a/components/lib/themes/nora/treeselect/package.json b/components/lib/themes/nora/treeselect/package.json deleted file mode 100644 index ef52adf6b0..0000000000 --- a/components/lib/themes/nora/treeselect/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/treeselect/index.d.ts" -} diff --git a/components/lib/themes/nora/treetable/package.json b/components/lib/themes/nora/treetable/package.json deleted file mode 100644 index d575e61519..0000000000 --- a/components/lib/themes/nora/treetable/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "../types/treetable/index.d.ts" -} diff --git a/components/lib/themes/package.json b/components/lib/themes/package.json deleted file mode 100644 index 839cff7f9f..0000000000 --- a/components/lib/themes/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts" -} diff --git a/components/lib/themes/service/index.d.ts b/components/lib/themes/service/index.d.ts deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/components/lib/themes/service/package.json b/components/lib/themes/service/package.json deleted file mode 100644 index 839cff7f9f..0000000000 --- a/components/lib/themes/service/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts" -} diff --git a/components/lib/themes/types/accordion/index.d.ts b/components/lib/themes/types/accordion/index.d.ts deleted file mode 100644 index 6b686f05f5..0000000000 --- a/components/lib/themes/types/accordion/index.d.ts +++ /dev/null @@ -1,252 +0,0 @@ -/** - * - * Accordion Design Tokens - * - * [Live Demo](https://www.primevue.org/accordion/) - * - * @module themes/accordion - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface AccordionDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Transition duration of root - * - * @designToken accordion.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the panel section - */ - panel?: { - /** - * Border width of panel - * - * @designToken accordion.panel.border.width - */ - borderWidth?: string; - /** - * Border color of panel - * - * @designToken accordion.panel.border.color - */ - borderColor?: string; - }; - /** - * Used to pass tokens of the header section - */ - header?: { - /** - * Color of header - * - * @designToken accordion.header.color - */ - color?: string; - /** - * Hover color of header - * - * @designToken accordion.header.hover.color - */ - hoverColor?: string; - /** - * Active color of header - * - * @designToken accordion.header.active.color - */ - activeColor?: string; - /** - * Padding of header - * - * @designToken accordion.header.padding - */ - padding?: string; - /** - * Font weight of header - * - * @designToken accordion.header.font.weight - */ - fontWeight?: string; - /** - * Border radius of header - * - * @designToken accordion.header.border.radius - */ - borderRadius?: string; - /** - * Border width of header - * - * @designToken accordion.header.border.width - */ - borderWidth?: string; - /** - * Border color of header - * - * @designToken accordion.header.border.color - */ - borderColor?: string; - /** - * Background of header - * - * @designToken accordion.header.background - */ - background?: string; - /** - * Hover background of header - * - * @designToken accordion.header.hover.background - */ - hoverBackground?: string; - /** - * Active background of header - * - * @designToken accordion.header.active.background - */ - activeBackground?: string; - /** - * Active hover background of header - * - * @designToken accordion.header.active.hover.background - */ - activeHoverBackground?: string; - /** - * Focus ring of header - */ - focusRing?: { - /** - * Focus ring width of header - * - * @designToken accordion.header.focus.ring.width - */ - width?: string; - /** - * Focus ring style of header - * - * @designToken accordion.header.focus.ring.style - */ - style?: string; - /** - * Focus ring color of header - * - * @designToken accordion.header.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of header - * - * @designToken accordion.header.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of header - * - * @designToken accordion.header.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Toggle icon of header - */ - toggleIcon?: { - /** - * Toggle icon color of header - * - * @designToken accordion.header.toggle.icon.color - */ - color?: string; - /** - * Toggle icon hover color of header - * - * @designToken accordion.header.toggle.icon.hover.color - */ - hoverColor?: string; - /** - * Toggle icon active color of header - * - * @designToken accordion.header.toggle.icon.active.color - */ - activeColor?: string; - /** - * Toggle icon active hover color of header - * - * @designToken accordion.header.toggle.icon.active.hover.color - */ - activeHoverColor?: string; - }; - /** - * First of header - */ - first?: { - /** - * First top border radius of header - * - * @designToken accordion.header.first.top.border.radius - */ - topBorderRadius?: string; - /** - * First border width of header - * - * @designToken accordion.header.first.border.width - */ - borderWidth?: string; - }; - /** - * Last of header - */ - last?: { - /** - * Last bottom border radius of header - * - * @designToken accordion.header.last.bottom.border.radius - */ - bottomBorderRadius?: string; - /** - * Last active bottom border radius of header - * - * @designToken accordion.header.last.active.bottom.border.radius - */ - activeBottomBorderRadius?: string; - }; - }; - /** - * Used to pass tokens of the content section - */ - content?: { - /** - * Border width of content - * - * @designToken accordion.content.border.width - */ - borderWidth?: string; - /** - * Border color of content - * - * @designToken accordion.content.border.color - */ - borderColor?: string; - /** - * Background of content - * - * @designToken accordion.content.background - */ - background?: string; - /** - * Color of content - * - * @designToken accordion.content.color - */ - color?: string; - /** - * Padding of content - * - * @designToken accordion.content.padding - */ - padding?: string; - }; -} diff --git a/components/lib/themes/types/autocomplete/index.d.ts b/components/lib/themes/types/autocomplete/index.d.ts deleted file mode 100644 index 43ba010b05..0000000000 --- a/components/lib/themes/types/autocomplete/index.d.ts +++ /dev/null @@ -1,418 +0,0 @@ -/** - * - * AutoComplete Design Tokens - * - * [Live Demo](https://www.primevue.org/autocomplete/) - * - * @module themes/autocomplete - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface AutoCompleteDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken autocomplete.background - */ - background?: string; - /** - * Disabled background of root - * - * @designToken autocomplete.disabled.background - */ - disabledBackground?: string; - /** - * Filled background of root - * - * @designToken autocomplete.filled.background - */ - filledBackground?: string; - /** - * Filled focus background of root - * - * @designToken autocomplete.filled.focus.background - */ - filledFocusBackground?: string; - /** - * Border color of root - * - * @designToken autocomplete.border.color - */ - borderColor?: string; - /** - * Hover border color of root - * - * @designToken autocomplete.hover.border.color - */ - hoverBorderColor?: string; - /** - * Focus border color of root - * - * @designToken autocomplete.focus.border.color - */ - focusBorderColor?: string; - /** - * Invalid border color of root - * - * @designToken autocomplete.invalid.border.color - */ - invalidBorderColor?: string; - /** - * Color of root - * - * @designToken autocomplete.color - */ - color?: string; - /** - * Disabled color of root - * - * @designToken autocomplete.disabled.color - */ - disabledColor?: string; - /** - * Placeholder color of root - * - * @designToken autocomplete.placeholder.color - */ - placeholderColor?: string; - /** - * Shadow of root - * - * @designToken autocomplete.shadow - */ - shadow?: string; - /** - * Padding x of root - * - * @designToken autocomplete.padding.x - */ - paddingX?: string; - /** - * Padding y of root - * - * @designToken autocomplete.padding.y - */ - paddingY?: string; - /** - * Border radius of root - * - * @designToken autocomplete.border.radius - */ - borderRadius?: string; - /** - * Focus ring of root - */ - focusRing?: { - /** - * Focus ring width of root - * - * @designToken autocomplete.focus.ring.width - */ - width?: string; - /** - * Focus ring style of root - * - * @designToken autocomplete.focus.ring.style - */ - style?: string; - /** - * Focus ring color of root - * - * @designToken autocomplete.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of root - * - * @designToken autocomplete.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of root - * - * @designToken autocomplete.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Transition duration of root - * - * @designToken autocomplete.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the overlay section - */ - overlay?: { - /** - * Background of overlay - * - * @designToken autocomplete.overlay.background - */ - background?: string; - /** - * Border color of overlay - * - * @designToken autocomplete.overlay.border.color - */ - borderColor?: string; - /** - * Border radius of overlay - * - * @designToken autocomplete.overlay.border.radius - */ - borderRadius?: string; - /** - * Color of overlay - * - * @designToken autocomplete.overlay.color - */ - color?: string; - /** - * Shadow of overlay - * - * @designToken autocomplete.overlay.shadow - */ - shadow?: string; - }; - /** - * Used to pass tokens of the list section - */ - list?: { - /** - * Padding of list - * - * @designToken autocomplete.list.padding - */ - padding?: string; - /** - * Gap of list - * - * @designToken autocomplete.list.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the option section - */ - option?: { - /** - * Focus background of option - * - * @designToken autocomplete.option.focus.background - */ - focusBackground?: string; - /** - * Selected background of option - * - * @designToken autocomplete.option.selected.background - */ - selectedBackground?: string; - /** - * Selected focus background of option - * - * @designToken autocomplete.option.selected.focus.background - */ - selectedFocusBackground?: string; - /** - * Color of option - * - * @designToken autocomplete.option.color - */ - color?: string; - /** - * Focus color of option - * - * @designToken autocomplete.option.focus.color - */ - focusColor?: string; - /** - * Selected color of option - * - * @designToken autocomplete.option.selected.color - */ - selectedColor?: string; - /** - * Selected focus color of option - * - * @designToken autocomplete.option.selected.focus.color - */ - selectedFocusColor?: string; - /** - * Padding of option - * - * @designToken autocomplete.option.padding - */ - padding?: string; - /** - * Border radius of option - * - * @designToken autocomplete.option.border.radius - */ - borderRadius?: string; - }; - /** - * Used to pass tokens of the option group section - */ - optionGroup?: { - /** - * Background of option group - * - * @designToken autocomplete.option.group.background - */ - background?: string; - /** - * Color of option group - * - * @designToken autocomplete.option.group.color - */ - color?: string; - /** - * Font weight of option group - * - * @designToken autocomplete.option.group.font.weight - */ - fontWeight?: string; - /** - * Padding of option group - * - * @designToken autocomplete.option.group.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the dropdown section - */ - dropdown?: { - /** - * Width of dropdown - * - * @designToken autocomplete.dropdown.width - */ - width?: string; - /** - * Border color of dropdown - * - * @designToken autocomplete.dropdown.border.color - */ - borderColor?: string; - /** - * Hover border color of dropdown - * - * @designToken autocomplete.dropdown.hover.border.color - */ - hoverBorderColor?: string; - /** - * Active border color of dropdown - * - * @designToken autocomplete.dropdown.active.border.color - */ - activeBorderColor?: string; - /** - * Border radius of dropdown - * - * @designToken autocomplete.dropdown.border.radius - */ - borderRadius?: string; - /** - * Focus ring of dropdown - */ - focusRing?: { - /** - * Focus ring width of dropdown - * - * @designToken autocomplete.dropdown.focus.ring.width - */ - width?: string; - /** - * Focus ring style of dropdown - * - * @designToken autocomplete.dropdown.focus.ring.style - */ - style?: string; - /** - * Focus ring color of dropdown - * - * @designToken autocomplete.dropdown.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of dropdown - * - * @designToken autocomplete.dropdown.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of dropdown - * - * @designToken autocomplete.dropdown.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Background of dropdown - * - * @designToken autocomplete.dropdown.background - */ - background?: string; - /** - * Hover background of dropdown - * - * @designToken autocomplete.dropdown.hover.background - */ - hoverBackground?: string; - /** - * Active background of dropdown - * - * @designToken autocomplete.dropdown.active.background - */ - activeBackground?: string; - /** - * Color of dropdown - * - * @designToken autocomplete.dropdown.color - */ - color?: string; - /** - * Hover color of dropdown - * - * @designToken autocomplete.dropdown.hover.color - */ - hoverColor?: string; - /** - * Active color of dropdown - * - * @designToken autocomplete.dropdown.active.color - */ - activeColor?: string; - }; - /** - * Used to pass tokens of the chip section - */ - chip?: { - /** - * Border radius of chip - * - * @designToken autocomplete.chip.border.radius - */ - borderRadius?: string; - }; - /** - * Used to pass tokens of the empty message section - */ - emptyMessage?: { - /** - * Padding of empty message - * - * @designToken autocomplete.empty.message.padding - */ - padding?: string; - }; -} diff --git a/components/lib/themes/types/avatar/index.d.ts b/components/lib/themes/types/avatar/index.d.ts deleted file mode 100644 index 093bc3c466..0000000000 --- a/components/lib/themes/types/avatar/index.d.ts +++ /dev/null @@ -1,112 +0,0 @@ -/** - * - * Avatar Design Tokens - * - * [Live Demo](https://www.primevue.org/avatar/) - * - * @module themes/avatar - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface AvatarDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Width of root - * - * @designToken avatar.width - */ - width?: string; - /** - * Height of root - * - * @designToken avatar.height - */ - height?: string; - /** - * Font size of root - * - * @designToken avatar.font.size - */ - fontSize?: string; - /** - * Background of root - * - * @designToken avatar.background - */ - background?: string; - /** - * Border radius of root - * - * @designToken avatar.border.radius - */ - borderRadius?: string; - }; - /** - * Used to pass tokens of the group section - */ - group?: { - /** - * Border color of group - * - * @designToken avatar.group.border.color - */ - borderColor?: string; - /** - * Offset of group - * - * @designToken avatar.group.offset - */ - offset?: string; - }; - /** - * Used to pass tokens of the lg section - */ - lg?: { - /** - * Width of lg - * - * @designToken avatar.lg.width - */ - width?: string; - /** - * Height of lg - * - * @designToken avatar.lg.height - */ - height?: string; - /** - * Font size of lg - * - * @designToken avatar.lg.font.size - */ - fontSize?: string; - }; - /** - * Used to pass tokens of the xl section - */ - xl?: { - /** - * Width of xl - * - * @designToken avatar.xl.width - */ - width?: string; - /** - * Height of xl - * - * @designToken avatar.xl.height - */ - height?: string; - /** - * Font size of xl - * - * @designToken avatar.xl.font.size - */ - fontSize?: string; - }; -} diff --git a/components/lib/themes/types/badge/index.d.ts b/components/lib/themes/types/badge/index.d.ts deleted file mode 100644 index 56d74a33f1..0000000000 --- a/components/lib/themes/types/badge/index.d.ts +++ /dev/null @@ -1,254 +0,0 @@ -/** - * - * Badge Design Tokens - * - * [Live Demo](https://www.primevue.org/badge/) - * - * @module themes/badge - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface BadgeDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Border radius of root - * - * @designToken badge.border.radius - */ - borderRadius?: string; - /** - * Padding of root - * - * @designToken badge.padding - */ - padding?: string; - /** - * Font size of root - * - * @designToken badge.font.size - */ - fontSize?: string; - /** - * Font weight of root - * - * @designToken badge.font.weight - */ - fontWeight?: string; - /** - * Min width of root - * - * @designToken badge.min.width - */ - minWidth?: string; - /** - * Height of root - * - * @designToken badge.height - */ - height?: string; - }; - /** - * Used to pass tokens of the dot section - */ - dot?: { - /** - * Size of dot - * - * @designToken badge.dot.size - */ - size?: string; - }; - /** - * Used to pass tokens of the sm section - */ - sm?: { - /** - * Font size of sm - * - * @designToken badge.sm.font.size - */ - fontSize?: string; - /** - * Min width of sm - * - * @designToken badge.sm.min.width - */ - minWidth?: string; - /** - * Height of sm - * - * @designToken badge.sm.height - */ - height?: string; - }; - /** - * Used to pass tokens of the lg section - */ - lg?: { - /** - * Font size of lg - * - * @designToken badge.lg.font.size - */ - fontSize?: string; - /** - * Min width of lg - * - * @designToken badge.lg.min.width - */ - minWidth?: string; - /** - * Height of lg - * - * @designToken badge.lg.height - */ - height?: string; - }; - /** - * Used to pass tokens of the xl section - */ - xl?: { - /** - * Font size of xl - * - * @designToken badge.xl.font.size - */ - fontSize?: string; - /** - * Min width of xl - * - * @designToken badge.xl.min.width - */ - minWidth?: string; - /** - * Height of xl - * - * @designToken badge.xl.height - */ - height?: string; - }; - /** - * Used to pass tokens of the primary section - */ - primary?: { - /** - * Background of primary - * - * @designToken badge.primary.background - */ - background?: string; - /** - * Color of primary - * - * @designToken badge.primary.color - */ - color?: string; - }; - /** - * Used to pass tokens of the secondary section - */ - secondary?: { - /** - * Background of secondary - * - * @designToken badge.secondary.background - */ - background?: string; - /** - * Color of secondary - * - * @designToken badge.secondary.color - */ - color?: string; - }; - /** - * Used to pass tokens of the success section - */ - success?: { - /** - * Background of success - * - * @designToken badge.success.background - */ - background?: string; - /** - * Color of success - * - * @designToken badge.success.color - */ - color?: string; - }; - /** - * Used to pass tokens of the info section - */ - info?: { - /** - * Background of info - * - * @designToken badge.info.background - */ - background?: string; - /** - * Color of info - * - * @designToken badge.info.color - */ - color?: string; - }; - /** - * Used to pass tokens of the warn section - */ - warn?: { - /** - * Background of warn - * - * @designToken badge.warn.background - */ - background?: string; - /** - * Color of warn - * - * @designToken badge.warn.color - */ - color?: string; - }; - /** - * Used to pass tokens of the danger section - */ - danger?: { - /** - * Background of danger - * - * @designToken badge.danger.background - */ - background?: string; - /** - * Color of danger - * - * @designToken badge.danger.color - */ - color?: string; - }; - /** - * Used to pass tokens of the contrast section - */ - contrast?: { - /** - * Background of contrast - * - * @designToken badge.contrast.background - */ - background?: string; - /** - * Color of contrast - * - * @designToken badge.contrast.color - */ - color?: string; - }; -} diff --git a/components/lib/themes/types/blockui/index.d.ts b/components/lib/themes/types/blockui/index.d.ts deleted file mode 100644 index a5ee1e8705..0000000000 --- a/components/lib/themes/types/blockui/index.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -/** - * - * BlockUI Design Tokens - * - * [Live Demo](https://www.primevue.org/blockui/) - * - * @module themes/blockui - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface BlockUIDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Border radius of root - * - * @designToken blockui.border.radius - */ - borderRadius?: string; - }; -} diff --git a/components/lib/themes/types/breadcrumb/index.d.ts b/components/lib/themes/types/breadcrumb/index.d.ts deleted file mode 100644 index 2af333e225..0000000000 --- a/components/lib/themes/types/breadcrumb/index.d.ts +++ /dev/null @@ -1,118 +0,0 @@ -/** - * - * Breadcrumb Design Tokens - * - * [Live Demo](https://www.primevue.org/breadcrumb/) - * - * @module themes/breadcrumb - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface BreadcrumbDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Padding of root - * - * @designToken breadcrumb.padding - */ - padding?: string; - /** - * Background of root - * - * @designToken breadcrumb.background - */ - background?: string; - /** - * Gap of root - * - * @designToken breadcrumb.gap - */ - gap?: string; - /** - * Transition duration of root - * - * @designToken breadcrumb.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the item section - */ - item?: { - /** - * Color of item - * - * @designToken breadcrumb.item.color - */ - color?: string; - /** - * Hover color of item - * - * @designToken breadcrumb.item.hover.color - */ - hoverColor?: string; - /** - * Icon color of item - * - * @designToken breadcrumb.item.icon.color - */ - iconColor?: string; - /** - * Border radius of item - * - * @designToken breadcrumb.item.border.radius - */ - borderRadius?: string; - /** - * Focus ring of item - */ - focusRing?: { - /** - * Focus ring width of item - * - * @designToken breadcrumb.item.focus.ring.width - */ - width?: string; - /** - * Focus ring style of item - * - * @designToken breadcrumb.item.focus.ring.style - */ - style?: string; - /** - * Focus ring color of item - * - * @designToken breadcrumb.item.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of item - * - * @designToken breadcrumb.item.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of item - * - * @designToken breadcrumb.item.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Used to pass tokens of the separator section - */ - separator?: { - /** - * Color of separator - * - * @designToken breadcrumb.separator.color - */ - color?: string; - }; -} diff --git a/components/lib/themes/types/button/index.d.ts b/components/lib/themes/types/button/index.d.ts deleted file mode 100644 index 1b51ffccbe..0000000000 --- a/components/lib/themes/types/button/index.d.ts +++ /dev/null @@ -1,1239 +0,0 @@ -/** - * - * Button Design Tokens - * - * [Live Demo](https://www.primevue.org/button/) - * - * @module themes/button - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface ButtonDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Border radius of root - * - * @designToken button.border.radius - */ - borderRadius?: string; - /** - * Rounded border radius of root - * - * @designToken button.rounded.border.radius - */ - roundedBorderRadius?: string; - /** - * Gap of root - * - * @designToken button.gap - */ - gap?: string; - /** - * Padding x of root - * - * @designToken button.padding.x - */ - paddingX?: string; - /** - * Padding y of root - * - * @designToken button.padding.y - */ - paddingY?: string; - /** - * Icon only width of root - * - * @designToken button.icon.only.width - */ - iconOnlyWidth?: string; - /** - * Sm of root - */ - sm?: { - /** - * Sm font size of root - * - * @designToken button.sm.font.size - */ - fontSize?: string; - /** - * Sm padding x of root - * - * @designToken button.sm.padding.x - */ - paddingX?: string; - /** - * Sm padding y of root - * - * @designToken button.sm.padding.y - */ - paddingY?: string; - }; - /** - * Lg of root - */ - lg?: { - /** - * Lg font size of root - * - * @designToken button.lg.font.size - */ - fontSize?: string; - /** - * Lg padding x of root - * - * @designToken button.lg.padding.x - */ - paddingX?: string; - /** - * Lg padding y of root - * - * @designToken button.lg.padding.y - */ - paddingY?: string; - }; - /** - * Label of root - */ - label?: { - /** - * Label font weight of root - * - * @designToken button.label.font.weight - */ - fontWeight?: string; - }; - /** - * Raised shadow of root - * - * @designToken button.raised.shadow - */ - raisedShadow?: string; - /** - * Focus ring of root - */ - focusRing?: { - /** - * Focus ring width of root - * - * @designToken button.focus.ring.width - */ - width?: string; - /** - * Focus ring style of root - * - * @designToken button.focus.ring.style - */ - style?: string; - /** - * Focus ring offset of root - * - * @designToken button.focus.ring.offset - */ - offset?: string; - }; - /** - * Badge size of root - * - * @designToken button.badge.size - */ - badgeSize?: string; - /** - * Transition duration of root - * - * @designToken button.transition.duration - */ - transitionDuration?: string; - /** - * Primary of root - */ - primary?: { - /** - * Primary background of root - * - * @designToken button.primary.background - */ - background?: string; - /** - * Primary hover background of root - * - * @designToken button.primary.hover.background - */ - hoverBackground?: string; - /** - * Primary active background of root - * - * @designToken button.primary.active.background - */ - activeBackground?: string; - /** - * Primary border color of root - * - * @designToken button.primary.border.color - */ - borderColor?: string; - /** - * Primary hover border color of root - * - * @designToken button.primary.hover.border.color - */ - hoverBorderColor?: string; - /** - * Primary active border color of root - * - * @designToken button.primary.active.border.color - */ - activeBorderColor?: string; - /** - * Primary color of root - * - * @designToken button.primary.color - */ - color?: string; - /** - * Primary hover color of root - * - * @designToken button.primary.hover.color - */ - hoverColor?: string; - /** - * Primary active color of root - * - * @designToken button.primary.active.color - */ - activeColor?: string; - /** - * Primary focus ring of root - */ - focusRing?: { - /** - * Primary focus ring color of root - * - * @designToken button.primary.focus.ring.color - */ - color?: string; - /** - * Primary focus ring shadow of root - * - * @designToken button.primary.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Secondary of root - */ - secondary?: { - /** - * Secondary background of root - * - * @designToken button.secondary.background - */ - background?: string; - /** - * Secondary hover background of root - * - * @designToken button.secondary.hover.background - */ - hoverBackground?: string; - /** - * Secondary active background of root - * - * @designToken button.secondary.active.background - */ - activeBackground?: string; - /** - * Secondary border color of root - * - * @designToken button.secondary.border.color - */ - borderColor?: string; - /** - * Secondary hover border color of root - * - * @designToken button.secondary.hover.border.color - */ - hoverBorderColor?: string; - /** - * Secondary active border color of root - * - * @designToken button.secondary.active.border.color - */ - activeBorderColor?: string; - /** - * Secondary color of root - * - * @designToken button.secondary.color - */ - color?: string; - /** - * Secondary hover color of root - * - * @designToken button.secondary.hover.color - */ - hoverColor?: string; - /** - * Secondary active color of root - * - * @designToken button.secondary.active.color - */ - activeColor?: string; - /** - * Secondary focus ring of root - */ - focusRing?: { - /** - * Secondary focus ring color of root - * - * @designToken button.secondary.focus.ring.color - */ - color?: string; - /** - * Secondary focus ring shadow of root - * - * @designToken button.secondary.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Info of root - */ - info?: { - /** - * Info background of root - * - * @designToken button.info.background - */ - background?: string; - /** - * Info hover background of root - * - * @designToken button.info.hover.background - */ - hoverBackground?: string; - /** - * Info active background of root - * - * @designToken button.info.active.background - */ - activeBackground?: string; - /** - * Info border color of root - * - * @designToken button.info.border.color - */ - borderColor?: string; - /** - * Info hover border color of root - * - * @designToken button.info.hover.border.color - */ - hoverBorderColor?: string; - /** - * Info active border color of root - * - * @designToken button.info.active.border.color - */ - activeBorderColor?: string; - /** - * Info color of root - * - * @designToken button.info.color - */ - color?: string; - /** - * Info hover color of root - * - * @designToken button.info.hover.color - */ - hoverColor?: string; - /** - * Info active color of root - * - * @designToken button.info.active.color - */ - activeColor?: string; - /** - * Info focus ring of root - */ - focusRing?: { - /** - * Info focus ring color of root - * - * @designToken button.info.focus.ring.color - */ - color?: string; - /** - * Info focus ring shadow of root - * - * @designToken button.info.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Success of root - */ - success?: { - /** - * Success background of root - * - * @designToken button.success.background - */ - background?: string; - /** - * Success hover background of root - * - * @designToken button.success.hover.background - */ - hoverBackground?: string; - /** - * Success active background of root - * - * @designToken button.success.active.background - */ - activeBackground?: string; - /** - * Success border color of root - * - * @designToken button.success.border.color - */ - borderColor?: string; - /** - * Success hover border color of root - * - * @designToken button.success.hover.border.color - */ - hoverBorderColor?: string; - /** - * Success active border color of root - * - * @designToken button.success.active.border.color - */ - activeBorderColor?: string; - /** - * Success color of root - * - * @designToken button.success.color - */ - color?: string; - /** - * Success hover color of root - * - * @designToken button.success.hover.color - */ - hoverColor?: string; - /** - * Success active color of root - * - * @designToken button.success.active.color - */ - activeColor?: string; - /** - * Success focus ring of root - */ - focusRing?: { - /** - * Success focus ring color of root - * - * @designToken button.success.focus.ring.color - */ - color?: string; - /** - * Success focus ring shadow of root - * - * @designToken button.success.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Warn of root - */ - warn?: { - /** - * Warn background of root - * - * @designToken button.warn.background - */ - background?: string; - /** - * Warn hover background of root - * - * @designToken button.warn.hover.background - */ - hoverBackground?: string; - /** - * Warn active background of root - * - * @designToken button.warn.active.background - */ - activeBackground?: string; - /** - * Warn border color of root - * - * @designToken button.warn.border.color - */ - borderColor?: string; - /** - * Warn hover border color of root - * - * @designToken button.warn.hover.border.color - */ - hoverBorderColor?: string; - /** - * Warn active border color of root - * - * @designToken button.warn.active.border.color - */ - activeBorderColor?: string; - /** - * Warn color of root - * - * @designToken button.warn.color - */ - color?: string; - /** - * Warn hover color of root - * - * @designToken button.warn.hover.color - */ - hoverColor?: string; - /** - * Warn active color of root - * - * @designToken button.warn.active.color - */ - activeColor?: string; - /** - * Warn focus ring of root - */ - focusRing?: { - /** - * Warn focus ring color of root - * - * @designToken button.warn.focus.ring.color - */ - color?: string; - /** - * Warn focus ring shadow of root - * - * @designToken button.warn.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Help of root - */ - help?: { - /** - * Help background of root - * - * @designToken button.help.background - */ - background?: string; - /** - * Help hover background of root - * - * @designToken button.help.hover.background - */ - hoverBackground?: string; - /** - * Help active background of root - * - * @designToken button.help.active.background - */ - activeBackground?: string; - /** - * Help border color of root - * - * @designToken button.help.border.color - */ - borderColor?: string; - /** - * Help hover border color of root - * - * @designToken button.help.hover.border.color - */ - hoverBorderColor?: string; - /** - * Help active border color of root - * - * @designToken button.help.active.border.color - */ - activeBorderColor?: string; - /** - * Help color of root - * - * @designToken button.help.color - */ - color?: string; - /** - * Help hover color of root - * - * @designToken button.help.hover.color - */ - hoverColor?: string; - /** - * Help active color of root - * - * @designToken button.help.active.color - */ - activeColor?: string; - /** - * Help focus ring of root - */ - focusRing?: { - /** - * Help focus ring color of root - * - * @designToken button.help.focus.ring.color - */ - color?: string; - /** - * Help focus ring shadow of root - * - * @designToken button.help.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Danger of root - */ - danger?: { - /** - * Danger background of root - * - * @designToken button.danger.background - */ - background?: string; - /** - * Danger hover background of root - * - * @designToken button.danger.hover.background - */ - hoverBackground?: string; - /** - * Danger active background of root - * - * @designToken button.danger.active.background - */ - activeBackground?: string; - /** - * Danger border color of root - * - * @designToken button.danger.border.color - */ - borderColor?: string; - /** - * Danger hover border color of root - * - * @designToken button.danger.hover.border.color - */ - hoverBorderColor?: string; - /** - * Danger active border color of root - * - * @designToken button.danger.active.border.color - */ - activeBorderColor?: string; - /** - * Danger color of root - * - * @designToken button.danger.color - */ - color?: string; - /** - * Danger hover color of root - * - * @designToken button.danger.hover.color - */ - hoverColor?: string; - /** - * Danger active color of root - * - * @designToken button.danger.active.color - */ - activeColor?: string; - /** - * Danger focus ring of root - */ - focusRing?: { - /** - * Danger focus ring color of root - * - * @designToken button.danger.focus.ring.color - */ - color?: string; - /** - * Danger focus ring shadow of root - * - * @designToken button.danger.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Contrast of root - */ - contrast?: { - /** - * Contrast background of root - * - * @designToken button.contrast.background - */ - background?: string; - /** - * Contrast hover background of root - * - * @designToken button.contrast.hover.background - */ - hoverBackground?: string; - /** - * Contrast active background of root - * - * @designToken button.contrast.active.background - */ - activeBackground?: string; - /** - * Contrast border color of root - * - * @designToken button.contrast.border.color - */ - borderColor?: string; - /** - * Contrast hover border color of root - * - * @designToken button.contrast.hover.border.color - */ - hoverBorderColor?: string; - /** - * Contrast active border color of root - * - * @designToken button.contrast.active.border.color - */ - activeBorderColor?: string; - /** - * Contrast color of root - * - * @designToken button.contrast.color - */ - color?: string; - /** - * Contrast hover color of root - * - * @designToken button.contrast.hover.color - */ - hoverColor?: string; - /** - * Contrast active color of root - * - * @designToken button.contrast.active.color - */ - activeColor?: string; - /** - * Contrast focus ring of root - */ - focusRing?: { - /** - * Contrast focus ring color of root - * - * @designToken button.contrast.focus.ring.color - */ - color?: string; - /** - * Contrast focus ring shadow of root - * - * @designToken button.contrast.focus.ring.shadow - */ - shadow?: string; - }; - }; - }; - /** - * Used to pass tokens of the outlined section - */ - outlined?: { - /** - * Primary of outlined - */ - primary?: { - /** - * Primary hover background of outlined - * - * @designToken button.outlined.primary.hover.background - */ - hoverBackground?: string; - /** - * Primary active background of outlined - * - * @designToken button.outlined.primary.active.background - */ - activeBackground?: string; - /** - * Primary border color of outlined - * - * @designToken button.outlined.primary.border.color - */ - borderColor?: string; - /** - * Primary color of outlined - * - * @designToken button.outlined.primary.color - */ - color?: string; - }; - /** - * Secondary of outlined - */ - secondary?: { - /** - * Secondary hover background of outlined - * - * @designToken button.outlined.secondary.hover.background - */ - hoverBackground?: string; - /** - * Secondary active background of outlined - * - * @designToken button.outlined.secondary.active.background - */ - activeBackground?: string; - /** - * Secondary border color of outlined - * - * @designToken button.outlined.secondary.border.color - */ - borderColor?: string; - /** - * Secondary color of outlined - * - * @designToken button.outlined.secondary.color - */ - color?: string; - }; - /** - * Success of outlined - */ - success?: { - /** - * Success hover background of outlined - * - * @designToken button.outlined.success.hover.background - */ - hoverBackground?: string; - /** - * Success active background of outlined - * - * @designToken button.outlined.success.active.background - */ - activeBackground?: string; - /** - * Success border color of outlined - * - * @designToken button.outlined.success.border.color - */ - borderColor?: string; - /** - * Success color of outlined - * - * @designToken button.outlined.success.color - */ - color?: string; - }; - /** - * Info of outlined - */ - info?: { - /** - * Info hover background of outlined - * - * @designToken button.outlined.info.hover.background - */ - hoverBackground?: string; - /** - * Info active background of outlined - * - * @designToken button.outlined.info.active.background - */ - activeBackground?: string; - /** - * Info border color of outlined - * - * @designToken button.outlined.info.border.color - */ - borderColor?: string; - /** - * Info color of outlined - * - * @designToken button.outlined.info.color - */ - color?: string; - }; - /** - * Warn of outlined - */ - warn?: { - /** - * Warn hover background of outlined - * - * @designToken button.outlined.warn.hover.background - */ - hoverBackground?: string; - /** - * Warn active background of outlined - * - * @designToken button.outlined.warn.active.background - */ - activeBackground?: string; - /** - * Warn border color of outlined - * - * @designToken button.outlined.warn.border.color - */ - borderColor?: string; - /** - * Warn color of outlined - * - * @designToken button.outlined.warn.color - */ - color?: string; - }; - /** - * Help of outlined - */ - help?: { - /** - * Help hover background of outlined - * - * @designToken button.outlined.help.hover.background - */ - hoverBackground?: string; - /** - * Help active background of outlined - * - * @designToken button.outlined.help.active.background - */ - activeBackground?: string; - /** - * Help border color of outlined - * - * @designToken button.outlined.help.border.color - */ - borderColor?: string; - /** - * Help color of outlined - * - * @designToken button.outlined.help.color - */ - color?: string; - }; - /** - * Danger of outlined - */ - danger?: { - /** - * Danger hover background of outlined - * - * @designToken button.outlined.danger.hover.background - */ - hoverBackground?: string; - /** - * Danger active background of outlined - * - * @designToken button.outlined.danger.active.background - */ - activeBackground?: string; - /** - * Danger border color of outlined - * - * @designToken button.outlined.danger.border.color - */ - borderColor?: string; - /** - * Danger color of outlined - * - * @designToken button.outlined.danger.color - */ - color?: string; - }; - /** - * Contrast of outlined - */ - contrast?: { - /** - * Contrast hover background of outlined - * - * @designToken button.outlined.contrast.hover.background - */ - hoverBackground?: string; - /** - * Contrast active background of outlined - * - * @designToken button.outlined.contrast.active.background - */ - activeBackground?: string; - /** - * Contrast border color of outlined - * - * @designToken button.outlined.contrast.border.color - */ - borderColor?: string; - /** - * Contrast color of outlined - * - * @designToken button.outlined.contrast.color - */ - color?: string; - }; - /** - * Plain of outlined - */ - plain?: { - /** - * Plain hover background of outlined - * - * @designToken button.outlined.plain.hover.background - */ - hoverBackground?: string; - /** - * Plain active background of outlined - * - * @designToken button.outlined.plain.active.background - */ - activeBackground?: string; - /** - * Plain border color of outlined - * - * @designToken button.outlined.plain.border.color - */ - borderColor?: string; - /** - * Plain color of outlined - * - * @designToken button.outlined.plain.color - */ - color?: string; - }; - }; - /** - * Used to pass tokens of the text section - */ - text?: { - /** - * Primary of text - */ - primary?: { - /** - * Primary hover background of text - * - * @designToken button.text.primary.hover.background - */ - hoverBackground?: string; - /** - * Primary active background of text - * - * @designToken button.text.primary.active.background - */ - activeBackground?: string; - /** - * Primary color of text - * - * @designToken button.text.primary.color - */ - color?: string; - }; - /** - * Secondary of text - */ - secondary?: { - /** - * Secondary hover background of text - * - * @designToken button.text.secondary.hover.background - */ - hoverBackground?: string; - /** - * Secondary active background of text - * - * @designToken button.text.secondary.active.background - */ - activeBackground?: string; - /** - * Secondary color of text - * - * @designToken button.text.secondary.color - */ - color?: string; - }; - /** - * Success of text - */ - success?: { - /** - * Success hover background of text - * - * @designToken button.text.success.hover.background - */ - hoverBackground?: string; - /** - * Success active background of text - * - * @designToken button.text.success.active.background - */ - activeBackground?: string; - /** - * Success color of text - * - * @designToken button.text.success.color - */ - color?: string; - }; - /** - * Info of text - */ - info?: { - /** - * Info hover background of text - * - * @designToken button.text.info.hover.background - */ - hoverBackground?: string; - /** - * Info active background of text - * - * @designToken button.text.info.active.background - */ - activeBackground?: string; - /** - * Info color of text - * - * @designToken button.text.info.color - */ - color?: string; - }; - /** - * Warn of text - */ - warn?: { - /** - * Warn hover background of text - * - * @designToken button.text.warn.hover.background - */ - hoverBackground?: string; - /** - * Warn active background of text - * - * @designToken button.text.warn.active.background - */ - activeBackground?: string; - /** - * Warn color of text - * - * @designToken button.text.warn.color - */ - color?: string; - }; - /** - * Help of text - */ - help?: { - /** - * Help hover background of text - * - * @designToken button.text.help.hover.background - */ - hoverBackground?: string; - /** - * Help active background of text - * - * @designToken button.text.help.active.background - */ - activeBackground?: string; - /** - * Help color of text - * - * @designToken button.text.help.color - */ - color?: string; - }; - /** - * Danger of text - */ - danger?: { - /** - * Danger hover background of text - * - * @designToken button.text.danger.hover.background - */ - hoverBackground?: string; - /** - * Danger active background of text - * - * @designToken button.text.danger.active.background - */ - activeBackground?: string; - /** - * Danger color of text - * - * @designToken button.text.danger.color - */ - color?: string; - }; - /** - * Plain of text - */ - plain?: { - /** - * Plain hover background of text - * - * @designToken button.text.plain.hover.background - */ - hoverBackground?: string; - /** - * Plain active background of text - * - * @designToken button.text.plain.active.background - */ - activeBackground?: string; - /** - * Plain color of text - * - * @designToken button.text.plain.color - */ - color?: string; - }; - }; - /** - * Used to pass tokens of the link section - */ - link?: { - /** - * Color of link - * - * @designToken button.link.color - */ - color?: string; - /** - * Hover color of link - * - * @designToken button.link.hover.color - */ - hoverColor?: string; - /** - * Active color of link - * - * @designToken button.link.active.color - */ - activeColor?: string; - }; -} diff --git a/components/lib/themes/types/card/index.d.ts b/components/lib/themes/types/card/index.d.ts deleted file mode 100644 index 22bdb2e322..0000000000 --- a/components/lib/themes/types/card/index.d.ts +++ /dev/null @@ -1,99 +0,0 @@ -/** - * - * Card Design Tokens - * - * [Live Demo](https://www.primevue.org/card/) - * - * @module themes/card - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface CardDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken card.background - */ - background?: string; - /** - * Border radius of root - * - * @designToken card.border.radius - */ - borderRadius?: string; - /** - * Color of root - * - * @designToken card.color - */ - color?: string; - /** - * Shadow of root - * - * @designToken card.shadow - */ - shadow?: string; - }; - /** - * Used to pass tokens of the body section - */ - body?: { - /** - * Padding of body - * - * @designToken card.body.padding - */ - padding?: string; - /** - * Gap of body - * - * @designToken card.body.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the caption section - */ - caption?: { - /** - * Gap of caption - * - * @designToken card.caption.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the title section - */ - title?: { - /** - * Font size of title - * - * @designToken card.title.font.size - */ - fontSize?: string; - /** - * Font weight of title - * - * @designToken card.title.font.weight - */ - fontWeight?: string; - }; - /** - * Used to pass tokens of the subtitle section - */ - subtitle?: { - /** - * Color of subtitle - * - * @designToken card.subtitle.color - */ - color?: string; - }; -} diff --git a/components/lib/themes/types/carousel/index.d.ts b/components/lib/themes/types/carousel/index.d.ts deleted file mode 100644 index fa0e16ae39..0000000000 --- a/components/lib/themes/types/carousel/index.d.ts +++ /dev/null @@ -1,123 +0,0 @@ -/** - * - * Carousel Design Tokens - * - * [Live Demo](https://www.primevue.org/carousel/) - * - * @module themes/carousel - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface CarouselDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Indicator list of root - */ - indicatorList?: { - /** - * Indicator list padding of root - * - * @designToken carousel.indicator.list.padding - */ - padding?: string; - /** - * Indicator list gap of root - * - * @designToken carousel.indicator.list.gap - */ - gap?: string; - }; - /** - * Indicator of root - */ - indicator?: { - /** - * Indicator width of root - * - * @designToken carousel.indicator.width - */ - width?: string; - /** - * Indicator height of root - * - * @designToken carousel.indicator.height - */ - height?: string; - /** - * Indicator border radius of root - * - * @designToken carousel.indicator.border.radius - */ - borderRadius?: string; - /** - * Indicator focus ring of root - */ - focusRing?: { - /** - * Indicator focus ring width of root - * - * @designToken carousel.indicator.focus.ring.width - */ - width?: string; - /** - * Indicator focus ring style of root - * - * @designToken carousel.indicator.focus.ring.style - */ - style?: string; - /** - * Indicator focus ring color of root - * - * @designToken carousel.indicator.focus.ring.color - */ - color?: string; - /** - * Indicator focus ring offset of root - * - * @designToken carousel.indicator.focus.ring.offset - */ - offset?: string; - /** - * Indicator focus ring shadow of root - * - * @designToken carousel.indicator.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Transition duration of root - * - * @designToken carousel.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the indicator section - */ - indicator?: { - /** - * Background of indicator - * - * @designToken carousel.indicator.background - */ - background?: string; - /** - * Hover background of indicator - * - * @designToken carousel.indicator.hover.background - */ - hoverBackground?: string; - /** - * Active background of indicator - * - * @designToken carousel.indicator.active.background - */ - activeBackground?: string; - }; -} diff --git a/components/lib/themes/types/cascadeselect/index.d.ts b/components/lib/themes/types/cascadeselect/index.d.ts deleted file mode 100644 index 6f5b352d4b..0000000000 --- a/components/lib/themes/types/cascadeselect/index.d.ts +++ /dev/null @@ -1,301 +0,0 @@ -/** - * - * CascadeSelect Design Tokens - * - * [Live Demo](https://www.primevue.org/cascadeselect/) - * - * @module themes/cascadeselect - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface CascadeSelectDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken cascadeselect.background - */ - background?: string; - /** - * Disabled background of root - * - * @designToken cascadeselect.disabled.background - */ - disabledBackground?: string; - /** - * Filled background of root - * - * @designToken cascadeselect.filled.background - */ - filledBackground?: string; - /** - * Filled focus background of root - * - * @designToken cascadeselect.filled.focus.background - */ - filledFocusBackground?: string; - /** - * Border color of root - * - * @designToken cascadeselect.border.color - */ - borderColor?: string; - /** - * Hover border color of root - * - * @designToken cascadeselect.hover.border.color - */ - hoverBorderColor?: string; - /** - * Focus border color of root - * - * @designToken cascadeselect.focus.border.color - */ - focusBorderColor?: string; - /** - * Invalid border color of root - * - * @designToken cascadeselect.invalid.border.color - */ - invalidBorderColor?: string; - /** - * Color of root - * - * @designToken cascadeselect.color - */ - color?: string; - /** - * Disabled color of root - * - * @designToken cascadeselect.disabled.color - */ - disabledColor?: string; - /** - * Placeholder color of root - * - * @designToken cascadeselect.placeholder.color - */ - placeholderColor?: string; - /** - * Shadow of root - * - * @designToken cascadeselect.shadow - */ - shadow?: string; - /** - * Padding x of root - * - * @designToken cascadeselect.padding.x - */ - paddingX?: string; - /** - * Padding y of root - * - * @designToken cascadeselect.padding.y - */ - paddingY?: string; - /** - * Border radius of root - * - * @designToken cascadeselect.border.radius - */ - borderRadius?: string; - /** - * Focus ring of root - */ - focusRing?: { - /** - * Focus ring width of root - * - * @designToken cascadeselect.focus.ring.width - */ - width?: string; - /** - * Focus ring style of root - * - * @designToken cascadeselect.focus.ring.style - */ - style?: string; - /** - * Focus ring color of root - * - * @designToken cascadeselect.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of root - * - * @designToken cascadeselect.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of root - * - * @designToken cascadeselect.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Transition duration of root - * - * @designToken cascadeselect.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the dropdown section - */ - dropdown?: { - /** - * Width of dropdown - * - * @designToken cascadeselect.dropdown.width - */ - width?: string; - /** - * Color of dropdown - * - * @designToken cascadeselect.dropdown.color - */ - color?: string; - }; - /** - * Used to pass tokens of the overlay section - */ - overlay?: { - /** - * Background of overlay - * - * @designToken cascadeselect.overlay.background - */ - background?: string; - /** - * Border color of overlay - * - * @designToken cascadeselect.overlay.border.color - */ - borderColor?: string; - /** - * Border radius of overlay - * - * @designToken cascadeselect.overlay.border.radius - */ - borderRadius?: string; - /** - * Color of overlay - * - * @designToken cascadeselect.overlay.color - */ - color?: string; - /** - * Shadow of overlay - * - * @designToken cascadeselect.overlay.shadow - */ - shadow?: string; - }; - /** - * Used to pass tokens of the list section - */ - list?: { - /** - * Padding of list - * - * @designToken cascadeselect.list.padding - */ - padding?: string; - /** - * Gap of list - * - * @designToken cascadeselect.list.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the option section - */ - option?: { - /** - * Focus background of option - * - * @designToken cascadeselect.option.focus.background - */ - focusBackground?: string; - /** - * Selected background of option - * - * @designToken cascadeselect.option.selected.background - */ - selectedBackground?: string; - /** - * Selected focus background of option - * - * @designToken cascadeselect.option.selected.focus.background - */ - selectedFocusBackground?: string; - /** - * Color of option - * - * @designToken cascadeselect.option.color - */ - color?: string; - /** - * Focus color of option - * - * @designToken cascadeselect.option.focus.color - */ - focusColor?: string; - /** - * Selected color of option - * - * @designToken cascadeselect.option.selected.color - */ - selectedColor?: string; - /** - * Selected focus color of option - * - * @designToken cascadeselect.option.selected.focus.color - */ - selectedFocusColor?: string; - /** - * Padding of option - * - * @designToken cascadeselect.option.padding - */ - padding?: string; - /** - * Border radius of option - * - * @designToken cascadeselect.option.border.radius - */ - borderRadius?: string; - /** - * Icon of option - */ - icon?: { - /** - * Icon color of option - * - * @designToken cascadeselect.option.icon.color - */ - color?: string; - /** - * Icon focus color of option - * - * @designToken cascadeselect.option.icon.focus.color - */ - focusColor?: string; - /** - * Icon size of option - * - * @designToken cascadeselect.option.icon.size - */ - size?: string; - }; - }; -} diff --git a/components/lib/themes/types/checkbox/index.d.ts b/components/lib/themes/types/checkbox/index.d.ts deleted file mode 100644 index 9c33beb0cd..0000000000 --- a/components/lib/themes/types/checkbox/index.d.ts +++ /dev/null @@ -1,191 +0,0 @@ -/** - * - * Checkbox Design Tokens - * - * [Live Demo](https://www.primevue.org/checkbox/) - * - * @module themes/checkbox - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface CheckboxDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Border radius of root - * - * @designToken checkbox.border.radius - */ - borderRadius?: string; - /** - * Width of root - * - * @designToken checkbox.width - */ - width?: string; - /** - * Height of root - * - * @designToken checkbox.height - */ - height?: string; - /** - * Background of root - * - * @designToken checkbox.background - */ - background?: string; - /** - * Checked background of root - * - * @designToken checkbox.checked.background - */ - checkedBackground?: string; - /** - * Checked hover background of root - * - * @designToken checkbox.checked.hover.background - */ - checkedHoverBackground?: string; - /** - * Disabled background of root - * - * @designToken checkbox.disabled.background - */ - disabledBackground?: string; - /** - * Filled background of root - * - * @designToken checkbox.filled.background - */ - filledBackground?: string; - /** - * Border color of root - * - * @designToken checkbox.border.color - */ - borderColor?: string; - /** - * Hover border color of root - * - * @designToken checkbox.hover.border.color - */ - hoverBorderColor?: string; - /** - * Focus border color of root - * - * @designToken checkbox.focus.border.color - */ - focusBorderColor?: string; - /** - * Checked border color of root - * - * @designToken checkbox.checked.border.color - */ - checkedBorderColor?: string; - /** - * Checked hover border color of root - * - * @designToken checkbox.checked.hover.border.color - */ - checkedHoverBorderColor?: string; - /** - * Checked focus border color of root - * - * @designToken checkbox.checked.focus.border.color - */ - checkedFocusBorderColor?: string; - /** - * Invalid border color of root - * - * @designToken checkbox.invalid.border.color - */ - invalidBorderColor?: string; - /** - * Shadow of root - * - * @designToken checkbox.shadow - */ - shadow?: string; - /** - * Focus ring of root - */ - focusRing?: { - /** - * Focus ring width of root - * - * @designToken checkbox.focus.ring.width - */ - width?: string; - /** - * Focus ring style of root - * - * @designToken checkbox.focus.ring.style - */ - style?: string; - /** - * Focus ring color of root - * - * @designToken checkbox.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of root - * - * @designToken checkbox.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of root - * - * @designToken checkbox.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Transition duration of root - * - * @designToken checkbox.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the icon section - */ - icon?: { - /** - * Size of icon - * - * @designToken checkbox.icon.size - */ - size?: string; - /** - * Color of icon - * - * @designToken checkbox.icon.color - */ - color?: string; - /** - * Checked color of icon - * - * @designToken checkbox.icon.checked.color - */ - checkedColor?: string; - /** - * Checked hover color of icon - * - * @designToken checkbox.icon.checked.hover.color - */ - checkedHoverColor?: string; - /** - * Disabled color of icon - * - * @designToken checkbox.icon.disabled.color - */ - disabledColor?: string; - }; -} diff --git a/components/lib/themes/types/chip/index.d.ts b/components/lib/themes/types/chip/index.d.ts deleted file mode 100644 index 5c6108e17c..0000000000 --- a/components/lib/themes/types/chip/index.d.ts +++ /dev/null @@ -1,141 +0,0 @@ -/** - * - * Chip Design Tokens - * - * [Live Demo](https://www.primevue.org/chip/) - * - * @module themes/chip - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface ChipDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Border radius of root - * - * @designToken chip.border.radius - */ - borderRadius?: string; - /** - * Padding x of root - * - * @designToken chip.padding.x - */ - paddingX?: string; - /** - * Padding y of root - * - * @designToken chip.padding.y - */ - paddingY?: string; - /** - * Gap of root - * - * @designToken chip.gap - */ - gap?: string; - /** - * Transition duration of root - * - * @designToken chip.transition.duration - */ - transitionDuration?: string; - /** - * Background of root - * - * @designToken chip.background - */ - background?: string; - /** - * Color of root - * - * @designToken chip.color - */ - color?: string; - }; - /** - * Used to pass tokens of the image section - */ - image?: { - /** - * Width of image - * - * @designToken chip.image.width - */ - width?: string; - /** - * Height of image - * - * @designToken chip.image.height - */ - height?: string; - }; - /** - * Used to pass tokens of the icon section - */ - icon?: { - /** - * Size of icon - * - * @designToken chip.icon.size - */ - size?: string; - /** - * Color of icon - * - * @designToken chip.icon.color - */ - color?: string; - }; - /** - * Used to pass tokens of the remove icon section - */ - removeIcon?: { - /** - * Focus ring of remove icon - */ - focusRing?: { - /** - * Focus ring width of remove icon - * - * @designToken chip.remove.icon.focus.ring.width - */ - width?: string; - /** - * Focus ring style of remove icon - * - * @designToken chip.remove.icon.focus.ring.style - */ - style?: string; - /** - * Focus ring color of remove icon - * - * @designToken chip.remove.icon.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of remove icon - * - * @designToken chip.remove.icon.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of remove icon - * - * @designToken chip.remove.icon.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Color of remove icon - * - * @designToken chip.remove.icon.color - */ - color?: string; - }; -} diff --git a/components/lib/themes/types/colorpicker/index.d.ts b/components/lib/themes/types/colorpicker/index.d.ts deleted file mode 100644 index f7e33992eb..0000000000 --- a/components/lib/themes/types/colorpicker/index.d.ts +++ /dev/null @@ -1,123 +0,0 @@ -/** - * - * ColorPicker Design Tokens - * - * [Live Demo](https://www.primevue.org/colorpicker/) - * - * @module themes/colorpicker - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface ColorPickerDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Transition duration of root - * - * @designToken colorpicker.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the preview section - */ - preview?: { - /** - * Width of preview - * - * @designToken colorpicker.preview.width - */ - width?: string; - /** - * Height of preview - * - * @designToken colorpicker.preview.height - */ - height?: string; - /** - * Border radius of preview - * - * @designToken colorpicker.preview.border.radius - */ - borderRadius?: string; - /** - * Focus ring of preview - */ - focusRing?: { - /** - * Focus ring width of preview - * - * @designToken colorpicker.preview.focus.ring.width - */ - width?: string; - /** - * Focus ring style of preview - * - * @designToken colorpicker.preview.focus.ring.style - */ - style?: string; - /** - * Focus ring color of preview - * - * @designToken colorpicker.preview.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of preview - * - * @designToken colorpicker.preview.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of preview - * - * @designToken colorpicker.preview.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Used to pass tokens of the panel section - */ - panel?: { - /** - * Shadow of panel - * - * @designToken colorpicker.panel.shadow - */ - shadow?: string; - /** - * Border radius of panel - * - * @designToken colorpicker.panel.border.radius - */ - borderRadius?: string; - /** - * Background of panel - * - * @designToken colorpicker.panel.background - */ - background?: string; - /** - * Border color of panel - * - * @designToken colorpicker.panel.border.color - */ - borderColor?: string; - }; - /** - * Used to pass tokens of the handle section - */ - handle?: { - /** - * Color of handle - * - * @designToken colorpicker.handle.color - */ - color?: string; - }; -} diff --git a/components/lib/themes/types/confirmdialog/index.d.ts b/components/lib/themes/types/confirmdialog/index.d.ts deleted file mode 100644 index 6212e34090..0000000000 --- a/components/lib/themes/types/confirmdialog/index.d.ts +++ /dev/null @@ -1,42 +0,0 @@ -/** - * - * ConfirmDialog Design Tokens - * - * [Live Demo](https://www.primevue.org/confirmdialog/) - * - * @module themes/confirmdialog - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface ConfirmDialogDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the icon section - */ - icon?: { - /** - * Size of icon - * - * @designToken confirmdialog.icon.size - */ - size?: string; - /** - * Color of icon - * - * @designToken confirmdialog.icon.color - */ - color?: string; - }; - /** - * Used to pass tokens of the content section - */ - content?: { - /** - * Gap of content - * - * @designToken confirmdialog.content.gap - */ - gap?: string; - }; -} diff --git a/components/lib/themes/types/confirmpopup/index.d.ts b/components/lib/themes/types/confirmpopup/index.d.ts deleted file mode 100644 index 20e032c5e1..0000000000 --- a/components/lib/themes/types/confirmpopup/index.d.ts +++ /dev/null @@ -1,112 +0,0 @@ -/** - * - * ConfirmPopup Design Tokens - * - * [Live Demo](https://www.primevue.org/confirmpopup/) - * - * @module themes/confirmpopup - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface ConfirmPopupDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken confirmpopup.background - */ - background?: string; - /** - * Border color of root - * - * @designToken confirmpopup.border.color - */ - borderColor?: string; - /** - * Color of root - * - * @designToken confirmpopup.color - */ - color?: string; - /** - * Border radius of root - * - * @designToken confirmpopup.border.radius - */ - borderRadius?: string; - /** - * Shadow of root - * - * @designToken confirmpopup.shadow - */ - shadow?: string; - /** - * Gutter of root - * - * @designToken confirmpopup.gutter - */ - gutter?: string; - /** - * Arrow offset of root - * - * @designToken confirmpopup.arrow.offset - */ - arrowOffset?: string; - }; - /** - * Used to pass tokens of the content section - */ - content?: { - /** - * Padding of content - * - * @designToken confirmpopup.content.padding - */ - padding?: string; - /** - * Gap of content - * - * @designToken confirmpopup.content.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the icon section - */ - icon?: { - /** - * Size of icon - * - * @designToken confirmpopup.icon.size - */ - size?: string; - /** - * Color of icon - * - * @designToken confirmpopup.icon.color - */ - color?: string; - }; - /** - * Used to pass tokens of the footer section - */ - footer?: { - /** - * Gap of footer - * - * @designToken confirmpopup.footer.gap - */ - gap?: string; - /** - * Padding of footer - * - * @designToken confirmpopup.footer.padding - */ - padding?: string; - }; -} diff --git a/components/lib/themes/types/contextmenu/index.d.ts b/components/lib/themes/types/contextmenu/index.d.ts deleted file mode 100644 index da5ea1bd05..0000000000 --- a/components/lib/themes/types/contextmenu/index.d.ts +++ /dev/null @@ -1,188 +0,0 @@ -/** - * - * ContextMenu Design Tokens - * - * [Live Demo](https://www.primevue.org/contextmenu/) - * - * @module themes/contextmenu - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface ContextMenuDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken contextmenu.background - */ - background?: string; - /** - * Border color of root - * - * @designToken contextmenu.border.color - */ - borderColor?: string; - /** - * Color of root - * - * @designToken contextmenu.color - */ - color?: string; - /** - * Border radius of root - * - * @designToken contextmenu.border.radius - */ - borderRadius?: string; - /** - * Shadow of root - * - * @designToken contextmenu.shadow - */ - shadow?: string; - /** - * Transition duration of root - * - * @designToken contextmenu.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the list section - */ - list?: { - /** - * Padding of list - * - * @designToken contextmenu.list.padding - */ - padding?: string; - /** - * Gap of list - * - * @designToken contextmenu.list.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the item section - */ - item?: { - /** - * Focus background of item - * - * @designToken contextmenu.item.focus.background - */ - focusBackground?: string; - /** - * Active background of item - * - * @designToken contextmenu.item.active.background - */ - activeBackground?: string; - /** - * Color of item - * - * @designToken contextmenu.item.color - */ - color?: string; - /** - * Focus color of item - * - * @designToken contextmenu.item.focus.color - */ - focusColor?: string; - /** - * Active color of item - * - * @designToken contextmenu.item.active.color - */ - activeColor?: string; - /** - * Padding of item - * - * @designToken contextmenu.item.padding - */ - padding?: string; - /** - * Border radius of item - * - * @designToken contextmenu.item.border.radius - */ - borderRadius?: string; - /** - * Gap of item - * - * @designToken contextmenu.item.gap - */ - gap?: string; - /** - * Icon of item - */ - icon?: { - /** - * Icon color of item - * - * @designToken contextmenu.item.icon.color - */ - color?: string; - /** - * Icon focus color of item - * - * @designToken contextmenu.item.icon.focus.color - */ - focusColor?: string; - /** - * Icon active color of item - * - * @designToken contextmenu.item.icon.active.color - */ - activeColor?: string; - }; - }; - /** - * Used to pass tokens of the submenu icon section - */ - submenuIcon?: { - /** - * Size of submenu icon - * - * @designToken contextmenu.submenu.icon.size - */ - size?: string; - /** - * Color of submenu icon - * - * @designToken contextmenu.submenu.icon.color - */ - color?: string; - /** - * Focus color of submenu icon - * - * @designToken contextmenu.submenu.icon.focus.color - */ - focusColor?: string; - /** - * Active color of submenu icon - * - * @designToken contextmenu.submenu.icon.active.color - */ - activeColor?: string; - }; - /** - * Used to pass tokens of the separator section - */ - separator?: { - /** - * Border color of separator - * - * @designToken contextmenu.separator.border.color - */ - borderColor?: string; - }; -} diff --git a/components/lib/themes/types/datatable/index.d.ts b/components/lib/themes/types/datatable/index.d.ts deleted file mode 100644 index 41af7dec27..0000000000 --- a/components/lib/themes/types/datatable/index.d.ts +++ /dev/null @@ -1,839 +0,0 @@ -/** - * - * DataTable Design Tokens - * - * [Live Demo](https://www.primevue.org/datatable/) - * - * @module themes/datatable - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface DataTableDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Transition duration of root - * - * @designToken datatable.transition.duration - */ - transitionDuration?: string; - /** - * Border color of root - * - * @designToken datatable.border.color - */ - borderColor?: string; - }; - /** - * Used to pass tokens of the header section - */ - header?: { - /** - * Background of header - * - * @designToken datatable.header.background - */ - background?: string; - /** - * Border color of header - * - * @designToken datatable.header.border.color - */ - borderColor?: string; - /** - * Color of header - * - * @designToken datatable.header.color - */ - color?: string; - /** - * Border width of header - * - * @designToken datatable.header.border.width - */ - borderWidth?: string; - /** - * Padding of header - * - * @designToken datatable.header.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the header cell section - */ - headerCell?: { - /** - * Background of header cell - * - * @designToken datatable.header.cell.background - */ - background?: string; - /** - * Hover background of header cell - * - * @designToken datatable.header.cell.hover.background - */ - hoverBackground?: string; - /** - * Selected background of header cell - * - * @designToken datatable.header.cell.selected.background - */ - selectedBackground?: string; - /** - * Border color of header cell - * - * @designToken datatable.header.cell.border.color - */ - borderColor?: string; - /** - * Color of header cell - * - * @designToken datatable.header.cell.color - */ - color?: string; - /** - * Hover color of header cell - * - * @designToken datatable.header.cell.hover.color - */ - hoverColor?: string; - /** - * Selected color of header cell - * - * @designToken datatable.header.cell.selected.color - */ - selectedColor?: string; - /** - * Gap of header cell - * - * @designToken datatable.header.cell.gap - */ - gap?: string; - /** - * Padding of header cell - * - * @designToken datatable.header.cell.padding - */ - padding?: string; - /** - * Focus ring of header cell - */ - focusRing?: { - /** - * Focus ring width of header cell - * - * @designToken datatable.header.cell.focus.ring.width - */ - width?: string; - /** - * Focus ring style of header cell - * - * @designToken datatable.header.cell.focus.ring.style - */ - style?: string; - /** - * Focus ring color of header cell - * - * @designToken datatable.header.cell.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of header cell - * - * @designToken datatable.header.cell.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of header cell - * - * @designToken datatable.header.cell.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Used to pass tokens of the column title section - */ - columnTitle?: { - /** - * Font weight of column title - * - * @designToken datatable.column.title.font.weight - */ - fontWeight?: string; - }; - /** - * Used to pass tokens of the row section - */ - row?: { - /** - * Background of row - * - * @designToken datatable.row.background - */ - background?: string; - /** - * Hover background of row - * - * @designToken datatable.row.hover.background - */ - hoverBackground?: string; - /** - * Selected background of row - * - * @designToken datatable.row.selected.background - */ - selectedBackground?: string; - /** - * Color of row - * - * @designToken datatable.row.color - */ - color?: string; - /** - * Hover color of row - * - * @designToken datatable.row.hover.color - */ - hoverColor?: string; - /** - * Selected color of row - * - * @designToken datatable.row.selected.color - */ - selectedColor?: string; - /** - * Focus ring of row - */ - focusRing?: { - /** - * Focus ring width of row - * - * @designToken datatable.row.focus.ring.width - */ - width?: string; - /** - * Focus ring style of row - * - * @designToken datatable.row.focus.ring.style - */ - style?: string; - /** - * Focus ring color of row - * - * @designToken datatable.row.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of row - * - * @designToken datatable.row.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of row - * - * @designToken datatable.row.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Striped background of row - * - * @designToken datatable.row.striped.background - */ - stripedBackground?: string; - }; - /** - * Used to pass tokens of the body cell section - */ - bodyCell?: { - /** - * Border color of body cell - * - * @designToken datatable.body.cell.border.color - */ - borderColor?: string; - /** - * Padding of body cell - * - * @designToken datatable.body.cell.padding - */ - padding?: string; - /** - * Selected border color of body cell - * - * @designToken datatable.body.cell.selected.border.color - */ - selectedBorderColor?: string; - }; - /** - * Used to pass tokens of the footer cell section - */ - footerCell?: { - /** - * Background of footer cell - * - * @designToken datatable.footer.cell.background - */ - background?: string; - /** - * Border color of footer cell - * - * @designToken datatable.footer.cell.border.color - */ - borderColor?: string; - /** - * Color of footer cell - * - * @designToken datatable.footer.cell.color - */ - color?: string; - /** - * Padding of footer cell - * - * @designToken datatable.footer.cell.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the column footer section - */ - columnFooter?: { - /** - * Font weight of column footer - * - * @designToken datatable.column.footer.font.weight - */ - fontWeight?: string; - }; - /** - * Used to pass tokens of the footer section - */ - footer?: { - /** - * Background of footer - * - * @designToken datatable.footer.background - */ - background?: string; - /** - * Border color of footer - * - * @designToken datatable.footer.border.color - */ - borderColor?: string; - /** - * Color of footer - * - * @designToken datatable.footer.color - */ - color?: string; - /** - * Border width of footer - * - * @designToken datatable.footer.border.width - */ - borderWidth?: string; - /** - * Padding of footer - * - * @designToken datatable.footer.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the drop point color section - */ - dropPointColor?: { - /** - * 0 of drop point color - * - * @designToken datatable.drop.point.color.0 - */ - 0?: string; - /** - * 1 of drop point color - * - * @designToken datatable.drop.point.color.1 - */ - 1?: string; - /** - * 2 of drop point color - * - * @designToken datatable.drop.point.color.2 - */ - 2?: string; - /** - * 3 of drop point color - * - * @designToken datatable.drop.point.color.3 - */ - 3?: string; - /** - * 4 of drop point color - * - * @designToken datatable.drop.point.color.4 - */ - 4?: string; - /** - * 5 of drop point color - * - * @designToken datatable.drop.point.color.5 - */ - 5?: string; - /** - * 6 of drop point color - * - * @designToken datatable.drop.point.color.6 - */ - 6?: string; - /** - * 7 of drop point color - * - * @designToken datatable.drop.point.color.7 - */ - 7?: string; - /** - * 8 of drop point color - * - * @designToken datatable.drop.point.color.8 - */ - 8?: string; - /** - * 9 of drop point color - * - * @designToken datatable.drop.point.color.9 - */ - 9?: string; - /** - * 10 of drop point color - * - * @designToken datatable.drop.point.color.10 - */ - 10?: string; - /** - * 11 of drop point color - * - * @designToken datatable.drop.point.color.11 - */ - 11?: string; - /** - * 12 of drop point color - * - * @designToken datatable.drop.point.color.12 - */ - 12?: string; - /** - * 13 of drop point color - * - * @designToken datatable.drop.point.color.13 - */ - 13?: string; - /** - * 14 of drop point color - * - * @designToken datatable.drop.point.color.14 - */ - 14?: string; - }; - /** - * Used to pass tokens of the column resizer width section - */ - columnResizerWidth?: { - /** - * 0 of column resizer width - * - * @designToken datatable.column.resizer.width.0 - */ - 0?: string; - /** - * 1 of column resizer width - * - * @designToken datatable.column.resizer.width.1 - */ - 1?: string; - /** - * 2 of column resizer width - * - * @designToken datatable.column.resizer.width.2 - */ - 2?: string; - /** - * 3 of column resizer width - * - * @designToken datatable.column.resizer.width.3 - */ - 3?: string; - /** - * 4 of column resizer width - * - * @designToken datatable.column.resizer.width.4 - */ - 4?: string; - /** - * 5 of column resizer width - * - * @designToken datatable.column.resizer.width.5 - */ - 5?: string; - }; - /** - * Used to pass tokens of the resize indicator section - */ - resizeIndicator?: { - /** - * Width of resize indicator - * - * @designToken datatable.resize.indicator.width - */ - width?: string; - /** - * Color of resize indicator - * - * @designToken datatable.resize.indicator.color - */ - color?: string; - }; - /** - * Used to pass tokens of the sort icon section - */ - sortIcon?: { - /** - * Color of sort icon - * - * @designToken datatable.sort.icon.color - */ - color?: string; - /** - * Hover color of sort icon - * - * @designToken datatable.sort.icon.hover.color - */ - hoverColor?: string; - }; - /** - * Used to pass tokens of the loading icon section - */ - loadingIcon?: { - /** - * Size of loading icon - * - * @designToken datatable.loading.icon.size - */ - size?: string; - }; - /** - * Used to pass tokens of the row toggle button section - */ - rowToggleButton?: { - /** - * Hover background of row toggle button - * - * @designToken datatable.row.toggle.button.hover.background - */ - hoverBackground?: string; - /** - * Selected hover background of row toggle button - * - * @designToken datatable.row.toggle.button.selected.hover.background - */ - selectedHoverBackground?: string; - /** - * Color of row toggle button - * - * @designToken datatable.row.toggle.button.color - */ - color?: string; - /** - * Hover color of row toggle button - * - * @designToken datatable.row.toggle.button.hover.color - */ - hoverColor?: string; - /** - * Selected hover color of row toggle button - * - * @designToken datatable.row.toggle.button.selected.hover.color - */ - selectedHoverColor?: string; - /** - * Size of row toggle button - * - * @designToken datatable.row.toggle.button.size - */ - size?: string; - /** - * Border radius of row toggle button - * - * @designToken datatable.row.toggle.button.border.radius - */ - borderRadius?: string; - /** - * Focus ring of row toggle button - */ - focusRing?: { - /** - * Focus ring width of row toggle button - * - * @designToken datatable.row.toggle.button.focus.ring.width - */ - width?: string; - /** - * Focus ring style of row toggle button - * - * @designToken datatable.row.toggle.button.focus.ring.style - */ - style?: string; - /** - * Focus ring color of row toggle button - * - * @designToken datatable.row.toggle.button.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of row toggle button - * - * @designToken datatable.row.toggle.button.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of row toggle button - * - * @designToken datatable.row.toggle.button.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Used to pass tokens of the filter section - */ - filter?: { - /** - * Inline gap of filter - * - * @designToken datatable.filter.inline.gap - */ - inlineGap?: string; - /** - * Overlay select of filter - */ - overlaySelect?: { - /** - * Overlay select background of filter - * - * @designToken datatable.filter.overlay.select.background - */ - background?: string; - /** - * Overlay select border color of filter - * - * @designToken datatable.filter.overlay.select.border.color - */ - borderColor?: string; - /** - * Overlay select border radius of filter - * - * @designToken datatable.filter.overlay.select.border.radius - */ - borderRadius?: string; - /** - * Overlay select color of filter - * - * @designToken datatable.filter.overlay.select.color - */ - color?: string; - /** - * Overlay select shadow of filter - * - * @designToken datatable.filter.overlay.select.shadow - */ - shadow?: string; - }; - /** - * Overlay popover of filter - */ - overlayPopover?: { - /** - * Overlay popover background of filter - * - * @designToken datatable.filter.overlay.popover.background - */ - background?: string; - /** - * Overlay popover border color of filter - * - * @designToken datatable.filter.overlay.popover.border.color - */ - borderColor?: string; - /** - * Overlay popover border radius of filter - * - * @designToken datatable.filter.overlay.popover.border.radius - */ - borderRadius?: string; - /** - * Overlay popover color of filter - * - * @designToken datatable.filter.overlay.popover.color - */ - color?: string; - /** - * Overlay popover shadow of filter - * - * @designToken datatable.filter.overlay.popover.shadow - */ - shadow?: string; - /** - * Overlay popover padding of filter - * - * @designToken datatable.filter.overlay.popover.padding - */ - padding?: string; - /** - * Overlay popover gap of filter - * - * @designToken datatable.filter.overlay.popover.gap - */ - gap?: string; - }; - /** - * Rule of filter - */ - rule?: { - /** - * Rule border color of filter - * - * @designToken datatable.filter.rule.border.color - */ - borderColor?: string; - }; - /** - * Constraint list of filter - */ - constraintList?: { - /** - * Constraint list padding of filter - * - * @designToken datatable.filter.constraint.list.padding - */ - padding?: string; - /** - * Constraint list gap of filter - * - * @designToken datatable.filter.constraint.list.gap - */ - gap?: string; - }; - /** - * Constraint of filter - */ - constraint?: { - /** - * Constraint focus background of filter - * - * @designToken datatable.filter.constraint.focus.background - */ - focusBackground?: string; - /** - * Constraint selected background of filter - * - * @designToken datatable.filter.constraint.selected.background - */ - selectedBackground?: string; - /** - * Constraint selected focus background of filter - * - * @designToken datatable.filter.constraint.selected.focus.background - */ - selectedFocusBackground?: string; - /** - * Constraint color of filter - * - * @designToken datatable.filter.constraint.color - */ - color?: string; - /** - * Constraint focus color of filter - * - * @designToken datatable.filter.constraint.focus.color - */ - focusColor?: string; - /** - * Constraint selected color of filter - * - * @designToken datatable.filter.constraint.selected.color - */ - selectedColor?: string; - /** - * Constraint selected focus color of filter - * - * @designToken datatable.filter.constraint.selected.focus.color - */ - selectedFocusColor?: string; - /** - * Constraint separator of filter - */ - separator?: { - /** - * Constraint separator border color of filter - * - * @designToken datatable.filter.constraint.separator.border.color - */ - borderColor?: string; - }; - /** - * Constraint padding of filter - * - * @designToken datatable.filter.constraint.padding - */ - padding?: string; - /** - * Constraint border radius of filter - * - * @designToken datatable.filter.constraint.border.radius - */ - borderRadius?: string; - }; - }; - /** - * Used to pass tokens of the paginator top section - */ - paginatorTop?: { - /** - * Border color of paginator top - * - * @designToken datatable.paginator.top.border.color - */ - borderColor?: string; - /** - * Border width of paginator top - * - * @designToken datatable.paginator.top.border.width - */ - borderWidth?: string; - }; - /** - * Used to pass tokens of the paginator bottom section - */ - paginatorBottom?: { - /** - * Border color of paginator bottom - * - * @designToken datatable.paginator.bottom.border.color - */ - borderColor?: string; - /** - * Border width of paginator bottom - * - * @designToken datatable.paginator.bottom.border.width - */ - borderWidth?: string; - }; -} diff --git a/components/lib/themes/types/dataview/index.d.ts b/components/lib/themes/types/dataview/index.d.ts deleted file mode 100644 index 4d7274d7fe..0000000000 --- a/components/lib/themes/types/dataview/index.d.ts +++ /dev/null @@ -1,200 +0,0 @@ -/** - * - * DataView Design Tokens - * - * [Live Demo](https://www.primevue.org/dataview/) - * - * @module themes/dataview - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface DataViewDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Border color of root - * - * @designToken dataview.border.color - */ - borderColor?: string; - /** - * Border width of root - * - * @designToken dataview.border.width - */ - borderWidth?: string; - /** - * Border radius of root - * - * @designToken dataview.border.radius - */ - borderRadius?: string; - /** - * Padding of root - * - * @designToken dataview.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the header section - */ - header?: { - /** - * Background of header - * - * @designToken dataview.header.background - */ - background?: string; - /** - * Color of header - * - * @designToken dataview.header.color - */ - color?: string; - /** - * Border color of header - * - * @designToken dataview.header.border.color - */ - borderColor?: string; - /** - * Border width of header - * - * @designToken dataview.header.border.width - */ - borderWidth?: string; - /** - * Padding of header - * - * @designToken dataview.header.padding - */ - padding?: string; - /** - * Border radius of header - * - * @designToken dataview.header.border.radius - */ - borderRadius?: string; - }; - /** - * Used to pass tokens of the content section - */ - content?: { - /** - * Background of content - * - * @designToken dataview.content.background - */ - background?: string; - /** - * Color of content - * - * @designToken dataview.content.color - */ - color?: string; - /** - * Border color of content - * - * @designToken dataview.content.border.color - */ - borderColor?: string; - /** - * Border width of content - * - * @designToken dataview.content.border.width - */ - borderWidth?: string; - /** - * Padding of content - * - * @designToken dataview.content.padding - */ - padding?: string; - /** - * Border radius of content - * - * @designToken dataview.content.border.radius - */ - borderRadius?: string; - }; - /** - * Used to pass tokens of the footer section - */ - footer?: { - /** - * Background of footer - * - * @designToken dataview.footer.background - */ - background?: string; - /** - * Color of footer - * - * @designToken dataview.footer.color - */ - color?: string; - /** - * Border color of footer - * - * @designToken dataview.footer.border.color - */ - borderColor?: string; - /** - * Border width of footer - * - * @designToken dataview.footer.border.width - */ - borderWidth?: string; - /** - * Padding of footer - * - * @designToken dataview.footer.padding - */ - padding?: string; - /** - * Border radius of footer - * - * @designToken dataview.footer.border.radius - */ - borderRadius?: string; - }; - /** - * Used to pass tokens of the paginator top section - */ - paginatorTop?: { - /** - * Border color of paginator top - * - * @designToken dataview.paginator.top.border.color - */ - borderColor?: string; - /** - * Border width of paginator top - * - * @designToken dataview.paginator.top.border.width - */ - borderWidth?: string; - }; - /** - * Used to pass tokens of the paginator bottom section - */ - paginatorBottom?: { - /** - * Border color of paginator bottom - * - * @designToken dataview.paginator.bottom.border.color - */ - borderColor?: string; - /** - * Border width of paginator bottom - * - * @designToken dataview.paginator.bottom.border.width - */ - borderWidth?: string; - }; -} diff --git a/components/lib/themes/types/datepicker/index.d.ts b/components/lib/themes/types/datepicker/index.d.ts deleted file mode 100644 index a190a6ccc5..0000000000 --- a/components/lib/themes/types/datepicker/index.d.ts +++ /dev/null @@ -1,563 +0,0 @@ -/** - * - * DatePicker Design Tokens - * - * [Live Demo](https://www.primevue.org/datepicker/) - * - * @module themes/datepicker - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface DatePickerDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Transition duration of root - * - * @designToken datepicker.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the panel section - */ - panel?: { - /** - * Background of panel - * - * @designToken datepicker.panel.background - */ - background?: string; - /** - * Border color of panel - * - * @designToken datepicker.panel.border.color - */ - borderColor?: string; - /** - * Color of panel - * - * @designToken datepicker.panel.color - */ - color?: string; - /** - * Border radius of panel - * - * @designToken datepicker.panel.border.radius - */ - borderRadius?: string; - /** - * Shadow of panel - * - * @designToken datepicker.panel.shadow - */ - shadow?: string; - /** - * Padding of panel - * - * @designToken datepicker.panel.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the header section - */ - header?: { - /** - * Background of header - * - * @designToken datepicker.header.background - */ - background?: string; - /** - * Border color of header - * - * @designToken datepicker.header.border.color - */ - borderColor?: string; - /** - * Color of header - * - * @designToken datepicker.header.color - */ - color?: string; - /** - * Padding of header - * - * @designToken datepicker.header.padding - */ - padding?: string; - /** - * Font weight of header - * - * @designToken datepicker.header.font.weight - */ - fontWeight?: string; - /** - * Gap of header - * - * @designToken datepicker.header.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the title section - */ - title?: { - /** - * Gap of title - * - * @designToken datepicker.title.gap - */ - gap?: string; - /** - * Font weight of title - * - * @designToken datepicker.title.font.weight - */ - fontWeight?: string; - }; - /** - * Used to pass tokens of the dropdown section - */ - dropdown?: { - /** - * Width of dropdown - * - * @designToken datepicker.dropdown.width - */ - width?: string; - /** - * Border color of dropdown - * - * @designToken datepicker.dropdown.border.color - */ - borderColor?: string; - /** - * Hover border color of dropdown - * - * @designToken datepicker.dropdown.hover.border.color - */ - hoverBorderColor?: string; - /** - * Active border color of dropdown - * - * @designToken datepicker.dropdown.active.border.color - */ - activeBorderColor?: string; - /** - * Border radius of dropdown - * - * @designToken datepicker.dropdown.border.radius - */ - borderRadius?: string; - /** - * Focus ring of dropdown - */ - focusRing?: { - /** - * Focus ring width of dropdown - * - * @designToken datepicker.dropdown.focus.ring.width - */ - width?: string; - /** - * Focus ring style of dropdown - * - * @designToken datepicker.dropdown.focus.ring.style - */ - style?: string; - /** - * Focus ring color of dropdown - * - * @designToken datepicker.dropdown.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of dropdown - * - * @designToken datepicker.dropdown.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of dropdown - * - * @designToken datepicker.dropdown.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Background of dropdown - * - * @designToken datepicker.dropdown.background - */ - background?: string; - /** - * Hover background of dropdown - * - * @designToken datepicker.dropdown.hover.background - */ - hoverBackground?: string; - /** - * Active background of dropdown - * - * @designToken datepicker.dropdown.active.background - */ - activeBackground?: string; - /** - * Color of dropdown - * - * @designToken datepicker.dropdown.color - */ - color?: string; - /** - * Hover color of dropdown - * - * @designToken datepicker.dropdown.hover.color - */ - hoverColor?: string; - /** - * Active color of dropdown - * - * @designToken datepicker.dropdown.active.color - */ - activeColor?: string; - }; - /** - * Used to pass tokens of the input icon section - */ - inputIcon?: { - /** - * Color of input icon - * - * @designToken datepicker.input.icon.color - */ - color?: string; - }; - /** - * Used to pass tokens of the select month section - */ - selectMonth?: { - /** - * Hover background of select month - * - * @designToken datepicker.select.month.hover.background - */ - hoverBackground?: string; - /** - * Color of select month - * - * @designToken datepicker.select.month.color - */ - color?: string; - /** - * Hover color of select month - * - * @designToken datepicker.select.month.hover.color - */ - hoverColor?: string; - /** - * Padding of select month - * - * @designToken datepicker.select.month.padding - */ - padding?: string; - /** - * Border radius of select month - * - * @designToken datepicker.select.month.border.radius - */ - borderRadius?: string; - }; - /** - * Used to pass tokens of the select year section - */ - selectYear?: { - /** - * Hover background of select year - * - * @designToken datepicker.select.year.hover.background - */ - hoverBackground?: string; - /** - * Color of select year - * - * @designToken datepicker.select.year.color - */ - color?: string; - /** - * Hover color of select year - * - * @designToken datepicker.select.year.hover.color - */ - hoverColor?: string; - /** - * Padding of select year - * - * @designToken datepicker.select.year.padding - */ - padding?: string; - /** - * Border radius of select year - * - * @designToken datepicker.select.year.border.radius - */ - borderRadius?: string; - }; - /** - * Used to pass tokens of the group section - */ - group?: { - /** - * Border color of group - * - * @designToken datepicker.group.border.color - */ - borderColor?: string; - /** - * Gap of group - * - * @designToken datepicker.group.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the day view section - */ - dayView?: { - /** - * Margin of day view - * - * @designToken datepicker.day.view.margin - */ - margin?: string; - }; - /** - * Used to pass tokens of the week day section - */ - weekDay?: { - /** - * Padding of week day - * - * @designToken datepicker.week.day.padding - */ - padding?: string; - /** - * Font weight of week day - * - * @designToken datepicker.week.day.font.weight - */ - fontWeight?: string; - /** - * Color of week day - * - * @designToken datepicker.week.day.color - */ - color?: string; - }; - /** - * Used to pass tokens of the date section - */ - date?: { - /** - * Hover background of date - * - * @designToken datepicker.date.hover.background - */ - hoverBackground?: string; - /** - * Selected background of date - * - * @designToken datepicker.date.selected.background - */ - selectedBackground?: string; - /** - * Color of date - * - * @designToken datepicker.date.color - */ - color?: string; - /** - * Hover color of date - * - * @designToken datepicker.date.hover.color - */ - hoverColor?: string; - /** - * Selected color of date - * - * @designToken datepicker.date.selected.color - */ - selectedColor?: string; - /** - * Width of date - * - * @designToken datepicker.date.width - */ - width?: string; - /** - * Height of date - * - * @designToken datepicker.date.height - */ - height?: string; - /** - * Border radius of date - * - * @designToken datepicker.date.border.radius - */ - borderRadius?: string; - /** - * Padding of date - * - * @designToken datepicker.date.padding - */ - padding?: string; - /** - * Focus ring of date - */ - focusRing?: { - /** - * Focus ring width of date - * - * @designToken datepicker.date.focus.ring.width - */ - width?: string; - /** - * Focus ring style of date - * - * @designToken datepicker.date.focus.ring.style - */ - style?: string; - /** - * Focus ring color of date - * - * @designToken datepicker.date.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of date - * - * @designToken datepicker.date.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of date - * - * @designToken datepicker.date.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Used to pass tokens of the month view section - */ - monthView?: { - /** - * Margin of month view - * - * @designToken datepicker.month.view.margin - */ - margin?: string; - }; - /** - * Used to pass tokens of the month section - */ - month?: { - /** - * Border radius of month - * - * @designToken datepicker.month.border.radius - */ - borderRadius?: string; - }; - /** - * Used to pass tokens of the year view section - */ - yearView?: { - /** - * Margin of year view - * - * @designToken datepicker.year.view.margin - */ - margin?: string; - }; - /** - * Used to pass tokens of the year section - */ - year?: { - /** - * Border radius of year - * - * @designToken datepicker.year.border.radius - */ - borderRadius?: string; - }; - /** - * Used to pass tokens of the buttonbar section - */ - buttonbar?: { - /** - * Padding of buttonbar - * - * @designToken datepicker.buttonbar.padding - */ - padding?: string; - /** - * Border color of buttonbar - * - * @designToken datepicker.buttonbar.border.color - */ - borderColor?: string; - }; - /** - * Used to pass tokens of the time picker section - */ - timePicker?: { - /** - * Padding of time picker - * - * @designToken datepicker.time.picker.padding - */ - padding?: string; - /** - * Border color of time picker - * - * @designToken datepicker.time.picker.border.color - */ - borderColor?: string; - /** - * Gap of time picker - * - * @designToken datepicker.time.picker.gap - */ - gap?: string; - /** - * Button gap of time picker - * - * @designToken datepicker.time.picker.button.gap - */ - buttonGap?: string; - }; - /** - * Used to pass tokens of the today section - */ - today?: { - /** - * Background of today - * - * @designToken datepicker.today.background - */ - background?: string; - /** - * Color of today - * - * @designToken datepicker.today.color - */ - color?: string; - }; -} diff --git a/components/lib/themes/types/dialog/index.d.ts b/components/lib/themes/types/dialog/index.d.ts deleted file mode 100644 index 48d00dcc4b..0000000000 --- a/components/lib/themes/types/dialog/index.d.ts +++ /dev/null @@ -1,111 +0,0 @@ -/** - * - * Dialog Design Tokens - * - * [Live Demo](https://www.primevue.org/dialog/) - * - * @module themes/dialog - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface DialogDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken dialog.background - */ - background?: string; - /** - * Border color of root - * - * @designToken dialog.border.color - */ - borderColor?: string; - /** - * Color of root - * - * @designToken dialog.color - */ - color?: string; - /** - * Border radius of root - * - * @designToken dialog.border.radius - */ - borderRadius?: string; - /** - * Shadow of root - * - * @designToken dialog.shadow - */ - shadow?: string; - }; - /** - * Used to pass tokens of the header section - */ - header?: { - /** - * Padding of header - * - * @designToken dialog.header.padding - */ - padding?: string; - /** - * Gap of header - * - * @designToken dialog.header.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the title section - */ - title?: { - /** - * Font size of title - * - * @designToken dialog.title.font.size - */ - fontSize?: string; - /** - * Font weight of title - * - * @designToken dialog.title.font.weight - */ - fontWeight?: string; - }; - /** - * Used to pass tokens of the content section - */ - content?: { - /** - * Padding of content - * - * @designToken dialog.content.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the footer section - */ - footer?: { - /** - * Padding of footer - * - * @designToken dialog.footer.padding - */ - padding?: string; - /** - * Gap of footer - * - * @designToken dialog.footer.gap - */ - gap?: string; - }; -} diff --git a/components/lib/themes/types/divider/index.d.ts b/components/lib/themes/types/divider/index.d.ts deleted file mode 100644 index aa387f30d2..0000000000 --- a/components/lib/themes/types/divider/index.d.ts +++ /dev/null @@ -1,98 +0,0 @@ -/** - * - * Divider Design Tokens - * - * [Live Demo](https://www.primevue.org/divider/) - * - * @module themes/divider - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface DividerDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Border color of root - * - * @designToken divider.border.color - */ - borderColor?: string; - }; - /** - * Used to pass tokens of the content section - */ - content?: { - /** - * Background of content - * - * @designToken divider.content.background - */ - background?: string; - /** - * Color of content - * - * @designToken divider.content.color - */ - color?: string; - }; - /** - * Used to pass tokens of the horizontal section - */ - horizontal?: { - /** - * Margin of horizontal - * - * @designToken divider.horizontal.margin - */ - margin?: string; - /** - * Padding of horizontal - * - * @designToken divider.horizontal.padding - */ - padding?: string; - /** - * Content of horizontal - */ - content?: { - /** - * Content padding of horizontal - * - * @designToken divider.horizontal.content.padding - */ - padding?: string; - }; - }; - /** - * Used to pass tokens of the vertical section - */ - vertical?: { - /** - * Margin of vertical - * - * @designToken divider.vertical.margin - */ - margin?: string; - /** - * Padding of vertical - * - * @designToken divider.vertical.padding - */ - padding?: string; - /** - * Content of vertical - */ - content?: { - /** - * Content padding of vertical - * - * @designToken divider.vertical.content.padding - */ - padding?: string; - }; - }; -} diff --git a/components/lib/themes/types/dock/index.d.ts b/components/lib/themes/types/dock/index.d.ts deleted file mode 100644 index b929adf6b0..0000000000 --- a/components/lib/themes/types/dock/index.d.ts +++ /dev/null @@ -1,101 +0,0 @@ -/** - * - * Dock Design Tokens - * - * [Live Demo](https://www.primevue.org/dock/) - * - * @module themes/dock - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface DockDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken dock.background - */ - background?: string; - /** - * Border color of root - * - * @designToken dock.border.color - */ - borderColor?: string; - /** - * Padding of root - * - * @designToken dock.padding - */ - padding?: string; - /** - * Border radius of root - * - * @designToken dock.border.radius - */ - borderRadius?: string; - }; - /** - * Used to pass tokens of the item section - */ - item?: { - /** - * Border radius of item - * - * @designToken dock.item.border.radius - */ - borderRadius?: string; - /** - * Padding of item - * - * @designToken dock.item.padding - */ - padding?: string; - /** - * Size of item - * - * @designToken dock.item.size - */ - size?: string; - /** - * Focus ring of item - */ - focusRing?: { - /** - * Focus ring width of item - * - * @designToken dock.item.focus.ring.width - */ - width?: string; - /** - * Focus ring style of item - * - * @designToken dock.item.focus.ring.style - */ - style?: string; - /** - * Focus ring color of item - * - * @designToken dock.item.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of item - * - * @designToken dock.item.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of item - * - * @designToken dock.item.focus.ring.shadow - */ - shadow?: string; - }; - }; -} diff --git a/components/lib/themes/types/drawer/index.d.ts b/components/lib/themes/types/drawer/index.d.ts deleted file mode 100644 index b5032a2871..0000000000 --- a/components/lib/themes/types/drawer/index.d.ts +++ /dev/null @@ -1,88 +0,0 @@ -/** - * - * Drawer Design Tokens - * - * [Live Demo](https://www.primevue.org/drawer/) - * - * @module themes/drawer - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface DrawerDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken drawer.background - */ - background?: string; - /** - * Border color of root - * - * @designToken drawer.border.color - */ - borderColor?: string; - /** - * Color of root - * - * @designToken drawer.color - */ - color?: string; - /** - * Border radius of root - * - * @designToken drawer.border.radius - */ - borderRadius?: string; - /** - * Shadow of root - * - * @designToken drawer.shadow - */ - shadow?: string; - }; - /** - * Used to pass tokens of the header section - */ - header?: { - /** - * Padding of header - * - * @designToken drawer.header.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the title section - */ - title?: { - /** - * Font size of title - * - * @designToken drawer.title.font.size - */ - fontSize?: string; - /** - * Font weight of title - * - * @designToken drawer.title.font.weight - */ - fontWeight?: string; - }; - /** - * Used to pass tokens of the content section - */ - content?: { - /** - * Padding of content - * - * @designToken drawer.content.padding - */ - padding?: string; - }; -} diff --git a/components/lib/themes/types/editor/index.d.ts b/components/lib/themes/types/editor/index.d.ts deleted file mode 100644 index c24f7b29c8..0000000000 --- a/components/lib/themes/types/editor/index.d.ts +++ /dev/null @@ -1,165 +0,0 @@ -/** - * - * Editor Design Tokens - * - * [Live Demo](https://www.primevue.org/editor/) - * - * @module themes/editor - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface EditorDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the toolbar section - */ - toolbar?: { - /** - * Background of toolbar - * - * @designToken editor.toolbar.background - */ - background?: string; - /** - * Border color of toolbar - * - * @designToken editor.toolbar.border.color - */ - borderColor?: string; - /** - * Border radius of toolbar - * - * @designToken editor.toolbar.border.radius - */ - borderRadius?: string; - }; - /** - * Used to pass tokens of the toolbar item section - */ - toolbarItem?: { - /** - * Color of toolbar item - * - * @designToken editor.toolbar.item.color - */ - color?: string; - /** - * Hover color of toolbar item - * - * @designToken editor.toolbar.item.hover.color - */ - hoverColor?: string; - /** - * Active color of toolbar item - * - * @designToken editor.toolbar.item.active.color - */ - activeColor?: string; - }; - /** - * Used to pass tokens of the overlay section - */ - overlay?: { - /** - * Background of overlay - * - * @designToken editor.overlay.background - */ - background?: string; - /** - * Border color of overlay - * - * @designToken editor.overlay.border.color - */ - borderColor?: string; - /** - * Border radius of overlay - * - * @designToken editor.overlay.border.radius - */ - borderRadius?: string; - /** - * Color of overlay - * - * @designToken editor.overlay.color - */ - color?: string; - /** - * Shadow of overlay - * - * @designToken editor.overlay.shadow - */ - shadow?: string; - /** - * Padding of overlay - * - * @designToken editor.overlay.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the overlay option section - */ - overlayOption?: { - /** - * Focus background of overlay option - * - * @designToken editor.overlay.option.focus.background - */ - focusBackground?: string; - /** - * Color of overlay option - * - * @designToken editor.overlay.option.color - */ - color?: string; - /** - * Focus color of overlay option - * - * @designToken editor.overlay.option.focus.color - */ - focusColor?: string; - /** - * Padding of overlay option - * - * @designToken editor.overlay.option.padding - */ - padding?: string; - /** - * Border radius of overlay option - * - * @designToken editor.overlay.option.border.radius - */ - borderRadius?: string; - }; - /** - * Used to pass tokens of the content section - */ - content?: { - /** - * Background of content - * - * @designToken editor.content.background - */ - background?: string; - /** - * Border color of content - * - * @designToken editor.content.border.color - */ - borderColor?: string; - /** - * Color of content - * - * @designToken editor.content.color - */ - color?: string; - /** - * Border radius of content - * - * @designToken editor.content.border.radius - */ - borderRadius?: string; - }; -} diff --git a/components/lib/themes/types/fieldset/index.d.ts b/components/lib/themes/types/fieldset/index.d.ts deleted file mode 100644 index 00e16e822f..0000000000 --- a/components/lib/themes/types/fieldset/index.d.ts +++ /dev/null @@ -1,183 +0,0 @@ -/** - * - * Fieldset Design Tokens - * - * [Live Demo](https://www.primevue.org/fieldset/) - * - * @module themes/fieldset - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface FieldsetDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken fieldset.background - */ - background?: string; - /** - * Border color of root - * - * @designToken fieldset.border.color - */ - borderColor?: string; - /** - * Border radius of root - * - * @designToken fieldset.border.radius - */ - borderRadius?: string; - /** - * Color of root - * - * @designToken fieldset.color - */ - color?: string; - /** - * Padding of root - * - * @designToken fieldset.padding - */ - padding?: string; - /** - * Transition duration of root - * - * @designToken fieldset.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the legend section - */ - legend?: { - /** - * Background of legend - * - * @designToken fieldset.legend.background - */ - background?: string; - /** - * Hover background of legend - * - * @designToken fieldset.legend.hover.background - */ - hoverBackground?: string; - /** - * Color of legend - * - * @designToken fieldset.legend.color - */ - color?: string; - /** - * Hover color of legend - * - * @designToken fieldset.legend.hover.color - */ - hoverColor?: string; - /** - * Border radius of legend - * - * @designToken fieldset.legend.border.radius - */ - borderRadius?: string; - /** - * Border width of legend - * - * @designToken fieldset.legend.border.width - */ - borderWidth?: string; - /** - * Border color of legend - * - * @designToken fieldset.legend.border.color - */ - borderColor?: string; - /** - * Padding of legend - * - * @designToken fieldset.legend.padding - */ - padding?: string; - /** - * Gap of legend - * - * @designToken fieldset.legend.gap - */ - gap?: string; - /** - * Font weight of legend - * - * @designToken fieldset.legend.font.weight - */ - fontWeight?: string; - /** - * Focus ring of legend - */ - focusRing?: { - /** - * Focus ring width of legend - * - * @designToken fieldset.legend.focus.ring.width - */ - width?: string; - /** - * Focus ring style of legend - * - * @designToken fieldset.legend.focus.ring.style - */ - style?: string; - /** - * Focus ring color of legend - * - * @designToken fieldset.legend.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of legend - * - * @designToken fieldset.legend.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of legend - * - * @designToken fieldset.legend.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Used to pass tokens of the toggle icon section - */ - toggleIcon?: { - /** - * Color of toggle icon - * - * @designToken fieldset.toggle.icon.color - */ - color?: string; - /** - * Hover color of toggle icon - * - * @designToken fieldset.toggle.icon.hover.color - */ - hoverColor?: string; - }; - /** - * Used to pass tokens of the content section - */ - content?: { - /** - * Padding of content - * - * @designToken fieldset.content.padding - */ - padding?: string; - }; -} diff --git a/components/lib/themes/types/fileupload/index.d.ts b/components/lib/themes/types/fileupload/index.d.ts deleted file mode 100644 index 15bcc60d16..0000000000 --- a/components/lib/themes/types/fileupload/index.d.ts +++ /dev/null @@ -1,163 +0,0 @@ -/** - * - * FileUpload Design Tokens - * - * [Live Demo](https://www.primevue.org/fileupload/) - * - * @module themes/fileupload - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface FileUploadDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken fileupload.background - */ - background?: string; - /** - * Border color of root - * - * @designToken fileupload.border.color - */ - borderColor?: string; - /** - * Color of root - * - * @designToken fileupload.color - */ - color?: string; - /** - * Border radius of root - * - * @designToken fileupload.border.radius - */ - borderRadius?: string; - /** - * Transition duration of root - * - * @designToken fileupload.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the header section - */ - header?: { - /** - * Background of header - * - * @designToken fileupload.header.background - */ - background?: string; - /** - * Color of header - * - * @designToken fileupload.header.color - */ - color?: string; - /** - * Padding of header - * - * @designToken fileupload.header.padding - */ - padding?: string; - /** - * Border width of header - * - * @designToken fileupload.header.border.width - */ - borderWidth?: string; - /** - * Border radius of header - * - * @designToken fileupload.header.border.radius - */ - borderRadius?: string; - /** - * Gap of header - * - * @designToken fileupload.header.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the content section - */ - content?: { - /** - * Highlight border color of content - * - * @designToken fileupload.content.highlight.border.color - */ - highlightBorderColor?: string; - /** - * Padding of content - * - * @designToken fileupload.content.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the file section - */ - file?: { - /** - * Padding of file - * - * @designToken fileupload.file.padding - */ - padding?: string; - /** - * Gap of file - * - * @designToken fileupload.file.gap - */ - gap?: string; - /** - * Border color of file - * - * @designToken fileupload.file.border.color - */ - borderColor?: string; - /** - * Info of file - */ - info?: { - /** - * Info gap of file - * - * @designToken fileupload.file.info.gap - */ - gap?: string; - }; - }; - /** - * Used to pass tokens of the progressbar section - */ - progressbar?: { - /** - * Height of progressbar - * - * @designToken fileupload.progressbar.height - */ - height?: string; - }; - /** - * Used to pass tokens of the basic section - */ - basic?: { - /** - * Gap of basic - * - * @designToken fileupload.basic.gap - */ - gap?: string; - }; -} diff --git a/components/lib/themes/types/floatlabel/index.d.ts b/components/lib/themes/types/floatlabel/index.d.ts deleted file mode 100644 index d3bd1bbed2..0000000000 --- a/components/lib/themes/types/floatlabel/index.d.ts +++ /dev/null @@ -1,43 +0,0 @@ -/** - * - * FloatLabel Design Tokens - * - * [Live Demo](https://www.primevue.org/floatlabel/) - * - * @module themes/floatlabel - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface FloatLabelDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Color of root - * - * @designToken floatlabel.color - */ - color?: string; - /** - * Focus color of root - * - * @designToken floatlabel.focus.color - */ - focusColor?: string; - /** - * Invalid color of root - * - * @designToken floatlabel.invalid.color - */ - invalidColor?: string; - /** - * Transition duration of root - * - * @designToken floatlabel.transition.duration - */ - transitionDuration?: string; - }; -} diff --git a/components/lib/themes/types/galleria/index.d.ts b/components/lib/themes/types/galleria/index.d.ts deleted file mode 100644 index 2f59057916..0000000000 --- a/components/lib/themes/types/galleria/index.d.ts +++ /dev/null @@ -1,516 +0,0 @@ -/** - * - * Galleria Design Tokens - * - * [Live Demo](https://www.primevue.org/galleria/) - * - * @module themes/galleria - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface GalleriaDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Border width of root - * - * @designToken galleria.border.width - */ - borderWidth?: string; - /** - * Border color of root - * - * @designToken galleria.border.color - */ - borderColor?: string; - /** - * Border radius of root - * - * @designToken galleria.border.radius - */ - borderRadius?: string; - /** - * Transition duration of root - * - * @designToken galleria.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the nav button section - */ - navButton?: { - /** - * Background of nav button - * - * @designToken galleria.nav.button.background - */ - background?: string; - /** - * Hover background of nav button - * - * @designToken galleria.nav.button.hover.background - */ - hoverBackground?: string; - /** - * Color of nav button - * - * @designToken galleria.nav.button.color - */ - color?: string; - /** - * Hover color of nav button - * - * @designToken galleria.nav.button.hover.color - */ - hoverColor?: string; - /** - * Size of nav button - * - * @designToken galleria.nav.button.size - */ - size?: string; - /** - * Gutter of nav button - * - * @designToken galleria.nav.button.gutter - */ - gutter?: string; - /** - * Prev of nav button - */ - prev?: { - /** - * Prev border radius of nav button - * - * @designToken galleria.nav.button.prev.border.radius - */ - borderRadius?: string; - }; - /** - * Next of nav button - */ - next?: { - /** - * Next border radius of nav button - * - * @designToken galleria.nav.button.next.border.radius - */ - borderRadius?: string; - }; - /** - * Focus ring of nav button - */ - focusRing?: { - /** - * Focus ring width of nav button - * - * @designToken galleria.nav.button.focus.ring.width - */ - width?: string; - /** - * Focus ring style of nav button - * - * @designToken galleria.nav.button.focus.ring.style - */ - style?: string; - /** - * Focus ring color of nav button - * - * @designToken galleria.nav.button.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of nav button - * - * @designToken galleria.nav.button.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of nav button - * - * @designToken galleria.nav.button.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Used to pass tokens of the nav icon section - */ - navIcon?: { - /** - * Size of nav icon - * - * @designToken galleria.nav.icon.size - */ - size?: string; - }; - /** - * Used to pass tokens of the thumbnails content section - */ - thumbnailsContent?: { - /** - * Background of thumbnails content - * - * @designToken galleria.thumbnails.content.background - */ - background?: string; - /** - * Padding of thumbnails content - * - * @designToken galleria.thumbnails.content.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the thumbnail nav button section - */ - thumbnailNavButton?: { - /** - * Size of thumbnail nav button - * - * @designToken galleria.thumbnail.nav.button.size - */ - size?: string; - /** - * Border radius of thumbnail nav button - * - * @designToken galleria.thumbnail.nav.button.border.radius - */ - borderRadius?: string; - /** - * Gutter of thumbnail nav button - * - * @designToken galleria.thumbnail.nav.button.gutter - */ - gutter?: string; - /** - * Focus ring of thumbnail nav button - */ - focusRing?: { - /** - * Focus ring width of thumbnail nav button - * - * @designToken galleria.thumbnail.nav.button.focus.ring.width - */ - width?: string; - /** - * Focus ring style of thumbnail nav button - * - * @designToken galleria.thumbnail.nav.button.focus.ring.style - */ - style?: string; - /** - * Focus ring color of thumbnail nav button - * - * @designToken galleria.thumbnail.nav.button.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of thumbnail nav button - * - * @designToken galleria.thumbnail.nav.button.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of thumbnail nav button - * - * @designToken galleria.thumbnail.nav.button.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Hover background of thumbnail nav button - * - * @designToken galleria.thumbnail.nav.button.hover.background - */ - hoverBackground?: string; - /** - * Color of thumbnail nav button - * - * @designToken galleria.thumbnail.nav.button.color - */ - color?: string; - /** - * Hover color of thumbnail nav button - * - * @designToken galleria.thumbnail.nav.button.hover.color - */ - hoverColor?: string; - }; - /** - * Used to pass tokens of the thumbnail nav button icon section - */ - thumbnailNavButtonIcon?: { - /** - * Size of thumbnail nav button icon - * - * @designToken galleria.thumbnail.nav.button.icon.size - */ - size?: string; - }; - /** - * Used to pass tokens of the caption section - */ - caption?: { - /** - * Background of caption - * - * @designToken galleria.caption.background - */ - background?: string; - /** - * Color of caption - * - * @designToken galleria.caption.color - */ - color?: string; - /** - * Padding of caption - * - * @designToken galleria.caption.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the indicator list section - */ - indicatorList?: { - /** - * Gap of indicator list - * - * @designToken galleria.indicator.list.gap - */ - gap?: string; - /** - * Padding of indicator list - * - * @designToken galleria.indicator.list.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the indicator button section - */ - indicatorButton?: { - /** - * Width of indicator button - * - * @designToken galleria.indicator.button.width - */ - width?: string; - /** - * Height of indicator button - * - * @designToken galleria.indicator.button.height - */ - height?: string; - /** - * Active background of indicator button - * - * @designToken galleria.indicator.button.active.background - */ - activeBackground?: string; - /** - * Border radius of indicator button - * - * @designToken galleria.indicator.button.border.radius - */ - borderRadius?: string; - /** - * Focus ring of indicator button - */ - focusRing?: { - /** - * Focus ring width of indicator button - * - * @designToken galleria.indicator.button.focus.ring.width - */ - width?: string; - /** - * Focus ring style of indicator button - * - * @designToken galleria.indicator.button.focus.ring.style - */ - style?: string; - /** - * Focus ring color of indicator button - * - * @designToken galleria.indicator.button.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of indicator button - * - * @designToken galleria.indicator.button.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of indicator button - * - * @designToken galleria.indicator.button.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Background of indicator button - * - * @designToken galleria.indicator.button.background - */ - background?: string; - /** - * Hover background of indicator button - * - * @designToken galleria.indicator.button.hover.background - */ - hoverBackground?: string; - }; - /** - * Used to pass tokens of the inset indicator list section - */ - insetIndicatorList?: { - /** - * Background of inset indicator list - * - * @designToken galleria.inset.indicator.list.background - */ - background?: string; - }; - /** - * Used to pass tokens of the inset indicator button section - */ - insetIndicatorButton?: { - /** - * Background of inset indicator button - * - * @designToken galleria.inset.indicator.button.background - */ - background?: string; - /** - * Hover background of inset indicator button - * - * @designToken galleria.inset.indicator.button.hover.background - */ - hoverBackground?: string; - /** - * Active background of inset indicator button - * - * @designToken galleria.inset.indicator.button.active.background - */ - activeBackground?: string; - }; - /** - * Used to pass tokens of the mask section - */ - mask?: { - /** - * Background of mask - * - * @designToken galleria.mask.background - */ - background?: string; - /** - * Color of mask - * - * @designToken galleria.mask.color - */ - color?: string; - }; - /** - * Used to pass tokens of the close button section - */ - closeButton?: { - /** - * Size of close button - * - * @designToken galleria.close.button.size - */ - size?: string; - /** - * Gutter of close button - * - * @designToken galleria.close.button.gutter - */ - gutter?: string; - /** - * Background of close button - * - * @designToken galleria.close.button.background - */ - background?: string; - /** - * Hover background of close button - * - * @designToken galleria.close.button.hover.background - */ - hoverBackground?: string; - /** - * Color of close button - * - * @designToken galleria.close.button.color - */ - color?: string; - /** - * Hover color of close button - * - * @designToken galleria.close.button.hover.color - */ - hoverColor?: string; - /** - * Border radius of close button - * - * @designToken galleria.close.button.border.radius - */ - borderRadius?: string; - /** - * Focus ring of close button - */ - focusRing?: { - /** - * Focus ring width of close button - * - * @designToken galleria.close.button.focus.ring.width - */ - width?: string; - /** - * Focus ring style of close button - * - * @designToken galleria.close.button.focus.ring.style - */ - style?: string; - /** - * Focus ring color of close button - * - * @designToken galleria.close.button.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of close button - * - * @designToken galleria.close.button.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of close button - * - * @designToken galleria.close.button.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Used to pass tokens of the close button icon section - */ - closeButtonIcon?: { - /** - * Size of close button icon - * - * @designToken galleria.close.button.icon.size - */ - size?: string; - }; -} diff --git a/components/lib/themes/types/iconfield/index.d.ts b/components/lib/themes/types/iconfield/index.d.ts deleted file mode 100644 index e6f33cddcd..0000000000 --- a/components/lib/themes/types/iconfield/index.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -/** - * - * IconField Design Tokens - * - * [Live Demo](https://www.primevue.org/iconfield/) - * - * @module themes/iconfield - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface IconFieldDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the icon section - */ - icon?: { - /** - * Color of icon - * - * @designToken iconfield.icon.color - */ - color?: string; - }; -} diff --git a/components/lib/themes/types/image/index.d.ts b/components/lib/themes/types/image/index.d.ts deleted file mode 100644 index beba493882..0000000000 --- a/components/lib/themes/types/image/index.d.ts +++ /dev/null @@ -1,210 +0,0 @@ -/** - * - * Image Design Tokens - * - * [Live Demo](https://www.primevue.org/image/) - * - * @module themes/image - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface ImageDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Transition duration of root - * - * @designToken image.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the preview section - */ - preview?: { - /** - * Icon of preview - */ - icon?: { - /** - * Icon size of preview - * - * @designToken image.preview.icon.size - */ - size?: string; - }; - /** - * Mask of preview - */ - mask?: { - /** - * Mask background of preview - * - * @designToken image.preview.mask.background - */ - background?: string; - /** - * Mask color of preview - * - * @designToken image.preview.mask.color - */ - color?: string; - }; - }; - /** - * Used to pass tokens of the toolbar section - */ - toolbar?: { - /** - * Position of toolbar - */ - position?: { - /** - * Position left of toolbar - * - * @designToken image.toolbar.position.left - */ - left?: string; - /** - * Position right of toolbar - * - * @designToken image.toolbar.position.right - */ - right?: string; - /** - * Position top of toolbar - * - * @designToken image.toolbar.position.top - */ - top?: string; - /** - * Position bottom of toolbar - * - * @designToken image.toolbar.position.bottom - */ - bottom?: string; - }; - /** - * Blur of toolbar - * - * @designToken image.toolbar.blur - */ - blur?: string; - /** - * Background of toolbar - * - * @designToken image.toolbar.background - */ - background?: string; - /** - * Border color of toolbar - * - * @designToken image.toolbar.border.color - */ - borderColor?: string; - /** - * Border width of toolbar - * - * @designToken image.toolbar.border.width - */ - borderWidth?: string; - /** - * Border radius of toolbar - * - * @designToken image.toolbar.border.radius - */ - borderRadius?: string; - /** - * Padding of toolbar - * - * @designToken image.toolbar.padding - */ - padding?: string; - /** - * Gap of toolbar - * - * @designToken image.toolbar.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the action section - */ - action?: { - /** - * Hover background of action - * - * @designToken image.action.hover.background - */ - hoverBackground?: string; - /** - * Color of action - * - * @designToken image.action.color - */ - color?: string; - /** - * Hover color of action - * - * @designToken image.action.hover.color - */ - hoverColor?: string; - /** - * Size of action - * - * @designToken image.action.size - */ - size?: string; - /** - * Icon size of action - * - * @designToken image.action.icon.size - */ - iconSize?: string; - /** - * Border radius of action - * - * @designToken image.action.border.radius - */ - borderRadius?: string; - /** - * Focus ring of action - */ - focusRing?: { - /** - * Focus ring width of action - * - * @designToken image.action.focus.ring.width - */ - width?: string; - /** - * Focus ring style of action - * - * @designToken image.action.focus.ring.style - */ - style?: string; - /** - * Focus ring color of action - * - * @designToken image.action.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of action - * - * @designToken image.action.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of action - * - * @designToken image.action.focus.ring.shadow - */ - shadow?: string; - }; - }; -} diff --git a/components/lib/themes/types/inlinemessage/index.d.ts b/components/lib/themes/types/inlinemessage/index.d.ts deleted file mode 100644 index 62e47e9f50..0000000000 --- a/components/lib/themes/types/inlinemessage/index.d.ts +++ /dev/null @@ -1,233 +0,0 @@ -/** - * - * InlineMessage Design Tokens - * - * [Live Demo](https://www.primevue.org/inlinemessage/) - * - * @module themes/inlinemessage - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface InlineMessageDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Padding of root - * - * @designToken inlinemessage.padding - */ - padding?: string; - /** - * Border radius of root - * - * @designToken inlinemessage.border.radius - */ - borderRadius?: string; - /** - * Gap of root - * - * @designToken inlinemessage.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the text section - */ - text?: { - /** - * Font weight of text - * - * @designToken inlinemessage.text.font.weight - */ - fontWeight?: string; - }; - /** - * Used to pass tokens of the icon section - */ - icon?: { - /** - * Size of icon - * - * @designToken inlinemessage.icon.size - */ - size?: string; - }; - /** - * Used to pass tokens of the info section - */ - info?: { - /** - * Background of info - * - * @designToken inlinemessage.info.background - */ - background?: string; - /** - * Border color of info - * - * @designToken inlinemessage.info.border.color - */ - borderColor?: string; - /** - * Color of info - * - * @designToken inlinemessage.info.color - */ - color?: string; - /** - * Shadow of info - * - * @designToken inlinemessage.info.shadow - */ - shadow?: string; - }; - /** - * Used to pass tokens of the success section - */ - success?: { - /** - * Background of success - * - * @designToken inlinemessage.success.background - */ - background?: string; - /** - * Border color of success - * - * @designToken inlinemessage.success.border.color - */ - borderColor?: string; - /** - * Color of success - * - * @designToken inlinemessage.success.color - */ - color?: string; - /** - * Shadow of success - * - * @designToken inlinemessage.success.shadow - */ - shadow?: string; - }; - /** - * Used to pass tokens of the warn section - */ - warn?: { - /** - * Background of warn - * - * @designToken inlinemessage.warn.background - */ - background?: string; - /** - * Border color of warn - * - * @designToken inlinemessage.warn.border.color - */ - borderColor?: string; - /** - * Color of warn - * - * @designToken inlinemessage.warn.color - */ - color?: string; - /** - * Shadow of warn - * - * @designToken inlinemessage.warn.shadow - */ - shadow?: string; - }; - /** - * Used to pass tokens of the error section - */ - error?: { - /** - * Background of error - * - * @designToken inlinemessage.error.background - */ - background?: string; - /** - * Border color of error - * - * @designToken inlinemessage.error.border.color - */ - borderColor?: string; - /** - * Color of error - * - * @designToken inlinemessage.error.color - */ - color?: string; - /** - * Shadow of error - * - * @designToken inlinemessage.error.shadow - */ - shadow?: string; - }; - /** - * Used to pass tokens of the secondary section - */ - secondary?: { - /** - * Background of secondary - * - * @designToken inlinemessage.secondary.background - */ - background?: string; - /** - * Border color of secondary - * - * @designToken inlinemessage.secondary.border.color - */ - borderColor?: string; - /** - * Color of secondary - * - * @designToken inlinemessage.secondary.color - */ - color?: string; - /** - * Shadow of secondary - * - * @designToken inlinemessage.secondary.shadow - */ - shadow?: string; - }; - /** - * Used to pass tokens of the contrast section - */ - contrast?: { - /** - * Background of contrast - * - * @designToken inlinemessage.contrast.background - */ - background?: string; - /** - * Border color of contrast - * - * @designToken inlinemessage.contrast.border.color - */ - borderColor?: string; - /** - * Color of contrast - * - * @designToken inlinemessage.contrast.color - */ - color?: string; - /** - * Shadow of contrast - * - * @designToken inlinemessage.contrast.shadow - */ - shadow?: string; - }; -} diff --git a/components/lib/themes/types/inplace/index.d.ts b/components/lib/themes/types/inplace/index.d.ts deleted file mode 100644 index 74ff81ab99..0000000000 --- a/components/lib/themes/types/inplace/index.d.ts +++ /dev/null @@ -1,89 +0,0 @@ -/** - * - * Inplace Design Tokens - * - * [Live Demo](https://www.primevue.org/inplace/) - * - * @module themes/inplace - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface InplaceDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Padding of root - * - * @designToken inplace.padding - */ - padding?: string; - /** - * Border radius of root - * - * @designToken inplace.border.radius - */ - borderRadius?: string; - /** - * Focus ring of root - */ - focusRing?: { - /** - * Focus ring width of root - * - * @designToken inplace.focus.ring.width - */ - width?: string; - /** - * Focus ring style of root - * - * @designToken inplace.focus.ring.style - */ - style?: string; - /** - * Focus ring color of root - * - * @designToken inplace.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of root - * - * @designToken inplace.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of root - * - * @designToken inplace.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Transition duration of root - * - * @designToken inplace.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the display section - */ - display?: { - /** - * Hover background of display - * - * @designToken inplace.display.hover.background - */ - hoverBackground?: string; - /** - * Hover color of display - * - * @designToken inplace.display.hover.color - */ - hoverColor?: string; - }; -} diff --git a/components/lib/themes/types/inputchips/index.d.ts b/components/lib/themes/types/inputchips/index.d.ts deleted file mode 100644 index b698acb1ac..0000000000 --- a/components/lib/themes/types/inputchips/index.d.ts +++ /dev/null @@ -1,173 +0,0 @@ -/** - * - * InputChips Design Tokens - * - * [Live Demo](https://www.primevue.org/inputchips/) - * - * @module themes/inputchips - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface InputChipsDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken inputchips.background - */ - background?: string; - /** - * Disabled background of root - * - * @designToken inputchips.disabled.background - */ - disabledBackground?: string; - /** - * Filled background of root - * - * @designToken inputchips.filled.background - */ - filledBackground?: string; - /** - * Filled focus background of root - * - * @designToken inputchips.filled.focus.background - */ - filledFocusBackground?: string; - /** - * Border color of root - * - * @designToken inputchips.border.color - */ - borderColor?: string; - /** - * Hover border color of root - * - * @designToken inputchips.hover.border.color - */ - hoverBorderColor?: string; - /** - * Focus border color of root - * - * @designToken inputchips.focus.border.color - */ - focusBorderColor?: string; - /** - * Invalid border color of root - * - * @designToken inputchips.invalid.border.color - */ - invalidBorderColor?: string; - /** - * Color of root - * - * @designToken inputchips.color - */ - color?: string; - /** - * Disabled color of root - * - * @designToken inputchips.disabled.color - */ - disabledColor?: string; - /** - * Placeholder color of root - * - * @designToken inputchips.placeholder.color - */ - placeholderColor?: string; - /** - * Shadow of root - * - * @designToken inputchips.shadow - */ - shadow?: string; - /** - * Padding x of root - * - * @designToken inputchips.padding.x - */ - paddingX?: string; - /** - * Padding y of root - * - * @designToken inputchips.padding.y - */ - paddingY?: string; - /** - * Border radius of root - * - * @designToken inputchips.border.radius - */ - borderRadius?: string; - /** - * Focus ring of root - */ - focusRing?: { - /** - * Focus ring width of root - * - * @designToken inputchips.focus.ring.width - */ - width?: string; - /** - * Focus ring style of root - * - * @designToken inputchips.focus.ring.style - */ - style?: string; - /** - * Focus ring color of root - * - * @designToken inputchips.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of root - * - * @designToken inputchips.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of root - * - * @designToken inputchips.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Transition duration of root - * - * @designToken inputchips.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the chip section - */ - chip?: { - /** - * Border radius of chip - * - * @designToken inputchips.chip.border.radius - */ - borderRadius?: string; - /** - * Focus background of chip - * - * @designToken inputchips.chip.focus.background - */ - focusBackground?: string; - /** - * Color of chip - * - * @designToken inputchips.chip.color - */ - color?: string; - }; -} diff --git a/components/lib/themes/types/inputgroup/index.d.ts b/components/lib/themes/types/inputgroup/index.d.ts deleted file mode 100644 index 5f22865078..0000000000 --- a/components/lib/themes/types/inputgroup/index.d.ts +++ /dev/null @@ -1,43 +0,0 @@ -/** - * - * InputGroup Design Tokens - * - * [Live Demo](https://www.primevue.org/inputgroup/) - * - * @module themes/inputgroup - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface InputGroupDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the addon section - */ - addon?: { - /** - * Background of addon - * - * @designToken inputgroup.addon.background - */ - background?: string; - /** - * Border color of addon - * - * @designToken inputgroup.addon.border.color - */ - borderColor?: string; - /** - * Color of addon - * - * @designToken inputgroup.addon.color - */ - color?: string; - /** - * Border radius of addon - * - * @designToken inputgroup.addon.border.radius - */ - borderRadius?: string; - }; -} diff --git a/components/lib/themes/types/inputnumber/index.d.ts b/components/lib/themes/types/inputnumber/index.d.ts deleted file mode 100644 index 411c08661a..0000000000 --- a/components/lib/themes/types/inputnumber/index.d.ts +++ /dev/null @@ -1,102 +0,0 @@ -/** - * - * InputNumber Design Tokens - * - * [Live Demo](https://www.primevue.org/inputnumber/) - * - * @module themes/inputnumber - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface InputNumberDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Transition duration of root - * - * @designToken inputnumber.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the button section - */ - button?: { - /** - * Width of button - * - * @designToken inputnumber.button.width - */ - width?: string; - /** - * Border radius of button - * - * @designToken inputnumber.button.border.radius - */ - borderRadius?: string; - /** - * Vertical padding of button - * - * @designToken inputnumber.button.vertical.padding - */ - verticalPadding?: string; - /** - * Background of button - * - * @designToken inputnumber.button.background - */ - background?: string; - /** - * Hover background of button - * - * @designToken inputnumber.button.hover.background - */ - hoverBackground?: string; - /** - * Active background of button - * - * @designToken inputnumber.button.active.background - */ - activeBackground?: string; - /** - * Border color of button - * - * @designToken inputnumber.button.border.color - */ - borderColor?: string; - /** - * Hover border color of button - * - * @designToken inputnumber.button.hover.border.color - */ - hoverBorderColor?: string; - /** - * Active border color of button - * - * @designToken inputnumber.button.active.border.color - */ - activeBorderColor?: string; - /** - * Color of button - * - * @designToken inputnumber.button.color - */ - color?: string; - /** - * Hover color of button - * - * @designToken inputnumber.button.hover.color - */ - hoverColor?: string; - /** - * Active color of button - * - * @designToken inputnumber.button.active.color - */ - activeColor?: string; - }; -} diff --git a/components/lib/themes/types/inputtext/index.d.ts b/components/lib/themes/types/inputtext/index.d.ts deleted file mode 100644 index f3b8eeef8e..0000000000 --- a/components/lib/themes/types/inputtext/index.d.ts +++ /dev/null @@ -1,150 +0,0 @@ -/** - * - * InputText Design Tokens - * - * [Live Demo](https://www.primevue.org/inputtext/) - * - * @module themes/inputtext - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface InputTextDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken inputtext.background - */ - background?: string; - /** - * Disabled background of root - * - * @designToken inputtext.disabled.background - */ - disabledBackground?: string; - /** - * Filled background of root - * - * @designToken inputtext.filled.background - */ - filledBackground?: string; - /** - * Filled focus background of root - * - * @designToken inputtext.filled.focus.background - */ - filledFocusBackground?: string; - /** - * Border color of root - * - * @designToken inputtext.border.color - */ - borderColor?: string; - /** - * Hover border color of root - * - * @designToken inputtext.hover.border.color - */ - hoverBorderColor?: string; - /** - * Focus border color of root - * - * @designToken inputtext.focus.border.color - */ - focusBorderColor?: string; - /** - * Invalid border color of root - * - * @designToken inputtext.invalid.border.color - */ - invalidBorderColor?: string; - /** - * Color of root - * - * @designToken inputtext.color - */ - color?: string; - /** - * Disabled color of root - * - * @designToken inputtext.disabled.color - */ - disabledColor?: string; - /** - * Placeholder color of root - * - * @designToken inputtext.placeholder.color - */ - placeholderColor?: string; - /** - * Shadow of root - * - * @designToken inputtext.shadow - */ - shadow?: string; - /** - * Padding x of root - * - * @designToken inputtext.padding.x - */ - paddingX?: string; - /** - * Padding y of root - * - * @designToken inputtext.padding.y - */ - paddingY?: string; - /** - * Border radius of root - * - * @designToken inputtext.border.radius - */ - borderRadius?: string; - /** - * Focus ring of root - */ - focusRing?: { - /** - * Focus ring width of root - * - * @designToken inputtext.focus.ring.width - */ - width?: string; - /** - * Focus ring style of root - * - * @designToken inputtext.focus.ring.style - */ - style?: string; - /** - * Focus ring color of root - * - * @designToken inputtext.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of root - * - * @designToken inputtext.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of root - * - * @designToken inputtext.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Transition duration of root - * - * @designToken inputtext.transition.duration - */ - transitionDuration?: string; - }; -} diff --git a/components/lib/themes/types/knob/index.d.ts b/components/lib/themes/types/knob/index.d.ts deleted file mode 100644 index f6e9a43d6b..0000000000 --- a/components/lib/themes/types/knob/index.d.ts +++ /dev/null @@ -1,93 +0,0 @@ -/** - * - * Knob Design Tokens - * - * [Live Demo](https://www.primevue.org/knob/) - * - * @module themes/knob - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface KnobDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Transition duration of root - * - * @designToken knob.transition.duration - */ - transitionDuration?: string; - /** - * Focus ring of root - */ - focusRing?: { - /** - * Focus ring width of root - * - * @designToken knob.focus.ring.width - */ - width?: string; - /** - * Focus ring style of root - * - * @designToken knob.focus.ring.style - */ - style?: string; - /** - * Focus ring color of root - * - * @designToken knob.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of root - * - * @designToken knob.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of root - * - * @designToken knob.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Used to pass tokens of the value section - */ - value?: { - /** - * Background of value - * - * @designToken knob.value.background - */ - background?: string; - }; - /** - * Used to pass tokens of the range section - */ - range?: { - /** - * Background of range - * - * @designToken knob.range.background - */ - background?: string; - }; - /** - * Used to pass tokens of the text section - */ - text?: { - /** - * Color of text - * - * @designToken knob.text.color - */ - color?: string; - }; -} diff --git a/components/lib/themes/types/listbox/index.d.ts b/components/lib/themes/types/listbox/index.d.ts deleted file mode 100644 index b9f6ef4b95..0000000000 --- a/components/lib/themes/types/listbox/index.d.ts +++ /dev/null @@ -1,276 +0,0 @@ -/** - * - * Listbox Design Tokens - * - * [Live Demo](https://www.primevue.org/listbox/) - * - * @module themes/listbox - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface ListboxDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken listbox.background - */ - background?: string; - /** - * Disabled background of root - * - * @designToken listbox.disabled.background - */ - disabledBackground?: string; - /** - * Border color of root - * - * @designToken listbox.border.color - */ - borderColor?: string; - /** - * Hover border color of root - * - * @designToken listbox.hover.border.color - */ - hoverBorderColor?: string; - /** - * Focus border color of root - * - * @designToken listbox.focus.border.color - */ - focusBorderColor?: string; - /** - * Invalid border color of root - * - * @designToken listbox.invalid.border.color - */ - invalidBorderColor?: string; - /** - * Color of root - * - * @designToken listbox.color - */ - color?: string; - /** - * Disabled color of root - * - * @designToken listbox.disabled.color - */ - disabledColor?: string; - /** - * Shadow of root - * - * @designToken listbox.shadow - */ - shadow?: string; - /** - * Border radius of root - * - * @designToken listbox.border.radius - */ - borderRadius?: string; - /** - * Focus ring of root - */ - focusRing?: { - /** - * Focus ring width of root - * - * @designToken listbox.focus.ring.width - */ - width?: string; - /** - * Focus ring style of root - * - * @designToken listbox.focus.ring.style - */ - style?: string; - /** - * Focus ring color of root - * - * @designToken listbox.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of root - * - * @designToken listbox.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of root - * - * @designToken listbox.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Transition duration of root - * - * @designToken listbox.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the list section - */ - list?: { - /** - * Padding of list - * - * @designToken listbox.list.padding - */ - padding?: string; - /** - * Gap of list - * - * @designToken listbox.list.gap - */ - gap?: string; - /** - * Header of list - */ - header?: { - /** - * Header padding of list - * - * @designToken listbox.list.header.padding - */ - padding?: string; - }; - }; - /** - * Used to pass tokens of the option section - */ - option?: { - /** - * Focus background of option - * - * @designToken listbox.option.focus.background - */ - focusBackground?: string; - /** - * Selected background of option - * - * @designToken listbox.option.selected.background - */ - selectedBackground?: string; - /** - * Selected focus background of option - * - * @designToken listbox.option.selected.focus.background - */ - selectedFocusBackground?: string; - /** - * Color of option - * - * @designToken listbox.option.color - */ - color?: string; - /** - * Focus color of option - * - * @designToken listbox.option.focus.color - */ - focusColor?: string; - /** - * Selected color of option - * - * @designToken listbox.option.selected.color - */ - selectedColor?: string; - /** - * Selected focus color of option - * - * @designToken listbox.option.selected.focus.color - */ - selectedFocusColor?: string; - /** - * Padding of option - * - * @designToken listbox.option.padding - */ - padding?: string; - /** - * Border radius of option - * - * @designToken listbox.option.border.radius - */ - borderRadius?: string; - /** - * Striped background of option - * - * @designToken listbox.option.striped.background - */ - stripedBackground?: string; - }; - /** - * Used to pass tokens of the option group section - */ - optionGroup?: { - /** - * Background of option group - * - * @designToken listbox.option.group.background - */ - background?: string; - /** - * Color of option group - * - * @designToken listbox.option.group.color - */ - color?: string; - /** - * Font weight of option group - * - * @designToken listbox.option.group.font.weight - */ - fontWeight?: string; - /** - * Padding of option group - * - * @designToken listbox.option.group.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the checkmark section - */ - checkmark?: { - /** - * Color of checkmark - * - * @designToken listbox.checkmark.color - */ - color?: string; - /** - * Gutter start of checkmark - * - * @designToken listbox.checkmark.gutter.start - */ - gutterStart?: string; - /** - * Gutter end of checkmark - * - * @designToken listbox.checkmark.gutter.end - */ - gutterEnd?: string; - }; - /** - * Used to pass tokens of the empty message section - */ - emptyMessage?: { - /** - * Padding of empty message - * - * @designToken listbox.empty.message.padding - */ - padding?: string; - }; -} diff --git a/components/lib/themes/types/megamenu/index.d.ts b/components/lib/themes/types/megamenu/index.d.ts deleted file mode 100644 index ae86c6a28a..0000000000 --- a/components/lib/themes/types/megamenu/index.d.ts +++ /dev/null @@ -1,379 +0,0 @@ -/** - * - * MegaMenu Design Tokens - * - * [Live Demo](https://www.primevue.org/megamenu/) - * - * @module themes/megamenu - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface MegaMenuDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken megamenu.background - */ - background?: string; - /** - * Border color of root - * - * @designToken megamenu.border.color - */ - borderColor?: string; - /** - * Border radius of root - * - * @designToken megamenu.border.radius - */ - borderRadius?: string; - /** - * Color of root - * - * @designToken megamenu.color - */ - color?: string; - /** - * Gap of root - * - * @designToken megamenu.gap - */ - gap?: string; - /** - * Vertical orientation of root - */ - verticalOrientation?: { - /** - * Vertical orientation padding of root - * - * @designToken megamenu.vertical.orientation.padding - */ - padding?: string; - /** - * Vertical orientation gap of root - * - * @designToken megamenu.vertical.orientation.gap - */ - gap?: string; - }; - /** - * Horizontal orientation of root - */ - horizontalOrientation?: { - /** - * Horizontal orientation padding of root - * - * @designToken megamenu.horizontal.orientation.padding - */ - padding?: string; - }; - /** - * Transition duration of root - * - * @designToken megamenu.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the base item section - */ - baseItem?: { - /** - * Border radius of base item - * - * @designToken megamenu.base.item.border.radius - */ - borderRadius?: string; - /** - * Padding of base item - * - * @designToken megamenu.base.item.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the item section - */ - item?: { - /** - * Focus background of item - * - * @designToken megamenu.item.focus.background - */ - focusBackground?: string; - /** - * Active background of item - * - * @designToken megamenu.item.active.background - */ - activeBackground?: string; - /** - * Color of item - * - * @designToken megamenu.item.color - */ - color?: string; - /** - * Focus color of item - * - * @designToken megamenu.item.focus.color - */ - focusColor?: string; - /** - * Active color of item - * - * @designToken megamenu.item.active.color - */ - activeColor?: string; - /** - * Padding of item - * - * @designToken megamenu.item.padding - */ - padding?: string; - /** - * Border radius of item - * - * @designToken megamenu.item.border.radius - */ - borderRadius?: string; - /** - * Gap of item - * - * @designToken megamenu.item.gap - */ - gap?: string; - /** - * Icon of item - */ - icon?: { - /** - * Icon color of item - * - * @designToken megamenu.item.icon.color - */ - color?: string; - /** - * Icon focus color of item - * - * @designToken megamenu.item.icon.focus.color - */ - focusColor?: string; - /** - * Icon active color of item - * - * @designToken megamenu.item.icon.active.color - */ - activeColor?: string; - }; - }; - /** - * Used to pass tokens of the overlay section - */ - overlay?: { - /** - * Padding of overlay - * - * @designToken megamenu.overlay.padding - */ - padding?: string; - /** - * Background of overlay - * - * @designToken megamenu.overlay.background - */ - background?: string; - /** - * Border color of overlay - * - * @designToken megamenu.overlay.border.color - */ - borderColor?: string; - /** - * Border radius of overlay - * - * @designToken megamenu.overlay.border.radius - */ - borderRadius?: string; - /** - * Color of overlay - * - * @designToken megamenu.overlay.color - */ - color?: string; - /** - * Shadow of overlay - * - * @designToken megamenu.overlay.shadow - */ - shadow?: string; - /** - * Gap of overlay - * - * @designToken megamenu.overlay.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the submenu section - */ - submenu?: { - /** - * Padding of submenu - * - * @designToken megamenu.submenu.padding - */ - padding?: string; - /** - * Gap of submenu - * - * @designToken megamenu.submenu.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the submenu label section - */ - submenuLabel?: { - /** - * Padding of submenu label - * - * @designToken megamenu.submenu.label.padding - */ - padding?: string; - /** - * Font weight of submenu label - * - * @designToken megamenu.submenu.label.font.weight - */ - fontWeight?: string; - /** - * Background of submenu label - * - * @designToken megamenu.submenu.label.background - */ - background?: string; - /** - * Color of submenu label - * - * @designToken megamenu.submenu.label.color - */ - color?: string; - }; - /** - * Used to pass tokens of the submenu icon section - */ - submenuIcon?: { - /** - * Size of submenu icon - * - * @designToken megamenu.submenu.icon.size - */ - size?: string; - /** - * Color of submenu icon - * - * @designToken megamenu.submenu.icon.color - */ - color?: string; - /** - * Focus color of submenu icon - * - * @designToken megamenu.submenu.icon.focus.color - */ - focusColor?: string; - /** - * Active color of submenu icon - * - * @designToken megamenu.submenu.icon.active.color - */ - activeColor?: string; - }; - /** - * Used to pass tokens of the separator section - */ - separator?: { - /** - * Border color of separator - * - * @designToken megamenu.separator.border.color - */ - borderColor?: string; - }; - /** - * Used to pass tokens of the mobile button section - */ - mobileButton?: { - /** - * Border radius of mobile button - * - * @designToken megamenu.mobile.button.border.radius - */ - borderRadius?: string; - /** - * Size of mobile button - * - * @designToken megamenu.mobile.button.size - */ - size?: string; - /** - * Color of mobile button - * - * @designToken megamenu.mobile.button.color - */ - color?: string; - /** - * Hover color of mobile button - * - * @designToken megamenu.mobile.button.hover.color - */ - hoverColor?: string; - /** - * Hover background of mobile button - * - * @designToken megamenu.mobile.button.hover.background - */ - hoverBackground?: string; - /** - * Focus ring of mobile button - */ - focusRing?: { - /** - * Focus ring width of mobile button - * - * @designToken megamenu.mobile.button.focus.ring.width - */ - width?: string; - /** - * Focus ring style of mobile button - * - * @designToken megamenu.mobile.button.focus.ring.style - */ - style?: string; - /** - * Focus ring color of mobile button - * - * @designToken megamenu.mobile.button.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of mobile button - * - * @designToken megamenu.mobile.button.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of mobile button - * - * @designToken megamenu.mobile.button.focus.ring.shadow - */ - shadow?: string; - }; - }; -} diff --git a/components/lib/themes/types/menu/index.d.ts b/components/lib/themes/types/menu/index.d.ts deleted file mode 100644 index dc8abc830f..0000000000 --- a/components/lib/themes/types/menu/index.d.ts +++ /dev/null @@ -1,170 +0,0 @@ -/** - * - * Menu Design Tokens - * - * [Live Demo](https://www.primevue.org/menu/) - * - * @module themes/menu - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface MenuDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken menu.background - */ - background?: string; - /** - * Border color of root - * - * @designToken menu.border.color - */ - borderColor?: string; - /** - * Color of root - * - * @designToken menu.color - */ - color?: string; - /** - * Border radius of root - * - * @designToken menu.border.radius - */ - borderRadius?: string; - /** - * Shadow of root - * - * @designToken menu.shadow - */ - shadow?: string; - /** - * Transition duration of root - * - * @designToken menu.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the list section - */ - list?: { - /** - * Padding of list - * - * @designToken menu.list.padding - */ - padding?: string; - /** - * Gap of list - * - * @designToken menu.list.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the item section - */ - item?: { - /** - * Focus background of item - * - * @designToken menu.item.focus.background - */ - focusBackground?: string; - /** - * Color of item - * - * @designToken menu.item.color - */ - color?: string; - /** - * Focus color of item - * - * @designToken menu.item.focus.color - */ - focusColor?: string; - /** - * Padding of item - * - * @designToken menu.item.padding - */ - padding?: string; - /** - * Border radius of item - * - * @designToken menu.item.border.radius - */ - borderRadius?: string; - /** - * Gap of item - * - * @designToken menu.item.gap - */ - gap?: string; - /** - * Icon of item - */ - icon?: { - /** - * Icon color of item - * - * @designToken menu.item.icon.color - */ - color?: string; - /** - * Icon focus color of item - * - * @designToken menu.item.icon.focus.color - */ - focusColor?: string; - }; - }; - /** - * Used to pass tokens of the submenu label section - */ - submenuLabel?: { - /** - * Padding of submenu label - * - * @designToken menu.submenu.label.padding - */ - padding?: string; - /** - * Font weight of submenu label - * - * @designToken menu.submenu.label.font.weight - */ - fontWeight?: string; - /** - * Background of submenu label - * - * @designToken menu.submenu.label.background - */ - background?: string; - /** - * Color of submenu label - * - * @designToken menu.submenu.label.color - */ - color?: string; - }; - /** - * Used to pass tokens of the separator section - */ - separator?: { - /** - * Border color of separator - * - * @designToken menu.separator.border.color - */ - borderColor?: string; - }; -} diff --git a/components/lib/themes/types/menubar/index.d.ts b/components/lib/themes/types/menubar/index.d.ts deleted file mode 100644 index a6f84e559e..0000000000 --- a/components/lib/themes/types/menubar/index.d.ts +++ /dev/null @@ -1,311 +0,0 @@ -/** - * - * Menubar Design Tokens - * - * [Live Demo](https://www.primevue.org/menubar/) - * - * @module themes/menubar - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface MenubarDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken menubar.background - */ - background?: string; - /** - * Border color of root - * - * @designToken menubar.border.color - */ - borderColor?: string; - /** - * Border radius of root - * - * @designToken menubar.border.radius - */ - borderRadius?: string; - /** - * Color of root - * - * @designToken menubar.color - */ - color?: string; - /** - * Gap of root - * - * @designToken menubar.gap - */ - gap?: string; - /** - * Padding of root - * - * @designToken menubar.padding - */ - padding?: string; - /** - * Transition duration of root - * - * @designToken menubar.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the base item section - */ - baseItem?: { - /** - * Border radius of base item - * - * @designToken menubar.base.item.border.radius - */ - borderRadius?: string; - /** - * Padding of base item - * - * @designToken menubar.base.item.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the item section - */ - item?: { - /** - * Focus background of item - * - * @designToken menubar.item.focus.background - */ - focusBackground?: string; - /** - * Active background of item - * - * @designToken menubar.item.active.background - */ - activeBackground?: string; - /** - * Color of item - * - * @designToken menubar.item.color - */ - color?: string; - /** - * Focus color of item - * - * @designToken menubar.item.focus.color - */ - focusColor?: string; - /** - * Active color of item - * - * @designToken menubar.item.active.color - */ - activeColor?: string; - /** - * Padding of item - * - * @designToken menubar.item.padding - */ - padding?: string; - /** - * Border radius of item - * - * @designToken menubar.item.border.radius - */ - borderRadius?: string; - /** - * Gap of item - * - * @designToken menubar.item.gap - */ - gap?: string; - /** - * Icon of item - */ - icon?: { - /** - * Icon color of item - * - * @designToken menubar.item.icon.color - */ - color?: string; - /** - * Icon focus color of item - * - * @designToken menubar.item.icon.focus.color - */ - focusColor?: string; - /** - * Icon active color of item - * - * @designToken menubar.item.icon.active.color - */ - activeColor?: string; - }; - }; - /** - * Used to pass tokens of the submenu section - */ - submenu?: { - /** - * Padding of submenu - * - * @designToken menubar.submenu.padding - */ - padding?: string; - /** - * Gap of submenu - * - * @designToken menubar.submenu.gap - */ - gap?: string; - /** - * Background of submenu - * - * @designToken menubar.submenu.background - */ - background?: string; - /** - * Border color of submenu - * - * @designToken menubar.submenu.border.color - */ - borderColor?: string; - /** - * Border radius of submenu - * - * @designToken menubar.submenu.border.radius - */ - borderRadius?: string; - /** - * Shadow of submenu - * - * @designToken menubar.submenu.shadow - */ - shadow?: string; - /** - * Mobile indent of submenu - * - * @designToken menubar.submenu.mobile.indent - */ - mobileIndent?: string; - }; - /** - * Used to pass tokens of the submenu icon section - */ - submenuIcon?: { - /** - * Size of submenu icon - * - * @designToken menubar.submenu.icon.size - */ - size?: string; - /** - * Color of submenu icon - * - * @designToken menubar.submenu.icon.color - */ - color?: string; - /** - * Focus color of submenu icon - * - * @designToken menubar.submenu.icon.focus.color - */ - focusColor?: string; - /** - * Active color of submenu icon - * - * @designToken menubar.submenu.icon.active.color - */ - activeColor?: string; - }; - /** - * Used to pass tokens of the separator section - */ - separator?: { - /** - * Border color of separator - * - * @designToken menubar.separator.border.color - */ - borderColor?: string; - }; - /** - * Used to pass tokens of the mobile button section - */ - mobileButton?: { - /** - * Border radius of mobile button - * - * @designToken menubar.mobile.button.border.radius - */ - borderRadius?: string; - /** - * Size of mobile button - * - * @designToken menubar.mobile.button.size - */ - size?: string; - /** - * Color of mobile button - * - * @designToken menubar.mobile.button.color - */ - color?: string; - /** - * Hover color of mobile button - * - * @designToken menubar.mobile.button.hover.color - */ - hoverColor?: string; - /** - * Hover background of mobile button - * - * @designToken menubar.mobile.button.hover.background - */ - hoverBackground?: string; - /** - * Focus ring of mobile button - */ - focusRing?: { - /** - * Focus ring width of mobile button - * - * @designToken menubar.mobile.button.focus.ring.width - */ - width?: string; - /** - * Focus ring style of mobile button - * - * @designToken menubar.mobile.button.focus.ring.style - */ - style?: string; - /** - * Focus ring color of mobile button - * - * @designToken menubar.mobile.button.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of mobile button - * - * @designToken menubar.mobile.button.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of mobile button - * - * @designToken menubar.mobile.button.focus.ring.shadow - */ - shadow?: string; - }; - }; -} diff --git a/components/lib/themes/types/message/index.d.ts b/components/lib/themes/types/message/index.d.ts deleted file mode 100644 index f24dfa0a43..0000000000 --- a/components/lib/themes/types/message/index.d.ts +++ /dev/null @@ -1,487 +0,0 @@ -/** - * - * Message Design Tokens - * - * [Live Demo](https://www.primevue.org/message/) - * - * @module themes/message - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface MessageDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Margin of root - * - * @designToken message.margin - */ - margin?: string; - /** - * Border radius of root - * - * @designToken message.border.radius - */ - borderRadius?: string; - /** - * Border width of root - * - * @designToken message.border.width - */ - borderWidth?: string; - /** - * Transition duration of root - * - * @designToken message.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the content section - */ - content?: { - /** - * Padding of content - * - * @designToken message.content.padding - */ - padding?: string; - /** - * Gap of content - * - * @designToken message.content.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the text section - */ - text?: { - /** - * Font size of text - * - * @designToken message.text.font.size - */ - fontSize?: string; - /** - * Font weight of text - * - * @designToken message.text.font.weight - */ - fontWeight?: string; - }; - /** - * Used to pass tokens of the icon section - */ - icon?: { - /** - * Size of icon - * - * @designToken message.icon.size - */ - size?: string; - }; - /** - * Used to pass tokens of the close button section - */ - closeButton?: { - /** - * Width of close button - * - * @designToken message.close.button.width - */ - width?: string; - /** - * Height of close button - * - * @designToken message.close.button.height - */ - height?: string; - /** - * Border radius of close button - * - * @designToken message.close.button.border.radius - */ - borderRadius?: string; - /** - * Focus ring of close button - */ - focusRing?: { - /** - * Focus ring width of close button - * - * @designToken message.close.button.focus.ring.width - */ - width?: string; - /** - * Focus ring style of close button - * - * @designToken message.close.button.focus.ring.style - */ - style?: string; - /** - * Focus ring offset of close button - * - * @designToken message.close.button.focus.ring.offset - */ - offset?: string; - }; - }; - /** - * Used to pass tokens of the close icon section - */ - closeIcon?: { - /** - * Size of close icon - * - * @designToken message.close.icon.size - */ - size?: string; - }; - /** - * Used to pass tokens of the info section - */ - info?: { - /** - * Background of info - * - * @designToken message.info.background - */ - background?: string; - /** - * Border color of info - * - * @designToken message.info.border.color - */ - borderColor?: string; - /** - * Color of info - * - * @designToken message.info.color - */ - color?: string; - /** - * Shadow of info - * - * @designToken message.info.shadow - */ - shadow?: string; - /** - * Close button of info - */ - closeButton?: { - /** - * Close button hover background of info - * - * @designToken message.info.close.button.hover.background - */ - hoverBackground?: string; - /** - * Close button focus ring of info - */ - focusRing?: { - /** - * Close button focus ring color of info - * - * @designToken message.info.close.button.focus.ring.color - */ - color?: string; - /** - * Close button focus ring shadow of info - * - * @designToken message.info.close.button.focus.ring.shadow - */ - shadow?: string; - }; - }; - }; - /** - * Used to pass tokens of the success section - */ - success?: { - /** - * Background of success - * - * @designToken message.success.background - */ - background?: string; - /** - * Border color of success - * - * @designToken message.success.border.color - */ - borderColor?: string; - /** - * Color of success - * - * @designToken message.success.color - */ - color?: string; - /** - * Shadow of success - * - * @designToken message.success.shadow - */ - shadow?: string; - /** - * Close button of success - */ - closeButton?: { - /** - * Close button hover background of success - * - * @designToken message.success.close.button.hover.background - */ - hoverBackground?: string; - /** - * Close button focus ring of success - */ - focusRing?: { - /** - * Close button focus ring color of success - * - * @designToken message.success.close.button.focus.ring.color - */ - color?: string; - /** - * Close button focus ring shadow of success - * - * @designToken message.success.close.button.focus.ring.shadow - */ - shadow?: string; - }; - }; - }; - /** - * Used to pass tokens of the warn section - */ - warn?: { - /** - * Background of warn - * - * @designToken message.warn.background - */ - background?: string; - /** - * Border color of warn - * - * @designToken message.warn.border.color - */ - borderColor?: string; - /** - * Color of warn - * - * @designToken message.warn.color - */ - color?: string; - /** - * Shadow of warn - * - * @designToken message.warn.shadow - */ - shadow?: string; - /** - * Close button of warn - */ - closeButton?: { - /** - * Close button hover background of warn - * - * @designToken message.warn.close.button.hover.background - */ - hoverBackground?: string; - /** - * Close button focus ring of warn - */ - focusRing?: { - /** - * Close button focus ring color of warn - * - * @designToken message.warn.close.button.focus.ring.color - */ - color?: string; - /** - * Close button focus ring shadow of warn - * - * @designToken message.warn.close.button.focus.ring.shadow - */ - shadow?: string; - }; - }; - }; - /** - * Used to pass tokens of the error section - */ - error?: { - /** - * Background of error - * - * @designToken message.error.background - */ - background?: string; - /** - * Border color of error - * - * @designToken message.error.border.color - */ - borderColor?: string; - /** - * Color of error - * - * @designToken message.error.color - */ - color?: string; - /** - * Shadow of error - * - * @designToken message.error.shadow - */ - shadow?: string; - /** - * Close button of error - */ - closeButton?: { - /** - * Close button hover background of error - * - * @designToken message.error.close.button.hover.background - */ - hoverBackground?: string; - /** - * Close button focus ring of error - */ - focusRing?: { - /** - * Close button focus ring color of error - * - * @designToken message.error.close.button.focus.ring.color - */ - color?: string; - /** - * Close button focus ring shadow of error - * - * @designToken message.error.close.button.focus.ring.shadow - */ - shadow?: string; - }; - }; - }; - /** - * Used to pass tokens of the secondary section - */ - secondary?: { - /** - * Background of secondary - * - * @designToken message.secondary.background - */ - background?: string; - /** - * Border color of secondary - * - * @designToken message.secondary.border.color - */ - borderColor?: string; - /** - * Color of secondary - * - * @designToken message.secondary.color - */ - color?: string; - /** - * Shadow of secondary - * - * @designToken message.secondary.shadow - */ - shadow?: string; - /** - * Close button of secondary - */ - closeButton?: { - /** - * Close button hover background of secondary - * - * @designToken message.secondary.close.button.hover.background - */ - hoverBackground?: string; - /** - * Close button focus ring of secondary - */ - focusRing?: { - /** - * Close button focus ring color of secondary - * - * @designToken message.secondary.close.button.focus.ring.color - */ - color?: string; - /** - * Close button focus ring shadow of secondary - * - * @designToken message.secondary.close.button.focus.ring.shadow - */ - shadow?: string; - }; - }; - }; - /** - * Used to pass tokens of the contrast section - */ - contrast?: { - /** - * Background of contrast - * - * @designToken message.contrast.background - */ - background?: string; - /** - * Border color of contrast - * - * @designToken message.contrast.border.color - */ - borderColor?: string; - /** - * Color of contrast - * - * @designToken message.contrast.color - */ - color?: string; - /** - * Shadow of contrast - * - * @designToken message.contrast.shadow - */ - shadow?: string; - /** - * Close button of contrast - */ - closeButton?: { - /** - * Close button hover background of contrast - * - * @designToken message.contrast.close.button.hover.background - */ - hoverBackground?: string; - /** - * Close button focus ring of contrast - */ - focusRing?: { - /** - * Close button focus ring color of contrast - * - * @designToken message.contrast.close.button.focus.ring.color - */ - color?: string; - /** - * Close button focus ring shadow of contrast - * - * @designToken message.contrast.close.button.focus.ring.shadow - */ - shadow?: string; - }; - }; - }; -} diff --git a/components/lib/themes/types/metergroup/index.d.ts b/components/lib/themes/types/metergroup/index.d.ts deleted file mode 100644 index 54940b6d43..0000000000 --- a/components/lib/themes/types/metergroup/index.d.ts +++ /dev/null @@ -1,98 +0,0 @@ -/** - * - * MeterGroup Design Tokens - * - * [Live Demo](https://www.primevue.org/metergroup/) - * - * @module themes/metergroup - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface MeterGroupDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Border radius of root - * - * @designToken metergroup.border.radius - */ - borderRadius?: string; - /** - * Gap of root - * - * @designToken metergroup.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the meters section - */ - meters?: { - /** - * Background of meters - * - * @designToken metergroup.meters.background - */ - background?: string; - /** - * Size of meters - * - * @designToken metergroup.meters.size - */ - size?: string; - }; - /** - * Used to pass tokens of the label section - */ - label?: { - /** - * Gap of label - * - * @designToken metergroup.label.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the label marker section - */ - labelMarker?: { - /** - * Size of label marker - * - * @designToken metergroup.label.marker.size - */ - size?: string; - }; - /** - * Used to pass tokens of the label icon section - */ - labelIcon?: { - /** - * Size of label icon - * - * @designToken metergroup.label.icon.size - */ - size?: string; - }; - /** - * Used to pass tokens of the label list section - */ - labelList?: { - /** - * Vertical gap of label list - * - * @designToken metergroup.label.list.vertical.gap - */ - verticalGap?: string; - /** - * Horizontal gap of label list - * - * @designToken metergroup.label.list.horizontal.gap - */ - horizontalGap?: string; - }; -} diff --git a/components/lib/themes/types/multiselect/index.d.ts b/components/lib/themes/types/multiselect/index.d.ts deleted file mode 100644 index dbf0430404..0000000000 --- a/components/lib/themes/types/multiselect/index.d.ts +++ /dev/null @@ -1,346 +0,0 @@ -/** - * - * MultiSelect Design Tokens - * - * [Live Demo](https://www.primevue.org/multiselect/) - * - * @module themes/multiselect - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface MultiSelectDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken multiselect.background - */ - background?: string; - /** - * Disabled background of root - * - * @designToken multiselect.disabled.background - */ - disabledBackground?: string; - /** - * Filled background of root - * - * @designToken multiselect.filled.background - */ - filledBackground?: string; - /** - * Filled focus background of root - * - * @designToken multiselect.filled.focus.background - */ - filledFocusBackground?: string; - /** - * Border color of root - * - * @designToken multiselect.border.color - */ - borderColor?: string; - /** - * Hover border color of root - * - * @designToken multiselect.hover.border.color - */ - hoverBorderColor?: string; - /** - * Focus border color of root - * - * @designToken multiselect.focus.border.color - */ - focusBorderColor?: string; - /** - * Invalid border color of root - * - * @designToken multiselect.invalid.border.color - */ - invalidBorderColor?: string; - /** - * Color of root - * - * @designToken multiselect.color - */ - color?: string; - /** - * Disabled color of root - * - * @designToken multiselect.disabled.color - */ - disabledColor?: string; - /** - * Placeholder color of root - * - * @designToken multiselect.placeholder.color - */ - placeholderColor?: string; - /** - * Shadow of root - * - * @designToken multiselect.shadow - */ - shadow?: string; - /** - * Padding x of root - * - * @designToken multiselect.padding.x - */ - paddingX?: string; - /** - * Padding y of root - * - * @designToken multiselect.padding.y - */ - paddingY?: string; - /** - * Border radius of root - * - * @designToken multiselect.border.radius - */ - borderRadius?: string; - /** - * Focus ring of root - */ - focusRing?: { - /** - * Focus ring width of root - * - * @designToken multiselect.focus.ring.width - */ - width?: string; - /** - * Focus ring style of root - * - * @designToken multiselect.focus.ring.style - */ - style?: string; - /** - * Focus ring color of root - * - * @designToken multiselect.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of root - * - * @designToken multiselect.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of root - * - * @designToken multiselect.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Transition duration of root - * - * @designToken multiselect.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the dropdown section - */ - dropdown?: { - /** - * Width of dropdown - * - * @designToken multiselect.dropdown.width - */ - width?: string; - /** - * Color of dropdown - * - * @designToken multiselect.dropdown.color - */ - color?: string; - }; - /** - * Used to pass tokens of the overlay section - */ - overlay?: { - /** - * Background of overlay - * - * @designToken multiselect.overlay.background - */ - background?: string; - /** - * Border color of overlay - * - * @designToken multiselect.overlay.border.color - */ - borderColor?: string; - /** - * Border radius of overlay - * - * @designToken multiselect.overlay.border.radius - */ - borderRadius?: string; - /** - * Color of overlay - * - * @designToken multiselect.overlay.color - */ - color?: string; - /** - * Shadow of overlay - * - * @designToken multiselect.overlay.shadow - */ - shadow?: string; - }; - /** - * Used to pass tokens of the list section - */ - list?: { - /** - * Padding of list - * - * @designToken multiselect.list.padding - */ - padding?: string; - /** - * Gap of list - * - * @designToken multiselect.list.gap - */ - gap?: string; - /** - * Header of list - */ - header?: { - /** - * Header padding of list - * - * @designToken multiselect.list.header.padding - */ - padding?: string; - }; - }; - /** - * Used to pass tokens of the option section - */ - option?: { - /** - * Focus background of option - * - * @designToken multiselect.option.focus.background - */ - focusBackground?: string; - /** - * Selected background of option - * - * @designToken multiselect.option.selected.background - */ - selectedBackground?: string; - /** - * Selected focus background of option - * - * @designToken multiselect.option.selected.focus.background - */ - selectedFocusBackground?: string; - /** - * Color of option - * - * @designToken multiselect.option.color - */ - color?: string; - /** - * Focus color of option - * - * @designToken multiselect.option.focus.color - */ - focusColor?: string; - /** - * Selected color of option - * - * @designToken multiselect.option.selected.color - */ - selectedColor?: string; - /** - * Selected focus color of option - * - * @designToken multiselect.option.selected.focus.color - */ - selectedFocusColor?: string; - /** - * Padding of option - * - * @designToken multiselect.option.padding - */ - padding?: string; - /** - * Border radius of option - * - * @designToken multiselect.option.border.radius - */ - borderRadius?: string; - /** - * Gap of option - * - * @designToken multiselect.option.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the option group section - */ - optionGroup?: { - /** - * Background of option group - * - * @designToken multiselect.option.group.background - */ - background?: string; - /** - * Color of option group - * - * @designToken multiselect.option.group.color - */ - color?: string; - /** - * Font weight of option group - * - * @designToken multiselect.option.group.font.weight - */ - fontWeight?: string; - /** - * Padding of option group - * - * @designToken multiselect.option.group.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the chip section - */ - chip?: { - /** - * Border radius of chip - * - * @designToken multiselect.chip.border.radius - */ - borderRadius?: string; - }; - /** - * Used to pass tokens of the empty message section - */ - emptyMessage?: { - /** - * Padding of empty message - * - * @designToken multiselect.empty.message.padding - */ - padding?: string; - }; -} diff --git a/components/lib/themes/types/orderlist/index.d.ts b/components/lib/themes/types/orderlist/index.d.ts deleted file mode 100644 index 1f2b018e0a..0000000000 --- a/components/lib/themes/types/orderlist/index.d.ts +++ /dev/null @@ -1,36 +0,0 @@ -/** - * - * OrderList Design Tokens - * - * [Live Demo](https://www.primevue.org/orderlist/) - * - * @module themes/orderlist - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface OrderListDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Gap of root - * - * @designToken orderlist.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the controls section - */ - controls?: { - /** - * Gap of controls - * - * @designToken orderlist.controls.gap - */ - gap?: string; - }; -} diff --git a/components/lib/themes/types/organizationchart/index.d.ts b/components/lib/themes/types/organizationchart/index.d.ts deleted file mode 100644 index 20b4b479c9..0000000000 --- a/components/lib/themes/types/organizationchart/index.d.ts +++ /dev/null @@ -1,201 +0,0 @@ -/** - * - * OrganizationChart Design Tokens - * - * [Live Demo](https://www.primevue.org/organizationchart/) - * - * @module themes/organizationchart - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface OrganizationChartDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Gutter of root - * - * @designToken organizationchart.gutter - */ - gutter?: string; - /** - * Transition duration of root - * - * @designToken organizationchart.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the node section - */ - node?: { - /** - * Background of node - * - * @designToken organizationchart.node.background - */ - background?: string; - /** - * Hover background of node - * - * @designToken organizationchart.node.hover.background - */ - hoverBackground?: string; - /** - * Selected background of node - * - * @designToken organizationchart.node.selected.background - */ - selectedBackground?: string; - /** - * Border color of node - * - * @designToken organizationchart.node.border.color - */ - borderColor?: string; - /** - * Color of node - * - * @designToken organizationchart.node.color - */ - color?: string; - /** - * Selected color of node - * - * @designToken organizationchart.node.selected.color - */ - selectedColor?: string; - /** - * Hover color of node - * - * @designToken organizationchart.node.hover.color - */ - hoverColor?: string; - /** - * Padding of node - * - * @designToken organizationchart.node.padding - */ - padding?: string; - /** - * Toggleable padding of node - * - * @designToken organizationchart.node.toggleable.padding - */ - toggleablePadding?: string; - /** - * Border radius of node - * - * @designToken organizationchart.node.border.radius - */ - borderRadius?: string; - }; - /** - * Used to pass tokens of the node toggle button section - */ - nodeToggleButton?: { - /** - * Background of node toggle button - * - * @designToken organizationchart.node.toggle.button.background - */ - background?: string; - /** - * Hover background of node toggle button - * - * @designToken organizationchart.node.toggle.button.hover.background - */ - hoverBackground?: string; - /** - * Border color of node toggle button - * - * @designToken organizationchart.node.toggle.button.border.color - */ - borderColor?: string; - /** - * Color of node toggle button - * - * @designToken organizationchart.node.toggle.button.color - */ - color?: string; - /** - * Hover color of node toggle button - * - * @designToken organizationchart.node.toggle.button.hover.color - */ - hoverColor?: string; - /** - * Size of node toggle button - * - * @designToken organizationchart.node.toggle.button.size - */ - size?: string; - /** - * Border radius of node toggle button - * - * @designToken organizationchart.node.toggle.button.border.radius - */ - borderRadius?: string; - /** - * Focus ring of node toggle button - */ - focusRing?: { - /** - * Focus ring width of node toggle button - * - * @designToken organizationchart.node.toggle.button.focus.ring.width - */ - width?: string; - /** - * Focus ring style of node toggle button - * - * @designToken organizationchart.node.toggle.button.focus.ring.style - */ - style?: string; - /** - * Focus ring color of node toggle button - * - * @designToken organizationchart.node.toggle.button.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of node toggle button - * - * @designToken organizationchart.node.toggle.button.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of node toggle button - * - * @designToken organizationchart.node.toggle.button.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Used to pass tokens of the connector section - */ - connector?: { - /** - * Color of connector - * - * @designToken organizationchart.connector.color - */ - color?: string; - /** - * Border radius of connector - * - * @designToken organizationchart.connector.border.radius - */ - borderRadius?: string; - /** - * Height of connector - * - * @designToken organizationchart.connector.height - */ - height?: string; - }; -} diff --git a/components/lib/themes/types/overlaybadge/index.d.ts b/components/lib/themes/types/overlaybadge/index.d.ts deleted file mode 100644 index 9d4446a81e..0000000000 --- a/components/lib/themes/types/overlaybadge/index.d.ts +++ /dev/null @@ -1,36 +0,0 @@ -/** - * - * OverlayBadge Design Tokens - * - * [Live Demo](https://www.primevue.org/overlaybadge/) - * - * @module themes/overlaybadge - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface OverlayBadgeDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Outline of root - */ - outline?: { - /** - * Outline width of root - * - * @designToken overlaybadge.outline.width - */ - width?: string; - /** - * Outline color of root - * - * @designToken overlaybadge.outline.color - */ - color?: string; - }; - }; -} diff --git a/components/lib/themes/types/paginator/index.d.ts b/components/lib/themes/types/paginator/index.d.ts deleted file mode 100644 index 593617375a..0000000000 --- a/components/lib/themes/types/paginator/index.d.ts +++ /dev/null @@ -1,171 +0,0 @@ -/** - * - * Paginator Design Tokens - * - * [Live Demo](https://www.primevue.org/paginator/) - * - * @module themes/paginator - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface PaginatorDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Padding of root - * - * @designToken paginator.padding - */ - padding?: string; - /** - * Gap of root - * - * @designToken paginator.gap - */ - gap?: string; - /** - * Border radius of root - * - * @designToken paginator.border.radius - */ - borderRadius?: string; - /** - * Background of root - * - * @designToken paginator.background - */ - background?: string; - /** - * Color of root - * - * @designToken paginator.color - */ - color?: string; - /** - * Transition duration of root - * - * @designToken paginator.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the nav button section - */ - navButton?: { - /** - * Background of nav button - * - * @designToken paginator.nav.button.background - */ - background?: string; - /** - * Hover background of nav button - * - * @designToken paginator.nav.button.hover.background - */ - hoverBackground?: string; - /** - * Selected background of nav button - * - * @designToken paginator.nav.button.selected.background - */ - selectedBackground?: string; - /** - * Color of nav button - * - * @designToken paginator.nav.button.color - */ - color?: string; - /** - * Hover color of nav button - * - * @designToken paginator.nav.button.hover.color - */ - hoverColor?: string; - /** - * Selected color of nav button - * - * @designToken paginator.nav.button.selected.color - */ - selectedColor?: string; - /** - * Width of nav button - * - * @designToken paginator.nav.button.width - */ - width?: string; - /** - * Height of nav button - * - * @designToken paginator.nav.button.height - */ - height?: string; - /** - * Border radius of nav button - * - * @designToken paginator.nav.button.border.radius - */ - borderRadius?: string; - /** - * Focus ring of nav button - */ - focusRing?: { - /** - * Focus ring width of nav button - * - * @designToken paginator.nav.button.focus.ring.width - */ - width?: string; - /** - * Focus ring style of nav button - * - * @designToken paginator.nav.button.focus.ring.style - */ - style?: string; - /** - * Focus ring color of nav button - * - * @designToken paginator.nav.button.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of nav button - * - * @designToken paginator.nav.button.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of nav button - * - * @designToken paginator.nav.button.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Used to pass tokens of the current page report section - */ - currentPageReport?: { - /** - * Color of current page report - * - * @designToken paginator.current.page.report.color - */ - color?: string; - }; - /** - * Used to pass tokens of the jump to page input section - */ - jumpToPageInput?: { - /** - * Max width of jump to page input - * - * @designToken paginator.jump.to.page.input.max.width - */ - maxWidth?: string; - }; -} diff --git a/components/lib/themes/types/panel/index.d.ts b/components/lib/themes/types/panel/index.d.ts deleted file mode 100644 index e066f6fd82..0000000000 --- a/components/lib/themes/types/panel/index.d.ts +++ /dev/null @@ -1,128 +0,0 @@ -/** - * - * Panel Design Tokens - * - * [Live Demo](https://www.primevue.org/panel/) - * - * @module themes/panel - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface PanelDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken panel.background - */ - background?: string; - /** - * Border color of root - * - * @designToken panel.border.color - */ - borderColor?: string; - /** - * Color of root - * - * @designToken panel.color - */ - color?: string; - /** - * Border radius of root - * - * @designToken panel.border.radius - */ - borderRadius?: string; - }; - /** - * Used to pass tokens of the header section - */ - header?: { - /** - * Background of header - * - * @designToken panel.header.background - */ - background?: string; - /** - * Color of header - * - * @designToken panel.header.color - */ - color?: string; - /** - * Padding of header - * - * @designToken panel.header.padding - */ - padding?: string; - /** - * Border color of header - * - * @designToken panel.header.border.color - */ - borderColor?: string; - /** - * Border width of header - * - * @designToken panel.header.border.width - */ - borderWidth?: string; - /** - * Border radius of header - * - * @designToken panel.header.border.radius - */ - borderRadius?: string; - }; - /** - * Used to pass tokens of the toggleable header section - */ - toggleableHeader?: { - /** - * Padding of toggleable header - * - * @designToken panel.toggleable.header.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the title section - */ - title?: { - /** - * Font weight of title - * - * @designToken panel.title.font.weight - */ - fontWeight?: string; - }; - /** - * Used to pass tokens of the content section - */ - content?: { - /** - * Padding of content - * - * @designToken panel.content.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the footer section - */ - footer?: { - /** - * Padding of footer - * - * @designToken panel.footer.padding - */ - padding?: string; - }; -} diff --git a/components/lib/themes/types/panelmenu/index.d.ts b/components/lib/themes/types/panelmenu/index.d.ts deleted file mode 100644 index 8607c3578c..0000000000 --- a/components/lib/themes/types/panelmenu/index.d.ts +++ /dev/null @@ -1,192 +0,0 @@ -/** - * - * PanelMenu Design Tokens - * - * [Live Demo](https://www.primevue.org/panelmenu/) - * - * @module themes/panelmenu - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface PanelMenuDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Gap of root - * - * @designToken panelmenu.gap - */ - gap?: string; - /** - * Transition duration of root - * - * @designToken panelmenu.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the panel section - */ - panel?: { - /** - * Background of panel - * - * @designToken panelmenu.panel.background - */ - background?: string; - /** - * Border color of panel - * - * @designToken panelmenu.panel.border.color - */ - borderColor?: string; - /** - * Border width of panel - * - * @designToken panelmenu.panel.border.width - */ - borderWidth?: string; - /** - * Color of panel - * - * @designToken panelmenu.panel.color - */ - color?: string; - /** - * Padding of panel - * - * @designToken panelmenu.panel.padding - */ - padding?: string; - /** - * Border radius of panel - * - * @designToken panelmenu.panel.border.radius - */ - borderRadius?: string; - /** - * First of panel - */ - first?: { - /** - * First border width of panel - * - * @designToken panelmenu.panel.first.border.width - */ - borderWidth?: string; - /** - * First top border radius of panel - * - * @designToken panelmenu.panel.first.top.border.radius - */ - topBorderRadius?: string; - }; - /** - * Last of panel - */ - last?: { - /** - * Last border width of panel - * - * @designToken panelmenu.panel.last.border.width - */ - borderWidth?: string; - /** - * Last bottom border radius of panel - * - * @designToken panelmenu.panel.last.bottom.border.radius - */ - bottomBorderRadius?: string; - }; - }; - /** - * Used to pass tokens of the item section - */ - item?: { - /** - * Focus background of item - * - * @designToken panelmenu.item.focus.background - */ - focusBackground?: string; - /** - * Color of item - * - * @designToken panelmenu.item.color - */ - color?: string; - /** - * Focus color of item - * - * @designToken panelmenu.item.focus.color - */ - focusColor?: string; - /** - * Gap of item - * - * @designToken panelmenu.item.gap - */ - gap?: string; - /** - * Padding of item - * - * @designToken panelmenu.item.padding - */ - padding?: string; - /** - * Border radius of item - * - * @designToken panelmenu.item.border.radius - */ - borderRadius?: string; - /** - * Icon of item - */ - icon?: { - /** - * Icon color of item - * - * @designToken panelmenu.item.icon.color - */ - color?: string; - /** - * Icon focus color of item - * - * @designToken panelmenu.item.icon.focus.color - */ - focusColor?: string; - }; - }; - /** - * Used to pass tokens of the submenu section - */ - submenu?: { - /** - * Indent of submenu - * - * @designToken panelmenu.submenu.indent - */ - indent?: string; - }; - /** - * Used to pass tokens of the submenu icon section - */ - submenuIcon?: { - /** - * Color of submenu icon - * - * @designToken panelmenu.submenu.icon.color - */ - color?: string; - /** - * Focus color of submenu icon - * - * @designToken panelmenu.submenu.icon.focus.color - */ - focusColor?: string; - }; -} diff --git a/components/lib/themes/types/password/index.d.ts b/components/lib/themes/types/password/index.d.ts deleted file mode 100644 index 0625fee2a0..0000000000 --- a/components/lib/themes/types/password/index.d.ts +++ /dev/null @@ -1,123 +0,0 @@ -/** - * - * Password Design Tokens - * - * [Live Demo](https://www.primevue.org/password/) - * - * @module themes/password - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface PasswordDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the meter section - */ - meter?: { - /** - * Background of meter - * - * @designToken password.meter.background - */ - background?: string; - /** - * Border radius of meter - * - * @designToken password.meter.border.radius - */ - borderRadius?: string; - /** - * Height of meter - * - * @designToken password.meter.height - */ - height?: string; - }; - /** - * Used to pass tokens of the icon section - */ - icon?: { - /** - * Color of icon - * - * @designToken password.icon.color - */ - color?: string; - }; - /** - * Used to pass tokens of the overlay section - */ - overlay?: { - /** - * Background of overlay - * - * @designToken password.overlay.background - */ - background?: string; - /** - * Border color of overlay - * - * @designToken password.overlay.border.color - */ - borderColor?: string; - /** - * Border radius of overlay - * - * @designToken password.overlay.border.radius - */ - borderRadius?: string; - /** - * Color of overlay - * - * @designToken password.overlay.color - */ - color?: string; - /** - * Padding of overlay - * - * @designToken password.overlay.padding - */ - padding?: string; - /** - * Shadow of overlay - * - * @designToken password.overlay.shadow - */ - shadow?: string; - }; - /** - * Used to pass tokens of the content section - */ - content?: { - /** - * Gap of content - * - * @designToken password.content.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the strength section - */ - strength?: { - /** - * Weak background of strength - * - * @designToken password.strength.weak.background - */ - weakBackground?: string; - /** - * Medium background of strength - * - * @designToken password.strength.medium.background - */ - mediumBackground?: string; - /** - * Strong background of strength - * - * @designToken password.strength.strong.background - */ - strongBackground?: string; - }; -} diff --git a/components/lib/themes/types/picklist/index.d.ts b/components/lib/themes/types/picklist/index.d.ts deleted file mode 100644 index f01be8f64a..0000000000 --- a/components/lib/themes/types/picklist/index.d.ts +++ /dev/null @@ -1,36 +0,0 @@ -/** - * - * PickList Design Tokens - * - * [Live Demo](https://www.primevue.org/picklist/) - * - * @module themes/picklist - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface PickListDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Gap of root - * - * @designToken picklist.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the controls section - */ - controls?: { - /** - * Gap of controls - * - * @designToken picklist.controls.gap - */ - gap?: string; - }; -} diff --git a/components/lib/themes/types/popover/index.d.ts b/components/lib/themes/types/popover/index.d.ts deleted file mode 100644 index 9444b0c937..0000000000 --- a/components/lib/themes/types/popover/index.d.ts +++ /dev/null @@ -1,72 +0,0 @@ -/** - * - * Popover Design Tokens - * - * [Live Demo](https://www.primevue.org/popover/) - * - * @module themes/popover - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface PopoverDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken popover.background - */ - background?: string; - /** - * Border color of root - * - * @designToken popover.border.color - */ - borderColor?: string; - /** - * Color of root - * - * @designToken popover.color - */ - color?: string; - /** - * Border radius of root - * - * @designToken popover.border.radius - */ - borderRadius?: string; - /** - * Shadow of root - * - * @designToken popover.shadow - */ - shadow?: string; - /** - * Gutter of root - * - * @designToken popover.gutter - */ - gutter?: string; - /** - * Arrow offset of root - * - * @designToken popover.arrow.offset - */ - arrowOffset?: string; - }; - /** - * Used to pass tokens of the content section - */ - content?: { - /** - * Padding of content - * - * @designToken popover.content.padding - */ - padding?: string; - }; -} diff --git a/components/lib/themes/types/progressbar/index.d.ts b/components/lib/themes/types/progressbar/index.d.ts deleted file mode 100644 index a96187b81a..0000000000 --- a/components/lib/themes/types/progressbar/index.d.ts +++ /dev/null @@ -1,71 +0,0 @@ -/** - * - * ProgressBar Design Tokens - * - * [Live Demo](https://www.primevue.org/progressbar/) - * - * @module themes/progressbar - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface ProgressBarDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken progressbar.background - */ - background?: string; - /** - * Border radius of root - * - * @designToken progressbar.border.radius - */ - borderRadius?: string; - /** - * Height of root - * - * @designToken progressbar.height - */ - height?: string; - }; - /** - * Used to pass tokens of the value section - */ - value?: { - /** - * Background of value - * - * @designToken progressbar.value.background - */ - background?: string; - }; - /** - * Used to pass tokens of the label section - */ - label?: { - /** - * Color of label - * - * @designToken progressbar.label.color - */ - color?: string; - /** - * Font size of label - * - * @designToken progressbar.label.font.size - */ - fontSize?: string; - /** - * Font weight of label - * - * @designToken progressbar.label.font.weight - */ - fontWeight?: string; - }; -} diff --git a/components/lib/themes/types/progressspinner/index.d.ts b/components/lib/themes/types/progressspinner/index.d.ts deleted file mode 100644 index 02185e3dac..0000000000 --- a/components/lib/themes/types/progressspinner/index.d.ts +++ /dev/null @@ -1,43 +0,0 @@ -/** - * - * ProgressSpinner Design Tokens - * - * [Live Demo](https://www.primevue.org/progressspinner/) - * - * @module themes/progressspinner - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface ProgressSpinnerDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Color.1 of root - * - * @designToken progressspinner.color.1 - */ - 'color.1'?: string; - /** - * Color.2 of root - * - * @designToken progressspinner.color.2 - */ - 'color.2'?: string; - /** - * Color.3 of root - * - * @designToken progressspinner.color.3 - */ - 'color.3'?: string; - /** - * Color.4 of root - * - * @designToken progressspinner.color.4 - */ - 'color.4'?: string; - }; -} diff --git a/components/lib/themes/types/radiobutton/index.d.ts b/components/lib/themes/types/radiobutton/index.d.ts deleted file mode 100644 index 77d3ee36e1..0000000000 --- a/components/lib/themes/types/radiobutton/index.d.ts +++ /dev/null @@ -1,179 +0,0 @@ -/** - * - * RadioButton Design Tokens - * - * [Live Demo](https://www.primevue.org/radiobutton/) - * - * @module themes/radiobutton - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface RadioButtonDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Width of root - * - * @designToken radiobutton.width - */ - width?: string; - /** - * Height of root - * - * @designToken radiobutton.height - */ - height?: string; - /** - * Background of root - * - * @designToken radiobutton.background - */ - background?: string; - /** - * Checked background of root - * - * @designToken radiobutton.checked.background - */ - checkedBackground?: string; - /** - * Checked hover background of root - * - * @designToken radiobutton.checked.hover.background - */ - checkedHoverBackground?: string; - /** - * Disabled background of root - * - * @designToken radiobutton.disabled.background - */ - disabledBackground?: string; - /** - * Filled background of root - * - * @designToken radiobutton.filled.background - */ - filledBackground?: string; - /** - * Border color of root - * - * @designToken radiobutton.border.color - */ - borderColor?: string; - /** - * Hover border color of root - * - * @designToken radiobutton.hover.border.color - */ - hoverBorderColor?: string; - /** - * Focus border color of root - * - * @designToken radiobutton.focus.border.color - */ - focusBorderColor?: string; - /** - * Checked border color of root - * - * @designToken radiobutton.checked.border.color - */ - checkedBorderColor?: string; - /** - * Checked hover border color of root - * - * @designToken radiobutton.checked.hover.border.color - */ - checkedHoverBorderColor?: string; - /** - * Checked focus border color of root - * - * @designToken radiobutton.checked.focus.border.color - */ - checkedFocusBorderColor?: string; - /** - * Invalid border color of root - * - * @designToken radiobutton.invalid.border.color - */ - invalidBorderColor?: string; - /** - * Shadow of root - * - * @designToken radiobutton.shadow - */ - shadow?: string; - /** - * Focus ring of root - */ - focusRing?: { - /** - * Focus ring width of root - * - * @designToken radiobutton.focus.ring.width - */ - width?: string; - /** - * Focus ring style of root - * - * @designToken radiobutton.focus.ring.style - */ - style?: string; - /** - * Focus ring color of root - * - * @designToken radiobutton.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of root - * - * @designToken radiobutton.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of root - * - * @designToken radiobutton.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Transition duration of root - * - * @designToken radiobutton.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the icon section - */ - icon?: { - /** - * Size of icon - * - * @designToken radiobutton.icon.size - */ - size?: string; - /** - * Checked color of icon - * - * @designToken radiobutton.icon.checked.color - */ - checkedColor?: string; - /** - * Checked hover color of icon - * - * @designToken radiobutton.icon.checked.hover.color - */ - checkedHoverColor?: string; - /** - * Disabled color of icon - * - * @designToken radiobutton.icon.disabled.color - */ - disabledColor?: string; - }; -} diff --git a/components/lib/themes/types/rating/index.d.ts b/components/lib/themes/types/rating/index.d.ts deleted file mode 100644 index 4bc1a4e338..0000000000 --- a/components/lib/themes/types/rating/index.d.ts +++ /dev/null @@ -1,60 +0,0 @@ -/** - * - * Rating Design Tokens - * - * [Live Demo](https://www.primevue.org/rating/) - * - * @module themes/rating - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface RatingDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Gap of root - * - * @designToken rating.gap - */ - gap?: string; - /** - * Transition duration of root - * - * @designToken rating.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the icon section - */ - icon?: { - /** - * Size of icon - * - * @designToken rating.icon.size - */ - size?: string; - /** - * Color of icon - * - * @designToken rating.icon.color - */ - color?: string; - /** - * Hover color of icon - * - * @designToken rating.icon.hover.color - */ - hoverColor?: string; - /** - * Active color of icon - * - * @designToken rating.icon.active.color - */ - activeColor?: string; - }; -} diff --git a/components/lib/themes/types/ripple/index.d.ts b/components/lib/themes/types/ripple/index.d.ts deleted file mode 100644 index 7c7abaa4c3..0000000000 --- a/components/lib/themes/types/ripple/index.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -/** - * - * Ripple Design Tokens - * - * [Live Demo](https://www.primevue.org/ripple/) - * - * @module themes/ripple - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface RippleDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken ripple.background - */ - background?: string; - }; -} diff --git a/components/lib/themes/types/scrollpanel/index.d.ts b/components/lib/themes/types/scrollpanel/index.d.ts deleted file mode 100644 index 401ecbb6e4..0000000000 --- a/components/lib/themes/types/scrollpanel/index.d.ts +++ /dev/null @@ -1,83 +0,0 @@ -/** - * - * ScrollPanel Design Tokens - * - * [Live Demo](https://www.primevue.org/scrollpanel/) - * - * @module themes/scrollpanel - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface ScrollPanelDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Transition duration of root - * - * @designToken scrollpanel.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the bar section - */ - bar?: { - /** - * Size of bar - * - * @designToken scrollpanel.bar.size - */ - size?: string; - /** - * Border radius of bar - * - * @designToken scrollpanel.bar.border.radius - */ - borderRadius?: string; - /** - * Focus ring of bar - */ - focusRing?: { - /** - * Focus ring width of bar - * - * @designToken scrollpanel.bar.focus.ring.width - */ - width?: string; - /** - * Focus ring style of bar - * - * @designToken scrollpanel.bar.focus.ring.style - */ - style?: string; - /** - * Focus ring color of bar - * - * @designToken scrollpanel.bar.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of bar - * - * @designToken scrollpanel.bar.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of bar - * - * @designToken scrollpanel.bar.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Background of bar - * - * @designToken scrollpanel.bar.background - */ - background?: string; - }; -} diff --git a/components/lib/themes/types/select/index.d.ts b/components/lib/themes/types/select/index.d.ts deleted file mode 100644 index e401568794..0000000000 --- a/components/lib/themes/types/select/index.d.ts +++ /dev/null @@ -1,363 +0,0 @@ -/** - * - * Select Design Tokens - * - * [Live Demo](https://www.primevue.org/select/) - * - * @module themes/select - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface SelectDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken select.background - */ - background?: string; - /** - * Disabled background of root - * - * @designToken select.disabled.background - */ - disabledBackground?: string; - /** - * Filled background of root - * - * @designToken select.filled.background - */ - filledBackground?: string; - /** - * Filled focus background of root - * - * @designToken select.filled.focus.background - */ - filledFocusBackground?: string; - /** - * Border color of root - * - * @designToken select.border.color - */ - borderColor?: string; - /** - * Hover border color of root - * - * @designToken select.hover.border.color - */ - hoverBorderColor?: string; - /** - * Focus border color of root - * - * @designToken select.focus.border.color - */ - focusBorderColor?: string; - /** - * Invalid border color of root - * - * @designToken select.invalid.border.color - */ - invalidBorderColor?: string; - /** - * Color of root - * - * @designToken select.color - */ - color?: string; - /** - * Disabled color of root - * - * @designToken select.disabled.color - */ - disabledColor?: string; - /** - * Placeholder color of root - * - * @designToken select.placeholder.color - */ - placeholderColor?: string; - /** - * Shadow of root - * - * @designToken select.shadow - */ - shadow?: string; - /** - * Padding x of root - * - * @designToken select.padding.x - */ - paddingX?: string; - /** - * Padding y of root - * - * @designToken select.padding.y - */ - paddingY?: string; - /** - * Border radius of root - * - * @designToken select.border.radius - */ - borderRadius?: string; - /** - * Focus ring of root - */ - focusRing?: { - /** - * Focus ring width of root - * - * @designToken select.focus.ring.width - */ - width?: string; - /** - * Focus ring style of root - * - * @designToken select.focus.ring.style - */ - style?: string; - /** - * Focus ring color of root - * - * @designToken select.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of root - * - * @designToken select.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of root - * - * @designToken select.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Transition duration of root - * - * @designToken select.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the dropdown section - */ - dropdown?: { - /** - * Width of dropdown - * - * @designToken select.dropdown.width - */ - width?: string; - /** - * Color of dropdown - * - * @designToken select.dropdown.color - */ - color?: string; - }; - /** - * Used to pass tokens of the overlay section - */ - overlay?: { - /** - * Background of overlay - * - * @designToken select.overlay.background - */ - background?: string; - /** - * Border color of overlay - * - * @designToken select.overlay.border.color - */ - borderColor?: string; - /** - * Border radius of overlay - * - * @designToken select.overlay.border.radius - */ - borderRadius?: string; - /** - * Color of overlay - * - * @designToken select.overlay.color - */ - color?: string; - /** - * Shadow of overlay - * - * @designToken select.overlay.shadow - */ - shadow?: string; - }; - /** - * Used to pass tokens of the list section - */ - list?: { - /** - * Padding of list - * - * @designToken select.list.padding - */ - padding?: string; - /** - * Gap of list - * - * @designToken select.list.gap - */ - gap?: string; - /** - * Header of list - */ - header?: { - /** - * Header padding of list - * - * @designToken select.list.header.padding - */ - padding?: string; - }; - }; - /** - * Used to pass tokens of the option section - */ - option?: { - /** - * Focus background of option - * - * @designToken select.option.focus.background - */ - focusBackground?: string; - /** - * Selected background of option - * - * @designToken select.option.selected.background - */ - selectedBackground?: string; - /** - * Selected focus background of option - * - * @designToken select.option.selected.focus.background - */ - selectedFocusBackground?: string; - /** - * Color of option - * - * @designToken select.option.color - */ - color?: string; - /** - * Focus color of option - * - * @designToken select.option.focus.color - */ - focusColor?: string; - /** - * Selected color of option - * - * @designToken select.option.selected.color - */ - selectedColor?: string; - /** - * Selected focus color of option - * - * @designToken select.option.selected.focus.color - */ - selectedFocusColor?: string; - /** - * Padding of option - * - * @designToken select.option.padding - */ - padding?: string; - /** - * Border radius of option - * - * @designToken select.option.border.radius - */ - borderRadius?: string; - }; - /** - * Used to pass tokens of the option group section - */ - optionGroup?: { - /** - * Background of option group - * - * @designToken select.option.group.background - */ - background?: string; - /** - * Color of option group - * - * @designToken select.option.group.color - */ - color?: string; - /** - * Font weight of option group - * - * @designToken select.option.group.font.weight - */ - fontWeight?: string; - /** - * Padding of option group - * - * @designToken select.option.group.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the clear icon section - */ - clearIcon?: { - /** - * Color of clear icon - * - * @designToken select.clear.icon.color - */ - color?: string; - }; - /** - * Used to pass tokens of the checkmark section - */ - checkmark?: { - /** - * Color of checkmark - * - * @designToken select.checkmark.color - */ - color?: string; - /** - * Gutter start of checkmark - * - * @designToken select.checkmark.gutter.start - */ - gutterStart?: string; - /** - * Gutter end of checkmark - * - * @designToken select.checkmark.gutter.end - */ - gutterEnd?: string; - }; - /** - * Used to pass tokens of the empty message section - */ - emptyMessage?: { - /** - * Padding of empty message - * - * @designToken select.empty.message.padding - */ - padding?: string; - }; -} diff --git a/components/lib/themes/types/selectbutton/index.d.ts b/components/lib/themes/types/selectbutton/index.d.ts deleted file mode 100644 index 6d04bd05a7..0000000000 --- a/components/lib/themes/types/selectbutton/index.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -/** - * - * SelectButton Design Tokens - * - * [Live Demo](https://www.primevue.org/selectbutton/) - * - * @module themes/selectbutton - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface SelectButtonDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Border radius of root - * - * @designToken selectbutton.border.radius - */ - borderRadius?: string; - /** - * Invalid border color of root - * - * @designToken selectbutton.invalid.border.color - */ - invalidBorderColor?: string; - }; -} diff --git a/components/lib/themes/types/skeleton/index.d.ts b/components/lib/themes/types/skeleton/index.d.ts deleted file mode 100644 index 0ad0c0ded8..0000000000 --- a/components/lib/themes/types/skeleton/index.d.ts +++ /dev/null @@ -1,37 +0,0 @@ -/** - * - * Skeleton Design Tokens - * - * [Live Demo](https://www.primevue.org/skeleton/) - * - * @module themes/skeleton - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface SkeletonDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Border radius of root - * - * @designToken skeleton.border.radius - */ - borderRadius?: string; - /** - * Background of root - * - * @designToken skeleton.background - */ - background?: string; - /** - * Animation background of root - * - * @designToken skeleton.animation.background - */ - animationBackground?: string; - }; -} diff --git a/components/lib/themes/types/slider/index.d.ts b/components/lib/themes/types/slider/index.d.ts deleted file mode 100644 index 3723fd9d16..0000000000 --- a/components/lib/themes/types/slider/index.d.ts +++ /dev/null @@ -1,170 +0,0 @@ -/** - * - * Slider Design Tokens - * - * [Live Demo](https://www.primevue.org/slider/) - * - * @module themes/slider - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface SliderDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Transition duration of root - * - * @designToken slider.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the track section - */ - track?: { - /** - * Background of track - * - * @designToken slider.track.background - */ - background?: string; - /** - * Border radius of track - * - * @designToken slider.track.border.radius - */ - borderRadius?: string; - /** - * Size of track - * - * @designToken slider.track.size - */ - size?: string; - }; - /** - * Used to pass tokens of the range section - */ - range?: { - /** - * Background of range - * - * @designToken slider.range.background - */ - background?: string; - }; - /** - * Used to pass tokens of the handle section - */ - handle?: { - /** - * Width of handle - * - * @designToken slider.handle.width - */ - width?: string; - /** - * Height of handle - * - * @designToken slider.handle.height - */ - height?: string; - /** - * Border radius of handle - * - * @designToken slider.handle.border.radius - */ - borderRadius?: string; - /** - * Background of handle - * - * @designToken slider.handle.background - */ - background?: string; - /** - * Hover background of handle - * - * @designToken slider.handle.hover.background - */ - hoverBackground?: string; - /** - * Content of handle - */ - content?: { - /** - * Content border radius of handle - * - * @designToken slider.handle.content.border.radius - */ - borderRadius?: string; - /** - * Content hover background of handle - * - * @designToken slider.handle.content.hover.background - */ - hoverBackground?: string; - /** - * Content width of handle - * - * @designToken slider.handle.content.width - */ - width?: string; - /** - * Content height of handle - * - * @designToken slider.handle.content.height - */ - height?: string; - /** - * Content shadow of handle - * - * @designToken slider.handle.content.shadow - */ - shadow?: string; - }; - /** - * Focus ring of handle - */ - focusRing?: { - /** - * Focus ring width of handle - * - * @designToken slider.handle.focus.ring.width - */ - width?: string; - /** - * Focus ring style of handle - * - * @designToken slider.handle.focus.ring.style - */ - style?: string; - /** - * Focus ring color of handle - * - * @designToken slider.handle.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of handle - * - * @designToken slider.handle.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of handle - * - * @designToken slider.handle.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Content background of handle - * - * @designToken slider.handle.content.background - */ - contentBackground?: string; - }; -} diff --git a/components/lib/themes/types/speeddial/index.d.ts b/components/lib/themes/types/speeddial/index.d.ts deleted file mode 100644 index 7c5ea1ee28..0000000000 --- a/components/lib/themes/types/speeddial/index.d.ts +++ /dev/null @@ -1,31 +0,0 @@ -/** - * - * SpeedDial Design Tokens - * - * [Live Demo](https://www.primevue.org/speeddial/) - * - * @module themes/speeddial - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface SpeedDialDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Gap of root - * - * @designToken speeddial.gap - */ - gap?: string; - /** - * Transition duration of root - * - * @designToken speeddial.transition.duration - */ - transitionDuration?: string; - }; -} diff --git a/components/lib/themes/types/splitbutton/index.d.ts b/components/lib/themes/types/splitbutton/index.d.ts deleted file mode 100644 index a7be1086be..0000000000 --- a/components/lib/themes/types/splitbutton/index.d.ts +++ /dev/null @@ -1,37 +0,0 @@ -/** - * - * SplitButton Design Tokens - * - * [Live Demo](https://www.primevue.org/splitbutton/) - * - * @module themes/splitbutton - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface SplitButtonDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Border radius of root - * - * @designToken splitbutton.border.radius - */ - borderRadius?: string; - /** - * Rounded border radius of root - * - * @designToken splitbutton.rounded.border.radius - */ - roundedBorderRadius?: string; - /** - * Raised shadow of root - * - * @designToken splitbutton.raised.shadow - */ - raisedShadow?: string; - }; -} diff --git a/components/lib/themes/types/splitter/index.d.ts b/components/lib/themes/types/splitter/index.d.ts deleted file mode 100644 index d78aa5a0ab..0000000000 --- a/components/lib/themes/types/splitter/index.d.ts +++ /dev/null @@ -1,112 +0,0 @@ -/** - * - * Splitter Design Tokens - * - * [Live Demo](https://www.primevue.org/splitter/) - * - * @module themes/splitter - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface SplitterDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken splitter.background - */ - background?: string; - /** - * Border color of root - * - * @designToken splitter.border.color - */ - borderColor?: string; - /** - * Color of root - * - * @designToken splitter.color - */ - color?: string; - /** - * Transition duration of root - * - * @designToken splitter.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the gutter section - */ - gutter?: { - /** - * Background of gutter - * - * @designToken splitter.gutter.background - */ - background?: string; - }; - /** - * Used to pass tokens of the handle section - */ - handle?: { - /** - * Size of handle - * - * @designToken splitter.handle.size - */ - size?: string; - /** - * Background of handle - * - * @designToken splitter.handle.background - */ - background?: string; - /** - * Border radius of handle - * - * @designToken splitter.handle.border.radius - */ - borderRadius?: string; - /** - * Focus ring of handle - */ - focusRing?: { - /** - * Focus ring width of handle - * - * @designToken splitter.handle.focus.ring.width - */ - width?: string; - /** - * Focus ring style of handle - * - * @designToken splitter.handle.focus.ring.style - */ - style?: string; - /** - * Focus ring color of handle - * - * @designToken splitter.handle.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of handle - * - * @designToken splitter.handle.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of handle - * - * @designToken splitter.handle.focus.ring.shadow - */ - shadow?: string; - }; - }; -} diff --git a/components/lib/themes/types/stepper/index.d.ts b/components/lib/themes/types/stepper/index.d.ts deleted file mode 100644 index 0bf63908ae..0000000000 --- a/components/lib/themes/types/stepper/index.d.ts +++ /dev/null @@ -1,268 +0,0 @@ -/** - * - * Stepper Design Tokens - * - * [Live Demo](https://www.primevue.org/stepper/) - * - * @module themes/stepper - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface StepperDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Transition duration of root - * - * @designToken stepper.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the separator section - */ - separator?: { - /** - * Background of separator - * - * @designToken stepper.separator.background - */ - background?: string; - /** - * Active background of separator - * - * @designToken stepper.separator.active.background - */ - activeBackground?: string; - /** - * Margin of separator - * - * @designToken stepper.separator.margin - */ - margin?: string; - /** - * Size of separator - * - * @designToken stepper.separator.size - */ - size?: string; - }; - /** - * Used to pass tokens of the step section - */ - step?: { - /** - * Padding of step - * - * @designToken stepper.step.padding - */ - padding?: string; - /** - * Gap of step - * - * @designToken stepper.step.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the step header section - */ - stepHeader?: { - /** - * Padding of step header - * - * @designToken stepper.step.header.padding - */ - padding?: string; - /** - * Border radius of step header - * - * @designToken stepper.step.header.border.radius - */ - borderRadius?: string; - /** - * Focus ring of step header - */ - focusRing?: { - /** - * Focus ring width of step header - * - * @designToken stepper.step.header.focus.ring.width - */ - width?: string; - /** - * Focus ring style of step header - * - * @designToken stepper.step.header.focus.ring.style - */ - style?: string; - /** - * Focus ring color of step header - * - * @designToken stepper.step.header.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of step header - * - * @designToken stepper.step.header.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of step header - * - * @designToken stepper.step.header.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Gap of step header - * - * @designToken stepper.step.header.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the step title section - */ - stepTitle?: { - /** - * Color of step title - * - * @designToken stepper.step.title.color - */ - color?: string; - /** - * Active color of step title - * - * @designToken stepper.step.title.active.color - */ - activeColor?: string; - /** - * Font weight of step title - * - * @designToken stepper.step.title.font.weight - */ - fontWeight?: string; - }; - /** - * Used to pass tokens of the step number section - */ - stepNumber?: { - /** - * Background of step number - * - * @designToken stepper.step.number.background - */ - background?: string; - /** - * Active background of step number - * - * @designToken stepper.step.number.active.background - */ - activeBackground?: string; - /** - * Border color of step number - * - * @designToken stepper.step.number.border.color - */ - borderColor?: string; - /** - * Active border color of step number - * - * @designToken stepper.step.number.active.border.color - */ - activeBorderColor?: string; - /** - * Color of step number - * - * @designToken stepper.step.number.color - */ - color?: string; - /** - * Active color of step number - * - * @designToken stepper.step.number.active.color - */ - activeColor?: string; - /** - * Size of step number - * - * @designToken stepper.step.number.size - */ - size?: string; - /** - * Font size of step number - * - * @designToken stepper.step.number.font.size - */ - fontSize?: string; - /** - * Font weight of step number - * - * @designToken stepper.step.number.font.weight - */ - fontWeight?: string; - /** - * Border radius of step number - * - * @designToken stepper.step.number.border.radius - */ - borderRadius?: string; - /** - * Shadow of step number - * - * @designToken stepper.step.number.shadow - */ - shadow?: string; - }; - /** - * Used to pass tokens of the steppanels section - */ - steppanels?: { - /** - * Padding of steppanels - * - * @designToken stepper.steppanels.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the steppanel section - */ - steppanel?: { - /** - * Background of steppanel - * - * @designToken stepper.steppanel.background - */ - background?: string; - /** - * Color of steppanel - * - * @designToken stepper.steppanel.color - */ - color?: string; - /** - * Padding of steppanel - * - * @designToken stepper.steppanel.padding - */ - padding?: string; - /** - * Last of steppanel - */ - last?: { - /** - * Last padding of steppanel - * - * @designToken stepper.steppanel.last.padding - */ - padding?: string; - }; - }; -} diff --git a/components/lib/themes/types/steps/index.d.ts b/components/lib/themes/types/steps/index.d.ts deleted file mode 100644 index 027208304b..0000000000 --- a/components/lib/themes/types/steps/index.d.ts +++ /dev/null @@ -1,182 +0,0 @@ -/** - * - * Steps Design Tokens - * - * [Live Demo](https://www.primevue.org/steps/) - * - * @module themes/steps - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface StepsDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Transition duration of root - * - * @designToken steps.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the separator section - */ - separator?: { - /** - * Background of separator - * - * @designToken steps.separator.background - */ - background?: string; - }; - /** - * Used to pass tokens of the item link section - */ - itemLink?: { - /** - * Border radius of item link - * - * @designToken steps.item.link.border.radius - */ - borderRadius?: string; - /** - * Focus ring of item link - */ - focusRing?: { - /** - * Focus ring width of item link - * - * @designToken steps.item.link.focus.ring.width - */ - width?: string; - /** - * Focus ring style of item link - * - * @designToken steps.item.link.focus.ring.style - */ - style?: string; - /** - * Focus ring color of item link - * - * @designToken steps.item.link.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of item link - * - * @designToken steps.item.link.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of item link - * - * @designToken steps.item.link.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Gap of item link - * - * @designToken steps.item.link.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the item label section - */ - itemLabel?: { - /** - * Color of item label - * - * @designToken steps.item.label.color - */ - color?: string; - /** - * Active color of item label - * - * @designToken steps.item.label.active.color - */ - activeColor?: string; - /** - * Font weight of item label - * - * @designToken steps.item.label.font.weight - */ - fontWeight?: string; - }; - /** - * Used to pass tokens of the item number section - */ - itemNumber?: { - /** - * Background of item number - * - * @designToken steps.item.number.background - */ - background?: string; - /** - * Active background of item number - * - * @designToken steps.item.number.active.background - */ - activeBackground?: string; - /** - * Border color of item number - * - * @designToken steps.item.number.border.color - */ - borderColor?: string; - /** - * Active border color of item number - * - * @designToken steps.item.number.active.border.color - */ - activeBorderColor?: string; - /** - * Color of item number - * - * @designToken steps.item.number.color - */ - color?: string; - /** - * Active color of item number - * - * @designToken steps.item.number.active.color - */ - activeColor?: string; - /** - * Size of item number - * - * @designToken steps.item.number.size - */ - size?: string; - /** - * Font size of item number - * - * @designToken steps.item.number.font.size - */ - fontSize?: string; - /** - * Font weight of item number - * - * @designToken steps.item.number.font.weight - */ - fontWeight?: string; - /** - * Border radius of item number - * - * @designToken steps.item.number.border.radius - */ - borderRadius?: string; - /** - * Shadow of item number - * - * @designToken steps.item.number.shadow - */ - shadow?: string; - }; -} diff --git a/components/lib/themes/types/tabmenu/index.d.ts b/components/lib/themes/types/tabmenu/index.d.ts deleted file mode 100644 index 58fc25cea2..0000000000 --- a/components/lib/themes/types/tabmenu/index.d.ts +++ /dev/null @@ -1,218 +0,0 @@ -/** - * - * Tabmenu Design Tokens - * - * [Live Demo](https://www.primevue.org/tabmenu/) - * - * @module themes/tabmenu - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface TabmenuDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Transition duration of root - * - * @designToken tabmenu.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the tablist section - */ - tablist?: { - /** - * Border width of tablist - * - * @designToken tabmenu.tablist.border.width - */ - borderWidth?: string; - /** - * Background of tablist - * - * @designToken tabmenu.tablist.background - */ - background?: string; - /** - * Border color of tablist - * - * @designToken tabmenu.tablist.border.color - */ - borderColor?: string; - }; - /** - * Used to pass tokens of the item section - */ - item?: { - /** - * Background of item - * - * @designToken tabmenu.item.background - */ - background?: string; - /** - * Hover background of item - * - * @designToken tabmenu.item.hover.background - */ - hoverBackground?: string; - /** - * Active background of item - * - * @designToken tabmenu.item.active.background - */ - activeBackground?: string; - /** - * Border width of item - * - * @designToken tabmenu.item.border.width - */ - borderWidth?: string; - /** - * Border color of item - * - * @designToken tabmenu.item.border.color - */ - borderColor?: string; - /** - * Hover border color of item - * - * @designToken tabmenu.item.hover.border.color - */ - hoverBorderColor?: string; - /** - * Active border color of item - * - * @designToken tabmenu.item.active.border.color - */ - activeBorderColor?: string; - /** - * Color of item - * - * @designToken tabmenu.item.color - */ - color?: string; - /** - * Hover color of item - * - * @designToken tabmenu.item.hover.color - */ - hoverColor?: string; - /** - * Active color of item - * - * @designToken tabmenu.item.active.color - */ - activeColor?: string; - /** - * Padding of item - * - * @designToken tabmenu.item.padding - */ - padding?: string; - /** - * Font weight of item - * - * @designToken tabmenu.item.font.weight - */ - fontWeight?: string; - /** - * Margin of item - * - * @designToken tabmenu.item.margin - */ - margin?: string; - /** - * Gap of item - * - * @designToken tabmenu.item.gap - */ - gap?: string; - /** - * Focus ring of item - */ - focusRing?: { - /** - * Focus ring width of item - * - * @designToken tabmenu.item.focus.ring.width - */ - width?: string; - /** - * Focus ring style of item - * - * @designToken tabmenu.item.focus.ring.style - */ - style?: string; - /** - * Focus ring color of item - * - * @designToken tabmenu.item.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of item - * - * @designToken tabmenu.item.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of item - * - * @designToken tabmenu.item.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Used to pass tokens of the item icon section - */ - itemIcon?: { - /** - * Color of item icon - * - * @designToken tabmenu.item.icon.color - */ - color?: string; - /** - * Hover color of item icon - * - * @designToken tabmenu.item.icon.hover.color - */ - hoverColor?: string; - /** - * Active color of item icon - * - * @designToken tabmenu.item.icon.active.color - */ - activeColor?: string; - }; - /** - * Used to pass tokens of the active bar section - */ - activeBar?: { - /** - * Height of active bar - * - * @designToken tabmenu.active.bar.height - */ - height?: string; - /** - * Bottom of active bar - * - * @designToken tabmenu.active.bar.bottom - */ - bottom?: string; - /** - * Background of active bar - * - * @designToken tabmenu.active.bar.background - */ - background?: string; - }; -} diff --git a/components/lib/themes/types/tabs/index.d.ts b/components/lib/themes/types/tabs/index.d.ts deleted file mode 100644 index 608d5dd248..0000000000 --- a/components/lib/themes/types/tabs/index.d.ts +++ /dev/null @@ -1,323 +0,0 @@ -/** - * - * Tabs Design Tokens - * - * [Live Demo](https://www.primevue.org/tabs/) - * - * @module themes/tabs - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface TabsDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Transition duration of root - * - * @designToken tabs.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the tablist section - */ - tablist?: { - /** - * Border width of tablist - * - * @designToken tabs.tablist.border.width - */ - borderWidth?: string; - /** - * Background of tablist - * - * @designToken tabs.tablist.background - */ - background?: string; - /** - * Border color of tablist - * - * @designToken tabs.tablist.border.color - */ - borderColor?: string; - }; - /** - * Used to pass tokens of the tab section - */ - tab?: { - /** - * Background of tab - * - * @designToken tabs.tab.background - */ - background?: string; - /** - * Hover background of tab - * - * @designToken tabs.tab.hover.background - */ - hoverBackground?: string; - /** - * Active background of tab - * - * @designToken tabs.tab.active.background - */ - activeBackground?: string; - /** - * Border width of tab - * - * @designToken tabs.tab.border.width - */ - borderWidth?: string; - /** - * Border color of tab - * - * @designToken tabs.tab.border.color - */ - borderColor?: string; - /** - * Hover border color of tab - * - * @designToken tabs.tab.hover.border.color - */ - hoverBorderColor?: string; - /** - * Active border color of tab - * - * @designToken tabs.tab.active.border.color - */ - activeBorderColor?: string; - /** - * Color of tab - * - * @designToken tabs.tab.color - */ - color?: string; - /** - * Hover color of tab - * - * @designToken tabs.tab.hover.color - */ - hoverColor?: string; - /** - * Active color of tab - * - * @designToken tabs.tab.active.color - */ - activeColor?: string; - /** - * Padding of tab - * - * @designToken tabs.tab.padding - */ - padding?: string; - /** - * Font weight of tab - * - * @designToken tabs.tab.font.weight - */ - fontWeight?: string; - /** - * Margin of tab - * - * @designToken tabs.tab.margin - */ - margin?: string; - /** - * Gap of tab - * - * @designToken tabs.tab.gap - */ - gap?: string; - /** - * Focus ring of tab - */ - focusRing?: { - /** - * Focus ring width of tab - * - * @designToken tabs.tab.focus.ring.width - */ - width?: string; - /** - * Focus ring style of tab - * - * @designToken tabs.tab.focus.ring.style - */ - style?: string; - /** - * Focus ring color of tab - * - * @designToken tabs.tab.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of tab - * - * @designToken tabs.tab.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of tab - * - * @designToken tabs.tab.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Used to pass tokens of the tabpanel section - */ - tabpanel?: { - /** - * Background of tabpanel - * - * @designToken tabs.tabpanel.background - */ - background?: string; - /** - * Color of tabpanel - * - * @designToken tabs.tabpanel.color - */ - color?: string; - /** - * Padding of tabpanel - * - * @designToken tabs.tabpanel.padding - */ - padding?: string; - /** - * Focus ring of tabpanel - */ - focusRing?: { - /** - * Focus ring width of tabpanel - * - * @designToken tabs.tabpanel.focus.ring.width - */ - width?: string; - /** - * Focus ring style of tabpanel - * - * @designToken tabs.tabpanel.focus.ring.style - */ - style?: string; - /** - * Focus ring color of tabpanel - * - * @designToken tabs.tabpanel.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of tabpanel - * - * @designToken tabs.tabpanel.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of tabpanel - * - * @designToken tabs.tabpanel.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Used to pass tokens of the nav button section - */ - navButton?: { - /** - * Background of nav button - * - * @designToken tabs.nav.button.background - */ - background?: string; - /** - * Color of nav button - * - * @designToken tabs.nav.button.color - */ - color?: string; - /** - * Hover color of nav button - * - * @designToken tabs.nav.button.hover.color - */ - hoverColor?: string; - /** - * Width of nav button - * - * @designToken tabs.nav.button.width - */ - width?: string; - /** - * Focus ring of nav button - */ - focusRing?: { - /** - * Focus ring width of nav button - * - * @designToken tabs.nav.button.focus.ring.width - */ - width?: string; - /** - * Focus ring style of nav button - * - * @designToken tabs.nav.button.focus.ring.style - */ - style?: string; - /** - * Focus ring color of nav button - * - * @designToken tabs.nav.button.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of nav button - * - * @designToken tabs.nav.button.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of nav button - * - * @designToken tabs.nav.button.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Box shadow of nav button - * - * @designToken tabs.nav.button.box.shadow - */ - boxShadow?: string; - }; - /** - * Used to pass tokens of the active bar section - */ - activeBar?: { - /** - * Height of active bar - * - * @designToken tabs.active.bar.height - */ - height?: string; - /** - * Bottom of active bar - * - * @designToken tabs.active.bar.bottom - */ - bottom?: string; - /** - * Background of active bar - * - * @designToken tabs.active.bar.background - */ - background?: string; - }; -} diff --git a/components/lib/themes/types/tabview/index.d.ts b/components/lib/themes/types/tabview/index.d.ts deleted file mode 100644 index d79342b429..0000000000 --- a/components/lib/themes/types/tabview/index.d.ts +++ /dev/null @@ -1,123 +0,0 @@ -/** - * - * TabView Design Tokens - * - * [Live Demo](https://www.primevue.org/tabview/) - * - * @module themes/tabview - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface TabViewDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Transition duration of root - * - * @designToken tabview.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the tab list section - */ - tabList?: { - /** - * Background of tab list - * - * @designToken tabview.tab.list.background - */ - background?: string; - /** - * Border color of tab list - * - * @designToken tabview.tab.list.border.color - */ - borderColor?: string; - }; - /** - * Used to pass tokens of the tab section - */ - tab?: { - /** - * Border color of tab - * - * @designToken tabview.tab.border.color - */ - borderColor?: string; - /** - * Active border color of tab - * - * @designToken tabview.tab.active.border.color - */ - activeBorderColor?: string; - /** - * Color of tab - * - * @designToken tabview.tab.color - */ - color?: string; - /** - * Hover color of tab - * - * @designToken tabview.tab.hover.color - */ - hoverColor?: string; - /** - * Active color of tab - * - * @designToken tabview.tab.active.color - */ - activeColor?: string; - }; - /** - * Used to pass tokens of the tab panel section - */ - tabPanel?: { - /** - * Background of tab panel - * - * @designToken tabview.tab.panel.background - */ - background?: string; - /** - * Color of tab panel - * - * @designToken tabview.tab.panel.color - */ - color?: string; - }; - /** - * Used to pass tokens of the nav button section - */ - navButton?: { - /** - * Background of nav button - * - * @designToken tabview.nav.button.background - */ - background?: string; - /** - * Color of nav button - * - * @designToken tabview.nav.button.color - */ - color?: string; - /** - * Hover color of nav button - * - * @designToken tabview.nav.button.hover.color - */ - hoverColor?: string; - /** - * Box shadow of nav button - * - * @designToken tabview.nav.button.box.shadow - */ - boxShadow?: string; - }; -} diff --git a/components/lib/themes/types/tag/index.d.ts b/components/lib/themes/types/tag/index.d.ts deleted file mode 100644 index 154af3b750..0000000000 --- a/components/lib/themes/types/tag/index.d.ts +++ /dev/null @@ -1,185 +0,0 @@ -/** - * - * Tag Design Tokens - * - * [Live Demo](https://www.primevue.org/tag/) - * - * @module themes/tag - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface TagDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Font size of root - * - * @designToken tag.font.size - */ - fontSize?: string; - /** - * Font weight of root - * - * @designToken tag.font.weight - */ - fontWeight?: string; - /** - * Padding of root - * - * @designToken tag.padding - */ - padding?: string; - /** - * Gap of root - * - * @designToken tag.gap - */ - gap?: string; - /** - * Border radius of root - * - * @designToken tag.border.radius - */ - borderRadius?: string; - /** - * Rounded border radius of root - * - * @designToken tag.rounded.border.radius - */ - roundedBorderRadius?: string; - }; - /** - * Used to pass tokens of the icon section - */ - icon?: { - /** - * Size of icon - * - * @designToken tag.icon.size - */ - size?: string; - }; - /** - * Used to pass tokens of the primary section - */ - primary?: { - /** - * Background of primary - * - * @designToken tag.primary.background - */ - background?: string; - /** - * Color of primary - * - * @designToken tag.primary.color - */ - color?: string; - }; - /** - * Used to pass tokens of the secondary section - */ - secondary?: { - /** - * Background of secondary - * - * @designToken tag.secondary.background - */ - background?: string; - /** - * Color of secondary - * - * @designToken tag.secondary.color - */ - color?: string; - }; - /** - * Used to pass tokens of the success section - */ - success?: { - /** - * Background of success - * - * @designToken tag.success.background - */ - background?: string; - /** - * Color of success - * - * @designToken tag.success.color - */ - color?: string; - }; - /** - * Used to pass tokens of the info section - */ - info?: { - /** - * Background of info - * - * @designToken tag.info.background - */ - background?: string; - /** - * Color of info - * - * @designToken tag.info.color - */ - color?: string; - }; - /** - * Used to pass tokens of the warn section - */ - warn?: { - /** - * Background of warn - * - * @designToken tag.warn.background - */ - background?: string; - /** - * Color of warn - * - * @designToken tag.warn.color - */ - color?: string; - }; - /** - * Used to pass tokens of the danger section - */ - danger?: { - /** - * Background of danger - * - * @designToken tag.danger.background - */ - background?: string; - /** - * Color of danger - * - * @designToken tag.danger.color - */ - color?: string; - }; - /** - * Used to pass tokens of the contrast section - */ - contrast?: { - /** - * Background of contrast - * - * @designToken tag.contrast.background - */ - background?: string; - /** - * Color of contrast - * - * @designToken tag.contrast.color - */ - color?: string; - }; -} diff --git a/components/lib/themes/types/terminal/index.d.ts b/components/lib/themes/types/terminal/index.d.ts deleted file mode 100644 index 771e3d849b..0000000000 --- a/components/lib/themes/types/terminal/index.d.ts +++ /dev/null @@ -1,77 +0,0 @@ -/** - * - * Terminal Design Tokens - * - * [Live Demo](https://www.primevue.org/terminal/) - * - * @module themes/terminal - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface TerminalDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken terminal.background - */ - background?: string; - /** - * Border color of root - * - * @designToken terminal.border.color - */ - borderColor?: string; - /** - * Color of root - * - * @designToken terminal.color - */ - color?: string; - /** - * Height of root - * - * @designToken terminal.height - */ - height?: string; - /** - * Padding of root - * - * @designToken terminal.padding - */ - padding?: string; - /** - * Border radius of root - * - * @designToken terminal.border.radius - */ - borderRadius?: string; - }; - /** - * Used to pass tokens of the prompt section - */ - prompt?: { - /** - * Gap of prompt - * - * @designToken terminal.prompt.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the command response section - */ - commandResponse?: { - /** - * Margin of command response - * - * @designToken terminal.command.response.margin - */ - margin?: string; - }; -} diff --git a/components/lib/themes/types/textarea/index.d.ts b/components/lib/themes/types/textarea/index.d.ts deleted file mode 100644 index bd38b99efb..0000000000 --- a/components/lib/themes/types/textarea/index.d.ts +++ /dev/null @@ -1,150 +0,0 @@ -/** - * - * Textarea Design Tokens - * - * [Live Demo](https://www.primevue.org/textarea/) - * - * @module themes/textarea - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface TextareaDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken textarea.background - */ - background?: string; - /** - * Disabled background of root - * - * @designToken textarea.disabled.background - */ - disabledBackground?: string; - /** - * Filled background of root - * - * @designToken textarea.filled.background - */ - filledBackground?: string; - /** - * Filled focus background of root - * - * @designToken textarea.filled.focus.background - */ - filledFocusBackground?: string; - /** - * Border color of root - * - * @designToken textarea.border.color - */ - borderColor?: string; - /** - * Hover border color of root - * - * @designToken textarea.hover.border.color - */ - hoverBorderColor?: string; - /** - * Focus border color of root - * - * @designToken textarea.focus.border.color - */ - focusBorderColor?: string; - /** - * Invalid border color of root - * - * @designToken textarea.invalid.border.color - */ - invalidBorderColor?: string; - /** - * Color of root - * - * @designToken textarea.color - */ - color?: string; - /** - * Disabled color of root - * - * @designToken textarea.disabled.color - */ - disabledColor?: string; - /** - * Placeholder color of root - * - * @designToken textarea.placeholder.color - */ - placeholderColor?: string; - /** - * Shadow of root - * - * @designToken textarea.shadow - */ - shadow?: string; - /** - * Padding x of root - * - * @designToken textarea.padding.x - */ - paddingX?: string; - /** - * Padding y of root - * - * @designToken textarea.padding.y - */ - paddingY?: string; - /** - * Border radius of root - * - * @designToken textarea.border.radius - */ - borderRadius?: string; - /** - * Focus ring of root - */ - focusRing?: { - /** - * Focus ring width of root - * - * @designToken textarea.focus.ring.width - */ - width?: string; - /** - * Focus ring style of root - * - * @designToken textarea.focus.ring.style - */ - style?: string; - /** - * Focus ring color of root - * - * @designToken textarea.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of root - * - * @designToken textarea.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of root - * - * @designToken textarea.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Transition duration of root - * - * @designToken textarea.transition.duration - */ - transitionDuration?: string; - }; -} diff --git a/components/lib/themes/types/tieredmenu/index.d.ts b/components/lib/themes/types/tieredmenu/index.d.ts deleted file mode 100644 index d90f5f2c88..0000000000 --- a/components/lib/themes/types/tieredmenu/index.d.ts +++ /dev/null @@ -1,217 +0,0 @@ -/** - * - * TieredMenu Design Tokens - * - * [Live Demo](https://www.primevue.org/tieredmenu/) - * - * @module themes/tieredmenu - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface TieredMenuDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken tieredmenu.background - */ - background?: string; - /** - * Border color of root - * - * @designToken tieredmenu.border.color - */ - borderColor?: string; - /** - * Color of root - * - * @designToken tieredmenu.color - */ - color?: string; - /** - * Border radius of root - * - * @designToken tieredmenu.border.radius - */ - borderRadius?: string; - /** - * Shadow of root - * - * @designToken tieredmenu.shadow - */ - shadow?: string; - /** - * Transition duration of root - * - * @designToken tieredmenu.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the list section - */ - list?: { - /** - * Padding of list - * - * @designToken tieredmenu.list.padding - */ - padding?: string; - /** - * Gap of list - * - * @designToken tieredmenu.list.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the item section - */ - item?: { - /** - * Focus background of item - * - * @designToken tieredmenu.item.focus.background - */ - focusBackground?: string; - /** - * Active background of item - * - * @designToken tieredmenu.item.active.background - */ - activeBackground?: string; - /** - * Color of item - * - * @designToken tieredmenu.item.color - */ - color?: string; - /** - * Focus color of item - * - * @designToken tieredmenu.item.focus.color - */ - focusColor?: string; - /** - * Active color of item - * - * @designToken tieredmenu.item.active.color - */ - activeColor?: string; - /** - * Padding of item - * - * @designToken tieredmenu.item.padding - */ - padding?: string; - /** - * Border radius of item - * - * @designToken tieredmenu.item.border.radius - */ - borderRadius?: string; - /** - * Gap of item - * - * @designToken tieredmenu.item.gap - */ - gap?: string; - /** - * Icon of item - */ - icon?: { - /** - * Icon color of item - * - * @designToken tieredmenu.item.icon.color - */ - color?: string; - /** - * Icon focus color of item - * - * @designToken tieredmenu.item.icon.focus.color - */ - focusColor?: string; - /** - * Icon active color of item - * - * @designToken tieredmenu.item.icon.active.color - */ - activeColor?: string; - }; - }; - /** - * Used to pass tokens of the submenu label section - */ - submenuLabel?: { - /** - * Padding of submenu label - * - * @designToken tieredmenu.submenu.label.padding - */ - padding?: string; - /** - * Font weight of submenu label - * - * @designToken tieredmenu.submenu.label.font.weight - */ - fontWeight?: string; - /** - * Background of submenu label - * - * @designToken tieredmenu.submenu.label.background - */ - background?: string; - /** - * Color of submenu label - * - * @designToken tieredmenu.submenu.label.color - */ - color?: string; - }; - /** - * Used to pass tokens of the submenu icon section - */ - submenuIcon?: { - /** - * Size of submenu icon - * - * @designToken tieredmenu.submenu.icon.size - */ - size?: string; - /** - * Color of submenu icon - * - * @designToken tieredmenu.submenu.icon.color - */ - color?: string; - /** - * Focus color of submenu icon - * - * @designToken tieredmenu.submenu.icon.focus.color - */ - focusColor?: string; - /** - * Active color of submenu icon - * - * @designToken tieredmenu.submenu.icon.active.color - */ - activeColor?: string; - }; - /** - * Used to pass tokens of the separator section - */ - separator?: { - /** - * Border color of separator - * - * @designToken tieredmenu.separator.border.color - */ - borderColor?: string; - }; -} diff --git a/components/lib/themes/types/timeline/index.d.ts b/components/lib/themes/types/timeline/index.d.ts deleted file mode 100644 index eadd086b55..0000000000 --- a/components/lib/themes/types/timeline/index.d.ts +++ /dev/null @@ -1,138 +0,0 @@ -/** - * - * Timeline Design Tokens - * - * [Live Demo](https://www.primevue.org/timeline/) - * - * @module themes/timeline - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface TimelineDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the event section - */ - event?: { - /** - * Min height of event - * - * @designToken timeline.event.min.height - */ - minHeight?: string; - }; - /** - * Used to pass tokens of the horizontal section - */ - horizontal?: { - /** - * Event content of horizontal - */ - eventContent?: { - /** - * Event content padding of horizontal - * - * @designToken timeline.horizontal.event.content.padding - */ - padding?: string; - }; - }; - /** - * Used to pass tokens of the vertical section - */ - vertical?: { - /** - * Event content of vertical - */ - eventContent?: { - /** - * Event content padding of vertical - * - * @designToken timeline.vertical.event.content.padding - */ - padding?: string; - }; - }; - /** - * Used to pass tokens of the event marker section - */ - eventMarker?: { - /** - * Size of event marker - * - * @designToken timeline.event.marker.size - */ - size?: string; - /** - * Border radius of event marker - * - * @designToken timeline.event.marker.border.radius - */ - borderRadius?: string; - /** - * Border width of event marker - * - * @designToken timeline.event.marker.border.width - */ - borderWidth?: string; - /** - * Background of event marker - * - * @designToken timeline.event.marker.background - */ - background?: string; - /** - * Border color of event marker - * - * @designToken timeline.event.marker.border.color - */ - borderColor?: string; - /** - * Content of event marker - */ - content?: { - /** - * Content border radius of event marker - * - * @designToken timeline.event.marker.content.border.radius - */ - borderRadius?: string; - /** - * Content size of event marker - * - * @designToken timeline.event.marker.content.size - */ - size?: string; - /** - * Content background of event marker - * - * @designToken timeline.event.marker.content.background - */ - background?: string; - /** - * Content inset shadow of event marker - * - * @designToken timeline.event.marker.content.inset.shadow - */ - insetShadow?: string; - }; - }; - /** - * Used to pass tokens of the event connector section - */ - eventConnector?: { - /** - * Color of event connector - * - * @designToken timeline.event.connector.color - */ - color?: string; - /** - * Size of event connector - * - * @designToken timeline.event.connector.size - */ - size?: string; - }; -} diff --git a/components/lib/themes/types/toast/index.d.ts b/components/lib/themes/types/toast/index.d.ts deleted file mode 100644 index daebb4ffab..0000000000 --- a/components/lib/themes/types/toast/index.d.ts +++ /dev/null @@ -1,586 +0,0 @@ -/** - * - * Toast Design Tokens - * - * [Live Demo](https://www.primevue.org/toast/) - * - * @module themes/toast - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface ToastDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Width of root - * - * @designToken toast.width - */ - width?: string; - /** - * Border radius of root - * - * @designToken toast.border.radius - */ - borderRadius?: string; - /** - * Border width of root - * - * @designToken toast.border.width - */ - borderWidth?: string; - /** - * Transition duration of root - * - * @designToken toast.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the icon section - */ - icon?: { - /** - * Size of icon - * - * @designToken toast.icon.size - */ - size?: string; - }; - /** - * Used to pass tokens of the content section - */ - content?: { - /** - * Padding of content - * - * @designToken toast.content.padding - */ - padding?: string; - /** - * Gap of content - * - * @designToken toast.content.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the text section - */ - text?: { - /** - * Gap of text - * - * @designToken toast.text.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the summary section - */ - summary?: { - /** - * Font weight of summary - * - * @designToken toast.summary.font.weight - */ - fontWeight?: string; - /** - * Font size of summary - * - * @designToken toast.summary.font.size - */ - fontSize?: string; - }; - /** - * Used to pass tokens of the detail section - */ - detail?: { - /** - * Font weight of detail - * - * @designToken toast.detail.font.weight - */ - fontWeight?: string; - /** - * Font size of detail - * - * @designToken toast.detail.font.size - */ - fontSize?: string; - }; - /** - * Used to pass tokens of the close button section - */ - closeButton?: { - /** - * Width of close button - * - * @designToken toast.close.button.width - */ - width?: string; - /** - * Height of close button - * - * @designToken toast.close.button.height - */ - height?: string; - /** - * Border radius of close button - * - * @designToken toast.close.button.border.radius - */ - borderRadius?: string; - /** - * Focus ring of close button - */ - focusRing?: { - /** - * Focus ring width of close button - * - * @designToken toast.close.button.focus.ring.width - */ - width?: string; - /** - * Focus ring style of close button - * - * @designToken toast.close.button.focus.ring.style - */ - style?: string; - /** - * Focus ring offset of close button - * - * @designToken toast.close.button.focus.ring.offset - */ - offset?: string; - }; - }; - /** - * Used to pass tokens of the close icon section - */ - closeIcon?: { - /** - * Size of close icon - * - * @designToken toast.close.icon.size - */ - size?: string; - }; - /** - * Used to pass tokens of the blur section - */ - blur?: { - /** - * 0 of blur - * - * @designToken toast.blur.0 - */ - 0?: string; - /** - * 1 of blur - * - * @designToken toast.blur.1 - */ - 1?: string; - /** - * 2 of blur - * - * @designToken toast.blur.2 - */ - 2?: string; - /** - * 3 of blur - * - * @designToken toast.blur.3 - */ - 3?: string; - /** - * 4 of blur - * - * @designToken toast.blur.4 - */ - 4?: string; - }; - /** - * Used to pass tokens of the info section - */ - info?: { - /** - * Background of info - * - * @designToken toast.info.background - */ - background?: string; - /** - * Border color of info - * - * @designToken toast.info.border.color - */ - borderColor?: string; - /** - * Color of info - * - * @designToken toast.info.color - */ - color?: string; - /** - * Detail color of info - * - * @designToken toast.info.detail.color - */ - detailColor?: string; - /** - * Shadow of info - * - * @designToken toast.info.shadow - */ - shadow?: string; - /** - * Close button of info - */ - closeButton?: { - /** - * Close button hover background of info - * - * @designToken toast.info.close.button.hover.background - */ - hoverBackground?: string; - /** - * Close button focus ring of info - */ - focusRing?: { - /** - * Close button focus ring color of info - * - * @designToken toast.info.close.button.focus.ring.color - */ - color?: string; - /** - * Close button focus ring shadow of info - * - * @designToken toast.info.close.button.focus.ring.shadow - */ - shadow?: string; - }; - }; - }; - /** - * Used to pass tokens of the success section - */ - success?: { - /** - * Background of success - * - * @designToken toast.success.background - */ - background?: string; - /** - * Border color of success - * - * @designToken toast.success.border.color - */ - borderColor?: string; - /** - * Color of success - * - * @designToken toast.success.color - */ - color?: string; - /** - * Detail color of success - * - * @designToken toast.success.detail.color - */ - detailColor?: string; - /** - * Shadow of success - * - * @designToken toast.success.shadow - */ - shadow?: string; - /** - * Close button of success - */ - closeButton?: { - /** - * Close button hover background of success - * - * @designToken toast.success.close.button.hover.background - */ - hoverBackground?: string; - /** - * Close button focus ring of success - */ - focusRing?: { - /** - * Close button focus ring color of success - * - * @designToken toast.success.close.button.focus.ring.color - */ - color?: string; - /** - * Close button focus ring shadow of success - * - * @designToken toast.success.close.button.focus.ring.shadow - */ - shadow?: string; - }; - }; - }; - /** - * Used to pass tokens of the warn section - */ - warn?: { - /** - * Background of warn - * - * @designToken toast.warn.background - */ - background?: string; - /** - * Border color of warn - * - * @designToken toast.warn.border.color - */ - borderColor?: string; - /** - * Color of warn - * - * @designToken toast.warn.color - */ - color?: string; - /** - * Detail color of warn - * - * @designToken toast.warn.detail.color - */ - detailColor?: string; - /** - * Shadow of warn - * - * @designToken toast.warn.shadow - */ - shadow?: string; - /** - * Close button of warn - */ - closeButton?: { - /** - * Close button hover background of warn - * - * @designToken toast.warn.close.button.hover.background - */ - hoverBackground?: string; - /** - * Close button focus ring of warn - */ - focusRing?: { - /** - * Close button focus ring color of warn - * - * @designToken toast.warn.close.button.focus.ring.color - */ - color?: string; - /** - * Close button focus ring shadow of warn - * - * @designToken toast.warn.close.button.focus.ring.shadow - */ - shadow?: string; - }; - }; - }; - /** - * Used to pass tokens of the error section - */ - error?: { - /** - * Background of error - * - * @designToken toast.error.background - */ - background?: string; - /** - * Border color of error - * - * @designToken toast.error.border.color - */ - borderColor?: string; - /** - * Color of error - * - * @designToken toast.error.color - */ - color?: string; - /** - * Detail color of error - * - * @designToken toast.error.detail.color - */ - detailColor?: string; - /** - * Shadow of error - * - * @designToken toast.error.shadow - */ - shadow?: string; - /** - * Close button of error - */ - closeButton?: { - /** - * Close button hover background of error - * - * @designToken toast.error.close.button.hover.background - */ - hoverBackground?: string; - /** - * Close button focus ring of error - */ - focusRing?: { - /** - * Close button focus ring color of error - * - * @designToken toast.error.close.button.focus.ring.color - */ - color?: string; - /** - * Close button focus ring shadow of error - * - * @designToken toast.error.close.button.focus.ring.shadow - */ - shadow?: string; - }; - }; - }; - /** - * Used to pass tokens of the secondary section - */ - secondary?: { - /** - * Background of secondary - * - * @designToken toast.secondary.background - */ - background?: string; - /** - * Border color of secondary - * - * @designToken toast.secondary.border.color - */ - borderColor?: string; - /** - * Color of secondary - * - * @designToken toast.secondary.color - */ - color?: string; - /** - * Detail color of secondary - * - * @designToken toast.secondary.detail.color - */ - detailColor?: string; - /** - * Shadow of secondary - * - * @designToken toast.secondary.shadow - */ - shadow?: string; - /** - * Close button of secondary - */ - closeButton?: { - /** - * Close button hover background of secondary - * - * @designToken toast.secondary.close.button.hover.background - */ - hoverBackground?: string; - /** - * Close button focus ring of secondary - */ - focusRing?: { - /** - * Close button focus ring color of secondary - * - * @designToken toast.secondary.close.button.focus.ring.color - */ - color?: string; - /** - * Close button focus ring shadow of secondary - * - * @designToken toast.secondary.close.button.focus.ring.shadow - */ - shadow?: string; - }; - }; - }; - /** - * Used to pass tokens of the contrast section - */ - contrast?: { - /** - * Background of contrast - * - * @designToken toast.contrast.background - */ - background?: string; - /** - * Border color of contrast - * - * @designToken toast.contrast.border.color - */ - borderColor?: string; - /** - * Color of contrast - * - * @designToken toast.contrast.color - */ - color?: string; - /** - * Detail color of contrast - * - * @designToken toast.contrast.detail.color - */ - detailColor?: string; - /** - * Shadow of contrast - * - * @designToken toast.contrast.shadow - */ - shadow?: string; - /** - * Close button of contrast - */ - closeButton?: { - /** - * Close button hover background of contrast - * - * @designToken toast.contrast.close.button.hover.background - */ - hoverBackground?: string; - /** - * Close button focus ring of contrast - */ - focusRing?: { - /** - * Close button focus ring color of contrast - * - * @designToken toast.contrast.close.button.focus.ring.color - */ - color?: string; - /** - * Close button focus ring shadow of contrast - * - * @designToken toast.contrast.close.button.focus.ring.shadow - */ - shadow?: string; - }; - }; - }; -} diff --git a/components/lib/themes/types/togglebutton/index.d.ts b/components/lib/themes/types/togglebutton/index.d.ts deleted file mode 100644 index f5467f0283..0000000000 --- a/components/lib/themes/types/togglebutton/index.d.ts +++ /dev/null @@ -1,214 +0,0 @@ -/** - * - * ToggleButton Design Tokens - * - * [Live Demo](https://www.primevue.org/togglebutton/) - * - * @module themes/togglebutton - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface ToggleButtonDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Padding of root - * - * @designToken togglebutton.padding - */ - padding?: string; - /** - * Border radius of root - * - * @designToken togglebutton.border.radius - */ - borderRadius?: string; - /** - * Gap of root - * - * @designToken togglebutton.gap - */ - gap?: string; - /** - * Font weight of root - * - * @designToken togglebutton.font.weight - */ - fontWeight?: string; - /** - * Disabled background of root - * - * @designToken togglebutton.disabled.background - */ - disabledBackground?: string; - /** - * Disabled border color of root - * - * @designToken togglebutton.disabled.border.color - */ - disabledBorderColor?: string; - /** - * Disabled color of root - * - * @designToken togglebutton.disabled.color - */ - disabledColor?: string; - /** - * Invalid border color of root - * - * @designToken togglebutton.invalid.border.color - */ - invalidBorderColor?: string; - /** - * Focus ring of root - */ - focusRing?: { - /** - * Focus ring width of root - * - * @designToken togglebutton.focus.ring.width - */ - width?: string; - /** - * Focus ring style of root - * - * @designToken togglebutton.focus.ring.style - */ - style?: string; - /** - * Focus ring color of root - * - * @designToken togglebutton.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of root - * - * @designToken togglebutton.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of root - * - * @designToken togglebutton.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Transition duration of root - * - * @designToken togglebutton.transition.duration - */ - transitionDuration?: string; - /** - * Background of root - * - * @designToken togglebutton.background - */ - background?: string; - /** - * Checked background of root - * - * @designToken togglebutton.checked.background - */ - checkedBackground?: string; - /** - * Hover background of root - * - * @designToken togglebutton.hover.background - */ - hoverBackground?: string; - /** - * Border color of root - * - * @designToken togglebutton.border.color - */ - borderColor?: string; - /** - * Color of root - * - * @designToken togglebutton.color - */ - color?: string; - /** - * Hover color of root - * - * @designToken togglebutton.hover.color - */ - hoverColor?: string; - /** - * Checked color of root - * - * @designToken togglebutton.checked.color - */ - checkedColor?: string; - /** - * Checked border color of root - * - * @designToken togglebutton.checked.border.color - */ - checkedBorderColor?: string; - }; - /** - * Used to pass tokens of the icon section - */ - icon?: { - /** - * Disabled color of icon - * - * @designToken togglebutton.icon.disabled.color - */ - disabledColor?: string; - /** - * Color of icon - * - * @designToken togglebutton.icon.color - */ - color?: string; - /** - * Hover color of icon - * - * @designToken togglebutton.icon.hover.color - */ - hoverColor?: string; - /** - * Checked color of icon - * - * @designToken togglebutton.icon.checked.color - */ - checkedColor?: string; - }; - /** - * Used to pass tokens of the content section - */ - content?: { - /** - * Left of content - * - * @designToken togglebutton.content.left - */ - left?: string; - /** - * Top of content - * - * @designToken togglebutton.content.top - */ - top?: string; - /** - * Checked shadow of content - * - * @designToken togglebutton.content.checked.shadow - */ - checkedShadow?: string; - /** - * Checked background of content - * - * @designToken togglebutton.content.checked.background - */ - checkedBackground?: string; - }; -} diff --git a/components/lib/themes/types/toggleswitch/index.d.ts b/components/lib/themes/types/toggleswitch/index.d.ts deleted file mode 100644 index 5e8bffd42f..0000000000 --- a/components/lib/themes/types/toggleswitch/index.d.ts +++ /dev/null @@ -1,197 +0,0 @@ -/** - * - * ToggleSwitch Design Tokens - * - * [Live Demo](https://www.primevue.org/toggleswitch/) - * - * @module themes/toggleswitch - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface ToggleSwitchDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Width of root - * - * @designToken toggleswitch.width - */ - width?: string; - /** - * Height of root - * - * @designToken toggleswitch.height - */ - height?: string; - /** - * Border radius of root - * - * @designToken toggleswitch.border.radius - */ - borderRadius?: string; - /** - * Gap of root - * - * @designToken toggleswitch.gap - */ - gap?: string; - /** - * Shadow of root - * - * @designToken toggleswitch.shadow - */ - shadow?: string; - /** - * Focus ring of root - */ - focusRing?: { - /** - * Focus ring width of root - * - * @designToken toggleswitch.focus.ring.width - */ - width?: string; - /** - * Focus ring style of root - * - * @designToken toggleswitch.focus.ring.style - */ - style?: string; - /** - * Focus ring color of root - * - * @designToken toggleswitch.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of root - * - * @designToken toggleswitch.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of root - * - * @designToken toggleswitch.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Border width of root - * - * @designToken toggleswitch.border.width - */ - borderWidth?: string; - /** - * Border color of root - * - * @designToken toggleswitch.border.color - */ - borderColor?: string; - /** - * Hover border color of root - * - * @designToken toggleswitch.hover.border.color - */ - hoverBorderColor?: string; - /** - * Checked border color of root - * - * @designToken toggleswitch.checked.border.color - */ - checkedBorderColor?: string; - /** - * Checked hover border color of root - * - * @designToken toggleswitch.checked.hover.border.color - */ - checkedHoverBorderColor?: string; - /** - * Invalid border color of root - * - * @designToken toggleswitch.invalid.border.color - */ - invalidBorderColor?: string; - /** - * Transition duration of root - * - * @designToken toggleswitch.transition.duration - */ - transitionDuration?: string; - /** - * Slide duration of root - * - * @designToken toggleswitch.slide.duration - */ - slideDuration?: string; - /** - * Background of root - * - * @designToken toggleswitch.background - */ - background?: string; - /** - * Hover background of root - * - * @designToken toggleswitch.hover.background - */ - hoverBackground?: string; - /** - * Checked background of root - * - * @designToken toggleswitch.checked.background - */ - checkedBackground?: string; - /** - * Checked hover background of root - * - * @designToken toggleswitch.checked.hover.background - */ - checkedHoverBackground?: string; - }; - /** - * Used to pass tokens of the handle section - */ - handle?: { - /** - * Border radius of handle - * - * @designToken toggleswitch.handle.border.radius - */ - borderRadius?: string; - /** - * Size of handle - * - * @designToken toggleswitch.handle.size - */ - size?: string; - /** - * Background of handle - * - * @designToken toggleswitch.handle.background - */ - background?: string; - /** - * Hover background of handle - * - * @designToken toggleswitch.handle.hover.background - */ - hoverBackground?: string; - /** - * Checked background of handle - * - * @designToken toggleswitch.handle.checked.background - */ - checkedBackground?: string; - /** - * Checked hover background of handle - * - * @designToken toggleswitch.handle.checked.hover.background - */ - checkedHoverBackground?: string; - }; -} diff --git a/components/lib/themes/types/toolbar/index.d.ts b/components/lib/themes/types/toolbar/index.d.ts deleted file mode 100644 index 658bf2a9b9..0000000000 --- a/components/lib/themes/types/toolbar/index.d.ts +++ /dev/null @@ -1,55 +0,0 @@ -/** - * - * Toolbar Design Tokens - * - * [Live Demo](https://www.primevue.org/toolbar/) - * - * @module themes/toolbar - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface ToolbarDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken toolbar.background - */ - background?: string; - /** - * Border color of root - * - * @designToken toolbar.border.color - */ - borderColor?: string; - /** - * Border radius of root - * - * @designToken toolbar.border.radius - */ - borderRadius?: string; - /** - * Color of root - * - * @designToken toolbar.color - */ - color?: string; - /** - * Gap of root - * - * @designToken toolbar.gap - */ - gap?: string; - /** - * Padding of root - * - * @designToken toolbar.padding - */ - padding?: string; - }; -} diff --git a/components/lib/themes/types/tooltip/index.d.ts b/components/lib/themes/types/tooltip/index.d.ts deleted file mode 100644 index 00c5652307..0000000000 --- a/components/lib/themes/types/tooltip/index.d.ts +++ /dev/null @@ -1,61 +0,0 @@ -/** - * - * Tooltip Design Tokens - * - * [Live Demo](https://www.primevue.org/tooltip/) - * - * @module themes/tooltip - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface TooltipDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Max width of root - * - * @designToken tooltip.max.width - */ - maxWidth?: string; - /** - * Gutter of root - * - * @designToken tooltip.gutter - */ - gutter?: string; - /** - * Shadow of root - * - * @designToken tooltip.shadow - */ - shadow?: string; - /** - * Padding of root - * - * @designToken tooltip.padding - */ - padding?: string; - /** - * Border radius of root - * - * @designToken tooltip.border.radius - */ - borderRadius?: string; - /** - * Background of root - * - * @designToken tooltip.background - */ - background?: string; - /** - * Color of root - * - * @designToken tooltip.color - */ - color?: string; - }; -} diff --git a/components/lib/themes/types/tree/index.d.ts b/components/lib/themes/types/tree/index.d.ts deleted file mode 100644 index a035a6d2a0..0000000000 --- a/components/lib/themes/types/tree/index.d.ts +++ /dev/null @@ -1,259 +0,0 @@ -/** - * - * Tree Design Tokens - * - * [Live Demo](https://www.primevue.org/tree/) - * - * @module themes/tree - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface TreeDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken tree.background - */ - background?: string; - /** - * Color of root - * - * @designToken tree.color - */ - color?: string; - /** - * Padding of root - * - * @designToken tree.padding - */ - padding?: string; - /** - * Gap of root - * - * @designToken tree.gap - */ - gap?: string; - /** - * Indent of root - * - * @designToken tree.indent - */ - indent?: string; - /** - * Transition duration of root - * - * @designToken tree.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the node section - */ - node?: { - /** - * Padding of node - * - * @designToken tree.node.padding - */ - padding?: string; - /** - * Border radius of node - * - * @designToken tree.node.border.radius - */ - borderRadius?: string; - /** - * Hover background of node - * - * @designToken tree.node.hover.background - */ - hoverBackground?: string; - /** - * Selected background of node - * - * @designToken tree.node.selected.background - */ - selectedBackground?: string; - /** - * Color of node - * - * @designToken tree.node.color - */ - color?: string; - /** - * Hover color of node - * - * @designToken tree.node.hover.color - */ - hoverColor?: string; - /** - * Selected color of node - * - * @designToken tree.node.selected.color - */ - selectedColor?: string; - /** - * Focus ring of node - */ - focusRing?: { - /** - * Focus ring width of node - * - * @designToken tree.node.focus.ring.width - */ - width?: string; - /** - * Focus ring style of node - * - * @designToken tree.node.focus.ring.style - */ - style?: string; - /** - * Focus ring color of node - * - * @designToken tree.node.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of node - * - * @designToken tree.node.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of node - * - * @designToken tree.node.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Gap of node - * - * @designToken tree.node.gap - */ - gap?: string; - }; - /** - * Used to pass tokens of the node icon section - */ - nodeIcon?: { - /** - * Color of node icon - * - * @designToken tree.node.icon.color - */ - color?: string; - /** - * Hover color of node icon - * - * @designToken tree.node.icon.hover.color - */ - hoverColor?: string; - /** - * Selected color of node icon - * - * @designToken tree.node.icon.selected.color - */ - selectedColor?: string; - }; - /** - * Used to pass tokens of the node toggle button section - */ - nodeToggleButton?: { - /** - * Border radius of node toggle button - * - * @designToken tree.node.toggle.button.border.radius - */ - borderRadius?: string; - /** - * Size of node toggle button - * - * @designToken tree.node.toggle.button.size - */ - size?: string; - /** - * Hover background of node toggle button - * - * @designToken tree.node.toggle.button.hover.background - */ - hoverBackground?: string; - /** - * Selected hover background of node toggle button - * - * @designToken tree.node.toggle.button.selected.hover.background - */ - selectedHoverBackground?: string; - /** - * Color of node toggle button - * - * @designToken tree.node.toggle.button.color - */ - color?: string; - /** - * Hover color of node toggle button - * - * @designToken tree.node.toggle.button.hover.color - */ - hoverColor?: string; - /** - * Selected hover color of node toggle button - * - * @designToken tree.node.toggle.button.selected.hover.color - */ - selectedHoverColor?: string; - /** - * Focus ring of node toggle button - */ - focusRing?: { - /** - * Focus ring width of node toggle button - * - * @designToken tree.node.toggle.button.focus.ring.width - */ - width?: string; - /** - * Focus ring style of node toggle button - * - * @designToken tree.node.toggle.button.focus.ring.style - */ - style?: string; - /** - * Focus ring color of node toggle button - * - * @designToken tree.node.toggle.button.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of node toggle button - * - * @designToken tree.node.toggle.button.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of node toggle button - * - * @designToken tree.node.toggle.button.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Used to pass tokens of the loading icon section - */ - loadingIcon?: { - /** - * Size of loading icon - * - * @designToken tree.loading.icon.size - */ - size?: string; - }; -} diff --git a/components/lib/themes/types/treeselect/index.d.ts b/components/lib/themes/types/treeselect/index.d.ts deleted file mode 100644 index 360c829150..0000000000 --- a/components/lib/themes/types/treeselect/index.d.ts +++ /dev/null @@ -1,235 +0,0 @@ -/** - * - * TreeSelect Design Tokens - * - * [Live Demo](https://www.primevue.org/treeselect/) - * - * @module themes/treeselect - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface TreeSelectDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Background of root - * - * @designToken treeselect.background - */ - background?: string; - /** - * Disabled background of root - * - * @designToken treeselect.disabled.background - */ - disabledBackground?: string; - /** - * Filled background of root - * - * @designToken treeselect.filled.background - */ - filledBackground?: string; - /** - * Filled focus background of root - * - * @designToken treeselect.filled.focus.background - */ - filledFocusBackground?: string; - /** - * Border color of root - * - * @designToken treeselect.border.color - */ - borderColor?: string; - /** - * Hover border color of root - * - * @designToken treeselect.hover.border.color - */ - hoverBorderColor?: string; - /** - * Focus border color of root - * - * @designToken treeselect.focus.border.color - */ - focusBorderColor?: string; - /** - * Invalid border color of root - * - * @designToken treeselect.invalid.border.color - */ - invalidBorderColor?: string; - /** - * Color of root - * - * @designToken treeselect.color - */ - color?: string; - /** - * Disabled color of root - * - * @designToken treeselect.disabled.color - */ - disabledColor?: string; - /** - * Placeholder color of root - * - * @designToken treeselect.placeholder.color - */ - placeholderColor?: string; - /** - * Shadow of root - * - * @designToken treeselect.shadow - */ - shadow?: string; - /** - * Padding x of root - * - * @designToken treeselect.padding.x - */ - paddingX?: string; - /** - * Padding y of root - * - * @designToken treeselect.padding.y - */ - paddingY?: string; - /** - * Border radius of root - * - * @designToken treeselect.border.radius - */ - borderRadius?: string; - /** - * Focus ring of root - */ - focusRing?: { - /** - * Focus ring width of root - * - * @designToken treeselect.focus.ring.width - */ - width?: string; - /** - * Focus ring style of root - * - * @designToken treeselect.focus.ring.style - */ - style?: string; - /** - * Focus ring color of root - * - * @designToken treeselect.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of root - * - * @designToken treeselect.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of root - * - * @designToken treeselect.focus.ring.shadow - */ - shadow?: string; - }; - /** - * Transition duration of root - * - * @designToken treeselect.transition.duration - */ - transitionDuration?: string; - }; - /** - * Used to pass tokens of the dropdown section - */ - dropdown?: { - /** - * Width of dropdown - * - * @designToken treeselect.dropdown.width - */ - width?: string; - /** - * Color of dropdown - * - * @designToken treeselect.dropdown.color - */ - color?: string; - }; - /** - * Used to pass tokens of the overlay section - */ - overlay?: { - /** - * Background of overlay - * - * @designToken treeselect.overlay.background - */ - background?: string; - /** - * Border color of overlay - * - * @designToken treeselect.overlay.border.color - */ - borderColor?: string; - /** - * Border radius of overlay - * - * @designToken treeselect.overlay.border.radius - */ - borderRadius?: string; - /** - * Color of overlay - * - * @designToken treeselect.overlay.color - */ - color?: string; - /** - * Shadow of overlay - * - * @designToken treeselect.overlay.shadow - */ - shadow?: string; - }; - /** - * Used to pass tokens of the tree section - */ - tree?: { - /** - * Padding of tree - * - * @designToken treeselect.tree.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the empty message section - */ - emptyMessage?: { - /** - * Padding of empty message - * - * @designToken treeselect.empty.message.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the chip section - */ - chip?: { - /** - * Border radius of chip - * - * @designToken treeselect.chip.border.radius - */ - borderRadius?: string; - }; -} diff --git a/components/lib/themes/types/treetable/index.d.ts b/components/lib/themes/types/treetable/index.d.ts deleted file mode 100644 index 920c262d70..0000000000 --- a/components/lib/themes/types/treetable/index.d.ts +++ /dev/null @@ -1,553 +0,0 @@ -/** - * - * TreeTable Design Tokens - * - * [Live Demo](https://www.primevue.org/treetable/) - * - * @module themes/treetable - * - */ - -import { ColorSchemeDesignToken } from '..'; - -export interface TreeTableDesignTokens extends ColorSchemeDesignToken { - /** - * Used to pass tokens of the root section - */ - root?: { - /** - * Transition duration of root - * - * @designToken treetable.transition.duration - */ - transitionDuration?: string; - /** - * Border color of root - * - * @designToken treetable.border.color - */ - borderColor?: string; - }; - /** - * Used to pass tokens of the header section - */ - header?: { - /** - * Background of header - * - * @designToken treetable.header.background - */ - background?: string; - /** - * Border color of header - * - * @designToken treetable.header.border.color - */ - borderColor?: string; - /** - * Color of header - * - * @designToken treetable.header.color - */ - color?: string; - /** - * Border width of header - * - * @designToken treetable.header.border.width - */ - borderWidth?: string; - /** - * Padding of header - * - * @designToken treetable.header.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the header cell section - */ - headerCell?: { - /** - * Background of header cell - * - * @designToken treetable.header.cell.background - */ - background?: string; - /** - * Hover background of header cell - * - * @designToken treetable.header.cell.hover.background - */ - hoverBackground?: string; - /** - * Selected background of header cell - * - * @designToken treetable.header.cell.selected.background - */ - selectedBackground?: string; - /** - * Border color of header cell - * - * @designToken treetable.header.cell.border.color - */ - borderColor?: string; - /** - * Color of header cell - * - * @designToken treetable.header.cell.color - */ - color?: string; - /** - * Hover color of header cell - * - * @designToken treetable.header.cell.hover.color - */ - hoverColor?: string; - /** - * Selected color of header cell - * - * @designToken treetable.header.cell.selected.color - */ - selectedColor?: string; - /** - * Gap of header cell - * - * @designToken treetable.header.cell.gap - */ - gap?: string; - /** - * Padding of header cell - * - * @designToken treetable.header.cell.padding - */ - padding?: string; - /** - * Focus ring of header cell - */ - focusRing?: { - /** - * Focus ring width of header cell - * - * @designToken treetable.header.cell.focus.ring.width - */ - width?: string; - /** - * Focus ring style of header cell - * - * @designToken treetable.header.cell.focus.ring.style - */ - style?: string; - /** - * Focus ring color of header cell - * - * @designToken treetable.header.cell.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of header cell - * - * @designToken treetable.header.cell.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of header cell - * - * @designToken treetable.header.cell.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Used to pass tokens of the column title section - */ - columnTitle?: { - /** - * Font weight of column title - * - * @designToken treetable.column.title.font.weight - */ - fontWeight?: string; - }; - /** - * Used to pass tokens of the row section - */ - row?: { - /** - * Background of row - * - * @designToken treetable.row.background - */ - background?: string; - /** - * Hover background of row - * - * @designToken treetable.row.hover.background - */ - hoverBackground?: string; - /** - * Selected background of row - * - * @designToken treetable.row.selected.background - */ - selectedBackground?: string; - /** - * Color of row - * - * @designToken treetable.row.color - */ - color?: string; - /** - * Hover color of row - * - * @designToken treetable.row.hover.color - */ - hoverColor?: string; - /** - * Selected color of row - * - * @designToken treetable.row.selected.color - */ - selectedColor?: string; - /** - * Focus ring of row - */ - focusRing?: { - /** - * Focus ring width of row - * - * @designToken treetable.row.focus.ring.width - */ - width?: string; - /** - * Focus ring style of row - * - * @designToken treetable.row.focus.ring.style - */ - style?: string; - /** - * Focus ring color of row - * - * @designToken treetable.row.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of row - * - * @designToken treetable.row.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of row - * - * @designToken treetable.row.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Used to pass tokens of the body cell section - */ - bodyCell?: { - /** - * Border color of body cell - * - * @designToken treetable.body.cell.border.color - */ - borderColor?: string; - /** - * Padding of body cell - * - * @designToken treetable.body.cell.padding - */ - padding?: string; - /** - * Gap of body cell - * - * @designToken treetable.body.cell.gap - */ - gap?: string; - /** - * Selected border color of body cell - * - * @designToken treetable.body.cell.selected.border.color - */ - selectedBorderColor?: string; - }; - /** - * Used to pass tokens of the footer cell section - */ - footerCell?: { - /** - * Background of footer cell - * - * @designToken treetable.footer.cell.background - */ - background?: string; - /** - * Border color of footer cell - * - * @designToken treetable.footer.cell.border.color - */ - borderColor?: string; - /** - * Color of footer cell - * - * @designToken treetable.footer.cell.color - */ - color?: string; - /** - * Padding of footer cell - * - * @designToken treetable.footer.cell.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the column footer section - */ - columnFooter?: { - /** - * Font weight of column footer - * - * @designToken treetable.column.footer.font.weight - */ - fontWeight?: string; - }; - /** - * Used to pass tokens of the footer section - */ - footer?: { - /** - * Background of footer - * - * @designToken treetable.footer.background - */ - background?: string; - /** - * Border color of footer - * - * @designToken treetable.footer.border.color - */ - borderColor?: string; - /** - * Color of footer - * - * @designToken treetable.footer.color - */ - color?: string; - /** - * Border width of footer - * - * @designToken treetable.footer.border.width - */ - borderWidth?: string; - /** - * Padding of footer - * - * @designToken treetable.footer.padding - */ - padding?: string; - }; - /** - * Used to pass tokens of the column resizer width section - */ - columnResizerWidth?: { - /** - * 0 of column resizer width - * - * @designToken treetable.column.resizer.width.0 - */ - 0?: string; - /** - * 1 of column resizer width - * - * @designToken treetable.column.resizer.width.1 - */ - 1?: string; - /** - * 2 of column resizer width - * - * @designToken treetable.column.resizer.width.2 - */ - 2?: string; - /** - * 3 of column resizer width - * - * @designToken treetable.column.resizer.width.3 - */ - 3?: string; - /** - * 4 of column resizer width - * - * @designToken treetable.column.resizer.width.4 - */ - 4?: string; - /** - * 5 of column resizer width - * - * @designToken treetable.column.resizer.width.5 - */ - 5?: string; - }; - /** - * Used to pass tokens of the resize indicator section - */ - resizeIndicator?: { - /** - * Width of resize indicator - * - * @designToken treetable.resize.indicator.width - */ - width?: string; - /** - * Color of resize indicator - * - * @designToken treetable.resize.indicator.color - */ - color?: string; - }; - /** - * Used to pass tokens of the sort icon section - */ - sortIcon?: { - /** - * Color of sort icon - * - * @designToken treetable.sort.icon.color - */ - color?: string; - /** - * Hover color of sort icon - * - * @designToken treetable.sort.icon.hover.color - */ - hoverColor?: string; - }; - /** - * Used to pass tokens of the loading icon section - */ - loadingIcon?: { - /** - * Size of loading icon - * - * @designToken treetable.loading.icon.size - */ - size?: string; - }; - /** - * Used to pass tokens of the node toggle button section - */ - nodeToggleButton?: { - /** - * Hover background of node toggle button - * - * @designToken treetable.node.toggle.button.hover.background - */ - hoverBackground?: string; - /** - * Selected hover background of node toggle button - * - * @designToken treetable.node.toggle.button.selected.hover.background - */ - selectedHoverBackground?: string; - /** - * Color of node toggle button - * - * @designToken treetable.node.toggle.button.color - */ - color?: string; - /** - * Hover color of node toggle button - * - * @designToken treetable.node.toggle.button.hover.color - */ - hoverColor?: string; - /** - * Selected hover color of node toggle button - * - * @designToken treetable.node.toggle.button.selected.hover.color - */ - selectedHoverColor?: string; - /** - * Size of node toggle button - * - * @designToken treetable.node.toggle.button.size - */ - size?: string; - /** - * Border radius of node toggle button - * - * @designToken treetable.node.toggle.button.border.radius - */ - borderRadius?: string; - /** - * Focus ring of node toggle button - */ - focusRing?: { - /** - * Focus ring width of node toggle button - * - * @designToken treetable.node.toggle.button.focus.ring.width - */ - width?: string; - /** - * Focus ring style of node toggle button - * - * @designToken treetable.node.toggle.button.focus.ring.style - */ - style?: string; - /** - * Focus ring color of node toggle button - * - * @designToken treetable.node.toggle.button.focus.ring.color - */ - color?: string; - /** - * Focus ring offset of node toggle button - * - * @designToken treetable.node.toggle.button.focus.ring.offset - */ - offset?: string; - /** - * Focus ring shadow of node toggle button - * - * @designToken treetable.node.toggle.button.focus.ring.shadow - */ - shadow?: string; - }; - }; - /** - * Used to pass tokens of the paginator top section - */ - paginatorTop?: { - /** - * Border color of paginator top - * - * @designToken treetable.paginator.top.border.color - */ - borderColor?: string; - /** - * Border width of paginator top - * - * @designToken treetable.paginator.top.border.width - */ - borderWidth?: string; - }; - /** - * Used to pass tokens of the paginator bottom section - */ - paginatorBottom?: { - /** - * Border color of paginator bottom - * - * @designToken treetable.paginator.bottom.border.color - */ - borderColor?: string; - /** - * Border width of paginator bottom - * - * @designToken treetable.paginator.bottom.border.width - */ - borderWidth?: string; - }; -} diff --git a/components/lib/themes/utils/index.d.ts b/components/lib/themes/utils/index.d.ts deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/components/lib/themes/utils/package.json b/components/lib/themes/utils/package.json deleted file mode 100644 index 839cff7f9f..0000000000 --- a/components/lib/themes/utils/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./index.mjs", - "module": "./index.mjs", - "types": "./index.d.ts" -} diff --git a/components/lib/tieredmenu/package.json b/components/lib/tieredmenu/package.json deleted file mode 100644 index e8bbf924fc..0000000000 --- a/components/lib/tieredmenu/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./tieredmenu.mjs", - "module": "./tieredmenu.mjs", - "types": "./TieredMenu.d.ts", - "browser": { - "./sfc": "./TieredMenu.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/tieredmenu/style/package.json b/components/lib/tieredmenu/style/package.json deleted file mode 100644 index e53db37e00..0000000000 --- a/components/lib/tieredmenu/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./tieredmenustyle.mjs", - "module": "./tieredmenustyle.mjs", - "types": "./TieredMenuStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/timeline/package.json b/components/lib/timeline/package.json deleted file mode 100644 index f91a083c47..0000000000 --- a/components/lib/timeline/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./timeline.mjs", - "module": "./timeline.mjs", - "types": "./Timeline.d.ts", - "browser": { - "./sfc": "./Timeline.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/timeline/style/package.json b/components/lib/timeline/style/package.json deleted file mode 100644 index 61314bc5e7..0000000000 --- a/components/lib/timeline/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./timelinestyle.mjs", - "module": "./timelinestyle.mjs", - "types": "./TimelineStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/toast/package.json b/components/lib/toast/package.json deleted file mode 100644 index c258493608..0000000000 --- a/components/lib/toast/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./toast.mjs", - "module": "./toast.mjs", - "types": "./Toast.d.ts", - "browser": { - "./sfc": "./Toast.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/toast/style/package.json b/components/lib/toast/style/package.json deleted file mode 100644 index e2ef59c965..0000000000 --- a/components/lib/toast/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./toaststyle.mjs", - "module": "./toaststyle.mjs", - "types": "./ToastStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/toasteventbus/ToastEventBus.js b/components/lib/toasteventbus/ToastEventBus.js deleted file mode 100755 index 602940783d..0000000000 --- a/components/lib/toasteventbus/ToastEventBus.js +++ /dev/null @@ -1,3 +0,0 @@ -import { EventBus } from 'primevue/utils'; - -export default EventBus(); diff --git a/components/lib/toasteventbus/package.json b/components/lib/toasteventbus/package.json deleted file mode 100644 index 9ef508a45d..0000000000 --- a/components/lib/toasteventbus/package.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "main": "./toasteventbus.mjs", - "module": "./toasteventbus.mjs" -} diff --git a/components/lib/toastservice/package.json b/components/lib/toastservice/package.json deleted file mode 100644 index d498786b58..0000000000 --- a/components/lib/toastservice/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./toastservice.mjs", - "module": "./toastservice.mjs", - "types": "./ToastService.d.ts" -} diff --git a/components/lib/togglebutton/package.json b/components/lib/togglebutton/package.json deleted file mode 100644 index 7aab375434..0000000000 --- a/components/lib/togglebutton/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./togglebutton.mjs", - "module": "./togglebutton.mjs", - "types": "./ToggleButton.d.ts", - "browser": { - "./sfc": "./ToggleButton.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/togglebutton/style/package.json b/components/lib/togglebutton/style/package.json deleted file mode 100644 index 4005e4b2c5..0000000000 --- a/components/lib/togglebutton/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./togglebuttonstyle.mjs", - "module": "./togglebuttonstyle.mjs", - "types": "./ToggleButtonStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/toggleswitch/package.json b/components/lib/toggleswitch/package.json deleted file mode 100644 index 6216bb6f97..0000000000 --- a/components/lib/toggleswitch/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./toggleswitch.mjs", - "module": "./toggleswitch.mjs", - "types": "./ToggleSwitch.d.ts", - "browser": { - "./sfc": "./ToggleSwitch.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/toggleswitch/style/package.json b/components/lib/toggleswitch/style/package.json deleted file mode 100644 index 736ddcea02..0000000000 --- a/components/lib/toggleswitch/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./toggleswitchstyle.mjs", - "module": "./toggleswitchstyle.mjs", - "types": "./ToggleSwitchStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/toolbar/package.json b/components/lib/toolbar/package.json deleted file mode 100644 index c31576616d..0000000000 --- a/components/lib/toolbar/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./toolbar.mjs", - "module": "./toolbar.mjs", - "types": "./Toolbar.d.ts", - "browser": { - "./sfc": "./Toolbar.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/toolbar/style/package.json b/components/lib/toolbar/style/package.json deleted file mode 100644 index 0200a60002..0000000000 --- a/components/lib/toolbar/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./toolbarstyle.mjs", - "module": "./toolbarstyle.mjs", - "types": "./ToolbarStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/tooltip/BaseTooltip.js b/components/lib/tooltip/BaseTooltip.js deleted file mode 100644 index 3dce5ee18d..0000000000 --- a/components/lib/tooltip/BaseTooltip.js +++ /dev/null @@ -1,8 +0,0 @@ -import BaseDirective from 'primevue/basedirective'; -import TooltipStyle from 'primevue/tooltip/style'; - -const BaseTooltip = BaseDirective.extend({ - style: TooltipStyle -}); - -export default BaseTooltip; diff --git a/components/lib/tooltip/package.json b/components/lib/tooltip/package.json deleted file mode 100644 index fc33c8ca2b..0000000000 --- a/components/lib/tooltip/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./tooltip.mjs", - "module": "./tooltip.mjs", - "types": "./Tooltip.d.ts" -} diff --git a/components/lib/tooltip/style/package.json b/components/lib/tooltip/style/package.json deleted file mode 100644 index a0bdda460a..0000000000 --- a/components/lib/tooltip/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./tooltipstyle.mjs", - "module": "./tooltipstyle.mjs", - "types": "./TooltipStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/tree/package.json b/components/lib/tree/package.json deleted file mode 100644 index 0a997c025c..0000000000 --- a/components/lib/tree/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./tree.mjs", - "module": "./tree.mjs", - "types": "./Tree.d.ts", - "browser": { - "./sfc": "./Tree.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/tree/style/package.json b/components/lib/tree/style/package.json deleted file mode 100644 index 0f38415d4a..0000000000 --- a/components/lib/tree/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./treestyle.mjs", - "module": "./treestyle.mjs", - "types": "./TreeStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/treeselect/package.json b/components/lib/treeselect/package.json deleted file mode 100644 index 1cec8b218c..0000000000 --- a/components/lib/treeselect/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./treeselect.mjs", - "module": "./treeselect.mjs", - "types": "./TreeSelect.d.ts", - "browser": { - "./sfc": "./TreeSelect.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/treeselect/style/package.json b/components/lib/treeselect/style/package.json deleted file mode 100644 index 6f793edddb..0000000000 --- a/components/lib/treeselect/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./treeselectstyle.mjs", - "module": "./treeselectstyle.mjs", - "types": "./TreeSelectStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/treetable/BodyCell.vue b/components/lib/treetable/BodyCell.vue deleted file mode 100644 index 96c990f026..0000000000 --- a/components/lib/treetable/BodyCell.vue +++ /dev/null @@ -1,234 +0,0 @@ - - - diff --git a/components/lib/treetable/FooterCell.vue b/components/lib/treetable/FooterCell.vue deleted file mode 100644 index 320fcd7373..0000000000 --- a/components/lib/treetable/FooterCell.vue +++ /dev/null @@ -1,104 +0,0 @@ - - - diff --git a/components/lib/treetable/HeaderCell.vue b/components/lib/treetable/HeaderCell.vue deleted file mode 100644 index 865af0757f..0000000000 --- a/components/lib/treetable/HeaderCell.vue +++ /dev/null @@ -1,242 +0,0 @@ - - - diff --git a/components/lib/treetable/package.json b/components/lib/treetable/package.json deleted file mode 100644 index 70dd0520d9..0000000000 --- a/components/lib/treetable/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./treetable.mjs", - "module": "./treetable.mjs", - "types": "./TreeTable.d.ts", - "browser": { - "./sfc": "./TreeTable.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/treetable/style/package.json b/components/lib/treetable/style/package.json deleted file mode 100644 index 3bcf06798f..0000000000 --- a/components/lib/treetable/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./treetablestyle.mjs", - "module": "./treetablestyle.mjs", - "types": "./TreeTableStyle.d.ts", - "sideEffects": false -} diff --git a/components/lib/ts-helpers.d.ts b/components/lib/ts-helpers.d.ts deleted file mode 100644 index ac3e125000..0000000000 --- a/components/lib/ts-helpers.d.ts +++ /dev/null @@ -1,42 +0,0 @@ -import { AllowedComponentProps, ComponentCustomProps, MethodOptions, ObjectEmitsOptions, SlotsType, VNode, VNodeProps, DefineComponent as _DefineComponent } from 'vue'; - -declare type PublicProps = VNodeProps & AllowedComponentProps & ComponentCustomProps; - -declare type UnionToIntersection = (U extends any ? (k: U) => void : never) extends (k: infer I) => void ? I : never; - -export declare type EmitFn = Options extends Array - ? (e: V, ...args: any[]) => void - : {} extends Options - ? (e: string, ...args: any[]) => void - : UnionToIntersection< - { - [key in Event]: Options[key] extends (...args: infer Args) => any ? (e: key, ...args: Args) => void : (e: key, ...args: any[]) => void; - }[Event] - >; - -export type DefineComponent

= _DefineComponent; - -export type GlobalComponentConstructor

= { - new (): { - $props: P & PublicProps; - $slots: S; - $emit: E; - } & M; -}; - -/** - * Custom types - */ -export declare type Booleanish = boolean | 'true' | 'false'; - -export declare type Numberish = number | string; - -export declare type Nullable = T | null | undefined; - -export declare type PassThrough = T | object | undefined; - -export declare type DesignToken = T | object | undefined; - -export declare type DefaultPassThrough = T | ((instance?: VNode) => T | undefined) | undefined; - -export declare type HintedString = (string & {}) | T; diff --git a/components/lib/useconfirm/package.json b/components/lib/useconfirm/package.json deleted file mode 100644 index c920e8efc6..0000000000 --- a/components/lib/useconfirm/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./useconfirm.mjs", - "module": "./useconfirm.mjs", - "types": "./UseConfirm.d.ts" -} diff --git a/components/lib/usedialog/package.json b/components/lib/usedialog/package.json deleted file mode 100644 index 4945e3dd43..0000000000 --- a/components/lib/usedialog/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./usedialog.mjs", - "module": "./usedialog.mjs", - "types": "./UseDialog.d.ts" -} diff --git a/components/lib/usestyle/UseStyle.js b/components/lib/usestyle/UseStyle.js deleted file mode 100644 index 6907be85cc..0000000000 --- a/components/lib/usestyle/UseStyle.js +++ /dev/null @@ -1,99 +0,0 @@ -/* - * Ported from useStyleTag in @vueuse/core - * https://github.com/vueuse - */ -import { DomHandler } from 'primevue/utils'; -import { getCurrentInstance, nextTick, onMounted, readonly, ref, watch } from 'vue'; - -function tryOnMounted(fn, sync = true) { - if (getCurrentInstance()) onMounted(fn); - else if (sync) fn(); - else nextTick(fn); -} - -let _id = 0; - -export function useStyle(css, options = {}) { - const isLoaded = ref(false); - const cssRef = ref(css); - const styleRef = ref(null); - - const defaultDocument = DomHandler.isClient() ? window.document : undefined; - const { - document = defaultDocument, - immediate = true, - manual = false, - name = `style_${++_id}`, - id = undefined, - media = undefined, - nonce = undefined, - first = false, - onMounted: onStyleMounted = undefined, - onUpdated: onStyleUpdated = undefined, - onLoad: onStyleLoaded = undefined, - props = {} - } = options; - - let stop = () => {}; - - /* @todo: Improve _options params */ - const load = (_css, _props = {}) => { - if (!document) return; - - const _styleProps = { ...props, ..._props }; - const [_name, _id, _nonce] = [_styleProps.name || name, _styleProps.id || id, _styleProps.nonce || nonce]; - - styleRef.value = document.querySelector(`style[data-primevue-style-id="${_name}"]`) || document.getElementById(_id) || document.createElement('style'); - - if (!styleRef.value.isConnected) { - cssRef.value = _css || css; - - DomHandler.setAttributes(styleRef.value, { - type: 'text/css', - id: _id, - media, - nonce: _nonce - }); - first ? document.head.prepend(styleRef.value) : document.head.appendChild(styleRef.value); - DomHandler.setAttribute(styleRef.value, 'data-primevue-style-id', _name); - DomHandler.setAttributes(styleRef.value, _styleProps); - styleRef.value.onload = (event) => onStyleLoaded?.(event, { name: _name }); - onStyleMounted?.(_name); - } - - if (isLoaded.value) return; - - stop = watch( - cssRef, - (value) => { - styleRef.value.textContent = value; - onStyleUpdated?.(_name); - }, - { immediate: true } - ); - - isLoaded.value = true; - }; - - const unload = () => { - if (!document || !isLoaded.value) return; - stop(); - DomHandler.isExist(styleRef.value) && document.head.removeChild(styleRef.value); - isLoaded.value = false; - }; - - if (immediate && !manual) tryOnMounted(load); - - /*if (!manual) - tryOnScopeDispose(unload)*/ - - return { - id, - name, - el: styleRef, - css: cssRef, - unload, - load, - isLoaded: readonly(isLoaded) - }; -} diff --git a/components/lib/usestyle/package.json b/components/lib/usestyle/package.json deleted file mode 100644 index 92f914dfcb..0000000000 --- a/components/lib/usestyle/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./usestyle.mjs", - "module": "./usestyle.mjs", - "types": "./UseStyle.d.ts" -} diff --git a/components/lib/usetoast/package.json b/components/lib/usetoast/package.json deleted file mode 100644 index 231ebbd420..0000000000 --- a/components/lib/usetoast/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./usetoast.mjs", - "module": "./usetoast.mjs", - "types": "./UseToast.d.ts" -} diff --git a/components/lib/utils/DomHandler.js b/components/lib/utils/DomHandler.js deleted file mode 100755 index 0a8e2a06c8..0000000000 --- a/components/lib/utils/DomHandler.js +++ /dev/null @@ -1,862 +0,0 @@ -import { $dt } from 'primevue/themes'; - -export default { - innerWidth(el) { - if (el) { - let width = el.offsetWidth; - let style = getComputedStyle(el); - - width += parseFloat(style.paddingLeft) + parseFloat(style.paddingRight); - - return width; - } - - return 0; - }, - - width(el) { - if (el) { - let width = el.offsetWidth; - let style = getComputedStyle(el); - - width -= parseFloat(style.paddingLeft) + parseFloat(style.paddingRight); - - return width; - } - - return 0; - }, - - getWindowScrollTop() { - let doc = document.documentElement; - - return (window.pageYOffset || doc.scrollTop) - (doc.clientTop || 0); - }, - - getWindowScrollLeft() { - let doc = document.documentElement; - - return (window.pageXOffset || doc.scrollLeft) - (doc.clientLeft || 0); - }, - - getOuterWidth(el, margin) { - if (el) { - let width = el.offsetWidth; - - if (margin) { - let style = getComputedStyle(el); - - width += parseFloat(style.marginLeft) + parseFloat(style.marginRight); - } - - return width; - } - - return 0; - }, - - getOuterHeight(el, margin) { - if (el) { - let height = el.offsetHeight; - - if (margin) { - let style = getComputedStyle(el); - - height += parseFloat(style.marginTop) + parseFloat(style.marginBottom); - } - - return height; - } - - return 0; - }, - - getClientHeight(el, margin) { - if (el) { - let height = el.clientHeight; - - if (margin) { - let style = getComputedStyle(el); - - height += parseFloat(style.marginTop) + parseFloat(style.marginBottom); - } - - return height; - } - - return 0; - }, - - getViewport() { - let win = window, - d = document, - e = d.documentElement, - g = d.getElementsByTagName('body')[0], - w = win.innerWidth || e.clientWidth || g.clientWidth, - h = win.innerHeight || e.clientHeight || g.clientHeight; - - return { width: w, height: h }; - }, - - getOffset(el) { - if (el) { - let rect = el.getBoundingClientRect(); - - return { - top: rect.top + (window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0), - left: rect.left + (window.pageXOffset || document.documentElement.scrollLeft || document.body.scrollLeft || 0) - }; - } - - return { - top: 'auto', - left: 'auto' - }; - }, - - index(element) { - if (element) { - let children = this.getParentNode(element)?.childNodes; - let num = 0; - - for (let i = 0; i < children.length; i++) { - if (children[i] === element) return num; - if (children[i].nodeType === 1) num++; - } - } - - return -1; - }, - - addMultipleClasses(element, classNames) { - if (element && classNames) { - [classNames] - .flat() - .filter(Boolean) - .forEach((cNames) => cNames.split(' ').forEach((className) => this.addClass(element, className))); - } - }, - - removeMultipleClasses(element, classNames) { - if (element && classNames) { - [classNames] - .flat() - .filter(Boolean) - .forEach((cNames) => cNames.split(' ').forEach((className) => this.removeClass(element, className))); - } - }, - - addClass(element, className) { - if (element && className && !this.hasClass(element, className)) { - if (element.classList) element.classList.add(className); - else element.className += ' ' + className; - } - }, - - removeClass(element, className) { - if (element && className) { - if (element.classList) element.classList.remove(className); - else element.className = element.className.replace(new RegExp('(^|\\b)' + className.split(' ').join('|') + '(\\b|$)', 'gi'), ' '); - } - }, - - hasClass(element, className) { - if (element) { - if (element.classList) return element.classList.contains(className); - else return new RegExp('(^| )' + className + '( |$)', 'gi').test(element.className); - } - - return false; - }, - - addStyles(element, styles = {}) { - if (element) { - Object.entries(styles).forEach(([key, value]) => (element.style[key] = value)); - } - }, - - find(element, selector) { - return this.isElement(element) ? element.querySelectorAll(selector) : []; - }, - - findSingle(element, selector) { - return this.isElement(element) ? (element.matches(selector) ? element : element.querySelector(selector)) : null; - }, - - createElement(type, attributes = {}, ...children) { - if (type) { - const element = document.createElement(type); - - this.setAttributes(element, attributes); - element.append(...children); - - return element; - } - - return undefined; - }, - - setAttribute(element, attribute = '', value) { - if (this.isElement(element) && value !== null && value !== undefined) { - element.setAttribute(attribute, value); - } - }, - - setAttributes(element, attributes = {}) { - if (this.isElement(element)) { - const computedStyles = (rule, value) => { - const styles = element?.$attrs?.[rule] ? [element?.$attrs?.[rule]] : []; - - return [value].flat().reduce((cv, v) => { - if (v !== null && v !== undefined) { - const type = typeof v; - - if (type === 'string' || type === 'number') { - cv.push(v); - } else if (type === 'object') { - const _cv = Array.isArray(v) - ? computedStyles(rule, v) - : Object.entries(v).map(([_k, _v]) => (rule === 'style' && (!!_v || _v === 0) ? `${_k.replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase()}:${_v}` : !!_v ? _k : undefined)); - - cv = _cv.length ? cv.concat(_cv.filter((c) => !!c)) : cv; - } - } - - return cv; - }, styles); - }; - - Object.entries(attributes).forEach(([key, value]) => { - if (value !== undefined && value !== null) { - const matchedEvent = key.match(/^on(.+)/); - - if (matchedEvent) { - element.addEventListener(matchedEvent[1].toLowerCase(), value); - } else if (key === 'p-bind') { - this.setAttributes(element, value); - } else { - value = key === 'class' ? [...new Set(computedStyles('class', value))].join(' ').trim() : key === 'style' ? computedStyles('style', value).join(';').trim() : value; - (element.$attrs = element.$attrs || {}) && (element.$attrs[key] = value); - element.setAttribute(key, value); - } - } - }); - } - }, - - getAttribute(element, name) { - if (this.isElement(element)) { - const value = element.getAttribute(name); - - if (!isNaN(value)) { - return +value; - } - - if (value === 'true' || value === 'false') { - return value === 'true'; - } - - return value; - } - - return undefined; - }, - - isAttributeEquals(element, name, value) { - return this.isElement(element) ? this.getAttribute(element, name) === value : false; - }, - - isAttributeNotEquals(element, name, value) { - return !this.isAttributeEquals(element, name, value); - }, - - getHeight(el) { - if (el) { - let height = el.offsetHeight; - let style = getComputedStyle(el); - - height -= parseFloat(style.paddingTop) + parseFloat(style.paddingBottom) + parseFloat(style.borderTopWidth) + parseFloat(style.borderBottomWidth); - - return height; - } - - return 0; - }, - - getWidth(el) { - if (el) { - let width = el.offsetWidth; - let style = getComputedStyle(el); - - width -= parseFloat(style.paddingLeft) + parseFloat(style.paddingRight) + parseFloat(style.borderLeftWidth) + parseFloat(style.borderRightWidth); - - return width; - } - - return 0; - }, - - absolutePosition(element, target, gutter = true) { - if (element) { - const elementDimensions = element.offsetParent ? { width: element.offsetWidth, height: element.offsetHeight } : this.getHiddenElementDimensions(element); - const elementOuterHeight = elementDimensions.height; - const elementOuterWidth = elementDimensions.width; - const targetOuterHeight = target.offsetHeight; - const targetOuterWidth = target.offsetWidth; - const targetOffset = target.getBoundingClientRect(); - const windowScrollTop = this.getWindowScrollTop(); - const windowScrollLeft = this.getWindowScrollLeft(); - const viewport = this.getViewport(); - let top, - left, - origin = 'top'; - - if (targetOffset.top + targetOuterHeight + elementOuterHeight > viewport.height) { - top = targetOffset.top + windowScrollTop - elementOuterHeight; - origin = 'bottom'; - - if (top < 0) { - top = windowScrollTop; - } - } else { - top = targetOuterHeight + targetOffset.top + windowScrollTop; - } - - if (targetOffset.left + elementOuterWidth > viewport.width) left = Math.max(0, targetOffset.left + windowScrollLeft + targetOuterWidth - elementOuterWidth); - else left = targetOffset.left + windowScrollLeft; - - element.style.top = top + 'px'; - element.style.left = left + 'px'; - element.style.transformOrigin = origin; - gutter && (element.style.marginTop = origin === 'bottom' ? `calc(${$dt('anchor.gutter', '2px').variable} * -1)` : $dt('anchor.gutter').variable); - } - }, - - relativePosition(element, target, gutter = true) { - if (element) { - const elementDimensions = element.offsetParent ? { width: element.offsetWidth, height: element.offsetHeight } : this.getHiddenElementDimensions(element); - const targetHeight = target.offsetHeight; - const targetOffset = target.getBoundingClientRect(); - const viewport = this.getViewport(); - let top, - left, - origin = 'top'; - - if (targetOffset.top + targetHeight + elementDimensions.height > viewport.height) { - top = -1 * elementDimensions.height; - origin = 'bottom'; - - if (targetOffset.top + top < 0) { - top = -1 * targetOffset.top; - } - } else { - top = targetHeight; - } - - if (elementDimensions.width > viewport.width) { - // element wider then viewport and cannot fit on screen (align at left side of viewport) - left = targetOffset.left * -1; - } else if (targetOffset.left + elementDimensions.width > viewport.width) { - // element wider then viewport but can be fit on screen (align at right side of viewport) - left = (targetOffset.left + elementDimensions.width - viewport.width) * -1; - } else { - // element fits on screen (align with target) - left = 0; - } - - element.style.top = top + 'px'; - element.style.left = left + 'px'; - element.style.transformOrigin = origin; - gutter && (element.style.marginTop = origin === 'bottom' ? `calc(${$dt('anchor.gutter', '2px').variable} * -1)` : $dt('anchor.gutter').variable); - } - }, - - nestedPosition(element, level) { - if (element) { - const parentItem = element.parentElement; - const elementOffset = this.getOffset(parentItem); - const viewport = this.getViewport(); - const sublistWidth = element.offsetParent ? element.offsetWidth : this.getHiddenElementOuterWidth(element); - const itemOuterWidth = this.getOuterWidth(parentItem.children[0]); - let left; - - if (parseInt(elementOffset.left, 10) + itemOuterWidth + sublistWidth > viewport.width - this.calculateScrollbarWidth()) { - if (parseInt(elementOffset.left, 10) < sublistWidth) { - // for too small screens - if (level % 2 === 1) { - left = parseInt(elementOffset.left, 10) ? '-' + parseInt(elementOffset.left, 10) + 'px' : '100%'; - } else if (level % 2 === 0) { - left = viewport.width - sublistWidth - this.calculateScrollbarWidth() + 'px'; - } - } else { - left = '-100%'; - } - } else { - left = '100%'; - } - - element.style.top = '0px'; - element.style.left = left; - } - }, - - getParentNode(element) { - let parent = element?.parentNode; - - if (parent && parent instanceof ShadowRoot && parent.host) { - parent = parent.host; - } - - return parent; - }, - - getParents(element, parents = []) { - const parent = this.getParentNode(element); - - return parent === null ? parents : this.getParents(parent, parents.concat([parent])); - }, - - getScrollableParents(element) { - let scrollableParents = []; - - if (element) { - let parents = this.getParents(element); - const overflowRegex = /(auto|scroll)/; - - const overflowCheck = (node) => { - try { - let styleDeclaration = window['getComputedStyle'](node, null); - - return overflowRegex.test(styleDeclaration.getPropertyValue('overflow')) || overflowRegex.test(styleDeclaration.getPropertyValue('overflowX')) || overflowRegex.test(styleDeclaration.getPropertyValue('overflowY')); - } catch (err) { - return false; - } - }; - - for (let parent of parents) { - let scrollSelectors = parent.nodeType === 1 && parent.dataset['scrollselectors']; - - if (scrollSelectors) { - let selectors = scrollSelectors.split(','); - - for (let selector of selectors) { - let el = this.findSingle(parent, selector); - - if (el && overflowCheck(el)) { - scrollableParents.push(el); - } - } - } - - if (parent.nodeType !== 9 && overflowCheck(parent)) { - scrollableParents.push(parent); - } - } - } - - return scrollableParents; - }, - - getHiddenElementOuterHeight(element) { - if (element) { - element.style.visibility = 'hidden'; - element.style.display = 'block'; - let elementHeight = element.offsetHeight; - - element.style.display = 'none'; - element.style.visibility = 'visible'; - - return elementHeight; - } - - return 0; - }, - - getHiddenElementOuterWidth(element) { - if (element) { - element.style.visibility = 'hidden'; - element.style.display = 'block'; - let elementWidth = element.offsetWidth; - - element.style.display = 'none'; - element.style.visibility = 'visible'; - - return elementWidth; - } - - return 0; - }, - - getHiddenElementDimensions(element) { - if (element) { - let dimensions = {}; - - element.style.visibility = 'hidden'; - element.style.display = 'block'; - dimensions.width = element.offsetWidth; - dimensions.height = element.offsetHeight; - element.style.display = 'none'; - element.style.visibility = 'visible'; - - return dimensions; - } - - return 0; - }, - - fadeIn(element, duration) { - if (element) { - element.style.opacity = 0; - - let last = +new Date(); - let opacity = 0; - - let tick = function () { - opacity = +element.style.opacity + (new Date().getTime() - last) / duration; - element.style.opacity = opacity; - last = +new Date(); - - if (+opacity < 1) { - (window.requestAnimationFrame && requestAnimationFrame(tick)) || setTimeout(tick, 16); - } - }; - - tick(); - } - }, - - fadeOut(element, ms) { - if (element) { - let opacity = 1, - interval = 50, - duration = ms, - gap = interval / duration; - - let fading = setInterval(() => { - opacity -= gap; - - if (opacity <= 0) { - opacity = 0; - clearInterval(fading); - } - - element.style.opacity = opacity; - }, interval); - } - }, - - getUserAgent() { - return navigator.userAgent; - }, - - appendChild(element, target) { - if (this.isElement(target)) target.appendChild(element); - else if (target.el && target.elElement) target.elElement.appendChild(element); - else throw new Error('Cannot append ' + target + ' to ' + element); - }, - - isElement(obj) { - return typeof HTMLElement === 'object' ? obj instanceof HTMLElement : obj && typeof obj === 'object' && obj !== null && obj.nodeType === 1 && typeof obj.nodeName === 'string'; - }, - - scrollInView(container, item) { - let borderTopValue = getComputedStyle(container).getPropertyValue('borderTopWidth'); - let borderTop = borderTopValue ? parseFloat(borderTopValue) : 0; - let paddingTopValue = getComputedStyle(container).getPropertyValue('paddingTop'); - let paddingTop = paddingTopValue ? parseFloat(paddingTopValue) : 0; - let containerRect = container.getBoundingClientRect(); - let itemRect = item.getBoundingClientRect(); - let offset = itemRect.top + document.body.scrollTop - (containerRect.top + document.body.scrollTop) - borderTop - paddingTop; - let scroll = container.scrollTop; - let elementHeight = container.clientHeight; - let itemHeight = this.getOuterHeight(item); - - if (offset < 0) { - container.scrollTop = scroll + offset; - } else if (offset + itemHeight > elementHeight) { - container.scrollTop = scroll + offset - elementHeight + itemHeight; - } - }, - - clearSelection() { - if (window.getSelection) { - if (window.getSelection().empty) { - window.getSelection().empty(); - } else if (window.getSelection().removeAllRanges && window.getSelection().rangeCount > 0 && window.getSelection().getRangeAt(0).getClientRects().length > 0) { - window.getSelection().removeAllRanges(); - } - } else if (document['selection'] && document['selection'].empty) { - try { - document['selection'].empty(); - } catch (error) { - //ignore IE bug - } - } - }, - - getSelection() { - if (window.getSelection) return window.getSelection().toString(); - else if (document.getSelection) return document.getSelection().toString(); - else if (document['selection']) return document['selection'].createRange().text; - - return null; - }, - - calculateScrollbarWidth() { - if (this.calculatedScrollbarWidth != null) return this.calculatedScrollbarWidth; - - let scrollDiv = document.createElement('div'); - - this.addStyles(scrollDiv, { - width: '100px', - height: '100px', - overflow: 'scroll', - position: 'absolute', - top: '-9999px' - }); - document.body.appendChild(scrollDiv); - - let scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth; - - document.body.removeChild(scrollDiv); - - this.calculatedScrollbarWidth = scrollbarWidth; - - return scrollbarWidth; - }, - - calculateBodyScrollbarWidth() { - return window.innerWidth - document.documentElement.offsetWidth; - }, - - getBrowser() { - if (!this.browser) { - let matched = this.resolveUserAgent(); - - this.browser = {}; - - if (matched.browser) { - this.browser[matched.browser] = true; - this.browser['version'] = matched.version; - } - - if (this.browser['chrome']) { - this.browser['webkit'] = true; - } else if (this.browser['webkit']) { - this.browser['safari'] = true; - } - } - - return this.browser; - }, - - resolveUserAgent() { - let ua = navigator.userAgent.toLowerCase(); - let match = /(chrome)[ ]([\w.]+)/.exec(ua) || /(webkit)[ ]([\w.]+)/.exec(ua) || /(opera)(?:.*version|)[ ]([\w.]+)/.exec(ua) || /(msie) ([\w.]+)/.exec(ua) || (ua.indexOf('compatible') < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua)) || []; - - return { - browser: match[1] || '', - version: match[2] || '0' - }; - }, - - isVisible(element) { - return element && element.offsetParent != null; - }, - - invokeElementMethod(element, methodName, args) { - element[methodName].apply(element, args); - }, - - isExist(element) { - return !!(element !== null && typeof element !== 'undefined' && element.nodeName && this.getParentNode(element)); - }, - - isClient() { - return !!(typeof window !== 'undefined' && window.document && window.document.createElement); - }, - - focus(el, options) { - el && document.activeElement !== el && el.focus(options); - }, - - isFocusableElement(element, selector = '') { - return this.isElement(element) - ? element.matches(`button:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${selector}, - [href][clientHeight][clientWidth]:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${selector}, - input:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${selector}, - select:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${selector}, - textarea:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${selector}, - [tabIndex]:not([tabIndex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${selector}, - [contenteditable]:not([tabIndex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${selector}`) - : false; - }, - - getFocusableElements(element, selector = '') { - let focusableElements = this.find( - element, - `button:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${selector}, - [href][clientHeight][clientWidth]:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${selector}, - input:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${selector}, - select:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${selector}, - textarea:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${selector}, - [tabIndex]:not([tabIndex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${selector}, - [contenteditable]:not([tabIndex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${selector}` - ); - - let visibleFocusableElements = []; - - for (let focusableElement of focusableElements) { - if (getComputedStyle(focusableElement).display != 'none' && getComputedStyle(focusableElement).visibility != 'hidden') visibleFocusableElements.push(focusableElement); - } - - return visibleFocusableElements; - }, - - getFirstFocusableElement(element, selector) { - const focusableElements = this.getFocusableElements(element, selector); - - return focusableElements.length > 0 ? focusableElements[0] : null; - }, - - getLastFocusableElement(element, selector) { - const focusableElements = this.getFocusableElements(element, selector); - - return focusableElements.length > 0 ? focusableElements[focusableElements.length - 1] : null; - }, - - getNextFocusableElement(container, element, selector) { - const focusableElements = this.getFocusableElements(container, selector); - const index = focusableElements.length > 0 ? focusableElements.findIndex((el) => el === element) : -1; - const nextIndex = index > -1 && focusableElements.length >= index + 1 ? index + 1 : -1; - - return nextIndex > -1 ? focusableElements[nextIndex] : null; - }, - - getPreviousElementSibling(element, selector) { - let previousElement = element.previousElementSibling; - - while (previousElement) { - if (previousElement.matches(selector)) { - return previousElement; - } else { - previousElement = previousElement.previousElementSibling; - } - } - - return null; - }, - - getNextElementSibling(element, selector) { - let nextElement = element.nextElementSibling; - - while (nextElement) { - if (nextElement.matches(selector)) { - return nextElement; - } else { - nextElement = nextElement.nextElementSibling; - } - } - - return null; - }, - - isClickable(element) { - if (element) { - const targetNode = element.nodeName; - const parentNode = element.parentElement && element.parentElement.nodeName; - - return ( - targetNode === 'INPUT' || - targetNode === 'TEXTAREA' || - targetNode === 'BUTTON' || - targetNode === 'A' || - parentNode === 'INPUT' || - parentNode === 'TEXTAREA' || - parentNode === 'BUTTON' || - parentNode === 'A' || - !!element.closest('.p-button, .p-checkbox, .p-radiobutton') // @todo Add [data-pc-section="button"] - ); - } - - return false; - }, - - applyStyle(element, style) { - if (typeof style === 'string') { - element.style.cssText = style; - } else { - for (let prop in style) { - element.style[prop] = style[prop]; - } - } - }, - - isIOS() { - return /iPad|iPhone|iPod/.test(navigator.userAgent) && !window['MSStream']; - }, - - isAndroid() { - return /(android)/i.test(navigator.userAgent); - }, - - isTouchDevice() { - return 'ontouchstart' in window || navigator.maxTouchPoints > 0 || navigator.msMaxTouchPoints > 0; - }, - - hasCSSAnimation(element) { - if (element) { - const style = getComputedStyle(element); - const animationDuration = parseFloat(style.getPropertyValue('animation-duration') || '0'); - - return animationDuration > 0; - } - - return false; - }, - - hasCSSTransition(element) { - if (element) { - const style = getComputedStyle(element); - const transitionDuration = parseFloat(style.getPropertyValue('transition-duration') || '0'); - - return transitionDuration > 0; - } - - return false; - }, - - exportCSV(csv, filename) { - let blob = new Blob([csv], { - type: 'application/csv;charset=utf-8;' - }); - - if (window.navigator.msSaveOrOpenBlob) { - navigator.msSaveOrOpenBlob(blob, filename + '.csv'); - } else { - let link = document.createElement('a'); - - if (link.download !== undefined) { - link.setAttribute('href', URL.createObjectURL(blob)); - link.setAttribute('download', filename + '.csv'); - link.style.display = 'none'; - document.body.appendChild(link); - link.click(); - document.body.removeChild(link); - } else { - csv = 'data:text/csv;charset=utf-8,' + csv; - window.open(encodeURI(csv)); - } - } - }, - - blockBodyScroll(className = 'p-overflow-hidden') { - document.body.style.setProperty($dt('scrollbar.width').name, this.calculateBodyScrollbarWidth() + 'px'); - this.addClass(document.body, className); - }, - - unblockBodyScroll(className = 'p-overflow-hidden') { - document.body.style.removeProperty($dt('scrollbar.width').name); - this.removeClass(document.body, className); - } -}; diff --git a/components/lib/utils/package.json b/components/lib/utils/package.json deleted file mode 100644 index 80585d8649..0000000000 --- a/components/lib/utils/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "main": "./utils.mjs", - "module": "./utils.mjs", - "types": "./Utils.d.ts" -} diff --git a/components/lib/virtualscroller/package.json b/components/lib/virtualscroller/package.json deleted file mode 100644 index 70faad734c..0000000000 --- a/components/lib/virtualscroller/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "main": "./virtualscroller.mjs", - "module": "./virtualscroller.mjs", - "types": "./VirtualScroller.d.ts", - "browser": { - "./sfc": "./VirtualScroller.vue" - }, - "sideEffects": [ - "*.vue" - ] -} diff --git a/components/lib/virtualscroller/style/package.json b/components/lib/virtualscroller/style/package.json deleted file mode 100644 index 3089892106..0000000000 --- a/components/lib/virtualscroller/style/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "main": "./virtualscrollerstyle.mjs", - "module": "./virtualscrollerstyle.mjs", - "types": "./VirtualScrollerStyle.d.ts", - "sideEffects": false -} diff --git a/doc/configuration/ThemeDoc.vue b/doc/configuration/ThemeDoc.vue deleted file mode 100644 index 8dabf80283..0000000000 --- a/doc/configuration/ThemeDoc.vue +++ /dev/null @@ -1,35 +0,0 @@ - - - diff --git a/doc/datatable/virtualscroll/LazyVirtualScrollDoc.vue b/doc/datatable/virtualscroll/LazyVirtualScrollDoc.vue deleted file mode 100644 index 0e453456b6..0000000000 --- a/doc/datatable/virtualscroll/LazyVirtualScrollDoc.vue +++ /dev/null @@ -1,313 +0,0 @@ - - - diff --git a/doc/select/LazyVirtualScrollDoc.vue b/doc/select/LazyVirtualScrollDoc.vue deleted file mode 100644 index 80fe0e33ab..0000000000 --- a/doc/select/LazyVirtualScrollDoc.vue +++ /dev/null @@ -1,136 +0,0 @@ - - - diff --git a/doc/theming/styled/configuration/ThemeDoc.vue b/doc/theming/styled/configuration/ThemeDoc.vue deleted file mode 100644 index fe72e5d857..0000000000 --- a/doc/theming/styled/configuration/ThemeDoc.vue +++ /dev/null @@ -1,35 +0,0 @@ - - - diff --git a/layouts/AppEventBus.js b/layouts/AppEventBus.js deleted file mode 100644 index 602940783d..0000000000 --- a/layouts/AppEventBus.js +++ /dev/null @@ -1,3 +0,0 @@ -import { EventBus } from 'primevue/utils'; - -export default EventBus(); diff --git a/modules/nuxt-primevue/module.js b/modules/nuxt-primevue/module.js deleted file mode 100644 index 913f990870..0000000000 --- a/modules/nuxt-primevue/module.js +++ /dev/null @@ -1,123 +0,0 @@ -import { addPlugin, addPluginTemplate, addTemplate, createResolver, defineNuxtModule } from '@nuxt/kit'; -import { register } from './register'; - -export default defineNuxtModule({ - meta: { - name: 'nuxt-primevue', - configKey: 'primevue', - compatibility: { - nuxt: '^3.0.0' - } - }, - defaults: { - usePrimeVue: true, - resolvePath: undefined, - layerOrder: 'tailwind-base, primevue, tailwind-utilities', - importPT: undefined, - importTheme: undefined, - options: {}, - components: { - prefix: '', - name: undefined, - include: undefined, - exclude: undefined - }, - directives: { - prefix: '', - name: undefined, - include: undefined, - exclude: undefined - }, - composables: { - prefix: '', - name: undefined, - include: undefined, - exclude: undefined - } - }, - hooks: {}, - setup(moduleOptions, nuxt) { - const resolver = createResolver(import.meta.url); - const registered = register(moduleOptions); - const { importPT, importTheme, options } = moduleOptions; - const hasTheme = importTheme && !options.unstyled; - - nuxt.options.runtimeConfig.public.primevue = { - ...moduleOptions, - ...registered - }; - - //nuxt.options.build.transpile.push('nuxt'); - nuxt.options.build.transpile.push('primevue'); - - const styleContent = () => ` -${registered.styles.map((style) => `import ${style.as} from '${style.from}';`).join('\n')} -${ - hasTheme - ? `import { Theme } from 'primevue/themes'; -import ${importTheme.as} from '${importTheme.from}';\n` - : '' -} - -const styleProps = { - ${options?.csp?.nonce ? `nonce: ${options?.csp?.nonce}` : ''} -} -const styles = [ - ${registered.injectStylesAsString.join('')}, - ${registered.styles.map((item) => `${item.as} && ${item.as}.getStyleSheet ? ${item.as}.getStyleSheet(undefined, styleProps) : ''`).join(',')} -].join(''); - -${hasTheme ? `Theme.setTheme(${importTheme.as})` : ''} - -const themes = [ - ${hasTheme ? `${registered.styles[0].as} && ${registered.styles[0].as}.getCommonThemeStyleSheet ? ${registered.styles[0].as}.getCommonThemeStyleSheet(undefined, styleProps) : ''` : ''}, - ${hasTheme ? registered.styles.map((item) => `${item.as} && ${item.as}.getThemeStyleSheet ? ${item.as}.getThemeStyleSheet(undefined, styleProps) : ''`).join(',') : ''} -].join(''); - -export { styles, themes }; -`; - - nuxt.options.alias['#primevue-style'] = addTemplate({ - filename: 'primevue-style.mjs', - getContents: styleContent - }).dst; - - addPlugin(resolver.resolve('./runtime/plugin.client')); - - addPluginTemplate({ - filename: 'primevue-plugin.mjs', - getContents() { - return ` -import { defineNuxtPlugin, useRuntimeConfig } from '#imports'; -${registered.config.map((config) => `import ${config.as} from '${config.from}';`).join('\n')} -${registered.services.map((service) => `import ${service.as} from '${service.from}';`).join('\n')} -${registered.directives.map((directive) => `import ${directive.as} from '${directive.from}';`).join('\n')} -${importPT ? `import ${importPT.as} from '${importPT.from}';\n` : ''} -${hasTheme ? `import ${importTheme.as} from '${importTheme.from}';\n` : ''} - -export default defineNuxtPlugin(({ vueApp }) => { - const runtimeConfig = useRuntimeConfig(); - const config = runtimeConfig?.public?.primevue ?? {}; - const { usePrimeVue = true, options = {} } = config; - const pt = ${importPT ? `{ pt: ${importPT.as} }` : `{}`}; - const theme = ${hasTheme ? `{ theme: ${importTheme.as} }` : `{}`}; - - usePrimeVue && vueApp.use(PrimeVue, { ...options, ...pt, ...theme }); - ${registered.services.map((service) => `vueApp.use(${service.as});`).join('\n')} - ${registered.directives.map((directive) => `vueApp.directive('${directive.name}', ${directive.as});`).join('\n')} -}); - `; - } - }); - - nuxt.hook('nitro:config', async (config) => { - config.externals = config.externals || {}; - config.externals.inline = config.externals.inline || []; - config.externals.inline.push(resolver.resolve('./runtime/plugin.server')); - config.virtual = config.virtual || {}; - config.virtual['#primevue-style'] = styleContent; - config.plugins = config.plugins || []; - config.plugins.push(resolver.resolve('./runtime/plugin.server')); - }); - } -}); diff --git a/modules/nuxt-primevue/register.js b/modules/nuxt-primevue/register.js deleted file mode 100644 index 51112dcfee..0000000000 --- a/modules/nuxt-primevue/register.js +++ /dev/null @@ -1,155 +0,0 @@ -import { addComponent, addImports } from '@nuxt/kit'; -import { components } from './runtime/core/components'; -import { composables } from './runtime/core/composables'; -import { directives } from './runtime/core/directives'; -import { Utils } from './utils'; - -function registerItems(items = [], options = {}, params) { - const included = Utils.object.getValue(options.include, params); - const excluded = Utils.object.getValue(options.exclude, params); - - return items.filter((item) => { - const name = item?.name; - const matchedIn = included === '*' || included === undefined ? true : Utils.object.isNotEmpty(included) ? included.some((inc) => name?.toLowerCase() === inc.toLowerCase()) : false; - const matchedEx = excluded === '*' ? true : Utils.object.isNotEmpty(excluded) ? excluded.some((exc) => name?.toLowerCase() === exc.toLowerCase()) : false; - - return matchedIn && !matchedEx; - }); -} - -function registerConfig(resolvePath, moduleOptions) { - const configs = []; - - configs.push({ name: 'PrimeVue', as: 'PrimeVue', from: resolvePath({ name: 'PrimeVue', as: 'PrimeVue', from: `primevue/config`, type: 'config' }) }); - - return configs; -} - -function registerComponents(resolvePath, options = {}) { - const items = registerItems(components, options, { components }); - - return items.map((item) => { - const _item = { ...item, name: item.name, as: item.name, from: `primevue/${item.name.toLowerCase()}` }; - const name = Utils.object.getName(_item, options); - const from = resolvePath({ name, as: _item.as, from: _item.from, type: 'component' }); - const opt = { - export: 'default', - name, - filePath: from, - global: true - }; - - addComponent(opt); - - return { - ..._item, - ...opt - }; - }); -} - -function registerDirectives(resolvePath, options = {}) { - const items = registerItems(directives, options, { directives }); - - return items.map((item) => { - const name = Utils.object.getName(item, options); - const opt = { - ...item, - name, - from: resolvePath({ name, as: item.as, from: item.from, type: 'directive' }) - }; - - return opt; - }); -} - -function registerComposables(resolvePath, options = {}) { - const items = registerItems(composables, options, { composables }); - - return items.map((item) => { - const name = Utils.object.getName(item, options); - const opt = { - ...item, - name, - from: resolvePath({ name, as: item.as, from: item.from, type: 'composable' }) - }; - - addImports(opt); - - return opt; - }); -} - -function registerServices(resolvePath, registered) { - const services = new Set(); - - registered?.components?.forEach((component) => component?.use && services.add(component.use.as)); - - return [...services].map((service) => ({ - name: service, - as: service, - from: resolvePath({ name: service, as: service, from: `primevue/${service.toLowerCase()}`, type: 'service' }) - })); -} - -function registerStyles(resolvePath, registered, moduleOptions) { - const styles = [ - { - name: 'BaseStyle', - as: 'BaseStyle', - from: resolvePath({ name: 'BaseStyle', as: 'BaseStyle', from: 'primevue/base/style', type: 'style' }) - } - ]; - - if (!moduleOptions?.options?.unstyled) { - if (Utils.object.isNotEmpty(registered?.components)) { - styles.push({ - name: 'BaseComponentStyle', - as: 'BaseComponentStyle', - from: resolvePath({ name: 'BaseComponentStyle', as: 'BaseComponentStyle', from: 'primevue/basecomponent/style', type: 'style' }) - }); - } - - [registered.components, registered.directives] - .flat() - .reduce((acc, citem) => (acc.some((item) => item.as.toLowerCase() === citem.as.toLowerCase()) ? acc : [...acc, citem]), []) - .forEach((item) => - styles.push({ - name: `${item.as}Style`, - as: `${item.as}Style`, - from: resolvePath({ name: `${item.as}Style`, as: `${item.as}Style`, from: `primevue/${item.as.toLowerCase()}/style`, type: 'style' }) - }) - ); - } - - return styles; -} - -function registerInjectStylesAsString(moduleOptions) { - return [Utils.object.createStyleAsString(moduleOptions.layerOrder ? `@layer ${moduleOptions.layerOrder}` : undefined, { name: 'layer-order' })]; -} - -export function register(moduleOptions) { - const resolvePath = (resolveOptions) => Utils.object.getPath(moduleOptions.resolvePath, resolveOptions); - - const config = registerConfig(resolvePath, moduleOptions); - const components = registerComponents(resolvePath, moduleOptions.components); - const directives = registerDirectives(resolvePath, moduleOptions.directives); - const composables = registerComposables(resolvePath, moduleOptions.composables); - const registered = { - components, - directives, - composables - }; - const services = registerServices(resolvePath, registered); - const styles = registerStyles(resolvePath, registered, moduleOptions); - const injectStylesAsString = registerInjectStylesAsString(moduleOptions); - - return { - config, - ...registered, - services, - styles, - injectStylesAsString - }; -} diff --git a/modules/nuxt-primevue/runtime/core/components/index.js b/modules/nuxt-primevue/runtime/core/components/index.js deleted file mode 100644 index 59a0c87a98..0000000000 --- a/modules/nuxt-primevue/runtime/core/components/index.js +++ /dev/null @@ -1,94 +0,0 @@ -const form = [ - 'AutoComplete', - 'Calendar', - 'CascadeSelect', - 'Checkbox', - 'Chips', - 'ColorPicker', - 'DatePicker', - 'Dropdown', - 'Editor', - 'FloatLabel', - 'IconField', - 'InputChips', - 'InputGroup', - 'InputGroupAddon', - 'InputIcon', - 'InputMask', - 'InputNumber', - 'InputOtp', - 'InputSwitch', - 'InputText', - 'Knob', - 'Listbox', - 'MultiSelect', - 'Password', - 'RadioButton', - 'Rating', - 'Select', - 'SelectButton', - 'Slider', - 'Textarea', - 'ToggleButton', - 'ToggleSwitch', - 'TreeSelect' -]; - -const button = ['Button', 'ButtonGroup', 'SpeedDial', 'SplitButton']; - -const data = ['Column', 'Row', 'ColumnGroup', 'DataTable', 'DataView', 'OrderList', 'OrganizationChart', 'Paginator', 'PickList', 'Tree', 'TreeTable', 'Timeline', 'VirtualScroller']; - -const panel = [ - 'Accordion', - 'AccordionPanel', - 'AccordionHeader', - 'AccordionContent', - 'AccordionTab', - 'Card', - 'DeferredContent', - 'Divider', - 'Fieldset', - 'Panel', - 'ScrollPanel', - 'Splitter', - 'SplitterPanel', - 'Step', - 'StepItem', - 'StepList', - 'StepPanel', - 'StepPanels', - 'Stepper', - 'StepperPanel', - 'TabView', - 'Tabs', - 'TabList', - 'Tab', - 'TabPanels', - 'TabPanel', - 'Toolbar' -]; - -const overlay = [ - { name: 'ConfirmDialog', use: { as: 'ConfirmationService' } }, - { name: 'ConfirmPopup', use: { as: 'ConfirmationService' } }, - 'Dialog', - 'Drawer', - { name: 'DynamicDialog', use: { as: 'DialogService' } }, - 'OverlayPanel', - 'Popover', - 'Sidebar' -]; - -const file = ['FileUpload']; - -const menu = ['Breadcrumb', 'ContextMenu', 'Dock', 'Menu', 'Menubar', 'MegaMenu', 'PanelMenu', 'Steps', 'TabMenu', 'TieredMenu']; - -const chart = ['Chart']; - -const messages = ['Message', 'InlineMessage', { name: 'Toast', use: { as: 'ToastService' } }]; - -const media = ['Carousel', 'Galleria', 'Image']; - -const misc = ['Avatar', 'AvatarGroup', 'Badge', 'BlockUI', 'Chip', 'Inplace', 'MeterGroup', 'OverlayBadge', 'ScrollTop', 'Skeleton', 'ProgressBar', 'ProgressSpinner', 'Tag', 'Terminal']; - -export const components = [...form, ...button, ...data, ...panel, ...overlay, ...file, ...menu, ...chart, ...messages, ...media, ...misc].map((c) => (typeof c === 'string' ? { name: c } : c)); diff --git a/modules/nuxt-primevue/runtime/core/composables/index.js b/modules/nuxt-primevue/runtime/core/composables/index.js deleted file mode 100644 index 11da322dd6..0000000000 --- a/modules/nuxt-primevue/runtime/core/composables/index.js +++ /dev/null @@ -1 +0,0 @@ -export const composables = [{ name: 'useStyle', as: 'useStyle', from: 'primevue/usestyle' }]; diff --git a/modules/nuxt-primevue/runtime/core/directives/index.js b/modules/nuxt-primevue/runtime/core/directives/index.js deleted file mode 100644 index fa5e90bef2..0000000000 --- a/modules/nuxt-primevue/runtime/core/directives/index.js +++ /dev/null @@ -1,8 +0,0 @@ -export const directives = [ - { name: 'badge', as: 'BadgeDirective', from: 'primevue/badgedirective' }, - { name: 'tooltip', as: 'Tooltip', from: 'primevue/tooltip' }, - { name: 'ripple', as: 'Ripple', from: 'primevue/ripple' }, - { name: 'styleclass', as: 'StyleClass', from: 'primevue/styleclass' }, - { name: 'focustrap', as: 'FocusTrap', from: 'primevue/focustrap' }, - { name: 'animateonscroll', as: 'AnimateOnScroll', from: 'primevue/animateonscroll' } -]; diff --git a/modules/nuxt-primevue/runtime/plugin.server.js b/modules/nuxt-primevue/runtime/plugin.server.js deleted file mode 100644 index 2b5e8f6a3d..0000000000 --- a/modules/nuxt-primevue/runtime/plugin.server.js +++ /dev/null @@ -1,13 +0,0 @@ -// @ts-expect-error -import { styles, themes } from '#primevue-style'; -//import { useRuntimeConfig } from '#imports'; - -const defineNitroPlugin = (def) => def; - -export default defineNitroPlugin(async (nitroApp) => { - nitroApp.hooks.hook('render:html', (html) => { - html.head.push(styles); - html.head.push(themes); - //html.htmlAttrs.push('class="p-dark"'); // @todo - }); -}); diff --git a/modules/nuxt-primevue/utils.js b/modules/nuxt-primevue/utils.js deleted file mode 100644 index 591916a913..0000000000 --- a/modules/nuxt-primevue/utils.js +++ /dev/null @@ -1,34 +0,0 @@ -export const Utils = { - object: { - isEmpty(value) { - return value === null || value === undefined || value === '' || (Array.isArray(value) && value.length === 0) || (!(value instanceof Date) && typeof value === 'object' && Object.keys(value).length === 0); - }, - isNotEmpty(value) { - return !this.isEmpty(value); - }, - isFunction(value) { - return !!(value && value.constructor && value.call && value.apply); - }, - isString(value, empty = true) { - return typeof value === 'string' && (empty || value !== ''); - }, - getValue(obj, ...params) { - return this.isFunction(obj) ? obj(...params) : obj; - }, - getName(item, options) { - return this.isFunction(options?.name) ? options.name(item) : `${options.prefix}${item.name}`; - }, - getPath(fn, options) { - return this.isFunction(fn) ? fn(options) : options.from; - }, - createStyleAsString(css, options = { name: '' }) { - if (css) { - const { name, ...rest } = options; - - return `''`; - } - - return ''; - } - } -}; diff --git a/nuxt-vite.config.js b/nuxt-vite.config.js deleted file mode 100644 index 7d2dae4f0d..0000000000 --- a/nuxt-vite.config.js +++ /dev/null @@ -1,286 +0,0 @@ -import path from 'path'; - -export const THEME_PRESETS = ['aura', 'lara', 'nora']; - -/* @todo: Refactor alias: https://github.com/rollup/plugins/tree/master/packages/alias#regular-expression-aliases */ - -const STYLE_ALIAS = { - 'primevue/base/style': path.resolve(__dirname, './components/lib/base/style/BaseStyle.js'), - 'primevue/basecomponent/style': path.resolve(__dirname, './components/lib/basecomponent/style/BaseComponentStyle.js'), - 'primevue/accordion/style': path.resolve(__dirname, './components/lib/accordion/style/AccordionStyle.js'), - 'primevue/accordionpanel/style': path.resolve(__dirname, './components/lib/accordionpanel/style/AccordionPanelStyle.js'), - 'primevue/accordionheader/style': path.resolve(__dirname, './components/lib/accordionheader/style/AccordionHeaderStyle.js'), - 'primevue/accordioncontent/style': path.resolve(__dirname, './components/lib/accordioncontent/style/AccordionContentStyle.js'), - 'primevue/accordiontab/style': path.resolve(__dirname, './components/lib/accordiontab/style/AccordionTabStyle.js'), - 'primevue/animateonscroll/style': path.resolve(__dirname, './components/lib/animateonscroll/style/AnimateOnScrollStyle.js'), - 'primevue/autocomplete/style': path.resolve(__dirname, './components/lib/autocomplete/style/AutoCompleteStyle.js'), - 'primevue/avatar/style': path.resolve(__dirname, './components/lib/avatar/style/AvatarStyle.js'), - 'primevue/avatargroup/style': path.resolve(__dirname, './components/lib/avatargroup/style/AvatarGroupStyle.js'), - 'primevue/badge/style': path.resolve(__dirname, './components/lib/badge/style/BadgeStyle.js'), - 'primevue/badgedirective/style': path.resolve(__dirname, './components/lib/badgedirective/style/BadgeDirectiveStyle.js'), - 'primevue/baseicon/style': path.resolve(__dirname, './components/lib/baseicon/style/BaseIconStyle.js'), - 'primevue/blockui/style': path.resolve(__dirname, './components/lib/blockui/style/BlockUIStyle.js'), - 'primevue/breadcrumb/style': path.resolve(__dirname, './components/lib/breadcrumb/style/BreadcrumbStyle.js'), - 'primevue/button/style': path.resolve(__dirname, './components/lib/button/style/ButtonStyle.js'), - 'primevue/buttongroup/style': path.resolve(__dirname, './components/lib/buttongroup/style/ButtonGroupStyle.js'), - 'primevue/calendar/style': path.resolve(__dirname, './components/lib/calendar/style/CalendarStyle.js'), - 'primevue/card/style': path.resolve(__dirname, './components/lib/card/style/CardStyle.js'), - 'primevue/carousel/style': path.resolve(__dirname, './components/lib/carousel/style/CarouselStyle.js'), - 'primevue/cascadeselect/style': path.resolve(__dirname, './components/lib/cascadeselect/style/CascadeSelectStyle.js'), - 'primevue/chart/style': path.resolve(__dirname, './components/lib/chart/style/ChartStyle.js'), - 'primevue/checkbox/style': path.resolve(__dirname, './components/lib/checkbox/style/CheckboxStyle.js'), - 'primevue/chip/style': path.resolve(__dirname, './components/lib/chip/style/ChipStyle.js'), - 'primevue/chips/style': path.resolve(__dirname, './components/lib/chips/style/ChipsStyle.js'), - 'primevue/colorpicker/style': path.resolve(__dirname, './components/lib/colorpicker/style/ColorPickerStyle.js'), - 'primevue/column/style': path.resolve(__dirname, './components/lib/column/style/ColumnStyle.js'), - 'primevue/columngroup/style': path.resolve(__dirname, './components/lib/columngroup/style/ColumnGroupStyle.js'), - 'primevue/confirmdialog/style': path.resolve(__dirname, './components/lib/confirmdialog/style/ConfirmDialogStyle.js'), - 'primevue/confirmpopup/style': path.resolve(__dirname, './components/lib/confirmpopup/style/ConfirmPopupStyle.js'), - 'primevue/contextmenu/style': path.resolve(__dirname, './components/lib/contextmenu/style/ContextMenuStyle.js'), - 'primevue/datatable/style': path.resolve(__dirname, './components/lib/datatable/style/DataTableStyle.js'), - 'primevue/dataview/style': path.resolve(__dirname, './components/lib/dataview/style/DataViewStyle.js'), - 'primevue/datepicker/style': path.resolve(__dirname, './components/lib/datepicker/style/DatePickerStyle.js'), - 'primevue/deferredcontent/style': path.resolve(__dirname, './components/lib/deferredcontent/style/DeferredContentStyle.js'), - 'primevue/dialog/style': path.resolve(__dirname, './components/lib/dialog/style/DialogStyle.js'), - 'primevue/divider/style': path.resolve(__dirname, './components/lib/divider/style/DividerStyle.js'), - 'primevue/dock/style': path.resolve(__dirname, './components/lib/dock/style/DockStyle.js'), - 'primevue/drawer/style': path.resolve(__dirname, './components/lib/drawer/style/DrawerStyle.js'), - 'primevue/dropdown/style': path.resolve(__dirname, './components/lib/dropdown/style/DropdownStyle.js'), - 'primevue/dynamicdialog/style': path.resolve(__dirname, './components/lib/dynamicdialog/style/DynamicDialogStyle.js'), - 'primevue/editor/style': path.resolve(__dirname, './components/lib/editor/style/EditorStyle.js'), - 'primevue/fieldset/style': path.resolve(__dirname, './components/lib/fieldset/style/FieldsetStyle.js'), - 'primevue/floatlabel/style': path.resolve(__dirname, './components/lib/floatlabel/style/FloatLabelStyle.js'), - 'primevue/fileupload/style': path.resolve(__dirname, './components/lib/fileupload/style/FileUploadStyle.js'), - 'primevue/focustrap/style': path.resolve(__dirname, './components/lib/focustrap/style/FocusTrapStyle.js'), - 'primevue/galleria/style': path.resolve(__dirname, './components/lib/galleria/style/GalleriaStyle.js'), - 'primevue/image/style': path.resolve(__dirname, './components/lib/image/style/ImageStyle.js'), - 'primevue/iconfield/style': path.resolve(__dirname, './components/lib/iconfield/style/IconFieldStyle.js'), - 'primevue/inlinemessage/style': path.resolve(__dirname, './components/lib/inlinemessage/style/InlineMessageStyle.js'), - 'primevue/inplace/style': path.resolve(__dirname, './components/lib/inplace/style/InplaceStyle.js'), - 'primevue/inputchips/style': path.resolve(__dirname, './components/lib/inputchips/style/InputChipsStyle.js'), - 'primevue/inputgroup/style': path.resolve(__dirname, './components/lib/inputgroup/style/InputGroupStyle.js'), - 'primevue/inputgroupaddon/style': path.resolve(__dirname, './components/lib/inputgroupaddon/style/InputGroupAddonStyle.js'), - 'primevue/inputicon/style': path.resolve(__dirname, './components/lib/inputicon/style/InputIconStyle.js'), - 'primevue/inputmask/style': path.resolve(__dirname, './components/lib/inputmask/style/InputMaskStyle.js'), - 'primevue/inputnumber/style': path.resolve(__dirname, './components/lib/inputnumber/style/InputNumberStyle.js'), - 'primevue/inputotp/style': path.resolve(__dirname, './components/lib/inputotp/style/InputOtpStyle.js'), - 'primevue/inputswitch/style': path.resolve(__dirname, './components/lib/inputswitch/style/InputSwitchStyle.js'), - 'primevue/inputtext/style': path.resolve(__dirname, './components/lib/inputtext/style/InputTextStyle.js'), - 'primevue/knob/style': path.resolve(__dirname, './components/lib/knob/style/KnobStyle.js'), - 'primevue/listbox/style': path.resolve(__dirname, './components/lib/listbox/style/ListboxStyle.js'), - 'primevue/megamenu/style': path.resolve(__dirname, './components/lib/megamenu/style/MegaMenuStyle.js'), - 'primevue/menu/style': path.resolve(__dirname, './components/lib/menu/style/MenuStyle.js'), - 'primevue/menubar/style': path.resolve(__dirname, './components/lib/menubar/style/MenubarStyle.js'), - 'primevue/message/style': path.resolve(__dirname, './components/lib/message/style/MessageStyle.js'), - 'primevue/metergroup/style': path.resolve(__dirname, './components/lib/metergroup/style/MeterGroupStyle.js'), - 'primevue/multiselect/style': path.resolve(__dirname, './components/lib/multiselect/style/MultiSelectStyle.js'), - 'primevue/orderlist/style': path.resolve(__dirname, './components/lib/orderlist/style/OrderListStyle.js'), - 'primevue/organizationchart/style': path.resolve(__dirname, './components/lib/organizationchart/style/OrganizationChartStyle.js'), - 'primevue/overlaybadge/style': path.resolve(__dirname, './components/lib/overlaybadge/style/OverlayBadgeStyle.js'), - 'primevue/overlaypanel/style': path.resolve(__dirname, './components/lib/overlaypanel/style/OverlayPanelStyle.js'), - 'primevue/paginator/style': path.resolve(__dirname, './components/lib/paginator/style/PaginatorStyle.js'), - 'primevue/panel/style': path.resolve(__dirname, './components/lib/panel/style/PanelStyle.js'), - 'primevue/panelmenu/style': path.resolve(__dirname, './components/lib/panelmenu/style/PanelMenuStyle.js'), - 'primevue/password/style': path.resolve(__dirname, './components/lib/password/style/PasswordStyle.js'), - 'primevue/picklist/style': path.resolve(__dirname, './components/lib/picklist/style/PickListStyle.js'), - 'primevue/popover/style': path.resolve(__dirname, './components/lib/popover/style/PopoverStyle.js'), - 'primevue/portal/style': path.resolve(__dirname, './components/lib/portal/style/PortalStyle.js'), - 'primevue/progressbar/style': path.resolve(__dirname, './components/lib/progressbar/style/ProgressBarStyle.js'), - 'primevue/progressspinner/style': path.resolve(__dirname, './components/lib/progressspinner/style/ProgressSpinnerStyle.js'), - 'primevue/radiobutton/style': path.resolve(__dirname, './components/lib/radiobutton/style/RadioButtonStyle.js'), - 'primevue/rating/style': path.resolve(__dirname, './components/lib/rating/style/RatingStyle.js'), - 'primevue/ripple/style': path.resolve(__dirname, './components/lib/ripple/style/RippleStyle.js'), - 'primevue/row/style': path.resolve(__dirname, './components/lib/row/style/RowStyle.js'), - 'primevue/scrollpanel/style': path.resolve(__dirname, './components/lib/scrollpanel/style/ScrollPanelStyle.js'), - 'primevue/scrolltop/style': path.resolve(__dirname, './components/lib/scrolltop/style/ScrollTopStyle.js'), - 'primevue/select/style': path.resolve(__dirname, './components/lib/select/style/SelectStyle.js'), - 'primevue/selectbutton/style': path.resolve(__dirname, './components/lib/selectbutton/style/SelectButtonStyle.js'), - 'primevue/sidebar/style': path.resolve(__dirname, './components/lib/sidebar/style/SidebarStyle.js'), - 'primevue/skeleton/style': path.resolve(__dirname, './components/lib/skeleton/style/SkeletonStyle.js'), - 'primevue/slider/style': path.resolve(__dirname, './components/lib/slider/style/SliderStyle.js'), - 'primevue/speeddial/style': path.resolve(__dirname, './components/lib/speeddial/style/SpeedDialStyle.js'), - 'primevue/splitbutton/style': path.resolve(__dirname, './components/lib/splitbutton/style/SplitButtonStyle.js'), - 'primevue/splitter/style': path.resolve(__dirname, './components/lib/splitter/style/SplitterStyle.js'), - 'primevue/splitterpanel/style': path.resolve(__dirname, './components/lib/splitterpanel/style/SplitterPanelStyle.js'), - 'primevue/step/style': path.resolve(__dirname, './components/lib/step/style/StepStyle.js'), - 'primevue/stepitem/style': path.resolve(__dirname, './components/lib/stepitem/style/StepItemStyle.js'), - 'primevue/steplist/style': path.resolve(__dirname, './components/lib/steplist/style/StepListStyle.js'), - 'primevue/steppanel/style': path.resolve(__dirname, './components/lib/steppanel/style/StepPanelStyle.js'), - 'primevue/steppanels/style': path.resolve(__dirname, './components/lib/steppanels/style/StepPanelsStyle.js'), - 'primevue/stepper/style': path.resolve(__dirname, './components/lib/stepper/style/StepperStyle.js'), - 'primevue/stepperpanel/style': path.resolve(__dirname, './components/lib/stepperpanel/style/StepperPanelStyle.js'), - 'primevue/steps/style': path.resolve(__dirname, './components/lib/steps/style/StepsStyle.js'), - 'primevue/styleclass/style': path.resolve(__dirname, './components/lib/styleclass/style/StyleClassStyle.js'), - 'primevue/tabmenu/style': path.resolve(__dirname, './components/lib/tabmenu/style/TabMenuStyle.js'), - 'primevue/tabs/style': path.resolve(__dirname, './components/lib/tabs/style/TabsStyle.js'), - 'primevue/tablist/style': path.resolve(__dirname, './components/lib/tablist/style/TabListStyle.js'), - 'primevue/tab/style': path.resolve(__dirname, './components/lib/tab/style/TabStyle.js'), - 'primevue/tabpanels/style': path.resolve(__dirname, './components/lib/tabpanels/style/TabPanelsStyle.js'), - 'primevue/tabpanel/style': path.resolve(__dirname, './components/lib/tabpanel/style/TabPanelStyle.js'), - 'primevue/tabview/style': path.resolve(__dirname, './components/lib/tabview/style/TabViewStyle.js'), - 'primevue/tag/style': path.resolve(__dirname, './components/lib/tag/style/TagStyle.js'), - 'primevue/terminal/style': path.resolve(__dirname, './components/lib/terminal/style/TerminalStyle.js'), - 'primevue/textarea/style': path.resolve(__dirname, './components/lib/textarea/style/TextareaStyle.js'), - 'primevue/tieredmenu/style': path.resolve(__dirname, './components/lib/tieredmenu/style/TieredMenuStyle.js'), - 'primevue/timeline/style': path.resolve(__dirname, './components/lib/timeline/style/TimelineStyle.js'), - 'primevue/toast/style': path.resolve(__dirname, './components/lib/toast/style/ToastStyle.js'), - 'primevue/togglebutton/style': path.resolve(__dirname, './components/lib/togglebutton/style/ToggleButtonStyle.js'), - 'primevue/toggleswitch/style': path.resolve(__dirname, './components/lib/toggleswitch/style/ToggleSwitchStyle.js'), - 'primevue/toolbar/style': path.resolve(__dirname, './components/lib/toolbar/style/ToolbarStyle.js'), - 'primevue/tooltip/style': path.resolve(__dirname, './components/lib/tooltip/style/TooltipStyle.js'), - 'primevue/tree/style': path.resolve(__dirname, './components/lib/tree/style/TreeStyle.js'), - 'primevue/treeselect/style': path.resolve(__dirname, './components/lib/treeselect/style/TreeSelectStyle.js'), - 'primevue/treetable/style': path.resolve(__dirname, './components/lib/treetable/style/TreeTableStyle.js'), - 'primevue/virtualscroller/style': path.resolve(__dirname, './components/lib/virtualscroller/style/VirtualScrollerStyle.js') -}; - -const ICON_ALIAS = { - 'primevue/baseicon': path.resolve(__dirname, './components/lib/baseicon/BaseIcon.vue'), - 'primevue/icons/angledoubledown': path.resolve(__dirname, './components/lib/icons/angledoubledown/index.vue'), - 'primevue/icons/angledoubleleft': path.resolve(__dirname, './components/lib/icons/angledoubleleft/index.vue'), - 'primevue/icons/angledoubleright': path.resolve(__dirname, './components/lib/icons/angledoubleright/index.vue'), - 'primevue/icons/angledoubleup': path.resolve(__dirname, './components/lib/icons/angledoubleup/index.vue'), - 'primevue/icons/angledown': path.resolve(__dirname, './components/lib/icons/angledown/index.vue'), - 'primevue/icons/angleleft': path.resolve(__dirname, './components/lib/icons/angleleft/index.vue'), - 'primevue/icons/angleright': path.resolve(__dirname, './components/lib/icons/angleright/index.vue'), - 'primevue/icons/angleup': path.resolve(__dirname, './components/lib/icons/angleup/index.vue'), - 'primevue/icons/arrowdown': path.resolve(__dirname, './components/lib/icons/arrowdown/index.vue'), - 'primevue/icons/arrowup': path.resolve(__dirname, './components/lib/icons/arrowup/index.vue'), - 'primevue/icons/ban': path.resolve(__dirname, './components/lib/icons/ban/index.vue'), - 'primevue/icons/bars': path.resolve(__dirname, './components/lib/icons/bars/index.vue'), - 'primevue/icons/blank': path.resolve(__dirname, './components/lib/icons/blank/index.vue'), - 'primevue/icons/calendar': path.resolve(__dirname, './components/lib/icons/calendar/index.vue'), - 'primevue/icons/check': path.resolve(__dirname, './components/lib/icons/check/index.vue'), - 'primevue/icons/chevrondown': path.resolve(__dirname, './components/lib/icons/chevrondown/index.vue'), - 'primevue/icons/chevronleft': path.resolve(__dirname, './components/lib/icons/chevronleft/index.vue'), - 'primevue/icons/chevronright': path.resolve(__dirname, './components/lib/icons/chevronright/index.vue'), - 'primevue/icons/chevronup': path.resolve(__dirname, './components/lib/icons/chevronup/index.vue'), - 'primevue/icons/exclamationtriangle': path.resolve(__dirname, './components/lib/icons/exclamationtriangle/index.vue'), - 'primevue/icons/eye': path.resolve(__dirname, './components/lib/icons/eye/index.vue'), - 'primevue/icons/eyeslash': path.resolve(__dirname, './components/lib/icons/eyeslash/index.vue'), - 'primevue/icons/filter': path.resolve(__dirname, './components/lib/icons/filter/index.vue'), - 'primevue/icons/filterslash': path.resolve(__dirname, './components/lib/icons/filterslash/index.vue'), - 'primevue/icons/infocircle': path.resolve(__dirname, './components/lib/icons/infocircle/index.vue'), - 'primevue/icons/minus': path.resolve(__dirname, './components/lib/icons/minus/index.vue'), - 'primevue/icons/pencil': path.resolve(__dirname, './components/lib/icons/pencil/index.vue'), - 'primevue/icons/plus': path.resolve(__dirname, './components/lib/icons/plus/index.vue'), - 'primevue/icons/refresh': path.resolve(__dirname, './components/lib/icons/refresh/index.vue'), - 'primevue/icons/search': path.resolve(__dirname, './components/lib/icons/search/index.vue'), - 'primevue/icons/searchminus': path.resolve(__dirname, './components/lib/icons/searchminus/index.vue'), - 'primevue/icons/searchplus': path.resolve(__dirname, './components/lib/icons/searchplus/index.vue'), - 'primevue/icons/sortalt': path.resolve(__dirname, './components/lib/icons/sortalt/index.vue'), - 'primevue/icons/sortamountdown': path.resolve(__dirname, './components/lib/icons/sortamountdown/index.vue'), - 'primevue/icons/sortamountupalt': path.resolve(__dirname, './components/lib/icons/sortamountupalt/index.vue'), - 'primevue/icons/spinner': path.resolve(__dirname, './components/lib/icons/spinner/index.vue'), - 'primevue/icons/star': path.resolve(__dirname, './components/lib/icons/star/index.vue'), - 'primevue/icons/starfill': path.resolve(__dirname, './components/lib/icons/starfill/index.vue'), - 'primevue/icons/thlarge': path.resolve(__dirname, './components/lib/icons/thlarge/index.vue'), - 'primevue/icons/times': path.resolve(__dirname, './components/lib/icons/times/index.vue'), - 'primevue/icons/timescircle': path.resolve(__dirname, './components/lib/icons/timescircle/index.vue'), - 'primevue/icons/trash': path.resolve(__dirname, './components/lib/icons/trash/index.vue'), - 'primevue/icons/undo': path.resolve(__dirname, './components/lib/icons/undo/index.vue'), - 'primevue/icons/upload': path.resolve(__dirname, './components/lib/icons/upload/index.vue'), - 'primevue/icons/windowmaximize': path.resolve(__dirname, './components/lib/icons/windowmaximize/index.vue'), - 'primevue/icons/windowminimize': path.resolve(__dirname, './components/lib/icons/windowminimize/index.vue') -}; - -// prettier-ignore -const THEME_COMPONENTS = ['accordion','autocomplete','avatar','badge','blockui','breadcrumb','button','buttongroup','card','carousel','cascadeselect','checkbox','chip','colorpicker','confirmdialog','confirmpopup','contextmenu','datatable','dataview','datepicker','dialog','divider','dock','drawer','editor','fieldset','fileupload','floatlabel','galleria','iconfield','image','inlinemessage','inplace','inputchips','inputgroup','inputnumber','inputotp','inputtext','knob','listbox','megamenu','menu','menubar','message','metergroup','multiselect','orderlist','organizationchart','overlaybadge','paginator','panel','panelmenu','password','picklist','popover','progressbar','progressspinner','radiobutton','rating','ripple','scrollpanel','scrolltop','select','selectbutton','skeleton','slider','speeddial','splitbutton','splitter','steps','stepper','tabmenu','tabs','tabview','tag','terminal','textarea','tieredmenu','timeline','toast','togglebutton','toggleswitch','toolbar','tooltip','tree','treeselect','treetable']; - -const createThemeAlias = (presets) => { - const presetAlias = presets?.reduce((p_acc, p_name) => { - const p_alias = THEME_COMPONENTS.reduce((acc, name) => { - acc[`primevue/themes/${p_name}/${name}`] = path.resolve(__dirname, `./components/lib/themes/${p_name}/${name}/index.js`); - - return acc; - }, {}); - - p_acc = { ...p_acc, ...p_alias }; - - return p_acc; - }, {}); - - const mainAlias = presets?.reduce((p_acc, p_name) => { - p_acc = { - ...p_acc, - [`primevue/themes/${p_name}`]: path.resolve(__dirname, `./components/lib/themes/${p_name}/index.js`) - }; - - return p_acc; - }, {}); - - return { ...presetAlias, ...mainAlias }; -}; - -const THEME_ALIAS = { - 'primevue/themes/utils': path.resolve(__dirname, './components/lib/themes/utils/index.js'), - 'primevue/themes/config': path.resolve(__dirname, './components/lib/themes/config/index.js'), - 'primevue/themes/service': path.resolve(__dirname, './components/lib/themes/service/index.js'), - 'primevue/themes/helpers': path.resolve(__dirname, './components/lib/themes/helpers/index.js'), - 'primevue/themes/actions': path.resolve(__dirname, './components/lib/themes/actions/index.js'), - ...createThemeAlias(THEME_PRESETS), - 'primevue/themes': path.resolve(__dirname, './components/lib/themes/index.js') -}; - -export default { - resolve: { - optimizeDeps: { - disabled: true - }, - alias: { - 'primevue/utils': path.resolve(__dirname, './components/lib/utils/Utils.js'), - 'primevue/service': path.resolve(__dirname, './components/lib/service/PrimeVueService.js'), - 'primevue/config': path.resolve(__dirname, './components/lib/config/PrimeVue.js'), - 'primevue/api': path.resolve(__dirname, './components/lib/api/Api.js'), - ...STYLE_ALIAS, - ...THEME_ALIAS, - 'primevue/base': path.resolve(__dirname, './components/lib/base/Base.js'), - 'primevue/basedirective': path.resolve(__dirname, './components/lib/basedirective/BaseDirective.js'), - 'primevue/ripple': path.resolve(__dirname, './components/lib/ripple/Ripple.js'), - 'primevue/tooltip': path.resolve(__dirname, './components/lib/tooltip/Tooltip.js'), - 'primevue/focustrap': path.resolve(__dirname, './components/lib/focustrap/FocusTrap.js'), - 'primevue/useconfirm': path.resolve(__dirname, './components/lib/useconfirm/UseConfirm.js'), - 'primevue/usetoast': path.resolve(__dirname, './components/lib/usetoast/UseToast.js'), - 'primevue/usedialog': path.resolve(__dirname, './components/lib/usedialog/UseDialog.js'), - 'primevue/usestyle': path.resolve(__dirname, './components/lib/usestyle/UseStyle.js'), - 'primevue/portal': path.resolve(__dirname, './components/lib/portal/Portal.vue'), - 'primevue/basecomponent': path.resolve(__dirname, './components/lib/basecomponent/BaseComponent.vue'), - ...ICON_ALIAS, - 'primevue/button': path.resolve(__dirname, './components/lib/button/Button.vue'), - 'primevue/inputtext': path.resolve(__dirname, './components/lib/inputtext/InputText.vue'), - 'primevue/checkbox': path.resolve(__dirname, './components/lib/checkbox/Checkbox.vue'), - 'primevue/radiobutton': path.resolve(__dirname, './components/lib/radiobutton/RadioButton.vue'), - 'primevue/dialog': path.resolve(__dirname, './components/lib/dialog/Dialog.vue'), - 'primevue/menu': path.resolve(__dirname, './components/lib/menu/Menu.vue'), - 'primevue/tieredmenu': path.resolve(__dirname, './components/lib/tieredmenu/TieredMenu.vue'), - 'primevue/dropdown': path.resolve(__dirname, './components/lib/dropdown/Dropdown.vue'), - 'primevue/inputnumber': path.resolve(__dirname, './components/lib/inputnumber/InputNumber.vue'), - 'primevue/paginator': path.resolve(__dirname, './components/lib/paginator/Paginator.vue'), - 'primevue/progressbar': path.resolve(__dirname, './components/lib/progressbar/ProgressBar.vue'), - 'primevue/message': path.resolve(__dirname, './components/lib/message/Message.vue'), - 'primevue/tree': path.resolve(__dirname, './components/lib/tree/Tree.vue'), - 'primevue/badge': path.resolve(__dirname, './components/lib/badge/Badge.vue'), - 'primevue/togglebutton': path.resolve(__dirname, './components/lib/togglebutton/ToggleButton.vue'), - 'primevue/iconfield': path.resolve(__dirname, './components/lib/iconfield/IconField.vue'), - 'primevue/inputicon': path.resolve(__dirname, './components/lib/inputicon/InputIcon.vue'), - 'primevue/listbox': path.resolve(__dirname, './components/lib/listbox/Listbox.vue'), - 'primevue/chip': path.resolve(__dirname, './components/lib/chip/Chip.vue'), - 'primevue/popover': path.resolve(__dirname, './components/lib/popover/Popover.vue'), - 'primevue/toggleswitch': path.resolve(__dirname, './components/lib/toggleswitch/ToggleSwitch.vue'), - 'primevue/drawer': path.resolve(__dirname, './components/lib/drawer/Drawer.vue'), - 'primevue/inputchips': path.resolve(__dirname, './components/lib/inputchips/InputChips.vue'), - 'primevue/datepicker': path.resolve(__dirname, './components/lib/datepicker/DatePicker.vue'), - 'primevue/select': path.resolve(__dirname, './components/lib/select/Select.vue'), - 'primevue/confirmationeventbus': path.resolve(__dirname, './components/lib/confirmationeventbus/ConfirmationEventBus.js'), - 'primevue/toasteventbus': path.resolve(__dirname, './components/lib/toasteventbus/ToastEventBus.js'), - 'primevue/overlayeventbus': path.resolve(__dirname, './components/lib/overlayeventbus/OverlayEventBus.js'), - 'primevue/terminalservice': path.resolve(__dirname, './components/lib/terminalservice/TerminalService.js'), - 'primevue/dynamicdialogeventbus': path.resolve(__dirname, './components/lib/dynamicdialogeventbus/DynamicDialogEventBus.js'), - 'primevue/virtualscroller': path.resolve(__dirname, './components/lib/virtualscroller/VirtualScroller.vue'), - 'primevue/passthrough': path.resolve(__dirname, './components/lib/passthrough/index.js'), - 'primevue/accordioncontent': path.resolve(__dirname, './components/lib/accordioncontent/AccordionContent.vue'), - 'primevue/accordionheader': path.resolve(__dirname, './components/lib/accordionheader/AccordionHeader.vue'), - 'primevue/accordionpanel': path.resolve(__dirname, './components/lib/accordionpanel/AccordionPanel.vue') - } - } -}; diff --git a/nuxt.config.js b/nuxt.config.js deleted file mode 100644 index b5232607bc..0000000000 --- a/nuxt.config.js +++ /dev/null @@ -1,80 +0,0 @@ -import aliasConfig from './nuxt-vite.config.js'; - -const baseUrl = '/'; - -// https://nuxt.com/docs/api/configuration/nuxt-config -export default defineNuxtConfig({ - typescript: false, - modules: ['nuxt-gtag', '~/modules/nuxt-primevue/module'], - components: [ - '~/components', - { - path: '~/components/layout', - prefetch: false - } - ], - vite: aliasConfig, - nitro: { - alias: aliasConfig.resolve.alias - }, - routeRules: { - '/accessibility': { redirect: { to: '/guides/accessibility', statusCode: 301 } }, - '/installation': { redirect: { to: '/vite', statusCode: 301 } } - }, - primevue: { - usePrimeVue: true, - importTheme: { from: '@/themes/app-theme.js' }, - resolvePath: function ({ as, from, type }) { - const resolvedPath = from.replace('primevue', '@/components/lib'); - - return type === 'component' ? `${resolvedPath}/${as}.vue` : `${resolvedPath}/${as}.js`; - } - }, - app: { - baseURL: baseUrl, - head: { - title: 'PrimeVue - Vue UI Component Library', - meta: [ - { charset: 'utf-8' }, - { name: 'viewport', content: 'width=device-width, initial-scale=1' }, - { name: 'description', content: 'The ultimate collection of design-agnostic, flexible and accessible Vue UI Components.' }, - { name: 'robots', content: 'index,follow' }, - { name: 'twitter:card', content: 'summary_large_image' }, - { name: 'twitter:site', content: '@primevue' }, - { name: 'twitter:title', content: 'PrimeVue | Vue UI Component Library' }, - { name: 'twitter:description', content: 'The ultimate collection of design-agnostic, flexible and accessible Vue UI Components.' }, - { property: 'og:type', content: 'website' }, - { property: 'og:title', content: 'PrimeVue | Vue UI Component Library' }, - { property: 'og:url', content: 'https://primevue.org/' }, - { property: 'og:description', content: 'The ultimate collection of design-agnostic, flexible and accessible Vue UI Components.' }, - { property: 'og:image', content: 'https://www.primefaces.org/static/social/primevue-preview.jpg' }, - { property: 'og:ttl', content: '604800' } - ], - link: [ - { rel: 'icon', href: baseUrl + 'favicon.ico' }, - { rel: 'stylesheet', href: 'https://rsms.me/inter/inter.css' } - ], - script: [ - { - src: baseUrl + 'scripts/prism.js', - 'data-manual': true - } - ] - } - }, - postcss: { - plugins: { - tailwindcss: {}, - autoprefixer: {} - } - }, - runtimeConfig: { - public: { - contextPath: baseUrl - } - }, - gtag: { - id: 'G-48TTQ6G6KV' - }, - css: ['primeicons/primeicons.css', '@/assets/styles/flags.css', '@docsearch/css/dist/style.css', '@/assets/styles/tailwind/main.css', '@/assets/styles/layout/layout.scss'] -}); diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index 2d9cfe8f3f..0000000000 --- a/package-lock.json +++ /dev/null @@ -1,14657 +0,0 @@ -{ - "name": "primevue", - "version": "4.0.0-beta.4", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "primevue", - "version": "4.0.0-beta.4", - "hasInstallScript": true, - "license": "MIT", - "dependencies": { - "@docsearch/js": "^3.3.3", - "nuxt-gtag": "^0.6.2", - "vee-validate": "^4.8.2" - }, - "devDependencies": { - "@babel/eslint-parser": "^7.18.9", - "@babel/preset-env": "^7.21.5", - "@rollup/plugin-alias": "^5.1.0", - "@rollup/plugin-babel": "^6.0.3", - "@stackblitz/sdk": "^1.8.2", - "@vitejs/plugin-vue": "4.1.0", - "@vitest/coverage-istanbul": "^0.29.8", - "@vue/test-utils": "^2.0.0", - "autoprefixer": "^10.4.16", - "chart.js": "3.3.2", - "eslint": "^8.30.0", - "eslint-config-prettier": "^8.5.0", - "eslint-plugin-nuxt": "^4.0.0", - "eslint-plugin-prettier": "^4.2.1", - "eslint-plugin-vue": "^9.4.0", - "jsdom": "^19.0.0", - "nuxt": "3.3.2", - "postcss": "^8.4.31", - "prettier": "2.7.1", - "primeicons": "^7.0.0", - "quill": "^1.3.7", - "rollup-plugin-postcss": "^4.0.0", - "rollup-plugin-terser": "^7.0.2", - "rollup-plugin-vue": "^6.0.0-beta.9", - "sass": "^1.45.0", - "sass-loader": "^8.0.2", - "tailwindcss": "^3.4.1", - "tailwindcss-primeui": "^0.3.1", - "typedoc": "0.23.23", - "typescript": "^4.9.4", - "vitest": "^0.29.8" - } - }, - "node_modules/@algolia/autocomplete-core": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.9.3.tgz", - "integrity": "sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==", - "dependencies": { - "@algolia/autocomplete-plugin-algolia-insights": "1.9.3", - "@algolia/autocomplete-shared": "1.9.3" - } - }, - "node_modules/@algolia/autocomplete-plugin-algolia-insights": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.9.3.tgz", - "integrity": "sha512-a/yTUkcO/Vyy+JffmAnTWbr4/90cLzw+CC3bRbhnULr/EM0fGNvM13oQQ14f2moLMcVDyAx/leczLlAOovhSZg==", - "dependencies": { - "@algolia/autocomplete-shared": "1.9.3" - }, - "peerDependencies": { - "search-insights": ">= 1 < 3" - } - }, - "node_modules/@algolia/autocomplete-preset-algolia": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.9.3.tgz", - "integrity": "sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==", - "dependencies": { - "@algolia/autocomplete-shared": "1.9.3" - }, - "peerDependencies": { - "@algolia/client-search": ">= 4.9.1 < 6", - "algoliasearch": ">= 4.9.1 < 6" - } - }, - "node_modules/@algolia/autocomplete-shared": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.9.3.tgz", - "integrity": "sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ==", - "peerDependencies": { - "@algolia/client-search": ">= 4.9.1 < 6", - "algoliasearch": ">= 4.9.1 < 6" - } - }, - "node_modules/@algolia/cache-browser-local-storage": { - "version": "4.23.3", - "resolved": "https://registry.npmjs.org/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.23.3.tgz", - "integrity": "sha512-vRHXYCpPlTDE7i6UOy2xE03zHF2C8MEFjPN2v7fRbqVpcOvAUQK81x3Kc21xyb5aSIpYCjWCZbYZuz8Glyzyyg==", - "dependencies": { - "@algolia/cache-common": "4.23.3" - } - }, - "node_modules/@algolia/cache-common": { - "version": "4.23.3", - "resolved": "https://registry.npmjs.org/@algolia/cache-common/-/cache-common-4.23.3.tgz", - "integrity": "sha512-h9XcNI6lxYStaw32pHpB1TMm0RuxphF+Ik4o7tcQiodEdpKK+wKufY6QXtba7t3k8eseirEMVB83uFFF3Nu54A==" - }, - "node_modules/@algolia/cache-in-memory": { - "version": "4.23.3", - "resolved": "https://registry.npmjs.org/@algolia/cache-in-memory/-/cache-in-memory-4.23.3.tgz", - "integrity": "sha512-yvpbuUXg/+0rbcagxNT7un0eo3czx2Uf0y4eiR4z4SD7SiptwYTpbuS0IHxcLHG3lq22ukx1T6Kjtk/rT+mqNg==", - "dependencies": { - "@algolia/cache-common": "4.23.3" - } - }, - "node_modules/@algolia/client-account": { - "version": "4.23.3", - "resolved": "https://registry.npmjs.org/@algolia/client-account/-/client-account-4.23.3.tgz", - "integrity": "sha512-hpa6S5d7iQmretHHF40QGq6hz0anWEHGlULcTIT9tbUssWUriN9AUXIFQ8Ei4w9azD0hc1rUok9/DeQQobhQMA==", - "dependencies": { - "@algolia/client-common": "4.23.3", - "@algolia/client-search": "4.23.3", - "@algolia/transporter": "4.23.3" - } - }, - "node_modules/@algolia/client-analytics": { - "version": "4.23.3", - "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-4.23.3.tgz", - "integrity": "sha512-LBsEARGS9cj8VkTAVEZphjxTjMVCci+zIIiRhpFun9jGDUlS1XmhCW7CTrnaWeIuCQS/2iPyRqSy1nXPjcBLRA==", - "dependencies": { - "@algolia/client-common": "4.23.3", - "@algolia/client-search": "4.23.3", - "@algolia/requester-common": "4.23.3", - "@algolia/transporter": "4.23.3" - } - }, - "node_modules/@algolia/client-common": { - "version": "4.23.3", - "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.23.3.tgz", - "integrity": "sha512-l6EiPxdAlg8CYhroqS5ybfIczsGUIAC47slLPOMDeKSVXYG1n0qGiz4RjAHLw2aD0xzh2EXZ7aRguPfz7UKDKw==", - "dependencies": { - "@algolia/requester-common": "4.23.3", - "@algolia/transporter": "4.23.3" - } - }, - "node_modules/@algolia/client-personalization": { - "version": "4.23.3", - "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-4.23.3.tgz", - "integrity": "sha512-3E3yF3Ocr1tB/xOZiuC3doHQBQ2zu2MPTYZ0d4lpfWads2WTKG7ZzmGnsHmm63RflvDeLK/UVx7j2b3QuwKQ2g==", - "dependencies": { - "@algolia/client-common": "4.23.3", - "@algolia/requester-common": "4.23.3", - "@algolia/transporter": "4.23.3" - } - }, - "node_modules/@algolia/client-search": { - "version": "4.23.3", - "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.23.3.tgz", - "integrity": "sha512-P4VAKFHqU0wx9O+q29Q8YVuaowaZ5EM77rxfmGnkHUJggh28useXQdopokgwMeYw2XUht49WX5RcTQ40rZIabw==", - "dependencies": { - "@algolia/client-common": "4.23.3", - "@algolia/requester-common": "4.23.3", - "@algolia/transporter": "4.23.3" - } - }, - "node_modules/@algolia/logger-common": { - "version": "4.23.3", - "resolved": "https://registry.npmjs.org/@algolia/logger-common/-/logger-common-4.23.3.tgz", - "integrity": "sha512-y9kBtmJwiZ9ZZ+1Ek66P0M68mHQzKRxkW5kAAXYN/rdzgDN0d2COsViEFufxJ0pb45K4FRcfC7+33YB4BLrZ+g==" - }, - "node_modules/@algolia/logger-console": { - "version": "4.23.3", - "resolved": "https://registry.npmjs.org/@algolia/logger-console/-/logger-console-4.23.3.tgz", - "integrity": "sha512-8xoiseoWDKuCVnWP8jHthgaeobDLolh00KJAdMe9XPrWPuf1by732jSpgy2BlsLTaT9m32pHI8CRfrOqQzHv3A==", - "dependencies": { - "@algolia/logger-common": "4.23.3" - } - }, - "node_modules/@algolia/recommend": { - "version": "4.23.3", - "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-4.23.3.tgz", - "integrity": "sha512-9fK4nXZF0bFkdcLBRDexsnGzVmu4TSYZqxdpgBW2tEyfuSSY54D4qSRkLmNkrrz4YFvdh2GM1gA8vSsnZPR73w==", - "dependencies": { - "@algolia/cache-browser-local-storage": "4.23.3", - "@algolia/cache-common": "4.23.3", - "@algolia/cache-in-memory": "4.23.3", - "@algolia/client-common": "4.23.3", - "@algolia/client-search": "4.23.3", - "@algolia/logger-common": "4.23.3", - "@algolia/logger-console": "4.23.3", - "@algolia/requester-browser-xhr": "4.23.3", - "@algolia/requester-common": "4.23.3", - "@algolia/requester-node-http": "4.23.3", - "@algolia/transporter": "4.23.3" - } - }, - "node_modules/@algolia/requester-browser-xhr": { - "version": "4.23.3", - "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.23.3.tgz", - "integrity": "sha512-jDWGIQ96BhXbmONAQsasIpTYWslyjkiGu0Quydjlowe+ciqySpiDUrJHERIRfELE5+wFc7hc1Q5hqjGoV7yghw==", - "dependencies": { - "@algolia/requester-common": "4.23.3" - } - }, - "node_modules/@algolia/requester-common": { - "version": "4.23.3", - "resolved": "https://registry.npmjs.org/@algolia/requester-common/-/requester-common-4.23.3.tgz", - "integrity": "sha512-xloIdr/bedtYEGcXCiF2muajyvRhwop4cMZo+K2qzNht0CMzlRkm8YsDdj5IaBhshqfgmBb3rTg4sL4/PpvLYw==" - }, - "node_modules/@algolia/requester-node-http": { - "version": "4.23.3", - "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-4.23.3.tgz", - "integrity": "sha512-zgu++8Uj03IWDEJM3fuNl34s746JnZOWn1Uz5taV1dFyJhVM/kTNw9Ik7YJWiUNHJQXcaD8IXD1eCb0nq/aByA==", - "dependencies": { - "@algolia/requester-common": "4.23.3" - } - }, - "node_modules/@algolia/transporter": { - "version": "4.23.3", - "resolved": "https://registry.npmjs.org/@algolia/transporter/-/transporter-4.23.3.tgz", - "integrity": "sha512-Wjl5gttqnf/gQKJA+dafnD0Y6Yw97yvfY8R9h0dQltX1GXTgNs1zWgvtWW0tHl1EgMdhAyw189uWiZMnL3QebQ==", - "dependencies": { - "@algolia/cache-common": "4.23.3", - "@algolia/logger-common": "4.23.3", - "@algolia/requester-common": "4.23.3" - } - }, - "node_modules/@alloc/quick-lru": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", - "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@ampproject/remapping": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", - "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.24.2", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz", - "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==", - "dependencies": { - "@babel/highlight": "^7.24.2", - "picocolors": "^1.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.4.tgz", - "integrity": "sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.5.tgz", - "integrity": "sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==", - "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.24.2", - "@babel/generator": "^7.24.5", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-module-transforms": "^7.24.5", - "@babel/helpers": "^7.24.5", - "@babel/parser": "^7.24.5", - "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.5", - "@babel/types": "^7.24.5", - "convert-source-map": "^2.0.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.3", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@babel/eslint-parser": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.24.5.tgz", - "integrity": "sha512-gsUcqS/fPlgAw1kOtpss7uhY6E9SFFANQ6EFX5GTvzUwaV0+sGaZWk6xq22MOdeT9wfxyokW3ceCUvOiRtZciQ==", - "dev": true, - "dependencies": { - "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", - "eslint-visitor-keys": "^2.1.0", - "semver": "^6.3.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || >=14.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.11.0", - "eslint": "^7.5.0 || ^8.0.0 || ^9.0.0" - } - }, - "node_modules/@babel/generator": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.5.tgz", - "integrity": "sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==", - "dependencies": { - "@babel/types": "^7.24.5", - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz", - "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.15" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", - "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", - "dependencies": { - "@babel/compat-data": "^7.23.5", - "@babel/helper-validator-option": "^7.23.5", - "browserslist": "^4.22.2", - "lru-cache": "^5.1.1", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.5.tgz", - "integrity": "sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-member-expression-to-functions": "^7.24.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.24.1", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.24.5", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz", - "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "regexpu-core": "^5.3.1", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz", - "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", - "dev": true, - "dependencies": { - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-plugin-utils": "^7.22.5", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", - "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", - "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", - "dependencies": { - "@babel/template": "^7.22.15", - "@babel/types": "^7.23.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.5.tgz", - "integrity": "sha512-4owRteeihKWKamtqg4JmWSsEZU445xpFRXPEwp44HbgbxdWlUV1b4Agg4lkA806Lil5XM/e+FJyS0vj5T6vmcA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.24.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.24.3", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz", - "integrity": "sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==", - "dependencies": { - "@babel/types": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.5.tgz", - "integrity": "sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==", - "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-module-imports": "^7.24.3", - "@babel/helper-simple-access": "^7.24.5", - "@babel/helper-split-export-declaration": "^7.24.5", - "@babel/helper-validator-identifier": "^7.24.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", - "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.5.tgz", - "integrity": "sha512-xjNLDopRzW2o6ba0gKbkZq5YWEBaK3PCyTOY1K2P/O07LGMhMqlMXPxwN4S5/RhWuCobT8z0jrlKGlYmeR1OhQ==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz", - "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-wrap-function": "^7.22.20" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-replace-supers": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.24.1.tgz", - "integrity": "sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==", - "dev": true, - "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-member-expression-to-functions": "^7.23.0", - "@babel/helper-optimise-call-expression": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.5.tgz", - "integrity": "sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ==", - "dependencies": { - "@babel/types": "^7.24.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", - "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.5.tgz", - "integrity": "sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==", - "dependencies": { - "@babel/types": "^7.24.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz", - "integrity": "sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.5.tgz", - "integrity": "sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", - "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-wrap-function": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.24.5.tgz", - "integrity": "sha512-/xxzuNvgRl4/HLNKvnFwdhdgN3cpLxgLROeLDl83Yx0AJ1SGvq1ak0OszTOjDfiB8Vx03eJbeDWh9r+jCCWttw==", - "dev": true, - "dependencies": { - "@babel/helper-function-name": "^7.23.0", - "@babel/template": "^7.24.0", - "@babel/types": "^7.24.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.5.tgz", - "integrity": "sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==", - "dependencies": { - "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.5", - "@babel/types": "^7.24.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.5.tgz", - "integrity": "sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==", - "dependencies": { - "@babel/helper-validator-identifier": "^7.24.5", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0", - "picocolors": "^1.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/parser": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.5.tgz", - "integrity": "sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==", - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.5.tgz", - "integrity": "sha512-LdXRi1wEMTrHVR4Zc9F8OewC3vdm5h4QB6L71zy6StmYeqGi1b3ttIO8UC+BfZKcH9jdr4aI249rBkm+3+YvHw==", - "dev": true, - "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.24.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.1.tgz", - "integrity": "sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.1.tgz", - "integrity": "sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.24.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.13.0" - } - }, - "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.1.tgz", - "integrity": "sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==", - "dev": true, - "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-proposal-private-property-in-object": { - "version": "7.21.0-placeholder-for-preset-env.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", - "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", - "dev": true, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.12.13" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-class-static-block": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", - "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-dynamic-import": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", - "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-export-namespace-from": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", - "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.1.tgz", - "integrity": "sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-attributes": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.1.tgz", - "integrity": "sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", - "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.1.tgz", - "integrity": "sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-private-property-in-object": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", - "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-top-level-await": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.1.tgz", - "integrity": "sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-unicode-sets-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", - "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", - "dev": true, - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.1.tgz", - "integrity": "sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.24.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.3.tgz", - "integrity": "sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==", - "dev": true, - "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-remap-async-to-generator": "^7.22.20", - "@babel/plugin-syntax-async-generators": "^7.8.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.1.tgz", - "integrity": "sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==", - "dev": true, - "dependencies": { - "@babel/helper-module-imports": "^7.24.1", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-remap-async-to-generator": "^7.22.20" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.1.tgz", - "integrity": "sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.5.tgz", - "integrity": "sha512-sMfBc3OxghjC95BkYrYocHL3NaOplrcaunblzwXhGmlPwpmfsxr4vK+mBBt49r+S240vahmv+kUxkeKgs+haCw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-class-properties": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.1.tgz", - "integrity": "sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==", - "dev": true, - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.1", - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-class-static-block": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.4.tgz", - "integrity": "sha512-B8q7Pz870Hz/q9UgP8InNpY01CSLDSCyqX7zcRuv3FcPl87A2G17lASroHWaCtbdIcbYzOZ7kWmXFKbijMSmFg==", - "dev": true, - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.4", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/plugin-syntax-class-static-block": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.12.0" - } - }, - "node_modules/@babel/plugin-transform-classes": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.5.tgz", - "integrity": "sha512-gWkLP25DFj2dwe9Ck8uwMOpko4YsqyfZJrOmqqcegeDYEbp7rmn4U6UQZNj08UF6MaX39XenSpKRCvpDRBtZ7Q==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-plugin-utils": "^7.24.5", - "@babel/helper-replace-supers": "^7.24.1", - "@babel/helper-split-export-declaration": "^7.24.5", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.1.tgz", - "integrity": "sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/template": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.5.tgz", - "integrity": "sha512-SZuuLyfxvsm+Ah57I/i1HVjveBENYK9ue8MJ7qkc7ndoNjqquJiElzA7f5yaAXjyW2hKojosOTAQQRX50bPSVg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.1.tgz", - "integrity": "sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==", - "dev": true, - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.1.tgz", - "integrity": "sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-dynamic-import": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.1.tgz", - "integrity": "sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.1.tgz", - "integrity": "sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==", - "dev": true, - "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-export-namespace-from": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.1.tgz", - "integrity": "sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-for-of": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.1.tgz", - "integrity": "sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-function-name": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.1.tgz", - "integrity": "sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==", - "dev": true, - "dependencies": { - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-json-strings": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.1.tgz", - "integrity": "sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/plugin-syntax-json-strings": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.1.tgz", - "integrity": "sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-logical-assignment-operators": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.1.tgz", - "integrity": "sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.1.tgz", - "integrity": "sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.1.tgz", - "integrity": "sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==", - "dev": true, - "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.1.tgz", - "integrity": "sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==", - "dev": true, - "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-simple-access": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.1.tgz", - "integrity": "sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==", - "dev": true, - "dependencies": { - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-validator-identifier": "^7.22.20" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.1.tgz", - "integrity": "sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==", - "dev": true, - "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", - "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", - "dev": true, - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-transform-new-target": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.1.tgz", - "integrity": "sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.1.tgz", - "integrity": "sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-numeric-separator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.1.tgz", - "integrity": "sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-object-rest-spread": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.5.tgz", - "integrity": "sha512-7EauQHszLGM3ay7a161tTQH7fj+3vVM/gThlz5HpFtnygTxjrlvoeq7MPVA1Vy9Q555OB8SnAOsMkLShNkkrHA==", - "dev": true, - "dependencies": { - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-plugin-utils": "^7.24.5", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.24.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-object-super": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.1.tgz", - "integrity": "sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-replace-supers": "^7.24.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-optional-catch-binding": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.1.tgz", - "integrity": "sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.5.tgz", - "integrity": "sha512-xWCkmwKT+ihmA6l7SSTpk8e4qQl/274iNbSKRRS8mpqFR32ksy36+a+LWY8OXCCEefF8WFlnOHVsaDI2231wBg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-parameters": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.5.tgz", - "integrity": "sha512-9Co00MqZ2aoky+4j2jhofErthm6QVLKbpQrvz20c3CH9KQCLHyNB+t2ya4/UrRpQGR+Wrwjg9foopoeSdnHOkA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-private-methods": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.1.tgz", - "integrity": "sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==", - "dev": true, - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.1", - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-private-property-in-object": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.5.tgz", - "integrity": "sha512-JM4MHZqnWR04jPMujQDTBVRnqxpLLpx2tkn7iPn+Hmsc0Gnb79yvRWOkvqFOx3Z7P7VxiRIR22c4eGSNj87OBQ==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.24.5", - "@babel/helper-plugin-utils": "^7.24.5", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.1.tgz", - "integrity": "sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.1.tgz", - "integrity": "sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "regenerator-transform": "^0.15.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.1.tgz", - "integrity": "sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.1.tgz", - "integrity": "sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-spread": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.1.tgz", - "integrity": "sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.1.tgz", - "integrity": "sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.1.tgz", - "integrity": "sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.5.tgz", - "integrity": "sha512-UTGnhYVZtTAjdwOTzT+sCyXmTn8AhaxOS/MjG9REclZ6ULHWF9KoCZur0HSGU7hk8PdBFKKbYe6+gqdXWz84Jg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-typescript": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.5.tgz", - "integrity": "sha512-E0VWu/hk83BIFUWnsKZ4D81KXjN5L3MobvevOHErASk9IPwKHOkTgvqzvNo1yP/ePJWqqK2SpUR5z+KQbl6NVw==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.24.5", - "@babel/helper-plugin-utils": "^7.24.5", - "@babel/plugin-syntax-typescript": "^7.24.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.1.tgz", - "integrity": "sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-property-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.1.tgz", - "integrity": "sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==", - "dev": true, - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.1.tgz", - "integrity": "sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==", - "dev": true, - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-sets-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.1.tgz", - "integrity": "sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==", - "dev": true, - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/preset-env": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.5.tgz", - "integrity": "sha512-UGK2ifKtcC8i5AI4cH+sbLLuLc2ktYSFJgBAXorKAsHUZmrQ1q6aQ6i3BvU24wWs2AAKqQB6kq3N9V9Gw1HiMQ==", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.24.4", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-plugin-utils": "^7.24.5", - "@babel/helper-validator-option": "^7.23.5", - "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.5", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.1", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.1", - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.1", - "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-syntax-class-static-block": "^7.14.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.24.1", - "@babel/plugin-syntax-import-attributes": "^7.24.1", - "@babel/plugin-syntax-import-meta": "^7.10.4", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5", - "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.24.1", - "@babel/plugin-transform-async-generator-functions": "^7.24.3", - "@babel/plugin-transform-async-to-generator": "^7.24.1", - "@babel/plugin-transform-block-scoped-functions": "^7.24.1", - "@babel/plugin-transform-block-scoping": "^7.24.5", - "@babel/plugin-transform-class-properties": "^7.24.1", - "@babel/plugin-transform-class-static-block": "^7.24.4", - "@babel/plugin-transform-classes": "^7.24.5", - "@babel/plugin-transform-computed-properties": "^7.24.1", - "@babel/plugin-transform-destructuring": "^7.24.5", - "@babel/plugin-transform-dotall-regex": "^7.24.1", - "@babel/plugin-transform-duplicate-keys": "^7.24.1", - "@babel/plugin-transform-dynamic-import": "^7.24.1", - "@babel/plugin-transform-exponentiation-operator": "^7.24.1", - "@babel/plugin-transform-export-namespace-from": "^7.24.1", - "@babel/plugin-transform-for-of": "^7.24.1", - "@babel/plugin-transform-function-name": "^7.24.1", - "@babel/plugin-transform-json-strings": "^7.24.1", - "@babel/plugin-transform-literals": "^7.24.1", - "@babel/plugin-transform-logical-assignment-operators": "^7.24.1", - "@babel/plugin-transform-member-expression-literals": "^7.24.1", - "@babel/plugin-transform-modules-amd": "^7.24.1", - "@babel/plugin-transform-modules-commonjs": "^7.24.1", - "@babel/plugin-transform-modules-systemjs": "^7.24.1", - "@babel/plugin-transform-modules-umd": "^7.24.1", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", - "@babel/plugin-transform-new-target": "^7.24.1", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.1", - "@babel/plugin-transform-numeric-separator": "^7.24.1", - "@babel/plugin-transform-object-rest-spread": "^7.24.5", - "@babel/plugin-transform-object-super": "^7.24.1", - "@babel/plugin-transform-optional-catch-binding": "^7.24.1", - "@babel/plugin-transform-optional-chaining": "^7.24.5", - "@babel/plugin-transform-parameters": "^7.24.5", - "@babel/plugin-transform-private-methods": "^7.24.1", - "@babel/plugin-transform-private-property-in-object": "^7.24.5", - "@babel/plugin-transform-property-literals": "^7.24.1", - "@babel/plugin-transform-regenerator": "^7.24.1", - "@babel/plugin-transform-reserved-words": "^7.24.1", - "@babel/plugin-transform-shorthand-properties": "^7.24.1", - "@babel/plugin-transform-spread": "^7.24.1", - "@babel/plugin-transform-sticky-regex": "^7.24.1", - "@babel/plugin-transform-template-literals": "^7.24.1", - "@babel/plugin-transform-typeof-symbol": "^7.24.5", - "@babel/plugin-transform-unicode-escapes": "^7.24.1", - "@babel/plugin-transform-unicode-property-regex": "^7.24.1", - "@babel/plugin-transform-unicode-regex": "^7.24.1", - "@babel/plugin-transform-unicode-sets-regex": "^7.24.1", - "@babel/preset-modules": "0.1.6-no-external-plugins", - "babel-plugin-polyfill-corejs2": "^0.4.10", - "babel-plugin-polyfill-corejs3": "^0.10.4", - "babel-plugin-polyfill-regenerator": "^0.6.1", - "core-js-compat": "^3.31.0", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/preset-modules": { - "version": "0.1.6-no-external-plugins", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", - "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/@babel/regjsgen": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", - "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", - "dev": true - }, - "node_modules/@babel/runtime": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.5.tgz", - "integrity": "sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g==", - "dev": true, - "dependencies": { - "regenerator-runtime": "^0.14.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/standalone": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.24.5.tgz", - "integrity": "sha512-Sl8oN9bGfRlNUA2jzfzoHEZxFBDliBlwi5mPVCAWKSlBNkXXJOHpu7SDOqjF6mRoTa6GNX/1kAWG3Tr+YQ3N7A==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/template": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.0.tgz", - "integrity": "sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==", - "dependencies": { - "@babel/code-frame": "^7.23.5", - "@babel/parser": "^7.24.0", - "@babel/types": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.5.tgz", - "integrity": "sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==", - "dependencies": { - "@babel/code-frame": "^7.24.2", - "@babel/generator": "^7.24.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.24.5", - "@babel/parser": "^7.24.5", - "@babel/types": "^7.24.5", - "debug": "^4.3.1", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/types": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.5.tgz", - "integrity": "sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==", - "dependencies": { - "@babel/helper-string-parser": "^7.24.1", - "@babel/helper-validator-identifier": "^7.24.5", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@cloudflare/kv-asset-handler": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.3.2.tgz", - "integrity": "sha512-EeEjMobfuJrwoctj7FA1y1KEbM0+Q1xSjobIEyie9k4haVEBB7vkDvsasw1pM3rO39mL2akxIAzLMUAtrMHZhA==", - "dev": true, - "dependencies": { - "mime": "^3.0.0" - }, - "engines": { - "node": ">=16.13" - } - }, - "node_modules/@docsearch/css": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/@docsearch/css/-/css-3.6.0.tgz", - "integrity": "sha512-+sbxb71sWre+PwDK7X2T8+bhS6clcVMLwBPznX45Qu6opJcgRjAp7gYSDzVFp187J+feSj5dNBN1mJoi6ckkUQ==" - }, - "node_modules/@docsearch/js": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/@docsearch/js/-/js-3.6.0.tgz", - "integrity": "sha512-QujhqINEElrkIfKwyyyTfbsfMAYCkylInLYMRqHy7PHc8xTBQCow73tlo/Kc7oIwBrCLf0P3YhjlOeV4v8hevQ==", - "dependencies": { - "@docsearch/react": "3.6.0", - "preact": "^10.0.0" - } - }, - "node_modules/@docsearch/react": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/@docsearch/react/-/react-3.6.0.tgz", - "integrity": "sha512-HUFut4ztcVNmqy9gp/wxNbC7pTOHhgVVkHVGCACTuLhUKUhKAF9KYHJtMiLUJxEqiFLQiuri1fWF8zqwM/cu1w==", - "dependencies": { - "@algolia/autocomplete-core": "1.9.3", - "@algolia/autocomplete-preset-algolia": "1.9.3", - "@docsearch/css": "3.6.0", - "algoliasearch": "^4.19.1" - }, - "peerDependencies": { - "@types/react": ">= 16.8.0 < 19.0.0", - "react": ">= 16.8.0 < 19.0.0", - "react-dom": ">= 16.8.0 < 19.0.0", - "search-insights": ">= 1 < 3" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - }, - "react": { - "optional": true - }, - "react-dom": { - "optional": true - }, - "search-insights": { - "optional": true - } - } - }, - "node_modules/@esbuild/android-arm": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.19.tgz", - "integrity": "sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.19.tgz", - "integrity": "sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.19.tgz", - "integrity": "sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-arm64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz", - "integrity": "sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.19.tgz", - "integrity": "sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-arm64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.19.tgz", - "integrity": "sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.19.tgz", - "integrity": "sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.19.tgz", - "integrity": "sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.19.tgz", - "integrity": "sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ia32": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.19.tgz", - "integrity": "sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.19.tgz", - "integrity": "sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==", - "cpu": [ - "loong64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-mips64el": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.19.tgz", - "integrity": "sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==", - "cpu": [ - "mips64el" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ppc64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.19.tgz", - "integrity": "sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-riscv64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.19.tgz", - "integrity": "sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==", - "cpu": [ - "riscv64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-s390x": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.19.tgz", - "integrity": "sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==", - "cpu": [ - "s390x" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.19.tgz", - "integrity": "sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.19.tgz", - "integrity": "sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.19.tgz", - "integrity": "sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.19.tgz", - "integrity": "sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-arm64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.19.tgz", - "integrity": "sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-ia32": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.19.tgz", - "integrity": "sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-x64": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz", - "integrity": "sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", - "dev": true, - "dependencies": { - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" - } - }, - "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/@eslint-community/regexpp": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", - "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", - "dev": true, - "engines": { - "node": "^12.0.0 || ^14.0.0 || >=16.0.0" - } - }, - "node_modules/@eslint/eslintrc": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", - "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", - "dev": true, - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@eslint/eslintrc/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@eslint/js": { - "version": "8.57.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", - "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/@humanwhocodes/config-array": { - "version": "0.11.14", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", - "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", - "dev": true, - "dependencies": { - "@humanwhocodes/object-schema": "^2.0.2", - "debug": "^4.3.1", - "minimatch": "^3.0.5" - }, - "engines": { - "node": ">=10.10.0" - } - }, - "node_modules/@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true, - "engines": { - "node": ">=12.22" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } - }, - "node_modules/@humanwhocodes/object-schema": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", - "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", - "dev": true - }, - "node_modules/@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", - "dev": true, - "dependencies": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@isaacs/cliui/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/@isaacs/cliui/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/@istanbuljs/schema": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", - "dependencies": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", - "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/source-map": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", - "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", - "dev": true, - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", - "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - }, - "node_modules/@mapbox/node-pre-gyp": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz", - "integrity": "sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==", - "dev": true, - "dependencies": { - "detect-libc": "^2.0.0", - "https-proxy-agent": "^5.0.0", - "make-dir": "^3.1.0", - "node-fetch": "^2.6.7", - "nopt": "^5.0.0", - "npmlog": "^5.0.1", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.11" - }, - "bin": { - "node-pre-gyp": "bin/node-pre-gyp" - } - }, - "node_modules/@mapbox/node-pre-gyp/node_modules/abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true - }, - "node_modules/@mapbox/node-pre-gyp/node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "dependencies": { - "semver": "^6.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@mapbox/node-pre-gyp/node_modules/make-dir/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@mapbox/node-pre-gyp/node_modules/nopt": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", - "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", - "dev": true, - "dependencies": { - "abbrev": "1" - }, - "bin": { - "nopt": "bin/nopt.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@mapbox/node-pre-gyp/node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@netlify/functions": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/@netlify/functions/-/functions-1.6.0.tgz", - "integrity": "sha512-6G92AlcpFrQG72XU8YH8pg94eDnq7+Q0YJhb8x4qNpdGsvuzvrfHWBmqFGp/Yshmv4wex9lpsTRZOocdrA2erQ==", - "dev": true, - "dependencies": { - "is-promise": "^4.0.0" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { - "version": "5.1.1-v1", - "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", - "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", - "dev": true, - "dependencies": { - "eslint-scope": "5.1.1" - } - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nuxt/devalue": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@nuxt/devalue/-/devalue-2.0.2.tgz", - "integrity": "sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==", - "dev": true - }, - "node_modules/@nuxt/kit": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/@nuxt/kit/-/kit-3.3.2.tgz", - "integrity": "sha512-mHucMYuN/nVJp0p+L6ezzEls8Y1PerAXCJi01lS3Z5ozz+l2OusEfes8EBxWcy3x0C5465ignXCujQs3/LAvnQ==", - "dev": true, - "dependencies": { - "@nuxt/schema": "3.3.2", - "c12": "^1.2.0", - "consola": "^2.15.3", - "defu": "^6.1.2", - "globby": "^13.1.3", - "hash-sum": "^2.0.0", - "ignore": "^5.2.4", - "jiti": "^1.18.2", - "knitwork": "^1.0.0", - "lodash.template": "^4.5.0", - "mlly": "^1.2.0", - "pathe": "^1.1.0", - "pkg-types": "^1.0.2", - "scule": "^1.0.0", - "semver": "^7.3.8", - "unctx": "^2.1.2", - "unimport": "^3.0.4", - "untyped": "^1.2.2" - }, - "engines": { - "node": "^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" - } - }, - "node_modules/@nuxt/kit/node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nuxt/schema": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/@nuxt/schema/-/schema-3.3.2.tgz", - "integrity": "sha512-M2X/iwdX4hct31A7LA2+e41F91VZUXmwS5sZ03G49RnZdEXHMOKBO67e1d+5uxYmRD6eM/EyxWdPVgyLf6wocw==", - "dev": true, - "dependencies": { - "c12": "^1.2.0", - "create-require": "^1.1.1", - "defu": "^6.1.2", - "hookable": "^5.5.0", - "jiti": "^1.18.2", - "pathe": "^1.1.0", - "pkg-types": "^1.0.2", - "postcss-import-resolver": "^2.0.0", - "scule": "^1.0.0", - "std-env": "^3.3.2", - "ufo": "^1.1.1", - "unimport": "^3.0.4", - "untyped": "^1.2.2" - }, - "engines": { - "node": "^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" - } - }, - "node_modules/@nuxt/telemetry": { - "version": "2.5.4", - "resolved": "https://registry.npmjs.org/@nuxt/telemetry/-/telemetry-2.5.4.tgz", - "integrity": "sha512-KH6wxzsNys69daSO0xUv0LEBAfhwwjK1M+0Cdi1/vxmifCslMIY7lN11B4eywSfscbyVPAYJvANyc7XiVPImBQ==", - "dev": true, - "dependencies": { - "@nuxt/kit": "^3.11.2", - "ci-info": "^4.0.0", - "consola": "^3.2.3", - "create-require": "^1.1.1", - "defu": "^6.1.4", - "destr": "^2.0.3", - "dotenv": "^16.4.5", - "git-url-parse": "^14.0.0", - "is-docker": "^3.0.0", - "jiti": "^1.21.0", - "mri": "^1.2.0", - "nanoid": "^5.0.7", - "ofetch": "^1.3.4", - "parse-git-config": "^3.0.0", - "pathe": "^1.1.2", - "rc9": "^2.1.2", - "std-env": "^3.7.0" - }, - "bin": { - "nuxt-telemetry": "bin/nuxt-telemetry.mjs" - } - }, - "node_modules/@nuxt/telemetry/node_modules/@nuxt/kit": { - "version": "3.11.2", - "resolved": "https://registry.npmjs.org/@nuxt/kit/-/kit-3.11.2.tgz", - "integrity": "sha512-yiYKP0ZWMW7T3TCmsv4H8+jEsB/nFriRAR8bKoSqSV9bkVYWPE36sf7JDux30dQ91jSlQG6LQkB3vCHYTS2cIg==", - "dev": true, - "dependencies": { - "@nuxt/schema": "3.11.2", - "c12": "^1.10.0", - "consola": "^3.2.3", - "defu": "^6.1.4", - "globby": "^14.0.1", - "hash-sum": "^2.0.0", - "ignore": "^5.3.1", - "jiti": "^1.21.0", - "knitwork": "^1.1.0", - "mlly": "^1.6.1", - "pathe": "^1.1.2", - "pkg-types": "^1.0.3", - "scule": "^1.3.0", - "semver": "^7.6.0", - "ufo": "^1.5.3", - "unctx": "^2.3.1", - "unimport": "^3.7.1", - "untyped": "^1.4.2" - }, - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/telemetry/node_modules/@nuxt/schema": { - "version": "3.11.2", - "resolved": "https://registry.npmjs.org/@nuxt/schema/-/schema-3.11.2.tgz", - "integrity": "sha512-Z0bx7N08itD5edtpkstImLctWMNvxTArsKXzS35ZuqyAyKBPcRjO1CU01slH0ahO30Gg9kbck3/RKNZPwfOjJg==", - "dev": true, - "dependencies": { - "@nuxt/ui-templates": "^1.3.2", - "consola": "^3.2.3", - "defu": "^6.1.4", - "hookable": "^5.5.3", - "pathe": "^1.1.2", - "pkg-types": "^1.0.3", - "scule": "^1.3.0", - "std-env": "^3.7.0", - "ufo": "^1.5.3", - "unimport": "^3.7.1", - "untyped": "^1.4.2" - }, - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/telemetry/node_modules/consola": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", - "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", - "dev": true, - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/telemetry/node_modules/destr": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.3.tgz", - "integrity": "sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==", - "dev": true - }, - "node_modules/@nuxt/telemetry/node_modules/globby": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.1.tgz", - "integrity": "sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==", - "dev": true, - "dependencies": { - "@sindresorhus/merge-streams": "^2.1.0", - "fast-glob": "^3.3.2", - "ignore": "^5.2.4", - "path-type": "^5.0.0", - "slash": "^5.1.0", - "unicorn-magic": "^0.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@nuxt/telemetry/node_modules/path-type": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", - "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@nuxt/telemetry/node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nuxt/telemetry/node_modules/slash": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", - "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", - "dev": true, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@nuxt/ui-templates": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/@nuxt/ui-templates/-/ui-templates-1.3.3.tgz", - "integrity": "sha512-3BG5doAREcD50dbKyXgmjD4b1GzY8CUy3T41jMhHZXNDdaNwOd31IBq+D6dV00OSrDVhzrTVj0IxsUsnMyHvIQ==" - }, - "node_modules/@nuxt/vite-builder": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/@nuxt/vite-builder/-/vite-builder-3.3.2.tgz", - "integrity": "sha512-yvJpNDkQNSHQbbsSecvrd+W3GbISwLsYougSrEKmW3KgETb7F4OXK/VQAf95Yv60Tw904Jm59n7kzFMYls13LA==", - "dev": true, - "dependencies": { - "@nuxt/kit": "3.3.2", - "@rollup/plugin-replace": "^5.0.2", - "@vitejs/plugin-vue": "^4.1.0", - "@vitejs/plugin-vue-jsx": "^3.0.1", - "autoprefixer": "^10.4.14", - "chokidar": "^3.5.3", - "clear": "^0.1.0", - "cssnano": "^5.1.15", - "defu": "^6.1.2", - "esbuild": "^0.17.12", - "escape-string-regexp": "^5.0.0", - "estree-walker": "^3.0.3", - "externality": "^1.0.0", - "fs-extra": "^11.1.1", - "get-port-please": "^3.0.1", - "h3": "^1.6.2", - "knitwork": "^1.0.0", - "magic-string": "^0.30.0", - "mlly": "^1.2.0", - "ohash": "^1.0.0", - "pathe": "^1.1.0", - "perfect-debounce": "^0.1.3", - "pkg-types": "^1.0.2", - "postcss": "^8.4.21", - "postcss-import": "^15.1.0", - "postcss-url": "^10.1.3", - "rollup": "^3.20.2", - "rollup-plugin-visualizer": "^5.9.0", - "std-env": "^3.3.2", - "strip-literal": "^1.0.1", - "ufo": "^1.1.1", - "unplugin": "^1.3.1", - "vite": "~4.2.1", - "vite-node": "^0.29.7", - "vite-plugin-checker": "^0.5.6", - "vue-bundle-renderer": "^1.0.2" - }, - "engines": { - "node": "^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" - }, - "peerDependencies": { - "vue": "^3.2.47" - } - }, - "node_modules/@nuxt/vite-builder/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@nuxt/vite-builder/node_modules/estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "dev": true, - "dependencies": { - "@types/estree": "^1.0.0" - } - }, - "node_modules/@nuxt/vite-builder/node_modules/rollup": { - "version": "3.29.4", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.4.tgz", - "integrity": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==", - "dev": true, - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=14.18.0", - "npm": ">=8.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/@nuxt/vite-builder/node_modules/vite": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/vite/-/vite-4.2.3.tgz", - "integrity": "sha512-kLU+m2q0Y434Y1kCy3TchefAdtFso0ILi0dLyFV8Us3InXTU11H/B5ZTqCKIQHzSKNxVG/yEx813EA9f1imQ9A==", - "dev": true, - "dependencies": { - "esbuild": "^0.17.5", - "postcss": "^8.4.21", - "resolve": "^1.22.1", - "rollup": "^3.18.0" - }, - "bin": { - "vite": "bin/vite.js" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - }, - "peerDependencies": { - "@types/node": ">= 14", - "less": "*", - "sass": "*", - "stylus": "*", - "sugarss": "*", - "terser": "^5.4.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "less": { - "optional": true - }, - "sass": { - "optional": true - }, - "stylus": { - "optional": true - }, - "sugarss": { - "optional": true - }, - "terser": { - "optional": true - } - } - }, - "node_modules/@one-ini/wasm": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@one-ini/wasm/-/wasm-0.1.1.tgz", - "integrity": "sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==", - "dev": true - }, - "node_modules/@parcel/watcher": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.4.1.tgz", - "integrity": "sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==", - "dev": true, - "dependencies": { - "detect-libc": "^1.0.3", - "is-glob": "^4.0.3", - "micromatch": "^4.0.5", - "node-addon-api": "^7.0.0" - }, - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - }, - "optionalDependencies": { - "@parcel/watcher-android-arm64": "2.4.1", - "@parcel/watcher-darwin-arm64": "2.4.1", - "@parcel/watcher-darwin-x64": "2.4.1", - "@parcel/watcher-freebsd-x64": "2.4.1", - "@parcel/watcher-linux-arm-glibc": "2.4.1", - "@parcel/watcher-linux-arm64-glibc": "2.4.1", - "@parcel/watcher-linux-arm64-musl": "2.4.1", - "@parcel/watcher-linux-x64-glibc": "2.4.1", - "@parcel/watcher-linux-x64-musl": "2.4.1", - "@parcel/watcher-win32-arm64": "2.4.1", - "@parcel/watcher-win32-ia32": "2.4.1", - "@parcel/watcher-win32-x64": "2.4.1" - } - }, - "node_modules/@parcel/watcher-android-arm64": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.4.1.tgz", - "integrity": "sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-darwin-arm64": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.4.1.tgz", - "integrity": "sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-darwin-x64": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.4.1.tgz", - "integrity": "sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-freebsd-x64": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.4.1.tgz", - "integrity": "sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-arm-glibc": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.4.1.tgz", - "integrity": "sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-arm64-glibc": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.4.1.tgz", - "integrity": "sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-arm64-musl": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.4.1.tgz", - "integrity": "sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-x64-glibc": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.4.1.tgz", - "integrity": "sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-x64-musl": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.4.1.tgz", - "integrity": "sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-wasm": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-wasm/-/watcher-wasm-2.4.1.tgz", - "integrity": "sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA==", - "bundleDependencies": [ - "napi-wasm" - ], - "dev": true, - "dependencies": { - "is-glob": "^4.0.3", - "micromatch": "^4.0.5", - "napi-wasm": "^1.1.0" - }, - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-wasm/node_modules/napi-wasm": { - "version": "1.1.0", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/@parcel/watcher-win32-arm64": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.4.1.tgz", - "integrity": "sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-win32-ia32": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.4.1.tgz", - "integrity": "sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-win32-x64": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.4.1.tgz", - "integrity": "sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher/node_modules/detect-libc": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", - "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", - "dev": true, - "bin": { - "detect-libc": "bin/detect-libc.js" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=14" - } - }, - "node_modules/@rollup/plugin-alias": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@rollup/plugin-alias/-/plugin-alias-5.1.0.tgz", - "integrity": "sha512-lpA3RZ9PdIG7qqhEfv79tBffNaoDuukFDrmhLqg9ifv99u/ehn+lOg30x2zmhf8AQqQUZaMk/B9fZraQ6/acDQ==", - "dev": true, - "dependencies": { - "slash": "^4.0.0" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } - } - }, - "node_modules/@rollup/plugin-babel": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-6.0.4.tgz", - "integrity": "sha512-YF7Y52kFdFT/xVSuVdjkV5ZdX/3YtmX0QulG+x0taQOtJdHYzVU61aSSkAgVJ7NOv6qPkIYiJSgSWWN/DM5sGw==", - "dev": true, - "dependencies": { - "@babel/helper-module-imports": "^7.18.6", - "@rollup/pluginutils": "^5.0.1" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0", - "@types/babel__core": "^7.1.9", - "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" - }, - "peerDependenciesMeta": { - "@types/babel__core": { - "optional": true - }, - "rollup": { - "optional": true - } - } - }, - "node_modules/@rollup/plugin-commonjs": { - "version": "24.1.0", - "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-24.1.0.tgz", - "integrity": "sha512-eSL45hjhCWI0jCCXcNtLVqM5N1JlBGvlFfY0m6oOYnLCJ6N0qEXoZql4sY2MOUArzhH4SA/qBpTxvvZp2Sc+DQ==", - "dev": true, - "dependencies": { - "@rollup/pluginutils": "^5.0.1", - "commondir": "^1.0.1", - "estree-walker": "^2.0.2", - "glob": "^8.0.3", - "is-reference": "1.2.1", - "magic-string": "^0.27.0" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^2.68.0||^3.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } - } - }, - "node_modules/@rollup/plugin-commonjs/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/@rollup/plugin-commonjs/node_modules/glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@rollup/plugin-commonjs/node_modules/magic-string": { - "version": "0.27.0", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz", - "integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==", - "dev": true, - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.13" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@rollup/plugin-commonjs/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@rollup/plugin-inject": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/@rollup/plugin-inject/-/plugin-inject-5.0.5.tgz", - "integrity": "sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==", - "dev": true, - "dependencies": { - "@rollup/pluginutils": "^5.0.1", - "estree-walker": "^2.0.2", - "magic-string": "^0.30.3" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } - } - }, - "node_modules/@rollup/plugin-json": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-6.1.0.tgz", - "integrity": "sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==", - "dev": true, - "dependencies": { - "@rollup/pluginutils": "^5.1.0" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } - } - }, - "node_modules/@rollup/plugin-node-resolve": { - "version": "15.2.3", - "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.2.3.tgz", - "integrity": "sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==", - "dev": true, - "dependencies": { - "@rollup/pluginutils": "^5.0.1", - "@types/resolve": "1.20.2", - "deepmerge": "^4.2.2", - "is-builtin-module": "^3.2.1", - "is-module": "^1.0.0", - "resolve": "^1.22.1" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^2.78.0||^3.0.0||^4.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } - } - }, - "node_modules/@rollup/plugin-replace": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-5.0.5.tgz", - "integrity": "sha512-rYO4fOi8lMaTg/z5Jb+hKnrHHVn8j2lwkqwyS4kTRhKyWOLf2wST2sWXr4WzWiTcoHTp2sTjqUbqIj2E39slKQ==", - "dev": true, - "dependencies": { - "@rollup/pluginutils": "^5.0.1", - "magic-string": "^0.30.3" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } - } - }, - "node_modules/@rollup/plugin-terser": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/@rollup/plugin-terser/-/plugin-terser-0.4.4.tgz", - "integrity": "sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==", - "dev": true, - "dependencies": { - "serialize-javascript": "^6.0.1", - "smob": "^1.0.0", - "terser": "^5.17.4" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^2.0.0||^3.0.0||^4.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } - } - }, - "node_modules/@rollup/plugin-wasm": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/@rollup/plugin-wasm/-/plugin-wasm-6.2.2.tgz", - "integrity": "sha512-gpC4R1G9Ni92ZIRTexqbhX7U+9estZrbhP+9SRb0DW9xpB9g7j34r+J2hqrcW/lRI7dJaU84MxZM0Rt82tqYPQ==", - "dev": true, - "dependencies": { - "@rollup/pluginutils": "^5.0.2" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } - } - }, - "node_modules/@rollup/pluginutils": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.0.tgz", - "integrity": "sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==", - "dependencies": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } - } - }, - "node_modules/@sindresorhus/merge-streams": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", - "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@stackblitz/sdk": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/@stackblitz/sdk/-/sdk-1.10.0.tgz", - "integrity": "sha512-IcvE9Xifo2c4/f+yNqjFM/OW5VTBPLed3TxsQ+n8n81Py358IqD5w0IYfFgV5gbDjp2g5H5YK2/Shls/kQNTWQ==", - "dev": true - }, - "node_modules/@tootallnate/once": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", - "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", - "dev": true, - "engines": { - "node": ">= 10" - } - }, - "node_modules/@trysound/sax": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", - "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", - "dev": true, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/@types/chai": { - "version": "4.3.16", - "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.16.tgz", - "integrity": "sha512-PatH4iOdyh3MyWtmHVFXLWCCIhUbopaltqddG9BzB+gMIzee2MJrvd+jouii9Z3wzQJruGWAm7WOMjgfG8hQlQ==", - "dev": true - }, - "node_modules/@types/chai-subset": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/@types/chai-subset/-/chai-subset-1.3.5.tgz", - "integrity": "sha512-c2mPnw+xHtXDoHmdtcCXGwyLMiauiAyxWMzhGpqHC4nqI/Y5G2XhTampslK2rb59kpcuHon03UH8W6iYUzw88A==", - "dev": true, - "dependencies": { - "@types/chai": "*" - } - }, - "node_modules/@types/eslint": { - "version": "8.56.10", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.10.tgz", - "integrity": "sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==", - "dev": true, - "peer": true, - "dependencies": { - "@types/estree": "*", - "@types/json-schema": "*" - } - }, - "node_modules/@types/eslint-scope": { - "version": "3.7.7", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", - "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", - "dev": true, - "peer": true, - "dependencies": { - "@types/eslint": "*", - "@types/estree": "*" - } - }, - "node_modules/@types/estree": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", - "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" - }, - "node_modules/@types/json-schema": { - "version": "7.0.15", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", - "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", - "dev": true - }, - "node_modules/@types/node": { - "version": "20.12.12", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.12.tgz", - "integrity": "sha512-eWLDGF/FOSPtAvEqeRAQ4C8LSA7M1I7i0ky1I8U7kD1J5ITyW3AsRhQrKVoWf5pFKZ2kILsEGJhsI9r93PYnOw==", - "dev": true, - "dependencies": { - "undici-types": "~5.26.4" - } - }, - "node_modules/@types/resolve": { - "version": "1.20.2", - "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.2.tgz", - "integrity": "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==", - "dev": true - }, - "node_modules/@ungap/structured-clone": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", - "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", - "dev": true - }, - "node_modules/@unhead/dom": { - "version": "1.9.10", - "resolved": "https://registry.npmjs.org/@unhead/dom/-/dom-1.9.10.tgz", - "integrity": "sha512-F4sBrmd8kG8MEqcVTGL0Y6tXbJMdWK724pznUzefpZTs1GaVypFikLluaLt4EnICcVhOBSe4TkGrc8N21IJJzQ==", - "dev": true, - "dependencies": { - "@unhead/schema": "1.9.10", - "@unhead/shared": "1.9.10" - }, - "funding": { - "url": "https://github.com/sponsors/harlan-zw" - } - }, - "node_modules/@unhead/schema": { - "version": "1.9.10", - "resolved": "https://registry.npmjs.org/@unhead/schema/-/schema-1.9.10.tgz", - "integrity": "sha512-3ROh0doKfA7cIcU0zmjYVvNOiJuxSOcjInL+7iOFIxQovEWr1PcDnrnbEWGJsXrLA8eqjrjmhuDqAr3JbMGsLg==", - "dev": true, - "dependencies": { - "hookable": "^5.5.3", - "zhead": "^2.2.4" - }, - "funding": { - "url": "https://github.com/sponsors/harlan-zw" - } - }, - "node_modules/@unhead/shared": { - "version": "1.9.10", - "resolved": "https://registry.npmjs.org/@unhead/shared/-/shared-1.9.10.tgz", - "integrity": "sha512-LBXxm/8ahY4FZ0FbWVaM1ANFO5QpPzvaYwjAQhgHANsrqFP2EqoGcOv1CfhdQbxg8vpGXkjI7m0r/8E9d3JoDA==", - "dev": true, - "dependencies": { - "@unhead/schema": "1.9.10" - }, - "funding": { - "url": "https://github.com/sponsors/harlan-zw" - } - }, - "node_modules/@unhead/ssr": { - "version": "1.9.10", - "resolved": "https://registry.npmjs.org/@unhead/ssr/-/ssr-1.9.10.tgz", - "integrity": "sha512-4hy3uFrYGJd5h0jmCIC0vFBf5DDhbz+j6tkATTNIaLz5lR4ZdFT+ipwzR20GvnaOiGWiOhZF3yv9FTJQyX4jog==", - "dev": true, - "dependencies": { - "@unhead/schema": "1.9.10", - "@unhead/shared": "1.9.10" - }, - "funding": { - "url": "https://github.com/sponsors/harlan-zw" - } - }, - "node_modules/@unhead/vue": { - "version": "1.9.10", - "resolved": "https://registry.npmjs.org/@unhead/vue/-/vue-1.9.10.tgz", - "integrity": "sha512-Zi65eTU5IIaqqXAVOVJ4fnwJRR751FZIFlzYOjIekf1eNkISy+A4xyz3NIEQWSlXCrOiDNgDhT0YgKUcx5FfHQ==", - "dev": true, - "dependencies": { - "@unhead/schema": "1.9.10", - "@unhead/shared": "1.9.10", - "hookable": "^5.5.3", - "unhead": "1.9.10" - }, - "funding": { - "url": "https://github.com/sponsors/harlan-zw" - }, - "peerDependencies": { - "vue": ">=2.7 || >=3" - } - }, - "node_modules/@vercel/nft": { - "version": "0.22.6", - "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.22.6.tgz", - "integrity": "sha512-gTsFnnT4mGxodr4AUlW3/urY+8JKKB452LwF3m477RFUJTAaDmcz2JqFuInzvdybYIeyIv1sSONEJxsxnbQ5JQ==", - "dev": true, - "dependencies": { - "@mapbox/node-pre-gyp": "^1.0.5", - "@rollup/pluginutils": "^4.0.0", - "acorn": "^8.6.0", - "async-sema": "^3.1.1", - "bindings": "^1.4.0", - "estree-walker": "2.0.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.2", - "node-gyp-build": "^4.2.2", - "resolve-from": "^5.0.0" - }, - "bin": { - "nft": "out/cli.js" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@vercel/nft/node_modules/@rollup/pluginutils": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", - "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", - "dev": true, - "dependencies": { - "estree-walker": "^2.0.1", - "picomatch": "^2.2.2" - }, - "engines": { - "node": ">= 8.0.0" - } - }, - "node_modules/@vercel/nft/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@vercel/nft/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@vitejs/plugin-vue": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-4.1.0.tgz", - "integrity": "sha512-++9JOAFdcXI3lyer9UKUV4rfoQ3T1RN8yDqoCLar86s0xQct5yblxAE+yWgRnU5/0FOlVCpTZpYSBV/bGWrSrQ==", - "dev": true, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "peerDependencies": { - "vite": "^4.0.0", - "vue": "^3.2.25" - } - }, - "node_modules/@vitejs/plugin-vue-jsx": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-3.1.0.tgz", - "integrity": "sha512-w9M6F3LSEU5kszVb9An2/MmXNxocAnUb3WhRr8bHlimhDrXNt6n6D2nJQR3UXpGlZHh/EsgouOHCsM8V3Ln+WA==", - "dev": true, - "dependencies": { - "@babel/core": "^7.23.3", - "@babel/plugin-transform-typescript": "^7.23.3", - "@vue/babel-plugin-jsx": "^1.1.5" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "peerDependencies": { - "vite": "^4.0.0 || ^5.0.0", - "vue": "^3.0.0" - } - }, - "node_modules/@vitest/coverage-istanbul": { - "version": "0.29.8", - "resolved": "https://registry.npmjs.org/@vitest/coverage-istanbul/-/coverage-istanbul-0.29.8.tgz", - "integrity": "sha512-ZCBDQFM8Quu5yQN2BNhTRL2XHxzghE1aH2pUctwrCDcafabpLE2CV8KaYHg1bBVNIKGtyLqQagv4E455uAn6dw==", - "dev": true, - "dependencies": { - "istanbul-lib-coverage": "^3.2.0", - "istanbul-lib-instrument": "^5.2.1", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^4.0.1", - "istanbul-reports": "^3.1.5", - "test-exclude": "^6.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/antfu" - }, - "peerDependencies": { - "vitest": ">=0.28.0 <1" - } - }, - "node_modules/@vitest/expect": { - "version": "0.29.8", - "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-0.29.8.tgz", - "integrity": "sha512-xlcVXn5I5oTq6NiZSY3ykyWixBxr5mG8HYtjvpgg6KaqHm0mvhX18xuwl5YGxIRNt/A5jidd7CWcNHrSvgaQqQ==", - "dev": true, - "dependencies": { - "@vitest/spy": "0.29.8", - "@vitest/utils": "0.29.8", - "chai": "^4.3.7" - } - }, - "node_modules/@vitest/runner": { - "version": "0.29.8", - "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-0.29.8.tgz", - "integrity": "sha512-FzdhnRDwEr/A3Oo1jtIk/B952BBvP32n1ObMEb23oEJNO+qO5cBet6M2XWIDQmA7BDKGKvmhUf2naXyp/2JEwQ==", - "dev": true, - "dependencies": { - "@vitest/utils": "0.29.8", - "p-limit": "^4.0.0", - "pathe": "^1.1.0" - } - }, - "node_modules/@vitest/runner/node_modules/p-limit": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", - "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", - "dev": true, - "dependencies": { - "yocto-queue": "^1.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@vitest/runner/node_modules/yocto-queue": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", - "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", - "dev": true, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@vitest/spy": { - "version": "0.29.8", - "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-0.29.8.tgz", - "integrity": "sha512-VdjBe9w34vOMl5I5mYEzNX8inTxrZ+tYUVk9jxaZJmHFwmDFC/GV3KBFTA/JKswr3XHvZL+FE/yq5EVhb6pSAw==", - "dev": true, - "dependencies": { - "tinyspy": "^1.0.2" - } - }, - "node_modules/@vitest/utils": { - "version": "0.29.8", - "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-0.29.8.tgz", - "integrity": "sha512-qGzuf3vrTbnoY+RjjVVIBYfuWMjn3UMUqyQtdGNZ6ZIIyte7B37exj6LaVkrZiUTvzSadVvO/tJm8AEgbGCBPg==", - "dev": true, - "dependencies": { - "cli-truncate": "^3.1.0", - "diff": "^5.1.0", - "loupe": "^2.3.6", - "pretty-format": "^27.5.1" - } - }, - "node_modules/@vue/babel-helper-vue-transform-on": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.2.2.tgz", - "integrity": "sha512-nOttamHUR3YzdEqdM/XXDyCSdxMA9VizUKoroLX6yTyRtggzQMHXcmwh8a7ZErcJttIBIc9s68a1B8GZ+Dmvsw==", - "dev": true - }, - "node_modules/@vue/babel-plugin-jsx": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.2.2.tgz", - "integrity": "sha512-nYTkZUVTu4nhP199UoORePsql0l+wj7v/oyQjtThUVhJl1U+6qHuoVhIvR3bf7eVKjbCK+Cs2AWd7mi9Mpz9rA==", - "dev": true, - "dependencies": { - "@babel/helper-module-imports": "~7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-jsx": "^7.23.3", - "@babel/template": "^7.23.9", - "@babel/traverse": "^7.23.9", - "@babel/types": "^7.23.9", - "@vue/babel-helper-vue-transform-on": "1.2.2", - "@vue/babel-plugin-resolve-type": "1.2.2", - "camelcase": "^6.3.0", - "html-tags": "^3.3.1", - "svg-tags": "^1.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - }, - "peerDependenciesMeta": { - "@babel/core": { - "optional": true - } - } - }, - "node_modules/@vue/babel-plugin-jsx/node_modules/@babel/helper-module-imports": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", - "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.15" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@vue/babel-plugin-resolve-type": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@vue/babel-plugin-resolve-type/-/babel-plugin-resolve-type-1.2.2.tgz", - "integrity": "sha512-EntyroPwNg5IPVdUJupqs0CFzuf6lUrVvCspmv2J1FITLeGnUCuoGNNk78dgCusxEiYj6RMkTJflGSxk5aIC4A==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.23.5", - "@babel/helper-module-imports": "~7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/parser": "^7.23.9", - "@vue/compiler-sfc": "^3.4.15" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@vue/babel-plugin-resolve-type/node_modules/@babel/helper-module-imports": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", - "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.15" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@vue/compiler-core": { - "version": "3.4.27", - "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.27.tgz", - "integrity": "sha512-E+RyqY24KnyDXsCuQrI+mlcdW3ALND6U7Gqa/+bVwbcpcR3BRRIckFoz7Qyd4TTlnugtwuI7YgjbvsLmxb+yvg==", - "dependencies": { - "@babel/parser": "^7.24.4", - "@vue/shared": "3.4.27", - "entities": "^4.5.0", - "estree-walker": "^2.0.2", - "source-map-js": "^1.2.0" - } - }, - "node_modules/@vue/compiler-dom": { - "version": "3.4.27", - "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.27.tgz", - "integrity": "sha512-kUTvochG/oVgE1w5ViSr3KUBh9X7CWirebA3bezTbB5ZKBQZwR2Mwj9uoSKRMFcz4gSMzzLXBPD6KpCLb9nvWw==", - "dependencies": { - "@vue/compiler-core": "3.4.27", - "@vue/shared": "3.4.27" - } - }, - "node_modules/@vue/compiler-sfc": { - "version": "3.4.27", - "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.4.27.tgz", - "integrity": "sha512-nDwntUEADssW8e0rrmE0+OrONwmRlegDA1pD6QhVeXxjIytV03yDqTey9SBDiALsvAd5U4ZrEKbMyVXhX6mCGA==", - "dependencies": { - "@babel/parser": "^7.24.4", - "@vue/compiler-core": "3.4.27", - "@vue/compiler-dom": "3.4.27", - "@vue/compiler-ssr": "3.4.27", - "@vue/shared": "3.4.27", - "estree-walker": "^2.0.2", - "magic-string": "^0.30.10", - "postcss": "^8.4.38", - "source-map-js": "^1.2.0" - } - }, - "node_modules/@vue/compiler-ssr": { - "version": "3.4.27", - "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.27.tgz", - "integrity": "sha512-CVRzSJIltzMG5FcidsW0jKNQnNRYC8bT21VegyMMtHmhW3UOI7knmUehzswXLrExDLE6lQCZdrhD4ogI7c+vuw==", - "dependencies": { - "@vue/compiler-dom": "3.4.27", - "@vue/shared": "3.4.27" - } - }, - "node_modules/@vue/devtools-api": { - "version": "6.6.1", - "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.6.1.tgz", - "integrity": "sha512-LgPscpE3Vs0x96PzSSB4IGVSZXZBZHpfxs+ZA1d+VEPwHdOXowy/Y2CsvCAIFrf+ssVU1pD1jidj505EpUnfbA==" - }, - "node_modules/@vue/reactivity": { - "version": "3.4.27", - "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.4.27.tgz", - "integrity": "sha512-kK0g4NknW6JX2yySLpsm2jlunZJl2/RJGZ0H9ddHdfBVHcNzxmQ0sS0b09ipmBoQpY8JM2KmUw+a6sO8Zo+zIA==", - "dependencies": { - "@vue/shared": "3.4.27" - } - }, - "node_modules/@vue/runtime-core": { - "version": "3.4.27", - "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.4.27.tgz", - "integrity": "sha512-7aYA9GEbOOdviqVvcuweTLe5Za4qBZkUY7SvET6vE8kyypxVgaT1ixHLg4urtOlrApdgcdgHoTZCUuTGap/5WA==", - "dependencies": { - "@vue/reactivity": "3.4.27", - "@vue/shared": "3.4.27" - } - }, - "node_modules/@vue/runtime-dom": { - "version": "3.4.27", - "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.4.27.tgz", - "integrity": "sha512-ScOmP70/3NPM+TW9hvVAz6VWWtZJqkbdf7w6ySsws+EsqtHvkhxaWLecrTorFxsawelM5Ys9FnDEMt6BPBDS0Q==", - "dependencies": { - "@vue/runtime-core": "3.4.27", - "@vue/shared": "3.4.27", - "csstype": "^3.1.3" - } - }, - "node_modules/@vue/server-renderer": { - "version": "3.4.27", - "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.4.27.tgz", - "integrity": "sha512-dlAMEuvmeA3rJsOMJ2J1kXU7o7pOxgsNHVr9K8hB3ImIkSuBrIdy0vF66h8gf8Tuinf1TK3mPAz2+2sqyf3KzA==", - "dependencies": { - "@vue/compiler-ssr": "3.4.27", - "@vue/shared": "3.4.27" - }, - "peerDependencies": { - "vue": "3.4.27" - } - }, - "node_modules/@vue/shared": { - "version": "3.4.27", - "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.27.tgz", - "integrity": "sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==" - }, - "node_modules/@vue/test-utils": { - "version": "2.4.6", - "resolved": "https://registry.npmjs.org/@vue/test-utils/-/test-utils-2.4.6.tgz", - "integrity": "sha512-FMxEjOpYNYiFe0GkaHsnJPXFHxQ6m4t8vI/ElPGpMWxZKpmRvQ33OIrvRXemy6yha03RxhOlQuy+gZMC3CQSow==", - "dev": true, - "dependencies": { - "js-beautify": "^1.14.9", - "vue-component-type-helpers": "^2.0.0" - } - }, - "node_modules/@webassemblyjs/ast": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", - "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", - "dev": true, - "peer": true, - "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" - } - }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", - "dev": true, - "peer": true - }, - "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", - "dev": true, - "peer": true - }, - "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", - "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==", - "dev": true, - "peer": true - }, - "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", - "dev": true, - "peer": true, - "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", - "dev": true, - "peer": true - }, - "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", - "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", - "dev": true, - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.12.1" - } - }, - "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", - "dev": true, - "peer": true, - "dependencies": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "node_modules/@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", - "dev": true, - "peer": true, - "dependencies": { - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", - "dev": true, - "peer": true - }, - "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", - "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", - "dev": true, - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.12.1", - "@webassemblyjs/wasm-gen": "1.12.1", - "@webassemblyjs/wasm-opt": "1.12.1", - "@webassemblyjs/wasm-parser": "1.12.1", - "@webassemblyjs/wast-printer": "1.12.1" - } - }, - "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", - "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", - "dev": true, - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" - } - }, - "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", - "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", - "dev": true, - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/wasm-gen": "1.12.1", - "@webassemblyjs/wasm-parser": "1.12.1" - } - }, - "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", - "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", - "dev": true, - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" - } - }, - "node_modules/@webassemblyjs/wast-printer": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", - "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", - "dev": true, - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "dev": true, - "peer": true - }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "dev": true, - "peer": true - }, - "node_modules/abab": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", - "deprecated": "Use your platform's native atob() and btoa() methods instead", - "dev": true - }, - "node_modules/abbrev": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-2.0.0.tgz", - "integrity": "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==", - "dev": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/acorn": { - "version": "8.11.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", - "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-globals": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", - "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", - "dev": true, - "dependencies": { - "acorn": "^7.1.1", - "acorn-walk": "^7.1.1" - } - }, - "node_modules/acorn-globals/node_modules/acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", - "dev": true, - "peer": true, - "peerDependencies": { - "acorn": "^8" - } - }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/acorn-walk": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", - "dev": true, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dev": true, - "dependencies": { - "debug": "4" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "dev": true, - "peerDependencies": { - "ajv": "^6.9.1" - } - }, - "node_modules/algoliasearch": { - "version": "4.23.3", - "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-4.23.3.tgz", - "integrity": "sha512-Le/3YgNvjW9zxIQMRhUHuhiUjAlKY/zsdZpfq4dlLqg6mEm0nL6yk+7f2hDOtLpxsgE4jSzDmvHL7nXdBp5feg==", - "dependencies": { - "@algolia/cache-browser-local-storage": "4.23.3", - "@algolia/cache-common": "4.23.3", - "@algolia/cache-in-memory": "4.23.3", - "@algolia/client-account": "4.23.3", - "@algolia/client-analytics": "4.23.3", - "@algolia/client-common": "4.23.3", - "@algolia/client-personalization": "4.23.3", - "@algolia/client-search": "4.23.3", - "@algolia/logger-common": "4.23.3", - "@algolia/logger-console": "4.23.3", - "@algolia/recommend": "4.23.3", - "@algolia/requester-browser-xhr": "4.23.3", - "@algolia/requester-common": "4.23.3", - "@algolia/requester-node-http": "4.23.3", - "@algolia/transporter": "4.23.3" - } - }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.21.3" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-escapes/node_modules/type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/any-promise": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", - "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", - "dev": true - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", - "dev": true - }, - "node_modules/archiver": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/archiver/-/archiver-5.3.2.tgz", - "integrity": "sha512-+25nxyyznAXF7Nef3y0EbBeqmGZgeN/BxHX29Rs39djAfaFalmQ89SE6CWyDCHzGL0yt/ycBtNOmGTW0FyGWNw==", - "dev": true, - "dependencies": { - "archiver-utils": "^2.1.0", - "async": "^3.2.4", - "buffer-crc32": "^0.2.1", - "readable-stream": "^3.6.0", - "readdir-glob": "^1.1.2", - "tar-stream": "^2.2.0", - "zip-stream": "^4.1.0" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/archiver-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-2.1.0.tgz", - "integrity": "sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==", - "dev": true, - "dependencies": { - "glob": "^7.1.4", - "graceful-fs": "^4.2.0", - "lazystream": "^1.0.0", - "lodash.defaults": "^4.2.0", - "lodash.difference": "^4.5.0", - "lodash.flatten": "^4.4.0", - "lodash.isplainobject": "^4.0.6", - "lodash.union": "^4.6.0", - "normalize-path": "^3.0.0", - "readable-stream": "^2.0.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/archiver-utils/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/archiver-utils/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/archiver-utils/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/archiver-utils/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/are-we-there-yet": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", - "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", - "dev": true, - "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/arg": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", - "dev": true - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/assertion-error": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", - "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/async": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", - "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==", - "dev": true - }, - "node_modules/async-sema": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/async-sema/-/async-sema-3.1.1.tgz", - "integrity": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==", - "dev": true - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "dev": true - }, - "node_modules/autoprefixer": { - "version": "10.4.19", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.19.tgz", - "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "browserslist": "^4.23.0", - "caniuse-lite": "^1.0.30001599", - "fraction.js": "^4.3.7", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", - "postcss-value-parser": "^4.2.0" - }, - "bin": { - "autoprefixer": "bin/autoprefixer" - }, - "engines": { - "node": "^10 || ^12 || >=14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.11", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz", - "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.6.2", - "semver": "^6.3.1" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.10.4", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz", - "integrity": "sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==", - "dev": true, - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.1", - "core-js-compat": "^3.36.1" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", - "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", - "dev": true, - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.2" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/binary-extensions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", - "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/bindings": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", - "dev": true, - "dependencies": { - "file-uri-to-path": "1.0.0" - } - }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dev": true, - "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "node_modules/boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", - "dev": true - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/browser-process-hrtime": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", - "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", - "dev": true - }, - "node_modules/browserslist": { - "version": "4.23.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", - "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "caniuse-lite": "^1.0.30001587", - "electron-to-chromium": "^1.4.668", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/buffer-crc32": { - "version": "0.2.13", - "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true - }, - "node_modules/builtin-modules": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", - "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", - "dev": true, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/c12": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/c12/-/c12-1.10.0.tgz", - "integrity": "sha512-0SsG7UDhoRWcuSvKWHaXmu5uNjDCDN3nkQLRL4Q42IlFy+ze58FcCoI3uPwINXinkz7ZinbhEgyzYFw9u9ZV8g==", - "dependencies": { - "chokidar": "^3.6.0", - "confbox": "^0.1.3", - "defu": "^6.1.4", - "dotenv": "^16.4.5", - "giget": "^1.2.1", - "jiti": "^1.21.0", - "mlly": "^1.6.1", - "ohash": "^1.1.3", - "pathe": "^1.1.2", - "perfect-debounce": "^1.0.0", - "pkg-types": "^1.0.3", - "rc9": "^2.1.1" - } - }, - "node_modules/c12/node_modules/perfect-debounce": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-1.0.0.tgz", - "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==" - }, - "node_modules/cac": { - "version": "6.7.14", - "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", - "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/call-bind": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", - "dev": true, - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/camelcase-css": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", - "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/caniuse-api": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", - "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", - "dev": true, - "dependencies": { - "browserslist": "^4.0.0", - "caniuse-lite": "^1.0.0", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001620", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001620.tgz", - "integrity": "sha512-WJvYsOjd1/BYUY6SNGUosK9DUidBPDTnOARHp3fSmFO1ekdxaY6nKRttEVrfMmYi80ctS0kz1wiWmm14fVc3ew==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ] - }, - "node_modules/chai": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/chai/-/chai-4.4.1.tgz", - "integrity": "sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==", - "dev": true, - "dependencies": { - "assertion-error": "^1.1.0", - "check-error": "^1.0.3", - "deep-eql": "^4.1.3", - "get-func-name": "^2.0.2", - "loupe": "^2.3.6", - "pathval": "^1.1.1", - "type-detect": "^4.0.8" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/chart.js": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-3.3.2.tgz", - "integrity": "sha512-H0hSO7xqTIrwxoACqnSoNromEMfXvfuVnrbuSt2TuXfBDDofbnto4zuZlRtRvC73/b37q3wGAWZyUU41QPvNbA==", - "dev": true - }, - "node_modules/check-error": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.3.tgz", - "integrity": "sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==", - "dev": true, - "dependencies": { - "get-func-name": "^2.0.2" - }, - "engines": { - "node": "*" - } - }, - "node_modules/chokidar": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", - "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "funding": { - "url": "https://paulmillr.com/funding/" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/chokidar/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "engines": { - "node": ">=10" - } - }, - "node_modules/chrome-trace-event": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", - "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", - "dev": true, - "peer": true, - "engines": { - "node": ">=6.0" - } - }, - "node_modules/ci-info": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.0.0.tgz", - "integrity": "sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], - "engines": { - "node": ">=8" - } - }, - "node_modules/citty": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/citty/-/citty-0.1.6.tgz", - "integrity": "sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==", - "dependencies": { - "consola": "^3.2.3" - } - }, - "node_modules/citty/node_modules/consola": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", - "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/clear": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/clear/-/clear-0.1.0.tgz", - "integrity": "sha512-qMjRnoL+JDPJHeLePZJuao6+8orzHMGP04A8CdwCNsKhRbOnKRjefxONR7bwILT3MHecxKBjHkKL/tkZ8r4Uzw==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/cli-truncate": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", - "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", - "dev": true, - "dependencies": { - "slice-ansi": "^5.0.0", - "string-width": "^5.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/clipboardy": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-4.0.0.tgz", - "integrity": "sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==", - "dev": true, - "dependencies": { - "execa": "^8.0.1", - "is-wsl": "^3.1.0", - "is64bit": "^2.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "dev": true, - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/cliui/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/cliui/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/cliui/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/cliui/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/cliui/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cliui/node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", - "dev": true, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/clone-deep": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", - "dev": true, - "dependencies": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "node_modules/color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true, - "bin": { - "color-support": "bin.js" - } - }, - "node_modules/colord": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", - "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", - "dev": true - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dev": true, - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/commander": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", - "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", - "dev": true, - "engines": { - "node": ">=14" - } - }, - "node_modules/commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", - "dev": true - }, - "node_modules/compress-commons": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-4.1.2.tgz", - "integrity": "sha512-D3uMHtGc/fcO1Gt1/L7i1e33VOvD4A9hfQLP+6ewd+BvG/gQ84Yh4oftEhAdjSMgBgwGL+jsppT7JYNpo6MHHg==", - "dev": true, - "dependencies": { - "buffer-crc32": "^0.2.13", - "crc32-stream": "^4.0.2", - "normalize-path": "^3.0.0", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "node_modules/concat-with-sourcemaps": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz", - "integrity": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==", - "dev": true, - "dependencies": { - "source-map": "^0.6.1" - } - }, - "node_modules/confbox": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.1.7.tgz", - "integrity": "sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==" - }, - "node_modules/config-chain": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", - "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", - "dev": true, - "dependencies": { - "ini": "^1.3.4", - "proto-list": "~1.2.1" - } - }, - "node_modules/consola": { - "version": "2.15.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-2.15.3.tgz", - "integrity": "sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==", - "dev": true - }, - "node_modules/console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", - "dev": true - }, - "node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" - }, - "node_modules/cookie-es": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie-es/-/cookie-es-0.5.0.tgz", - "integrity": "sha512-RyZrFi6PNpBFbIaQjXDlFIhFVqV42QeKSZX1yQIl6ihImq6vcHNGMtqQ/QzY3RMPuYSkvsRwtnt5M9NeYxKt0g==", - "dev": true - }, - "node_modules/core-js-compat": { - "version": "3.37.1", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.37.1.tgz", - "integrity": "sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==", - "dev": true, - "dependencies": { - "browserslist": "^4.23.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true - }, - "node_modules/crc-32": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz", - "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==", - "dev": true, - "bin": { - "crc32": "bin/crc32.njs" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/crc32-stream": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-4.0.3.tgz", - "integrity": "sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==", - "dev": true, - "dependencies": { - "crc-32": "^1.2.0", - "readable-stream": "^3.4.0" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", - "dev": true - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/crossws": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/crossws/-/crossws-0.2.4.tgz", - "integrity": "sha512-DAxroI2uSOgUKLz00NX6A8U/8EE3SZHmIND+10jkVSaypvyt57J5JEOxAQOL6lQxyzi/wZbTIwssU1uy69h5Vg==", - "dev": true, - "peerDependencies": { - "uWebSockets.js": "*" - }, - "peerDependenciesMeta": { - "uWebSockets.js": { - "optional": true - } - } - }, - "node_modules/css-declaration-sorter": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz", - "integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >=14" - }, - "peerDependencies": { - "postcss": "^8.0.9" - } - }, - "node_modules/css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", - "dev": true, - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/css-tree": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", - "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", - "dev": true, - "dependencies": { - "mdn-data": "2.0.14", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", - "dev": true, - "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "dev": true, - "bin": { - "cssesc": "bin/cssesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/cssnano": { - "version": "5.1.15", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz", - "integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==", - "dev": true, - "dependencies": { - "cssnano-preset-default": "^5.2.14", - "lilconfig": "^2.0.3", - "yaml": "^1.10.2" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/cssnano" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/cssnano-preset-default": { - "version": "5.2.14", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz", - "integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==", - "dev": true, - "dependencies": { - "css-declaration-sorter": "^6.3.1", - "cssnano-utils": "^3.1.0", - "postcss-calc": "^8.2.3", - "postcss-colormin": "^5.3.1", - "postcss-convert-values": "^5.1.3", - "postcss-discard-comments": "^5.1.2", - "postcss-discard-duplicates": "^5.1.0", - "postcss-discard-empty": "^5.1.1", - "postcss-discard-overridden": "^5.1.0", - "postcss-merge-longhand": "^5.1.7", - "postcss-merge-rules": "^5.1.4", - "postcss-minify-font-values": "^5.1.0", - "postcss-minify-gradients": "^5.1.1", - "postcss-minify-params": "^5.1.4", - "postcss-minify-selectors": "^5.2.1", - "postcss-normalize-charset": "^5.1.0", - "postcss-normalize-display-values": "^5.1.0", - "postcss-normalize-positions": "^5.1.1", - "postcss-normalize-repeat-style": "^5.1.1", - "postcss-normalize-string": "^5.1.0", - "postcss-normalize-timing-functions": "^5.1.0", - "postcss-normalize-unicode": "^5.1.1", - "postcss-normalize-url": "^5.1.0", - "postcss-normalize-whitespace": "^5.1.1", - "postcss-ordered-values": "^5.1.3", - "postcss-reduce-initial": "^5.1.2", - "postcss-reduce-transforms": "^5.1.0", - "postcss-svgo": "^5.1.0", - "postcss-unique-selectors": "^5.1.1" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/cssnano-utils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", - "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/csso": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", - "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", - "dev": true, - "dependencies": { - "css-tree": "^1.1.2" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/cssom": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", - "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", - "dev": true - }, - "node_modules/cssstyle": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", - "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", - "dev": true, - "dependencies": { - "cssom": "~0.3.6" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cssstyle/node_modules/cssom": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", - "dev": true - }, - "node_modules/csstype": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", - "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" - }, - "node_modules/cuint": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/cuint/-/cuint-0.2.2.tgz", - "integrity": "sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==", - "dev": true - }, - "node_modules/data-urls": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", - "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", - "dev": true, - "dependencies": { - "abab": "^2.0.6", - "whatwg-mimetype": "^3.0.0", - "whatwg-url": "^11.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/data-urls/node_modules/whatwg-url": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", - "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", - "dev": true, - "dependencies": { - "tr46": "^3.0.0", - "webidl-conversions": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decimal.js": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", - "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", - "dev": true - }, - "node_modules/deep-eql": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.3.tgz", - "integrity": "sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==", - "dev": true, - "dependencies": { - "type-detect": "^4.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/deep-equal": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.2.tgz", - "integrity": "sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==", - "dev": true, - "dependencies": { - "is-arguments": "^1.1.1", - "is-date-object": "^1.0.5", - "is-regex": "^1.1.4", - "object-is": "^1.1.5", - "object-keys": "^1.1.1", - "regexp.prototype.flags": "^1.5.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "node_modules/deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/define-data-property": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", - "dev": true, - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", - "dev": true, - "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/defu": { - "version": "6.1.4", - "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz", - "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==" - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "dev": true, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", - "dev": true - }, - "node_modules/depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/destr": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/destr/-/destr-1.2.2.tgz", - "integrity": "sha512-lrbCJwD9saUQrqUfXvl6qoM+QN3W7tLV5pAOs+OqOmopCCz/JkE05MHedJR1xfk4IAnZuJXPVuN5+7jNA2ZCiA==", - "dev": true - }, - "node_modules/destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "dev": true, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/detect-libc": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", - "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/didyoumean": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", - "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", - "dev": true - }, - "node_modules/diff": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", - "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", - "dev": true, - "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/dlv": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", - "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", - "dev": true - }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", - "dev": true, - "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/dom-serializer/node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "dev": true, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ] - }, - "node_modules/domexception": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", - "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", - "deprecated": "Use your platform's native DOMException instead", - "dev": true, - "dependencies": { - "webidl-conversions": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", - "dev": true, - "dependencies": { - "domelementtype": "^2.2.0" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" - } - }, - "node_modules/domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", - "dev": true, - "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/dot-prop": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-7.2.0.tgz", - "integrity": "sha512-Ol/IPXUARn9CSbkrdV4VJo7uCy1I3VuSiWCaFSg+8BdUOzF9n3jefIpcgAydvUZbTdEBZs2vEiTiS9m61ssiDA==", - "dev": true, - "dependencies": { - "type-fest": "^2.11.2" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/dotenv": { - "version": "16.4.5", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", - "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://dotenvx.com" - } - }, - "node_modules/duplexer": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", - "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", - "dev": true - }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true - }, - "node_modules/editorconfig": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/editorconfig/-/editorconfig-1.0.4.tgz", - "integrity": "sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==", - "dev": true, - "dependencies": { - "@one-ini/wasm": "0.1.1", - "commander": "^10.0.0", - "minimatch": "9.0.1", - "semver": "^7.5.3" - }, - "bin": { - "editorconfig": "bin/editorconfig" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/editorconfig/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/editorconfig/node_modules/minimatch": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.1.tgz", - "integrity": "sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/editorconfig/node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "dev": true - }, - "node_modules/electron-to-chromium": { - "version": "1.4.774", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.774.tgz", - "integrity": "sha512-132O1XCd7zcTkzS3FgkAzKmnBuNJjK8WjcTtNuoylj7MYbqw5eXehjQ5OK91g0zm7OTKIPeaAG4CPoRfD9M1Mg==" - }, - "node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "node_modules/emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dev": true, - "dependencies": { - "once": "^1.4.0" - } - }, - "node_modules/enhanced-resolve": { - "version": "5.16.1", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.16.1.tgz", - "integrity": "sha512-4U5pNsuDl0EhuZpq46M5xPslstkviJuhrdobaRDBk2Jy2KO37FDAJl4lb2KlNabxT0m4MTK2UHNrsAcphE8nyw==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/errno": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", - "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", - "dev": true, - "dependencies": { - "prr": "~1.0.1" - }, - "bin": { - "errno": "cli.js" - } - }, - "node_modules/es-define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-errors": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", - "dev": true, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-module-lexer": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.3.tgz", - "integrity": "sha512-i1gCgmR9dCl6Vil6UKPI/trA69s08g/syhiDK9TG0Nf1RJjjFI+AzoWW7sPufzkgYAn861skuCwJa0pIIHYxvg==", - "dev": true, - "peer": true - }, - "node_modules/esbuild": { - "version": "0.17.19", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.19.tgz", - "integrity": "sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==", - "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/android-arm": "0.17.19", - "@esbuild/android-arm64": "0.17.19", - "@esbuild/android-x64": "0.17.19", - "@esbuild/darwin-arm64": "0.17.19", - "@esbuild/darwin-x64": "0.17.19", - "@esbuild/freebsd-arm64": "0.17.19", - "@esbuild/freebsd-x64": "0.17.19", - "@esbuild/linux-arm": "0.17.19", - "@esbuild/linux-arm64": "0.17.19", - "@esbuild/linux-ia32": "0.17.19", - "@esbuild/linux-loong64": "0.17.19", - "@esbuild/linux-mips64el": "0.17.19", - "@esbuild/linux-ppc64": "0.17.19", - "@esbuild/linux-riscv64": "0.17.19", - "@esbuild/linux-s390x": "0.17.19", - "@esbuild/linux-x64": "0.17.19", - "@esbuild/netbsd-x64": "0.17.19", - "@esbuild/openbsd-x64": "0.17.19", - "@esbuild/sunos-x64": "0.17.19", - "@esbuild/win32-arm64": "0.17.19", - "@esbuild/win32-ia32": "0.17.19", - "@esbuild/win32-x64": "0.17.19" - } - }, - "node_modules/escalade": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", - "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", - "dev": true - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/escodegen": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", - "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", - "dev": true, - "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" - }, - "engines": { - "node": ">=6.0" - }, - "optionalDependencies": { - "source-map": "~0.6.1" - } - }, - "node_modules/escodegen/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/eslint": { - "version": "8.57.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", - "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", - "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.4", - "@eslint/js": "8.57.0", - "@humanwhocodes/config-array": "^0.11.14", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "@ungap/structured-clone": "^1.2.0", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-config-prettier": { - "version": "8.10.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz", - "integrity": "sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==", - "dev": true, - "bin": { - "eslint-config-prettier": "bin/cli.js" - }, - "peerDependencies": { - "eslint": ">=7.0.0" - } - }, - "node_modules/eslint-plugin-nuxt": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-nuxt/-/eslint-plugin-nuxt-4.0.0.tgz", - "integrity": "sha512-v3Vwdk8YKe52bAz8eSIDqQuTtfL/T1r9dSl1uhC5SyR5pgLxgKkQdxXVf/Bf6Ax7uyd9rHqiAuYVdqqDb7ILdA==", - "dev": true, - "dependencies": { - "eslint-plugin-vue": "^9.4.0", - "semver": "^7.3.7", - "vue-eslint-parser": "^9.0.3" - } - }, - "node_modules/eslint-plugin-nuxt/node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/eslint-plugin-prettier": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz", - "integrity": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==", - "dev": true, - "dependencies": { - "prettier-linter-helpers": "^1.0.0" - }, - "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "eslint": ">=7.28.0", - "prettier": ">=2.0.0" - }, - "peerDependenciesMeta": { - "eslint-config-prettier": { - "optional": true - } - } - }, - "node_modules/eslint-plugin-vue": { - "version": "9.26.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.26.0.tgz", - "integrity": "sha512-eTvlxXgd4ijE1cdur850G6KalZqk65k1JKoOI2d1kT3hr8sPD07j1q98FRFdNnpxBELGPWxZmInxeHGF/GxtqQ==", - "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.4.0", - "globals": "^13.24.0", - "natural-compare": "^1.4.0", - "nth-check": "^2.1.1", - "postcss-selector-parser": "^6.0.15", - "semver": "^7.6.0", - "vue-eslint-parser": "^9.4.2", - "xml-name-validator": "^4.0.0" - }, - "engines": { - "node": "^14.17.0 || >=16.0.0" - }, - "peerDependencies": { - "eslint": "^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0" - } - }, - "node_modules/eslint-plugin-vue/node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint-plugin-vue/node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/eslint-plugin-vue/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/eslint/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/eslint/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/eslint/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", - "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint/node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/eslint/node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/eslint/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/eslint/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", - "dev": true, - "dependencies": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/espree/node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", - "dev": true, - "dependencies": { - "estraverse": "^5.1.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/esquery/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esrecurse/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", - "dev": true - }, - "node_modules/events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", - "dev": true, - "peer": true, - "engines": { - "node": ">=0.8.x" - } - }, - "node_modules/execa": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", - "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^8.0.1", - "human-signals": "^5.0.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^4.1.0", - "strip-final-newline": "^3.0.0" - }, - "engines": { - "node": ">=16.17" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true - }, - "node_modules/externality": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/externality/-/externality-1.0.2.tgz", - "integrity": "sha512-LyExtJWKxtgVzmgtEHyQtLFpw1KFhQphF9nTG8TpAIVkiI/xQ3FJh75tRFLYl4hkn7BNIIdLJInuDAavX35pMw==", - "dev": true, - "dependencies": { - "enhanced-resolve": "^5.14.1", - "mlly": "^1.3.0", - "pathe": "^1.1.1", - "ufo": "^1.1.2" - } - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "node_modules/fast-diff": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", - "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", - "dev": true - }, - "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "node_modules/fastq": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", - "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "dependencies": { - "flat-cache": "^3.0.4" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", - "dev": true - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/flat-cache": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", - "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", - "dev": true, - "dependencies": { - "flatted": "^3.2.9", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/flatted": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", - "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", - "dev": true - }, - "node_modules/follow-redirects": { - "version": "1.15.6", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", - "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], - "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } - } - }, - "node_modules/foreground-child": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", - "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dev": true, - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/fraction.js": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", - "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", - "dev": true, - "engines": { - "node": "*" - }, - "funding": { - "type": "patreon", - "url": "https://github.com/sponsors/rawify" - } - }, - "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "dev": true - }, - "node_modules/fs-extra": { - "version": "11.2.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", - "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=14.14" - } - }, - "node_modules/fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/fs-minipass/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/fs-minipass/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/gauge": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", - "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", - "dev": true, - "dependencies": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.2", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.1", - "object-assign": "^4.1.1", - "signal-exit": "^3.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/gauge/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/gauge/node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "node_modules/gauge/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/generic-names": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/generic-names/-/generic-names-4.0.0.tgz", - "integrity": "sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==", - "dev": true, - "dependencies": { - "loader-utils": "^3.2.0" - } - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true, - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/get-func-name": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz", - "integrity": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", - "dev": true, - "dependencies": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-port-please": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/get-port-please/-/get-port-please-3.1.2.tgz", - "integrity": "sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==", - "dev": true - }, - "node_modules/get-stream": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", - "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/giget": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/giget/-/giget-1.2.3.tgz", - "integrity": "sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==", - "dependencies": { - "citty": "^0.1.6", - "consola": "^3.2.3", - "defu": "^6.1.4", - "node-fetch-native": "^1.6.3", - "nypm": "^0.3.8", - "ohash": "^1.1.3", - "pathe": "^1.1.2", - "tar": "^6.2.0" - }, - "bin": { - "giget": "dist/cli.mjs" - } - }, - "node_modules/giget/node_modules/consola": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", - "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/git-config-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/git-config-path/-/git-config-path-2.0.0.tgz", - "integrity": "sha512-qc8h1KIQbJpp+241id3GuAtkdyJ+IK+LIVtkiFTRKRrmddDzs3SI9CvP1QYmWBFvm1I/PWRwj//of8bgAc0ltA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/git-up": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/git-up/-/git-up-7.0.0.tgz", - "integrity": "sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==", - "dev": true, - "dependencies": { - "is-ssh": "^1.4.0", - "parse-url": "^8.1.0" - } - }, - "node_modules/git-url-parse": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/git-url-parse/-/git-url-parse-14.0.0.tgz", - "integrity": "sha512-NnLweV+2A4nCvn4U/m2AoYu0pPKlsmhK9cknG7IMwsjFY1S2jxM+mAhsDxyxfCIGfGaD+dozsyX4b6vkYc83yQ==", - "dev": true, - "dependencies": { - "git-up": "^7.0.0" - } - }, - "node_modules/glob": { - "version": "10.3.15", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.15.tgz", - "integrity": "sha512-0c6RlJt1TICLyvJYIApxb8GsXoai0KUP7AxKKAtsYXdgJR1mGEUa7DgwShbdk1nly0PYoZj01xd4hzbq3fsjpw==", - "dev": true, - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.3.6", - "minimatch": "^9.0.1", - "minipass": "^7.0.4", - "path-scurry": "^1.11.0" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "engines": { - "node": ">=16 || 14 >=14.18" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", - "dev": true, - "peer": true - }, - "node_modules/glob/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/glob/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/globby": { - "version": "13.2.2", - "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", - "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", - "dev": true, - "dependencies": { - "dir-glob": "^3.0.1", - "fast-glob": "^3.3.0", - "ignore": "^5.2.4", - "merge2": "^1.4.1", - "slash": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "dev": true - }, - "node_modules/graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true - }, - "node_modules/gzip-size": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-7.0.0.tgz", - "integrity": "sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==", - "dev": true, - "dependencies": { - "duplexer": "^0.1.2" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/h3": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/h3/-/h3-1.11.1.tgz", - "integrity": "sha512-AbaH6IDnZN6nmbnJOH72y3c5Wwh9P97soSVdGSBbcDACRdkC0FEWf25pzx4f/NuOCK6quHmW18yF2Wx+G4Zi1A==", - "dev": true, - "dependencies": { - "cookie-es": "^1.0.0", - "crossws": "^0.2.2", - "defu": "^6.1.4", - "destr": "^2.0.3", - "iron-webcrypto": "^1.0.0", - "ohash": "^1.1.3", - "radix3": "^1.1.0", - "ufo": "^1.4.0", - "uncrypto": "^0.1.3", - "unenv": "^1.9.0" - } - }, - "node_modules/h3/node_modules/cookie-es": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/cookie-es/-/cookie-es-1.1.0.tgz", - "integrity": "sha512-L2rLOcK0wzWSfSDA33YR+PUHDG10a8px7rUHKWbGLP4YfbsMed2KFUw5fczvDPbT98DDe3LEzviswl810apTEw==", - "dev": true - }, - "node_modules/h3/node_modules/destr": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.3.tgz", - "integrity": "sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==", - "dev": true - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", - "dev": true, - "dependencies": { - "es-define-property": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-proto": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-tostringtag": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", - "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", - "dev": true, - "dependencies": { - "has-symbols": "^1.0.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", - "dev": true - }, - "node_modules/hash-sum": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-2.0.0.tgz", - "integrity": "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==" - }, - "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/hookable": { - "version": "5.5.3", - "resolved": "https://registry.npmjs.org/hookable/-/hookable-5.5.3.tgz", - "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==" - }, - "node_modules/html-encoding-sniffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", - "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", - "dev": true, - "dependencies": { - "whatwg-encoding": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/html-escaper": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", - "dev": true - }, - "node_modules/html-tags": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", - "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "dev": true, - "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/http-proxy": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", - "dev": true, - "dependencies": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/http-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", - "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", - "dev": true, - "dependencies": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/http-shutdown": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/http-shutdown/-/http-shutdown-1.2.2.tgz", - "integrity": "sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==", - "dev": true, - "engines": { - "iojs": ">= 1.0.0", - "node": ">= 0.12.0" - } - }, - "node_modules/https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - "dev": true, - "dependencies": { - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/human-signals": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", - "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", - "engines": { - "node": ">=16.17.0" - } - }, - "node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/icss-replace-symbols": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz", - "integrity": "sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==", - "dev": true - }, - "node_modules/icss-utils": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", - "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/ignore": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", - "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", - "engines": { - "node": ">= 4" - } - }, - "node_modules/immutable": { - "version": "4.3.6", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.6.tgz", - "integrity": "sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==", - "dev": true - }, - "node_modules/import-cwd": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-3.0.0.tgz", - "integrity": "sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==", - "dev": true, - "dependencies": { - "import-from": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/import-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/import-from/-/import-from-3.0.0.tgz", - "integrity": "sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==", - "dev": true, - "dependencies": { - "resolve-from": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/import-from/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true, - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true - }, - "node_modules/iron-webcrypto": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz", - "integrity": "sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/brc-dd" - } - }, - "node_modules/is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-builtin-module": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", - "integrity": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==", - "dev": true, - "dependencies": { - "builtin-modules": "^3.3.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-core-module": { - "version": "2.13.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", - "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", - "dev": true, - "dependencies": { - "hasown": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-docker": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", - "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", - "dev": true, - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-inside-container": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", - "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", - "dev": true, - "dependencies": { - "is-docker": "^3.0.0" - }, - "bin": { - "is-inside-container": "cli.js" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", - "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==", - "dev": true - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-potential-custom-element-name": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", - "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", - "dev": true - }, - "node_modules/is-primitive": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-3.0.1.tgz", - "integrity": "sha512-GljRxhWvlCNRfZyORiH77FwdFwGcMO620o37EOYC0ORWdq+WYNVqW0w2Juzew4M+L81l6/QS3t5gkkihyRqv9w==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-promise": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz", - "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==", - "dev": true - }, - "node_modules/is-reference": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz", - "integrity": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==", - "dev": true, - "dependencies": { - "@types/estree": "*" - } - }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-ssh": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.4.0.tgz", - "integrity": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==", - "dev": true, - "dependencies": { - "protocols": "^2.0.1" - } - }, - "node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-wsl": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz", - "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", - "dev": true, - "dependencies": { - "is-inside-container": "^1.0.0" - }, - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is64bit": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is64bit/-/is64bit-2.0.0.tgz", - "integrity": "sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==", - "dev": true, - "dependencies": { - "system-architecture": "^0.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - }, - "node_modules/isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/istanbul-lib-coverage": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", - "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", - "dev": true, - "dependencies": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-report": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", - "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", - "dev": true, - "dependencies": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^4.0.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/istanbul-lib-report/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-report/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-source-maps": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", - "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", - "dev": true, - "dependencies": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/istanbul-reports": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", - "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", - "dev": true, - "dependencies": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jackspeak": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", - "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", - "dev": true, - "dependencies": { - "@isaacs/cliui": "^8.0.2" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" - } - }, - "node_modules/jest-worker": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", - "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", - "dev": true, - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^7.0.0" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/jest-worker/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jiti": { - "version": "1.21.0", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", - "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", - "bin": { - "jiti": "bin/jiti.js" - } - }, - "node_modules/js-beautify": { - "version": "1.15.1", - "resolved": "https://registry.npmjs.org/js-beautify/-/js-beautify-1.15.1.tgz", - "integrity": "sha512-ESjNzSlt/sWE8sciZH8kBF8BPlwXPwhR6pWKAw8bw4Bwj+iZcnKW6ONWUutJ7eObuBZQpiIb8S7OYspWrKt7rA==", - "dev": true, - "dependencies": { - "config-chain": "^1.1.13", - "editorconfig": "^1.0.4", - "glob": "^10.3.3", - "js-cookie": "^3.0.5", - "nopt": "^7.2.0" - }, - "bin": { - "css-beautify": "js/bin/css-beautify.js", - "html-beautify": "js/bin/html-beautify.js", - "js-beautify": "js/bin/js-beautify.js" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/js-cookie": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.5.tgz", - "integrity": "sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==", - "dev": true, - "engines": { - "node": ">=14" - } - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsdom": { - "version": "19.0.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-19.0.0.tgz", - "integrity": "sha512-RYAyjCbxy/vri/CfnjUWJQQtZ3LKlLnDqj+9XLNnJPgEGeirZs3hllKR20re8LUZ6o1b1X4Jat+Qd26zmP41+A==", - "dev": true, - "dependencies": { - "abab": "^2.0.5", - "acorn": "^8.5.0", - "acorn-globals": "^6.0.0", - "cssom": "^0.5.0", - "cssstyle": "^2.3.0", - "data-urls": "^3.0.1", - "decimal.js": "^10.3.1", - "domexception": "^4.0.0", - "escodegen": "^2.0.0", - "form-data": "^4.0.0", - "html-encoding-sniffer": "^3.0.0", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.0", - "parse5": "6.0.1", - "saxes": "^5.0.1", - "symbol-tree": "^3.2.4", - "tough-cookie": "^4.0.0", - "w3c-hr-time": "^1.0.2", - "w3c-xmlserializer": "^3.0.0", - "webidl-conversions": "^7.0.0", - "whatwg-encoding": "^2.0.0", - "whatwg-mimetype": "^3.0.0", - "whatwg-url": "^10.0.0", - "ws": "^8.2.3", - "xml-name-validator": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "canvas": "^2.5.0" - }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } - } - }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true, - "peer": true - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/jsonc-parser": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.1.tgz", - "integrity": "sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==", - "dev": true - }, - "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", - "dev": true, - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/klona": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", - "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/knitwork": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/knitwork/-/knitwork-1.1.0.tgz", - "integrity": "sha512-oHnmiBUVHz1V+URE77PNot2lv3QiYU2zQf1JjOVkMt3YDKGbu8NAFr+c4mcNOhdsGrB/VpVbRwPwhiXrPhxQbw==" - }, - "node_modules/lazystream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", - "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", - "dev": true, - "dependencies": { - "readable-stream": "^2.0.5" - }, - "engines": { - "node": ">= 0.6.3" - } - }, - "node_modules/lazystream/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/lazystream/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/lazystream/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/lilconfig": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true - }, - "node_modules/listhen": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/listhen/-/listhen-1.7.2.tgz", - "integrity": "sha512-7/HamOm5YD9Wb7CFgAZkKgVPA96WwhcTQoqtm2VTZGVbVVn3IWKRBTgrU7cchA3Q8k9iCsG8Osoi9GX4JsGM9g==", - "dev": true, - "dependencies": { - "@parcel/watcher": "^2.4.1", - "@parcel/watcher-wasm": "^2.4.1", - "citty": "^0.1.6", - "clipboardy": "^4.0.0", - "consola": "^3.2.3", - "crossws": "^0.2.0", - "defu": "^6.1.4", - "get-port-please": "^3.1.2", - "h3": "^1.10.2", - "http-shutdown": "^1.2.2", - "jiti": "^1.21.0", - "mlly": "^1.6.1", - "node-forge": "^1.3.1", - "pathe": "^1.1.2", - "std-env": "^3.7.0", - "ufo": "^1.4.0", - "untun": "^0.1.3", - "uqr": "^0.1.2" - }, - "bin": { - "listen": "bin/listhen.mjs", - "listhen": "bin/listhen.mjs" - } - }, - "node_modules/listhen/node_modules/consola": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", - "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", - "dev": true, - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/loader-runner": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", - "dev": true, - "peer": true, - "engines": { - "node": ">=6.11.5" - } - }, - "node_modules/loader-utils": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", - "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", - "dev": true, - "engines": { - "node": ">= 12.13.0" - } - }, - "node_modules/local-pkg": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-0.5.0.tgz", - "integrity": "sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==", - "dependencies": { - "mlly": "^1.4.2", - "pkg-types": "^1.0.3" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/antfu" - } - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "node_modules/lodash._reinterpolate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", - "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==", - "dev": true - }, - "node_modules/lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", - "dev": true - }, - "node_modules/lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", - "dev": true - }, - "node_modules/lodash.defaults": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", - "integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==", - "dev": true - }, - "node_modules/lodash.difference": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.difference/-/lodash.difference-4.5.0.tgz", - "integrity": "sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA==", - "dev": true - }, - "node_modules/lodash.flatten": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz", - "integrity": "sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==", - "dev": true - }, - "node_modules/lodash.isplainobject": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", - "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", - "dev": true - }, - "node_modules/lodash.memoize": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", - "dev": true - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "node_modules/lodash.pick": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz", - "integrity": "sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q==", - "dev": true - }, - "node_modules/lodash.template": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", - "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", - "dev": true, - "dependencies": { - "lodash._reinterpolate": "^3.0.0", - "lodash.templatesettings": "^4.0.0" - } - }, - "node_modules/lodash.templatesettings": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", - "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", - "dev": true, - "dependencies": { - "lodash._reinterpolate": "^3.0.0" - } - }, - "node_modules/lodash.union": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.union/-/lodash.union-4.6.0.tgz", - "integrity": "sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==", - "dev": true - }, - "node_modules/lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", - "dev": true - }, - "node_modules/loupe": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.7.tgz", - "integrity": "sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==", - "dev": true, - "dependencies": { - "get-func-name": "^2.0.1" - } - }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/lunr": { - "version": "2.3.9", - "resolved": "https://registry.npmjs.org/lunr/-/lunr-2.3.9.tgz", - "integrity": "sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==", - "dev": true - }, - "node_modules/magic-string": { - "version": "0.30.10", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", - "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.15" - } - }, - "node_modules/make-dir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", - "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", - "dev": true, - "dependencies": { - "semver": "^7.5.3" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/make-dir/node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/marked": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/marked/-/marked-4.3.0.tgz", - "integrity": "sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==", - "dev": true, - "bin": { - "marked": "bin/marked.js" - }, - "engines": { - "node": ">= 12" - } - }, - "node_modules/mdn-data": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", - "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", - "dev": true - }, - "node_modules/memory-fs": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", - "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", - "dev": true, - "dependencies": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" - }, - "engines": { - "node": ">=4.3.0 <5.0.0 || >=5.10" - } - }, - "node_modules/memory-fs/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/memory-fs/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/memory-fs/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "engines": { - "node": ">= 8" - } - }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/mime": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", - "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", - "dev": true, - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dev": true, - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/minipass": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.1.tgz", - "integrity": "sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==", - "dev": true, - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/minizlib/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minizlib/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, - "node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/mlly": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.7.0.tgz", - "integrity": "sha512-U9SDaXGEREBYQgfejV97coK0UL1r+qnF2SyO9A3qcI8MzKnsIFKHNVEkrDyNncQTKQQumsasmeq84eNMdBfsNQ==", - "dependencies": { - "acorn": "^8.11.3", - "pathe": "^1.1.2", - "pkg-types": "^1.1.0", - "ufo": "^1.5.3" - } - }, - "node_modules/mri": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", - "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node_modules/mz": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", - "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", - "dev": true, - "dependencies": { - "any-promise": "^1.0.0", - "object-assign": "^4.0.1", - "thenify-all": "^1.0.0" - } - }, - "node_modules/nanoid": { - "version": "5.0.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-5.0.7.tgz", - "integrity": "sha512-oLxFY2gd2IqnjcYyOXD8XGCftpGtZP2AbHbOkthDkvRywH5ayNtPVy9YlOPcHckXzbLTCHpkb7FB+yuxKV13pQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.js" - }, - "engines": { - "node": "^18 || >=20" - } - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "dev": true - }, - "node_modules/nitropack": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/nitropack/-/nitropack-2.3.3.tgz", - "integrity": "sha512-1g/4zdwWo+tWSvno57rhRXeGk6jNbG5W1yRNtOywInT1nyoEG1ksOwQ3W3JHGB2E1GNjZwAVi611UVOVL+JgYw==", - "dev": true, - "dependencies": { - "@cloudflare/kv-asset-handler": "^0.3.0", - "@netlify/functions": "^1.4.0", - "@rollup/plugin-alias": "^5.0.0", - "@rollup/plugin-commonjs": "^24.0.1", - "@rollup/plugin-inject": "^5.0.3", - "@rollup/plugin-json": "^6.0.0", - "@rollup/plugin-node-resolve": "^15.0.2", - "@rollup/plugin-replace": "^5.0.2", - "@rollup/plugin-terser": "^0.4.1", - "@rollup/plugin-wasm": "^6.1.2", - "@rollup/pluginutils": "^5.0.2", - "@vercel/nft": "^0.22.6", - "archiver": "^5.3.1", - "c12": "^1.2.0", - "chalk": "^5.2.0", - "chokidar": "^3.5.3", - "consola": "^3.0.1", - "cookie-es": "^0.5.0", - "defu": "^6.1.2", - "destr": "^1.2.2", - "dot-prop": "^7.2.0", - "esbuild": "^0.17.16", - "escape-string-regexp": "^5.0.0", - "etag": "^1.8.1", - "fs-extra": "^11.1.1", - "globby": "^13.1.3", - "gzip-size": "^7.0.0", - "h3": "^1.6.4", - "hookable": "^5.5.3", - "http-proxy": "^1.18.1", - "is-primitive": "^3.0.1", - "jiti": "^1.18.2", - "klona": "^2.0.6", - "knitwork": "^1.0.0", - "listhen": "^1.0.4", - "mime": "^3.0.0", - "mlly": "^1.2.0", - "mri": "^1.2.0", - "node-fetch-native": "^1.1.0", - "ofetch": "^1.0.1", - "ohash": "^1.0.0", - "pathe": "^1.1.0", - "perfect-debounce": "^0.1.3", - "pkg-types": "^1.0.2", - "pretty-bytes": "^6.1.0", - "radix3": "^1.0.1", - "rollup": "^3.20.2", - "rollup-plugin-visualizer": "^5.9.0", - "scule": "^1.0.0", - "semver": "^7.4.0", - "serve-placeholder": "^2.0.1", - "serve-static": "^1.15.0", - "source-map-support": "^0.5.21", - "std-env": "^3.3.2", - "ufo": "^1.1.1", - "unenv": "^1.3.1", - "unimport": "^3.0.6", - "unstorage": "^1.4.1" - }, - "bin": { - "nitro": "dist/cli.mjs", - "nitropack": "dist/cli.mjs" - }, - "engines": { - "node": "^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" - } - }, - "node_modules/nitropack/node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", - "dev": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/nitropack/node_modules/consola": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", - "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", - "dev": true, - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/nitropack/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/nitropack/node_modules/rollup": { - "version": "3.29.4", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.4.tgz", - "integrity": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==", - "dev": true, - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=14.18.0", - "npm": ">=8.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/nitropack/node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/node-addon-api": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.0.tgz", - "integrity": "sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g==", - "dev": true, - "engines": { - "node": "^16 || ^18 || >= 20" - } - }, - "node_modules/node-fetch": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", - "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", - "dev": true, - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, - "node_modules/node-fetch-native": { - "version": "1.6.4", - "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.4.tgz", - "integrity": "sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==" - }, - "node_modules/node-fetch/node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", - "dev": true - }, - "node_modules/node-fetch/node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", - "dev": true - }, - "node_modules/node-fetch/node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dev": true, - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "node_modules/node-forge": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", - "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", - "dev": true, - "engines": { - "node": ">= 6.13.0" - } - }, - "node_modules/node-gyp-build": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.1.tgz", - "integrity": "sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==", - "dev": true, - "bin": { - "node-gyp-build": "bin.js", - "node-gyp-build-optional": "optional.js", - "node-gyp-build-test": "build-test.js" - } - }, - "node_modules/node-releases": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", - "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" - }, - "node_modules/nopt": { - "version": "7.2.1", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-7.2.1.tgz", - "integrity": "sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==", - "dev": true, - "dependencies": { - "abbrev": "^2.0.0" - }, - "bin": { - "nopt": "bin/nopt.js" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/npm-run-path": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", - "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", - "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/npm-run-path/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/npmlog": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", - "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", - "dev": true, - "dependencies": { - "are-we-there-yet": "^2.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^3.0.0", - "set-blocking": "^2.0.0" - } - }, - "node_modules/nth-check": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", - "dev": true, - "dependencies": { - "boolbase": "^1.0.0" - }, - "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" - } - }, - "node_modules/nuxi": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/nuxi/-/nuxi-3.3.2.tgz", - "integrity": "sha512-JNPPU4E/cAbT3MMvjfURL1sAGrlTq0+Wfk/zM9R0XHusA4csHbwN0qDGD5oPZwrhladzLr+nMamWC8unbyiyXQ==", - "dev": true, - "bin": { - "nuxi": "bin/nuxi.mjs" - }, - "engines": { - "node": "^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/nuxt": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/nuxt/-/nuxt-3.3.2.tgz", - "integrity": "sha512-9xNd9+7M03oYktHnuEEgNRJYfkFwjlLvRi1NsEuEyzcc0SgazGZT89CBsQnlWI3wFMhoxoYPGJ8rc4sJAhJ1Gg==", - "dev": true, - "dependencies": { - "@nuxt/devalue": "^2.0.0", - "@nuxt/kit": "3.3.2", - "@nuxt/schema": "3.3.2", - "@nuxt/telemetry": "^2.1.10", - "@nuxt/ui-templates": "^1.1.1", - "@nuxt/vite-builder": "3.3.2", - "@unhead/ssr": "^1.1.23", - "@unhead/vue": "^1.1.23", - "@vue/reactivity": "^3.2.47", - "@vue/shared": "^3.2.47", - "chokidar": "^3.5.3", - "cookie-es": "^0.5.0", - "defu": "^6.1.2", - "destr": "^1.2.2", - "escape-string-regexp": "^5.0.0", - "estree-walker": "^3.0.3", - "fs-extra": "^11.1.1", - "globby": "^13.1.3", - "h3": "^1.6.2", - "hash-sum": "^2.0.0", - "hookable": "^5.5.0", - "jiti": "^1.18.2", - "knitwork": "^1.0.0", - "magic-string": "^0.30.0", - "mlly": "^1.2.0", - "nitropack": "~2.3.2", - "nuxi": "3.3.2", - "ofetch": "^1.0.1", - "ohash": "^1.0.0", - "pathe": "^1.1.0", - "perfect-debounce": "^0.1.3", - "scule": "^1.0.0", - "strip-literal": "^1.0.1", - "ufo": "^1.1.1", - "unctx": "^2.1.2", - "unenv": "^1.2.2", - "unimport": "^3.0.4", - "unplugin": "^1.3.1", - "untyped": "^1.2.2", - "vue": "^3.2.47", - "vue-bundle-renderer": "^1.0.2", - "vue-devtools-stub": "^0.1.0", - "vue-router": "^4.1.6" - }, - "bin": { - "nuxi": "bin/nuxt.mjs", - "nuxt": "bin/nuxt.mjs" - }, - "engines": { - "node": "^14.18.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" - } - }, - "node_modules/nuxt-gtag": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/nuxt-gtag/-/nuxt-gtag-0.6.3.tgz", - "integrity": "sha512-3dBM4HHyxSGrq4Sy6zlO35rvpz0d1awBU8RUN7u/UGUprygtO6M2zs0E1jISqYYjticOkW179RZ15gMT/ko9KQ==", - "dependencies": { - "@nuxt/kit": "^3.7.1", - "defu": "^6.1.2", - "pathe": "^1.1.1" - } - }, - "node_modules/nuxt-gtag/node_modules/@nuxt/kit": { - "version": "3.11.2", - "resolved": "https://registry.npmjs.org/@nuxt/kit/-/kit-3.11.2.tgz", - "integrity": "sha512-yiYKP0ZWMW7T3TCmsv4H8+jEsB/nFriRAR8bKoSqSV9bkVYWPE36sf7JDux30dQ91jSlQG6LQkB3vCHYTS2cIg==", - "dependencies": { - "@nuxt/schema": "3.11.2", - "c12": "^1.10.0", - "consola": "^3.2.3", - "defu": "^6.1.4", - "globby": "^14.0.1", - "hash-sum": "^2.0.0", - "ignore": "^5.3.1", - "jiti": "^1.21.0", - "knitwork": "^1.1.0", - "mlly": "^1.6.1", - "pathe": "^1.1.2", - "pkg-types": "^1.0.3", - "scule": "^1.3.0", - "semver": "^7.6.0", - "ufo": "^1.5.3", - "unctx": "^2.3.1", - "unimport": "^3.7.1", - "untyped": "^1.4.2" - }, - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/nuxt-gtag/node_modules/@nuxt/schema": { - "version": "3.11.2", - "resolved": "https://registry.npmjs.org/@nuxt/schema/-/schema-3.11.2.tgz", - "integrity": "sha512-Z0bx7N08itD5edtpkstImLctWMNvxTArsKXzS35ZuqyAyKBPcRjO1CU01slH0ahO30Gg9kbck3/RKNZPwfOjJg==", - "dependencies": { - "@nuxt/ui-templates": "^1.3.2", - "consola": "^3.2.3", - "defu": "^6.1.4", - "hookable": "^5.5.3", - "pathe": "^1.1.2", - "pkg-types": "^1.0.3", - "scule": "^1.3.0", - "std-env": "^3.7.0", - "ufo": "^1.5.3", - "unimport": "^3.7.1", - "untyped": "^1.4.2" - }, - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/nuxt-gtag/node_modules/consola": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", - "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/nuxt-gtag/node_modules/globby": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.1.tgz", - "integrity": "sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==", - "dependencies": { - "@sindresorhus/merge-streams": "^2.1.0", - "fast-glob": "^3.3.2", - "ignore": "^5.2.4", - "path-type": "^5.0.0", - "slash": "^5.1.0", - "unicorn-magic": "^0.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/nuxt-gtag/node_modules/path-type": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", - "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/nuxt-gtag/node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/nuxt-gtag/node_modules/slash": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", - "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/nuxt/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/nuxt/node_modules/estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "dev": true, - "dependencies": { - "@types/estree": "^1.0.0" - } - }, - "node_modules/nwsapi": { - "version": "2.2.10", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.10.tgz", - "integrity": "sha512-QK0sRs7MKv0tKe1+5uZIQk/C8XGza4DAnztJG8iD+TpJIORARrCxczA738awHrZoHeTjSSoHqao2teO0dC/gFQ==", - "dev": true - }, - "node_modules/nypm": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/nypm/-/nypm-0.3.8.tgz", - "integrity": "sha512-IGWlC6So2xv6V4cIDmoV0SwwWx7zLG086gyqkyumteH2fIgCAM4nDVFB2iDRszDvmdSVW9xb1N+2KjQ6C7d4og==", - "dependencies": { - "citty": "^0.1.6", - "consola": "^3.2.3", - "execa": "^8.0.1", - "pathe": "^1.1.2", - "ufo": "^1.4.0" - }, - "bin": { - "nypm": "dist/cli.mjs" - }, - "engines": { - "node": "^14.16.0 || >=16.10.0" - } - }, - "node_modules/nypm/node_modules/consola": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", - "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-hash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", - "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/object-is": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", - "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/ofetch": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/ofetch/-/ofetch-1.3.4.tgz", - "integrity": "sha512-KLIET85ik3vhEfS+3fDlc/BAZiAp+43QEC/yCo5zkNoY2YaKvNkOaFr/6wCFgFH1kuYQM5pMNi0Tg8koiIemtw==", - "dev": true, - "dependencies": { - "destr": "^2.0.3", - "node-fetch-native": "^1.6.3", - "ufo": "^1.5.3" - } - }, - "node_modules/ofetch/node_modules/destr": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.3.tgz", - "integrity": "sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==", - "dev": true - }, - "node_modules/ohash": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/ohash/-/ohash-1.1.3.tgz", - "integrity": "sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==" - }, - "node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "dev": true, - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/open": { - "version": "8.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", - "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", - "dev": true, - "dependencies": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/open/node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "dev": true, - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/open/node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dev": true, - "dependencies": { - "is-docker": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/optionator": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", - "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", - "dev": true, - "dependencies": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.5" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-queue": { - "version": "6.6.2", - "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz", - "integrity": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==", - "dev": true, - "dependencies": { - "eventemitter3": "^4.0.4", - "p-timeout": "^3.2.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-timeout": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz", - "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==", - "dev": true, - "dependencies": { - "p-finally": "^1.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/parchment": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/parchment/-/parchment-1.1.4.tgz", - "integrity": "sha512-J5FBQt/pM2inLzg4hEWmzQx/8h8D0CiDxaG3vyp9rKrQRSDgBlhjdP5jQGgosEajXPSQouXGHOmVdgo7QmJuOg==", - "dev": true - }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dev": true, - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/parse-git-config": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/parse-git-config/-/parse-git-config-3.0.0.tgz", - "integrity": "sha512-wXoQGL1D+2COYWCD35/xbiKma1Z15xvZL8cI25wvxzled58V51SJM04Urt/uznS900iQor7QO04SgdfT/XlbuA==", - "dev": true, - "dependencies": { - "git-config-path": "^2.0.0", - "ini": "^1.3.5" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/parse-path": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/parse-path/-/parse-path-7.0.0.tgz", - "integrity": "sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==", - "dev": true, - "dependencies": { - "protocols": "^2.0.0" - } - }, - "node_modules/parse-url": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-8.1.0.tgz", - "integrity": "sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==", - "dev": true, - "dependencies": { - "parse-path": "^7.0.0" - } - }, - "node_modules/parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", - "dev": true - }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true - }, - "node_modules/path-scurry": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", - "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", - "dev": true, - "dependencies": { - "lru-cache": "^10.2.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" - }, - "engines": { - "node": ">=16 || 14 >=14.18" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", - "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", - "dev": true, - "engines": { - "node": "14 || >=16.14" - } - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/pathe": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", - "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==" - }, - "node_modules/pathval": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz", - "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/perfect-debounce": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-0.1.3.tgz", - "integrity": "sha512-NOT9AcKiDGpnV/HBhI22Str++XWcErO/bALvHCuhv33owZW/CjH8KAFLZDCmu3727sihe0wTxpDhyGc6M8qacQ==", - "dev": true - }, - "node_modules/picocolors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", - "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pirates": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", - "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/pkg-types": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.1.1.tgz", - "integrity": "sha512-ko14TjmDuQJ14zsotODv7dBlwxKhUKQEhuhmbqo1uCi9BB0Z2alo/wAXg6q1dTR5TyuqYyWhjtfe/Tsh+X28jQ==", - "dependencies": { - "confbox": "^0.1.7", - "mlly": "^1.7.0", - "pathe": "^1.1.2" - } - }, - "node_modules/postcss": { - "version": "8.4.38", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", - "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "nanoid": "^3.3.7", - "picocolors": "^1.0.0", - "source-map-js": "^1.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss-calc": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", - "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", - "dev": true, - "dependencies": { - "postcss-selector-parser": "^6.0.9", - "postcss-value-parser": "^4.2.0" - }, - "peerDependencies": { - "postcss": "^8.2.2" - } - }, - "node_modules/postcss-colormin": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz", - "integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==", - "dev": true, - "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0", - "colord": "^2.9.1", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-convert-values": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", - "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", - "dev": true, - "dependencies": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-discard-comments": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", - "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-discard-duplicates": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", - "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-discard-empty": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", - "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-discard-overridden": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", - "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-import": { - "version": "15.1.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", - "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", - "dev": true, - "dependencies": { - "postcss-value-parser": "^4.0.0", - "read-cache": "^1.0.0", - "resolve": "^1.1.7" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "postcss": "^8.0.0" - } - }, - "node_modules/postcss-import-resolver": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-import-resolver/-/postcss-import-resolver-2.0.0.tgz", - "integrity": "sha512-y001XYgGvVwgxyxw9J1a5kqM/vtmIQGzx34g0A0Oy44MFcy/ZboZw1hu/iN3VYFjSTRzbvd7zZJJz0Kh0AGkTw==", - "dev": true, - "dependencies": { - "enhanced-resolve": "^4.1.1" - } - }, - "node_modules/postcss-import-resolver/node_modules/enhanced-resolve": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", - "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.1.2", - "memory-fs": "^0.5.0", - "tapable": "^1.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/postcss-import-resolver/node_modules/tapable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", - "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/postcss-js": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", - "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", - "dev": true, - "dependencies": { - "camelcase-css": "^2.0.1" - }, - "engines": { - "node": "^12 || ^14 || >= 16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.4.21" - } - }, - "node_modules/postcss-load-config": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", - "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", - "dev": true, - "dependencies": { - "lilconfig": "^2.0.5", - "yaml": "^1.10.2" - }, - "engines": { - "node": ">= 10" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": ">=8.0.9", - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "postcss": { - "optional": true - }, - "ts-node": { - "optional": true - } - } - }, - "node_modules/postcss-merge-longhand": { - "version": "5.1.7", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", - "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", - "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0", - "stylehacks": "^5.1.1" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-merge-rules": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz", - "integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==", - "dev": true, - "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0", - "cssnano-utils": "^3.1.0", - "postcss-selector-parser": "^6.0.5" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-minify-font-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", - "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", - "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-minify-gradients": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", - "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", - "dev": true, - "dependencies": { - "colord": "^2.9.1", - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-minify-params": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", - "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", - "dev": true, - "dependencies": { - "browserslist": "^4.21.4", - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-minify-selectors": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", - "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", - "dev": true, - "dependencies": { - "postcss-selector-parser": "^6.0.5" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-modules": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/postcss-modules/-/postcss-modules-4.3.1.tgz", - "integrity": "sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==", - "dev": true, - "dependencies": { - "generic-names": "^4.0.0", - "icss-replace-symbols": "^1.1.0", - "lodash.camelcase": "^4.3.0", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.0", - "postcss-modules-scope": "^3.0.0", - "postcss-modules-values": "^4.0.0", - "string-hash": "^1.1.1" - }, - "peerDependencies": { - "postcss": "^8.0.0" - } - }, - "node_modules/postcss-modules-extract-imports": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", - "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-modules-local-by-default": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.5.tgz", - "integrity": "sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==", - "dev": true, - "dependencies": { - "icss-utils": "^5.0.0", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.1.0" - }, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-modules-scope": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.0.tgz", - "integrity": "sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==", - "dev": true, - "dependencies": { - "postcss-selector-parser": "^6.0.4" - }, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-modules-values": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", - "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", - "dev": true, - "dependencies": { - "icss-utils": "^5.0.0" - }, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-nested": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", - "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", - "dev": true, - "dependencies": { - "postcss-selector-parser": "^6.0.11" - }, - "engines": { - "node": ">=12.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.2.14" - } - }, - "node_modules/postcss-normalize-charset": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", - "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-display-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", - "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", - "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-positions": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", - "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", - "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-repeat-style": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", - "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", - "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-string": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", - "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", - "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-timing-functions": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", - "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", - "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-unicode": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", - "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", - "dev": true, - "dependencies": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-url": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", - "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", - "dev": true, - "dependencies": { - "normalize-url": "^6.0.1", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-whitespace": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", - "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", - "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-ordered-values": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", - "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", - "dev": true, - "dependencies": { - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-reduce-initial": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz", - "integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==", - "dev": true, - "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-reduce-transforms": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", - "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", - "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-selector-parser": { - "version": "6.0.16", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz", - "integrity": "sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==", - "dev": true, - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/postcss-svgo": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", - "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", - "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0", - "svgo": "^2.7.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-unique-selectors": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", - "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", - "dev": true, - "dependencies": { - "postcss-selector-parser": "^6.0.5" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-url": { - "version": "10.1.3", - "resolved": "https://registry.npmjs.org/postcss-url/-/postcss-url-10.1.3.tgz", - "integrity": "sha512-FUzyxfI5l2tKmXdYc6VTu3TWZsInayEKPbiyW+P6vmmIrrb4I6CGX0BFoewgYHLK+oIL5FECEK02REYRpBvUCw==", - "dev": true, - "dependencies": { - "make-dir": "~3.1.0", - "mime": "~2.5.2", - "minimatch": "~3.0.4", - "xxhashjs": "~0.2.2" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "postcss": "^8.0.0" - } - }, - "node_modules/postcss-url/node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "dependencies": { - "semver": "^6.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/postcss-url/node_modules/mime": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", - "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==", - "dev": true, - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/postcss-url/node_modules/minimatch": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", - "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", - "dev": true - }, - "node_modules/postcss/node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/preact": { - "version": "10.22.0", - "resolved": "https://registry.npmjs.org/preact/-/preact-10.22.0.tgz", - "integrity": "sha512-RRurnSjJPj4rp5K6XoP45Ui33ncb7e4H7WiOHVpjbkvqvA3U+N8Z6Qbo0AE6leGYBV66n8EhEaFixvIu3SkxFw==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/preact" - } - }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/prettier": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz", - "integrity": "sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==", - "dev": true, - "bin": { - "prettier": "bin-prettier.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" - } - }, - "node_modules/prettier-linter-helpers": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", - "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", - "dev": true, - "dependencies": { - "fast-diff": "^1.1.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/pretty-bytes": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-6.1.1.tgz", - "integrity": "sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==", - "dev": true, - "engines": { - "node": "^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pretty-format": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", - "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1", - "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/primeicons": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/primeicons/-/primeicons-7.0.0.tgz", - "integrity": "sha512-jK3Et9UzwzTsd6tzl2RmwrVY/b8raJ3QZLzoDACj+oTJ0oX7L9Hy+XnVwgo4QVKlKpnP/Ur13SXV/pVh4LzaDw==", - "dev": true - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true - }, - "node_modules/promise.series": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/promise.series/-/promise.series-0.2.0.tgz", - "integrity": "sha512-VWQJyU2bcDTgZw8kpfBpB/ejZASlCrzwz5f2hjb/zlujOEB4oeiAhHygAWq8ubsX2GVkD4kCU5V2dwOTaCY5EQ==", - "dev": true, - "engines": { - "node": ">=0.12" - } - }, - "node_modules/proto-list": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", - "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", - "dev": true - }, - "node_modules/protocols": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/protocols/-/protocols-2.0.1.tgz", - "integrity": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==", - "dev": true - }, - "node_modules/prr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", - "dev": true - }, - "node_modules/psl": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", - "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", - "dev": true - }, - "node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/querystringify": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", - "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", - "dev": true - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/quill": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/quill/-/quill-1.3.7.tgz", - "integrity": "sha512-hG/DVzh/TiknWtE6QmWAF/pxoZKYxfe3J/d/+ShUWkDvvkZQVTPeVmUJVu1uE6DDooC4fWTiCLh84ul89oNz5g==", - "dev": true, - "dependencies": { - "clone": "^2.1.1", - "deep-equal": "^1.0.1", - "eventemitter3": "^2.0.3", - "extend": "^3.0.2", - "parchment": "^1.1.4", - "quill-delta": "^3.6.2" - } - }, - "node_modules/quill-delta": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/quill-delta/-/quill-delta-3.6.3.tgz", - "integrity": "sha512-wdIGBlcX13tCHOXGMVnnTVFtGRLoP0imqxM696fIPwIf5ODIYUHIvHbZcyvGlZFiFhK5XzDC2lpjbxRhnM05Tg==", - "dev": true, - "dependencies": { - "deep-equal": "^1.0.1", - "extend": "^3.0.2", - "fast-diff": "1.1.2" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/quill-delta/node_modules/fast-diff": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.1.2.tgz", - "integrity": "sha512-KaJUt+M9t1qaIteSvjc6P3RbMdXsNhK61GRftR6SNxqmhthcd9MGIi4T+o0jD8LUSpSnSKXE20nLtJ3fOHxQig==", - "dev": true - }, - "node_modules/quill/node_modules/eventemitter3": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-2.0.3.tgz", - "integrity": "sha512-jLN68Dx5kyFHaePoXWPsCGW5qdyZQtLYHkxkg02/Mz6g0kYpDx4FyP6XfArhQdlOC4b8Mv+EMxPo/8La7Tzghg==", - "dev": true - }, - "node_modules/radix3": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/radix3/-/radix3-1.1.2.tgz", - "integrity": "sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==", - "dev": true - }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "dev": true, - "dependencies": { - "safe-buffer": "^5.1.0" - } - }, - "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/rc9": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/rc9/-/rc9-2.1.2.tgz", - "integrity": "sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==", - "dependencies": { - "defu": "^6.1.4", - "destr": "^2.0.3" - } - }, - "node_modules/rc9/node_modules/destr": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.3.tgz", - "integrity": "sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==" - }, - "node_modules/react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", - "dev": true - }, - "node_modules/read-cache": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", - "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", - "dev": true, - "dependencies": { - "pify": "^2.3.0" - } - }, - "node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/readdir-glob": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/readdir-glob/-/readdir-glob-1.1.3.tgz", - "integrity": "sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==", - "dev": true, - "dependencies": { - "minimatch": "^5.1.0" - } - }, - "node_modules/readdir-glob/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/readdir-glob/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/regenerate": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", - "dev": true - }, - "node_modules/regenerate-unicode-properties": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", - "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", - "dev": true, - "dependencies": { - "regenerate": "^1.4.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", - "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", - "dev": true - }, - "node_modules/regenerator-transform": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", - "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", - "dev": true, - "dependencies": { - "@babel/runtime": "^7.8.4" - } - }, - "node_modules/regexp.prototype.flags": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", - "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.6", - "define-properties": "^1.2.1", - "es-errors": "^1.3.0", - "set-function-name": "^2.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/regexpu-core": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", - "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", - "dev": true, - "dependencies": { - "@babel/regjsgen": "^0.8.0", - "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.1.0", - "regjsparser": "^0.9.1", - "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/regjsparser": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", - "dev": true, - "dependencies": { - "jsesc": "~0.5.0" - }, - "bin": { - "regjsparser": "bin/parser" - } - }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", - "dev": true, - "bin": { - "jsesc": "bin/jsesc" - } - }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", - "dev": true - }, - "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", - "dev": true, - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/rimraf/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/rollup": { - "version": "2.79.1", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", - "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", - "devOptional": true, - "peer": true, - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=10.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/rollup-plugin-postcss": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/rollup-plugin-postcss/-/rollup-plugin-postcss-4.0.2.tgz", - "integrity": "sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w==", - "dev": true, - "dependencies": { - "chalk": "^4.1.0", - "concat-with-sourcemaps": "^1.1.0", - "cssnano": "^5.0.1", - "import-cwd": "^3.0.0", - "p-queue": "^6.6.2", - "pify": "^5.0.0", - "postcss-load-config": "^3.0.0", - "postcss-modules": "^4.0.0", - "promise.series": "^0.2.0", - "resolve": "^1.19.0", - "rollup-pluginutils": "^2.8.2", - "safe-identifier": "^0.4.2", - "style-inject": "^0.3.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "postcss": "8.x" - } - }, - "node_modules/rollup-plugin-postcss/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/rollup-plugin-postcss/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/rollup-plugin-postcss/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/rollup-plugin-postcss/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/rollup-plugin-postcss/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/rollup-plugin-postcss/node_modules/pify": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-5.0.0.tgz", - "integrity": "sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/rollup-plugin-postcss/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/rollup-plugin-terser": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz", - "integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==", - "deprecated": "This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.10.4", - "jest-worker": "^26.2.1", - "serialize-javascript": "^4.0.0", - "terser": "^5.0.0" - }, - "peerDependencies": { - "rollup": "^2.0.0" - } - }, - "node_modules/rollup-plugin-terser/node_modules/serialize-javascript": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", - "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", - "dev": true, - "dependencies": { - "randombytes": "^2.1.0" - } - }, - "node_modules/rollup-plugin-visualizer": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.12.0.tgz", - "integrity": "sha512-8/NU9jXcHRs7Nnj07PF2o4gjxmm9lXIrZ8r175bT9dK8qoLlvKTwRMArRCMgpMGlq8CTLugRvEmyMeMXIU2pNQ==", - "dev": true, - "dependencies": { - "open": "^8.4.0", - "picomatch": "^2.3.1", - "source-map": "^0.7.4", - "yargs": "^17.5.1" - }, - "bin": { - "rollup-plugin-visualizer": "dist/bin/cli.js" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "rollup": "2.x || 3.x || 4.x" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } - } - }, - "node_modules/rollup-plugin-visualizer/node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/rollup-plugin-vue": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/rollup-plugin-vue/-/rollup-plugin-vue-6.0.0.tgz", - "integrity": "sha512-oVvUd84d5u73M2HYM3XsMDLtZRIA/tw2U0dmHlXU2UWP5JARYHzh/U9vcxaN/x/9MrepY7VH3pHFeOhrWpxs/Q==", - "dev": true, - "dependencies": { - "debug": "^4.1.1", - "hash-sum": "^2.0.0", - "rollup-pluginutils": "^2.8.2" - }, - "peerDependencies": { - "@vue/compiler-sfc": "*" - } - }, - "node_modules/rollup-pluginutils": { - "version": "2.8.2", - "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz", - "integrity": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==", - "dev": true, - "dependencies": { - "estree-walker": "^0.6.1" - } - }, - "node_modules/rollup-pluginutils/node_modules/estree-walker": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz", - "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==", - "dev": true - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/safe-identifier": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/safe-identifier/-/safe-identifier-0.4.2.tgz", - "integrity": "sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==", - "dev": true - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true - }, - "node_modules/sass": { - "version": "1.77.2", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.77.2.tgz", - "integrity": "sha512-eb4GZt1C3avsX3heBNlrc7I09nyT00IUuo4eFhAbeXWU2fvA7oXI53SxODVAA+zgZCk9aunAZgO+losjR3fAwA==", - "dev": true, - "dependencies": { - "chokidar": ">=3.0.0 <4.0.0", - "immutable": "^4.0.0", - "source-map-js": ">=0.6.2 <2.0.0" - }, - "bin": { - "sass": "sass.js" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/sass-loader": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-8.0.2.tgz", - "integrity": "sha512-7o4dbSK8/Ol2KflEmSco4jTjQoV988bM82P9CZdmo9hR3RLnvNc0ufMNdMrB0caq38JQ/FgF4/7RcbcfKzxoFQ==", - "dev": true, - "dependencies": { - "clone-deep": "^4.0.1", - "loader-utils": "^1.2.3", - "neo-async": "^2.6.1", - "schema-utils": "^2.6.1", - "semver": "^6.3.0" - }, - "engines": { - "node": ">= 8.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "fibers": ">= 3.1.0", - "node-sass": "^4.0.0", - "sass": "^1.3.0", - "webpack": "^4.36.0 || ^5.0.0" - }, - "peerDependenciesMeta": { - "fibers": { - "optional": true - }, - "node-sass": { - "optional": true - }, - "sass": { - "optional": true - } - } - }, - "node_modules/sass-loader/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/sass-loader/node_modules/loader-utils": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", - "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", - "dev": true, - "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/saxes": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", - "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", - "dev": true, - "dependencies": { - "xmlchars": "^2.2.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/schema-utils": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", - "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", - "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.5", - "ajv": "^6.12.4", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 8.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/scule": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/scule/-/scule-1.3.0.tgz", - "integrity": "sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==" - }, - "node_modules/search-insights": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/search-insights/-/search-insights-2.13.0.tgz", - "integrity": "sha512-Orrsjf9trHHxFRuo9/rzm0KIWmgzE8RMlZMzuhZOJ01Rnz3D0YBAe+V6473t6/H6c7irs6Lt48brULAiRWb3Vw==", - "peer": true - }, - "node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "dev": true, - "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/send/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/send/node_modules/debug/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/send/node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true, - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, - "node_modules/serialize-javascript": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", - "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", - "dev": true, - "dependencies": { - "randombytes": "^2.1.0" - } - }, - "node_modules/serve-placeholder": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/serve-placeholder/-/serve-placeholder-2.0.1.tgz", - "integrity": "sha512-rUzLlXk4uPFnbEaIz3SW8VISTxMuONas88nYWjAWaM2W9VDbt9tyFOr3lq8RhVOFrT3XISoBw8vni5una8qMnQ==", - "dev": true, - "dependencies": { - "defu": "^6.0.0" - } - }, - "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "dev": true, - "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", - "dev": true - }, - "node_modules/set-function-length": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", - "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", - "dev": true, - "dependencies": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/set-function-name": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", - "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", - "dev": true, - "dependencies": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "functions-have-names": "^1.2.3", - "has-property-descriptors": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "dev": true - }, - "node_modules/shallow-clone": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", - "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", - "dev": true, - "dependencies": { - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "engines": { - "node": ">=8" - } - }, - "node_modules/shiki": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/shiki/-/shiki-0.11.1.tgz", - "integrity": "sha512-EugY9VASFuDqOexOgXR18ZV+TbFrQHeCpEYaXamO+SZlsnT/2LxuLBX25GGtIrwaEVFXUAbUQ601SWE2rMwWHA==", - "dev": true, - "dependencies": { - "jsonc-parser": "^3.0.0", - "vscode-oniguruma": "^1.6.1", - "vscode-textmate": "^6.0.0" - } - }, - "node_modules/siginfo": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", - "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==", - "dev": true - }, - "node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/slice-ansi": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", - "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^6.0.0", - "is-fullwidth-code-point": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "node_modules/slice-ansi/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/slice-ansi/node_modules/is-fullwidth-code-point": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", - "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/smob": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/smob/-/smob-1.5.0.tgz", - "integrity": "sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==", - "dev": true - }, - "node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-js": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", - "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "dev": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/stable": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", - "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", - "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility", - "dev": true - }, - "node_modules/stackback": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", - "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==", - "dev": true - }, - "node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/std-env": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.7.0.tgz", - "integrity": "sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==" - }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/string-hash": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz", - "integrity": "sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==", - "dev": true - }, - "node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/string-width-cjs": { - "name": "string-width", - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width-cjs/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/string-width/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/string-width/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-ansi-cjs": { - "name": "strip-ansi", - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/strip-literal": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/strip-literal/-/strip-literal-1.3.0.tgz", - "integrity": "sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==", - "dependencies": { - "acorn": "^8.10.0" - }, - "funding": { - "url": "https://github.com/sponsors/antfu" - } - }, - "node_modules/style-inject": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/style-inject/-/style-inject-0.3.0.tgz", - "integrity": "sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==", - "dev": true - }, - "node_modules/stylehacks": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", - "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", - "dev": true, - "dependencies": { - "browserslist": "^4.21.4", - "postcss-selector-parser": "^6.0.4" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/sucrase": { - "version": "3.35.0", - "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", - "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", - "dev": true, - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.2", - "commander": "^4.0.0", - "glob": "^10.3.10", - "lines-and-columns": "^1.1.6", - "mz": "^2.7.0", - "pirates": "^4.0.1", - "ts-interface-checker": "^0.1.9" - }, - "bin": { - "sucrase": "bin/sucrase", - "sucrase-node": "bin/sucrase-node" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/sucrase/node_modules/commander": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", - "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/svg-tags": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", - "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==", - "dev": true - }, - "node_modules/svgo": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", - "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", - "dev": true, - "dependencies": { - "@trysound/sax": "0.2.0", - "commander": "^7.2.0", - "css-select": "^4.1.3", - "css-tree": "^1.1.3", - "csso": "^4.2.0", - "picocolors": "^1.0.0", - "stable": "^0.1.8" - }, - "bin": { - "svgo": "bin/svgo" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/svgo/node_modules/commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "dev": true, - "engines": { - "node": ">= 10" - } - }, - "node_modules/symbol-tree": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", - "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", - "dev": true - }, - "node_modules/system-architecture": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/system-architecture/-/system-architecture-0.1.0.tgz", - "integrity": "sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==", - "dev": true, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/tailwindcss": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.3.tgz", - "integrity": "sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==", - "dev": true, - "dependencies": { - "@alloc/quick-lru": "^5.2.0", - "arg": "^5.0.2", - "chokidar": "^3.5.3", - "didyoumean": "^1.2.2", - "dlv": "^1.1.3", - "fast-glob": "^3.3.0", - "glob-parent": "^6.0.2", - "is-glob": "^4.0.3", - "jiti": "^1.21.0", - "lilconfig": "^2.1.0", - "micromatch": "^4.0.5", - "normalize-path": "^3.0.0", - "object-hash": "^3.0.0", - "picocolors": "^1.0.0", - "postcss": "^8.4.23", - "postcss-import": "^15.1.0", - "postcss-js": "^4.0.1", - "postcss-load-config": "^4.0.1", - "postcss-nested": "^6.0.1", - "postcss-selector-parser": "^6.0.11", - "resolve": "^1.22.2", - "sucrase": "^3.32.0" - }, - "bin": { - "tailwind": "lib/cli.js", - "tailwindcss": "lib/cli.js" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/tailwindcss-primeui": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/tailwindcss-primeui/-/tailwindcss-primeui-0.3.1.tgz", - "integrity": "sha512-A+uLHqdFo1jmn7qSBBDko5BXResXWfy4wKFzR/7p9P0ZENRS1xJCxKnf0E8oFRN9Joq5yjLRtMgFXfMcuPH1hg==", - "dev": true, - "peerDependencies": { - "tailwindcss": ">=3.1.0" - } - }, - "node_modules/tailwindcss/node_modules/postcss-load-config": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", - "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "lilconfig": "^3.0.0", - "yaml": "^2.3.4" - }, - "engines": { - "node": ">= 14" - }, - "peerDependencies": { - "postcss": ">=8.0.9", - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "postcss": { - "optional": true - }, - "ts-node": { - "optional": true - } - } - }, - "node_modules/tailwindcss/node_modules/postcss-load-config/node_modules/lilconfig": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.1.tgz", - "integrity": "sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/antonk52" - } - }, - "node_modules/tailwindcss/node_modules/yaml": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.4.2.tgz", - "integrity": "sha512-B3VqDZ+JAg1nZpaEmWtTXUlBneoGx6CPM9b0TENK6aoSu5t73dItudwdgmi6tHlIZZId4dZ9skcAQ2UbcyAeVA==", - "dev": true, - "bin": { - "yaml": "bin.mjs" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/tar": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", - "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", - "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^5.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", - "dev": true, - "dependencies": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tar/node_modules/minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/tar/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, - "node_modules/terser": { - "version": "5.31.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.0.tgz", - "integrity": "sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==", - "dev": true, - "dependencies": { - "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.8.2", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, - "bin": { - "terser": "bin/terser" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/terser-webpack-plugin": { - "version": "5.3.10", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", - "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", - "dev": true, - "peer": true, - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.20", - "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.26.0" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "esbuild": { - "optional": true - }, - "uglify-js": { - "optional": true - } - } - }, - "node_modules/terser-webpack-plugin/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "peer": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/terser-webpack-plugin/node_modules/jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", - "dev": true, - "peer": true, - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/terser-webpack-plugin/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "dev": true, - "peer": true, - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/terser-webpack-plugin/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dev": true, - "peer": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/terser/node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "dev": true - }, - "node_modules/test-exclude": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", - "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", - "dev": true, - "dependencies": { - "@istanbuljs/schema": "^0.1.2", - "glob": "^7.1.4", - "minimatch": "^3.0.4" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/test-exclude/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true - }, - "node_modules/thenify": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", - "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", - "dev": true, - "dependencies": { - "any-promise": "^1.0.0" - } - }, - "node_modules/thenify-all": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", - "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", - "dev": true, - "dependencies": { - "thenify": ">= 3.1.0 < 4" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/tiny-invariant": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", - "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", - "dev": true - }, - "node_modules/tinybench": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.8.0.tgz", - "integrity": "sha512-1/eK7zUnIklz4JUUlL+658n58XO2hHLQfSk1Zf2LKieUjxidN16eKFEoDEfjHc3ohofSSqK3X5yO6VGb6iW8Lw==", - "dev": true - }, - "node_modules/tinypool": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-0.4.0.tgz", - "integrity": "sha512-2ksntHOKf893wSAH4z/+JbPpi92esw8Gn9N2deXX+B0EO92hexAVI9GIZZPx7P5aYo5KULfeOSt3kMOmSOy6uA==", - "dev": true, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/tinyspy": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-1.1.1.tgz", - "integrity": "sha512-UVq5AXt/gQlti7oxoIg5oi/9r0WpF7DGEVwXgqWSMmyN16+e3tl5lIvTaOpJ3TAtu5xFzWccFRM4R5NaWHF+4g==", - "dev": true, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "engines": { - "node": ">=4" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "dev": true, - "engines": { - "node": ">=0.6" - } - }, - "node_modules/tough-cookie": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz", - "integrity": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==", - "dev": true, - "dependencies": { - "psl": "^1.1.33", - "punycode": "^2.1.1", - "universalify": "^0.2.0", - "url-parse": "^1.5.3" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tough-cookie/node_modules/universalify": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", - "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", - "dev": true, - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/tr46": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", - "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", - "dev": true, - "dependencies": { - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/ts-interface-checker": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", - "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", - "dev": true - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-detect": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", - "dev": true, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/typedoc": { - "version": "0.23.23", - "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.23.23.tgz", - "integrity": "sha512-cg1YQWj+/BU6wq74iott513U16fbrPCbyYs04PHZgvoKJIc6EY4xNobyDZh4KMfRGW8Yjv6wwIzQyoqopKOUGw==", - "dev": true, - "dependencies": { - "lunr": "^2.3.9", - "marked": "^4.2.4", - "minimatch": "^5.1.1", - "shiki": "^0.11.1" - }, - "bin": { - "typedoc": "bin/typedoc" - }, - "engines": { - "node": ">= 14.14" - }, - "peerDependencies": { - "typescript": "4.6.x || 4.7.x || 4.8.x || 4.9.x" - } - }, - "node_modules/typedoc/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/typedoc/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/typescript": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", - "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", - "devOptional": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=4.2.0" - } - }, - "node_modules/ufo": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.5.3.tgz", - "integrity": "sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==" - }, - "node_modules/uncrypto": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/uncrypto/-/uncrypto-0.1.3.tgz", - "integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==", - "dev": true - }, - "node_modules/unctx": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/unctx/-/unctx-2.3.1.tgz", - "integrity": "sha512-PhKke8ZYauiqh3FEMVNm7ljvzQiph0Mt3GBRve03IJm7ukfaON2OBK795tLwhbyfzknuRRkW0+Ze+CQUmzOZ+A==", - "dependencies": { - "acorn": "^8.8.2", - "estree-walker": "^3.0.3", - "magic-string": "^0.30.0", - "unplugin": "^1.3.1" - } - }, - "node_modules/unctx/node_modules/estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "dependencies": { - "@types/estree": "^1.0.0" - } - }, - "node_modules/undici-types": { - "version": "5.26.5", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", - "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", - "dev": true - }, - "node_modules/unenv": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/unenv/-/unenv-1.9.0.tgz", - "integrity": "sha512-QKnFNznRxmbOF1hDgzpqrlIf6NC5sbZ2OJ+5Wl3OX8uM+LUJXbj4TXvLJCtwbPTmbMHCLIz6JLKNinNsMShK9g==", - "dev": true, - "dependencies": { - "consola": "^3.2.3", - "defu": "^6.1.3", - "mime": "^3.0.0", - "node-fetch-native": "^1.6.1", - "pathe": "^1.1.1" - } - }, - "node_modules/unenv/node_modules/consola": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", - "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", - "dev": true, - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/unhead": { - "version": "1.9.10", - "resolved": "https://registry.npmjs.org/unhead/-/unhead-1.9.10.tgz", - "integrity": "sha512-Y3w+j1x1YFig2YuE+W2sER+SciRR7MQktYRHNqvZJ0iUNCCJTS8Z/SdSMUEeuFV28daXeASlR3fy7Ry3O2indg==", - "dev": true, - "dependencies": { - "@unhead/dom": "1.9.10", - "@unhead/schema": "1.9.10", - "@unhead/shared": "1.9.10", - "hookable": "^5.5.3" - }, - "funding": { - "url": "https://github.com/sponsors/harlan-zw" - } - }, - "node_modules/unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", - "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", - "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", - "dev": true, - "dependencies": { - "unicode-canonical-property-names-ecmascript": "^2.0.0", - "unicode-property-aliases-ecmascript": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", - "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-property-aliases-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", - "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicorn-magic": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", - "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/unimport": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/unimport/-/unimport-3.7.1.tgz", - "integrity": "sha512-V9HpXYfsZye5bPPYUgs0Otn3ODS1mDUciaBlXljI4C2fTwfFpvFZRywmlOu943puN9sncxROMZhsZCjNXEpzEQ==", - "dependencies": { - "@rollup/pluginutils": "^5.1.0", - "acorn": "^8.11.2", - "escape-string-regexp": "^5.0.0", - "estree-walker": "^3.0.3", - "fast-glob": "^3.3.2", - "local-pkg": "^0.5.0", - "magic-string": "^0.30.5", - "mlly": "^1.4.2", - "pathe": "^1.1.1", - "pkg-types": "^1.0.3", - "scule": "^1.1.1", - "strip-literal": "^1.3.0", - "unplugin": "^1.5.1" - } - }, - "node_modules/unimport/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/unimport/node_modules/estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "dependencies": { - "@types/estree": "^1.0.0" - } - }, - "node_modules/universalify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", - "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/unplugin": { - "version": "1.10.1", - "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-1.10.1.tgz", - "integrity": "sha512-d6Mhq8RJeGA8UfKCu54Um4lFA0eSaRa3XxdAJg8tIdxbu1ubW0hBCZUL7yI2uGyYCRndvbK8FLHzqy2XKfeMsg==", - "dependencies": { - "acorn": "^8.11.3", - "chokidar": "^3.6.0", - "webpack-sources": "^3.2.3", - "webpack-virtual-modules": "^0.6.1" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/unstorage": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/unstorage/-/unstorage-1.10.2.tgz", - "integrity": "sha512-cULBcwDqrS8UhlIysUJs2Dk0Mmt8h7B0E6mtR+relW9nZvsf/u4SkAYyNliPiPW7XtFNb5u3IUMkxGxFTTRTgQ==", - "dev": true, - "dependencies": { - "anymatch": "^3.1.3", - "chokidar": "^3.6.0", - "destr": "^2.0.3", - "h3": "^1.11.1", - "listhen": "^1.7.2", - "lru-cache": "^10.2.0", - "mri": "^1.2.0", - "node-fetch-native": "^1.6.2", - "ofetch": "^1.3.3", - "ufo": "^1.4.0" - }, - "peerDependencies": { - "@azure/app-configuration": "^1.5.0", - "@azure/cosmos": "^4.0.0", - "@azure/data-tables": "^13.2.2", - "@azure/identity": "^4.0.1", - "@azure/keyvault-secrets": "^4.8.0", - "@azure/storage-blob": "^12.17.0", - "@capacitor/preferences": "^5.0.7", - "@netlify/blobs": "^6.5.0 || ^7.0.0", - "@planetscale/database": "^1.16.0", - "@upstash/redis": "^1.28.4", - "@vercel/kv": "^1.0.1", - "idb-keyval": "^6.2.1", - "ioredis": "^5.3.2" - }, - "peerDependenciesMeta": { - "@azure/app-configuration": { - "optional": true - }, - "@azure/cosmos": { - "optional": true - }, - "@azure/data-tables": { - "optional": true - }, - "@azure/identity": { - "optional": true - }, - "@azure/keyvault-secrets": { - "optional": true - }, - "@azure/storage-blob": { - "optional": true - }, - "@capacitor/preferences": { - "optional": true - }, - "@netlify/blobs": { - "optional": true - }, - "@planetscale/database": { - "optional": true - }, - "@upstash/redis": { - "optional": true - }, - "@vercel/kv": { - "optional": true - }, - "idb-keyval": { - "optional": true - }, - "ioredis": { - "optional": true - } - } - }, - "node_modules/unstorage/node_modules/destr": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.3.tgz", - "integrity": "sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==", - "dev": true - }, - "node_modules/unstorage/node_modules/lru-cache": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", - "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", - "dev": true, - "engines": { - "node": "14 || >=16.14" - } - }, - "node_modules/untun": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/untun/-/untun-0.1.3.tgz", - "integrity": "sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==", - "dev": true, - "dependencies": { - "citty": "^0.1.5", - "consola": "^3.2.3", - "pathe": "^1.1.1" - }, - "bin": { - "untun": "bin/untun.mjs" - } - }, - "node_modules/untun/node_modules/consola": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", - "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", - "dev": true, - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/untyped": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/untyped/-/untyped-1.4.2.tgz", - "integrity": "sha512-nC5q0DnPEPVURPhfPQLahhSTnemVtPzdx7ofiRxXpOB2SYnb3MfdU3DVGyJdS8Lx+tBWeAePO8BfU/3EgksM7Q==", - "dependencies": { - "@babel/core": "^7.23.7", - "@babel/standalone": "^7.23.8", - "@babel/types": "^7.23.6", - "defu": "^6.1.4", - "jiti": "^1.21.0", - "mri": "^1.2.0", - "scule": "^1.2.0" - }, - "bin": { - "untyped": "dist/cli.mjs" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz", - "integrity": "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "escalade": "^3.1.2", - "picocolors": "^1.0.1" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/uqr": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/uqr/-/uqr-0.1.2.tgz", - "integrity": "sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==", - "dev": true - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/url-parse": { - "version": "1.5.10", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", - "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", - "dev": true, - "dependencies": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true - }, - "node_modules/vee-validate": { - "version": "4.12.8", - "resolved": "https://registry.npmjs.org/vee-validate/-/vee-validate-4.12.8.tgz", - "integrity": "sha512-A07rm3+y7SRk0CMD/O4nBT0nxtwjyfzGZwjEUDk18SxK0ZMzd4AFCzzdHlIiCE1QgHetxd0I3kVkZdN0GG0Oww==", - "dependencies": { - "@vue/devtools-api": "^6.6.1", - "type-fest": "^4.8.3" - }, - "peerDependencies": { - "vue": "^3.4.26" - } - }, - "node_modules/vee-validate/node_modules/type-fest": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.18.2.tgz", - "integrity": "sha512-+suCYpfJLAe4OXS6+PPXjW3urOS4IoP9waSiLuXfLgqZODKw/aWwASvzqE886wA0kQgGy0mIWyhd87VpqIy6Xg==", - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/vite": { - "version": "4.5.3", - "resolved": "https://registry.npmjs.org/vite/-/vite-4.5.3.tgz", - "integrity": "sha512-kQL23kMeX92v3ph7IauVkXkikdDRsYMGTVl5KY2E9OY4ONLvkHf04MDTbnfo6NKxZiDLWzVpP5oTa8hQD8U3dg==", - "dev": true, - "dependencies": { - "esbuild": "^0.18.10", - "postcss": "^8.4.27", - "rollup": "^3.27.1" - }, - "bin": { - "vite": "bin/vite.js" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/vitejs/vite?sponsor=1" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - }, - "peerDependencies": { - "@types/node": ">= 14", - "less": "*", - "lightningcss": "^1.21.0", - "sass": "*", - "stylus": "*", - "sugarss": "*", - "terser": "^5.4.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "less": { - "optional": true - }, - "lightningcss": { - "optional": true - }, - "sass": { - "optional": true - }, - "stylus": { - "optional": true - }, - "sugarss": { - "optional": true - }, - "terser": { - "optional": true - } - } - }, - "node_modules/vite-node": { - "version": "0.29.8", - "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-0.29.8.tgz", - "integrity": "sha512-b6OtCXfk65L6SElVM20q5G546yu10/kNrhg08afEoWlFRJXFq9/6glsvSVY+aI6YeC1tu2TtAqI2jHEQmOmsFw==", - "dev": true, - "dependencies": { - "cac": "^6.7.14", - "debug": "^4.3.4", - "mlly": "^1.1.0", - "pathe": "^1.1.0", - "picocolors": "^1.0.0", - "vite": "^3.0.0 || ^4.0.0" - }, - "bin": { - "vite-node": "vite-node.mjs" - }, - "engines": { - "node": ">=v14.16.0" - }, - "funding": { - "url": "https://github.com/sponsors/antfu" - } - }, - "node_modules/vite-plugin-checker": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/vite-plugin-checker/-/vite-plugin-checker-0.5.6.tgz", - "integrity": "sha512-ftRyON0gORUHDxcDt2BErmsikKSkfvl1i2DoP6Jt2zDO9InfvM6tqO1RkXhSjkaXEhKPea6YOnhFaZxW3BzudQ==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.12.13", - "ansi-escapes": "^4.3.0", - "chalk": "^4.1.1", - "chokidar": "^3.5.1", - "commander": "^8.0.0", - "fast-glob": "^3.2.7", - "fs-extra": "^11.1.0", - "lodash.debounce": "^4.0.8", - "lodash.pick": "^4.4.0", - "npm-run-path": "^4.0.1", - "strip-ansi": "^6.0.0", - "tiny-invariant": "^1.1.0", - "vscode-languageclient": "^7.0.0", - "vscode-languageserver": "^7.0.0", - "vscode-languageserver-textdocument": "^1.0.1", - "vscode-uri": "^3.0.2" - }, - "engines": { - "node": ">=14.16" - }, - "peerDependencies": { - "eslint": ">=7", - "meow": "^9.0.0", - "optionator": "^0.9.1", - "stylelint": ">=13", - "typescript": "*", - "vite": ">=2.0.0", - "vls": "*", - "vti": "*", - "vue-tsc": "*" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - }, - "meow": { - "optional": true - }, - "optionator": { - "optional": true - }, - "stylelint": { - "optional": true - }, - "typescript": { - "optional": true - }, - "vls": { - "optional": true - }, - "vti": { - "optional": true - }, - "vue-tsc": { - "optional": true - } - } - }, - "node_modules/vite-plugin-checker/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/vite-plugin-checker/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/vite-plugin-checker/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/vite-plugin-checker/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/vite-plugin-checker/node_modules/commander": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", - "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", - "dev": true, - "engines": { - "node": ">= 12" - } - }, - "node_modules/vite-plugin-checker/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/vite-plugin-checker/node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/vite-plugin-checker/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/vite/node_modules/@esbuild/android-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", - "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/android-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", - "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/android-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", - "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/darwin-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", - "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/darwin-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", - "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/freebsd-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", - "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/freebsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", - "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", - "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", - "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", - "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-loong64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", - "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", - "cpu": [ - "loong64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-mips64el": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", - "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", - "cpu": [ - "mips64el" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-ppc64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", - "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-riscv64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", - "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", - "cpu": [ - "riscv64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-s390x": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", - "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", - "cpu": [ - "s390x" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", - "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/netbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", - "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/openbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", - "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/sunos-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", - "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/win32-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", - "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/win32-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", - "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/win32-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", - "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/esbuild": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", - "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", - "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/android-arm": "0.18.20", - "@esbuild/android-arm64": "0.18.20", - "@esbuild/android-x64": "0.18.20", - "@esbuild/darwin-arm64": "0.18.20", - "@esbuild/darwin-x64": "0.18.20", - "@esbuild/freebsd-arm64": "0.18.20", - "@esbuild/freebsd-x64": "0.18.20", - "@esbuild/linux-arm": "0.18.20", - "@esbuild/linux-arm64": "0.18.20", - "@esbuild/linux-ia32": "0.18.20", - "@esbuild/linux-loong64": "0.18.20", - "@esbuild/linux-mips64el": "0.18.20", - "@esbuild/linux-ppc64": "0.18.20", - "@esbuild/linux-riscv64": "0.18.20", - "@esbuild/linux-s390x": "0.18.20", - "@esbuild/linux-x64": "0.18.20", - "@esbuild/netbsd-x64": "0.18.20", - "@esbuild/openbsd-x64": "0.18.20", - "@esbuild/sunos-x64": "0.18.20", - "@esbuild/win32-arm64": "0.18.20", - "@esbuild/win32-ia32": "0.18.20", - "@esbuild/win32-x64": "0.18.20" - } - }, - "node_modules/vite/node_modules/rollup": { - "version": "3.29.4", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.4.tgz", - "integrity": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==", - "dev": true, - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=14.18.0", - "npm": ">=8.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/vitest": { - "version": "0.29.8", - "resolved": "https://registry.npmjs.org/vitest/-/vitest-0.29.8.tgz", - "integrity": "sha512-JIAVi2GK5cvA6awGpH0HvH/gEG9PZ0a/WoxdiV3PmqK+3CjQMf8c+J/Vhv4mdZ2nRyXFw66sAg6qz7VNkaHfDQ==", - "dev": true, - "dependencies": { - "@types/chai": "^4.3.4", - "@types/chai-subset": "^1.3.3", - "@types/node": "*", - "@vitest/expect": "0.29.8", - "@vitest/runner": "0.29.8", - "@vitest/spy": "0.29.8", - "@vitest/utils": "0.29.8", - "acorn": "^8.8.1", - "acorn-walk": "^8.2.0", - "cac": "^6.7.14", - "chai": "^4.3.7", - "debug": "^4.3.4", - "local-pkg": "^0.4.2", - "pathe": "^1.1.0", - "picocolors": "^1.0.0", - "source-map": "^0.6.1", - "std-env": "^3.3.1", - "strip-literal": "^1.0.0", - "tinybench": "^2.3.1", - "tinypool": "^0.4.0", - "tinyspy": "^1.0.2", - "vite": "^3.0.0 || ^4.0.0", - "vite-node": "0.29.8", - "why-is-node-running": "^2.2.2" - }, - "bin": { - "vitest": "vitest.mjs" - }, - "engines": { - "node": ">=v14.16.0" - }, - "funding": { - "url": "https://github.com/sponsors/antfu" - }, - "peerDependencies": { - "@edge-runtime/vm": "*", - "@vitest/browser": "*", - "@vitest/ui": "*", - "happy-dom": "*", - "jsdom": "*", - "playwright": "*", - "safaridriver": "*", - "webdriverio": "*" - }, - "peerDependenciesMeta": { - "@edge-runtime/vm": { - "optional": true - }, - "@vitest/browser": { - "optional": true - }, - "@vitest/ui": { - "optional": true - }, - "happy-dom": { - "optional": true - }, - "jsdom": { - "optional": true - }, - "playwright": { - "optional": true - }, - "safaridriver": { - "optional": true - }, - "webdriverio": { - "optional": true - } - } - }, - "node_modules/vitest/node_modules/acorn-walk": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.2.tgz", - "integrity": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==", - "dev": true, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/vitest/node_modules/local-pkg": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-0.4.3.tgz", - "integrity": "sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/antfu" - } - }, - "node_modules/vscode-jsonrpc": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-6.0.0.tgz", - "integrity": "sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==", - "dev": true, - "engines": { - "node": ">=8.0.0 || >=10.0.0" - } - }, - "node_modules/vscode-languageclient": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-7.0.0.tgz", - "integrity": "sha512-P9AXdAPlsCgslpP9pRxYPqkNYV7Xq8300/aZDpO35j1fJm/ncize8iGswzYlcvFw5DQUx4eVk+KvfXdL0rehNg==", - "dev": true, - "dependencies": { - "minimatch": "^3.0.4", - "semver": "^7.3.4", - "vscode-languageserver-protocol": "3.16.0" - }, - "engines": { - "vscode": "^1.52.0" - } - }, - "node_modules/vscode-languageclient/node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/vscode-languageserver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-7.0.0.tgz", - "integrity": "sha512-60HTx5ID+fLRcgdHfmz0LDZAXYEV68fzwG0JWwEPBode9NuMYTIxuYXPg4ngO8i8+Ou0lM7y6GzaYWbiDL0drw==", - "dev": true, - "dependencies": { - "vscode-languageserver-protocol": "3.16.0" - }, - "bin": { - "installServerIntoExtension": "bin/installServerIntoExtension" - } - }, - "node_modules/vscode-languageserver-protocol": { - "version": "3.16.0", - "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.16.0.tgz", - "integrity": "sha512-sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A==", - "dev": true, - "dependencies": { - "vscode-jsonrpc": "6.0.0", - "vscode-languageserver-types": "3.16.0" - } - }, - "node_modules/vscode-languageserver-textdocument": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.11.tgz", - "integrity": "sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==", - "dev": true - }, - "node_modules/vscode-languageserver-types": { - "version": "3.16.0", - "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0.tgz", - "integrity": "sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==", - "dev": true - }, - "node_modules/vscode-oniguruma": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz", - "integrity": "sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==", - "dev": true - }, - "node_modules/vscode-textmate": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/vscode-textmate/-/vscode-textmate-6.0.0.tgz", - "integrity": "sha512-gu73tuZfJgu+mvCSy4UZwd2JXykjK9zAZsfmDeut5dx/1a7FeTk0XwJsSuqQn+cuMCGVbIBfl+s53X4T19DnzQ==", - "dev": true - }, - "node_modules/vscode-uri": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.8.tgz", - "integrity": "sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==", - "dev": true - }, - "node_modules/vue": { - "version": "3.4.27", - "resolved": "https://registry.npmjs.org/vue/-/vue-3.4.27.tgz", - "integrity": "sha512-8s/56uK6r01r1icG/aEOHqyMVxd1bkYcSe9j8HcKtr/xTOFWvnzIVTehNW+5Yt89f+DLBe4A569pnZLS5HzAMA==", - "dependencies": { - "@vue/compiler-dom": "3.4.27", - "@vue/compiler-sfc": "3.4.27", - "@vue/runtime-dom": "3.4.27", - "@vue/server-renderer": "3.4.27", - "@vue/shared": "3.4.27" - }, - "peerDependencies": { - "typescript": "*" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/vue-bundle-renderer": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/vue-bundle-renderer/-/vue-bundle-renderer-1.0.3.tgz", - "integrity": "sha512-EfjX+5TTUl70bki9hPuVp+54JiZOvFIfoWBcfXsSwLzKEiDYyHNi5iX8srnqLIv3YRnvxgbntdcG1WPq0MvffQ==", - "dev": true, - "dependencies": { - "ufo": "^1.1.1" - } - }, - "node_modules/vue-component-type-helpers": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/vue-component-type-helpers/-/vue-component-type-helpers-2.0.19.tgz", - "integrity": "sha512-cN3f1aTxxKo4lzNeQAkVopswuImUrb5Iurll9Gaw5cqpnbTAxtEMM1mgi6ou4X79OCyqYv1U1mzBHJkzmiK82w==", - "dev": true - }, - "node_modules/vue-devtools-stub": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/vue-devtools-stub/-/vue-devtools-stub-0.1.0.tgz", - "integrity": "sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==", - "dev": true - }, - "node_modules/vue-eslint-parser": { - "version": "9.4.2", - "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-9.4.2.tgz", - "integrity": "sha512-Ry9oiGmCAK91HrKMtCrKFWmSFWvYkpGglCeFAIqDdr9zdXmMMpJOmUJS7WWsW7fX81h6mwHmUZCQQ1E0PkSwYQ==", - "dev": true, - "dependencies": { - "debug": "^4.3.4", - "eslint-scope": "^7.1.1", - "eslint-visitor-keys": "^3.3.0", - "espree": "^9.3.1", - "esquery": "^1.4.0", - "lodash": "^4.17.21", - "semver": "^7.3.6" - }, - "engines": { - "node": "^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - }, - "peerDependencies": { - "eslint": ">=6.0.0" - } - }, - "node_modules/vue-eslint-parser/node_modules/eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", - "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/vue-eslint-parser/node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/vue-eslint-parser/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/vue-eslint-parser/node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/vue-router": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-4.3.2.tgz", - "integrity": "sha512-hKQJ1vDAZ5LVkKEnHhmm1f9pMiWIBNGF5AwU67PdH7TyXCj/a4hTccuUuYCAMgJK6rO/NVYtQIEN3yL8CECa7Q==", - "dev": true, - "dependencies": { - "@vue/devtools-api": "^6.5.1" - }, - "funding": { - "url": "https://github.com/sponsors/posva" - }, - "peerDependencies": { - "vue": "^3.2.0" - } - }, - "node_modules/w3c-hr-time": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", - "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", - "deprecated": "Use your platform's native performance.now() and performance.timeOrigin.", - "dev": true, - "dependencies": { - "browser-process-hrtime": "^1.0.0" - } - }, - "node_modules/w3c-xmlserializer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-3.0.0.tgz", - "integrity": "sha512-3WFqGEgSXIyGhOmAFtlicJNMjEps8b1MG31NCA0/vOF9+nKMUW1ckhi9cnNHmf88Rzw5V+dwIwsm2C7X8k9aQg==", - "dev": true, - "dependencies": { - "xml-name-validator": "^4.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/watchpack": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.1.tgz", - "integrity": "sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==", - "dev": true, - "peer": true, - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/webpack": { - "version": "5.91.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.91.0.tgz", - "integrity": "sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==", - "dev": true, - "peer": true, - "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.5", - "@webassemblyjs/ast": "^1.12.1", - "@webassemblyjs/wasm-edit": "^1.12.1", - "@webassemblyjs/wasm-parser": "^1.12.1", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.21.10", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.16.0", - "es-module-lexer": "^1.2.1", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.11", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.10", - "watchpack": "^2.4.1", - "webpack-sources": "^3.2.3" - }, - "bin": { - "webpack": "bin/webpack.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } - } - }, - "node_modules/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/webpack-virtual-modules": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.6.1.tgz", - "integrity": "sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==" - }, - "node_modules/webpack/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "dev": true, - "peer": true, - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/whatwg-encoding": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", - "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", - "dev": true, - "dependencies": { - "iconv-lite": "0.6.3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/whatwg-mimetype": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", - "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/whatwg-url": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-10.0.0.tgz", - "integrity": "sha512-CLxxCmdUby142H5FZzn4D8ikO1cmypvXVQktsgosNy4a4BHrDHeciBBGZhb0bNoR5/MltoCatso+vFjjGx8t0w==", - "dev": true, - "dependencies": { - "tr46": "^3.0.0", - "webidl-conversions": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/why-is-node-running": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.2.2.tgz", - "integrity": "sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==", - "dev": true, - "dependencies": { - "siginfo": "^2.0.0", - "stackback": "0.0.2" - }, - "bin": { - "why-is-node-running": "cli.js" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/wide-align": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", - "dev": true, - "dependencies": { - "string-width": "^1.0.2 || 2 || 3 || 4" - } - }, - "node_modules/wide-align/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/wide-align/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/word-wrap": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", - "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs": { - "name": "wrap-ansi", - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/wrap-ansi-cjs/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "node_modules/ws": { - "version": "8.17.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.0.tgz", - "integrity": "sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==", - "dev": true, - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/xml-name-validator": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", - "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/xmlchars": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", - "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", - "dev": true - }, - "node_modules/xxhashjs": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/xxhashjs/-/xxhashjs-0.2.2.tgz", - "integrity": "sha512-AkTuIuVTET12tpsVIQo+ZU6f/qDmKuRUcjaqR+OIvm+aCBsZ95i7UVY5WJ9TMsSaZ0DA2WxoZ4acu0sPH+OKAw==", - "dev": true, - "dependencies": { - "cuint": "^0.2.2" - } - }, - "node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - }, - "node_modules/yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/yargs": { - "version": "17.7.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", - "dev": true, - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/yargs/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/yargs/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/zhead": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/zhead/-/zhead-2.2.4.tgz", - "integrity": "sha512-8F0OI5dpWIA5IGG5NHUg9staDwz/ZPxZtvGVf01j7vHqSyZ0raHY+78atOVxRqb73AotX22uV1pXt3gYSstGag==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/harlan-zw" - } - }, - "node_modules/zip-stream": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-4.1.1.tgz", - "integrity": "sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ==", - "dev": true, - "dependencies": { - "archiver-utils": "^3.0.4", - "compress-commons": "^4.1.2", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/zip-stream/node_modules/archiver-utils": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-3.0.4.tgz", - "integrity": "sha512-KVgf4XQVrTjhyWmx6cte4RxonPLR9onExufI1jhvw/MQ4BB6IsZD5gT8Lq+u/+pRkWna/6JoHpiQioaqFP5Rzw==", - "dev": true, - "dependencies": { - "glob": "^7.2.3", - "graceful-fs": "^4.2.0", - "lazystream": "^1.0.0", - "lodash.defaults": "^4.2.0", - "lodash.difference": "^4.5.0", - "lodash.flatten": "^4.4.0", - "lodash.isplainobject": "^4.0.6", - "lodash.union": "^4.6.0", - "normalize-path": "^3.0.0", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/zip-stream/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - } - } -} diff --git a/package.json b/package.json index 09c079173e..9a240d979e 100644 --- a/package.json +++ b/package.json @@ -1,84 +1,56 @@ { - "name": "primevue", - "version": "4.0.0-beta.4", + "name": "@primevue/monorepo", + "version": "4.0.0-beta.5", + "private": false, + "author": "PrimeTek Informatics", "homepage": "https://primevue.org/", "repository": { "type": "git", "url": "https://github.com/primefaces/primevue.git" }, "license": "MIT", + "bugs": { + "url": "https://github.com/primefaces/primevue/issues" + }, "scripts": { - "build": "nuxt build", - "dev": "nuxt dev", - "generate": "nuxt generate", - "preview": "nuxt preview", - "postinstall": "nuxt prepare", - "build:lib": "NODE_ENV=production INPUT_DIR=components/lib/ OUTPUT_DIR=dist/ npm run build:package", - "build:package": "npm run build:api && npm run build:check && rollup -c && node build-meta", - "build:check": "npm run format:check && npm run security:check", - "build:api": "node ./api-generator/build-api.js && npm run themedoc && npm run apidoc && npm run format", - "security:check": "npm audit --production --audit-level high", - "format": "prettier --write \"**/*.{js,vue,d.ts}\" --cache", - "format:check": "prettier --check \"**/*.{js,vue,d.ts}\"", - "test:unit": "vitest run", - "test:unit:watch": "vitest watch", - "test:coverage": "vitest run --coverage", - "lint": "eslint --ext \".js,.vue\" --ignore-path .gitignore . --cache", - "lint:fix": "eslint --fix --ext \".js,.vue\" --ignore-path .gitignore .", - "apidoc": "node ./api-generator/build-apidoc.js", - "themedoc": "node ./api-generator/build-tokens.js" + "setup": "rm -rf **/node_modules **/dist ./pnpm-lock.yaml && pnpm install", + "release": "pnpm run build && pnpm recursive publish --filter '!apps/*' --no-git-checks", + "release:beta": "pnpm run build && pnpm recursive publish --filter '!apps/*' --no-git-checks --tag beta", + "build": "NODE_ENV=production pnpm run build:check && pnpm run build:packages", + "build:check": "pnpm run format:check && pnpm run security:check", + "build:packages": "pnpm run build:metadata && pnpm run build:resolver && pnpm run build:core && pnpm run build:lib && pnpm run build:module && pnpm run build:themes && pnpm run build:icons && pnpm run build:showcase", + "build:resolver": "pnpm --filter auto-import-resolver build", + "build:core": "pnpm --filter core build", + "build:metadata": "pnpm --filter metadata build", + "build:module": "pnpm --filter nuxt-module build", + "build:lib": "pnpm --filter primevue build", + "build:themes": "pnpm --filter themes build", + "build:icons": "pnpm --filter icons build", + "build:showcase": "pnpm --filter showcase build:prebuild", + "dev": "pnpm --filter showcase dev", + "module:dev": "pnpm --filter @primevue/nuxt-module dev", + "security:check": "pnpm audit --production --audit-level high", + "format": "prettier --write \"**/*.{vue,js,mjs,ts,d.ts}\" --cache", + "format:check": "prettier --check \"**/*.{vue,js,mjs,ts,d.ts}\" \"!packages/themes/types/**/*.d.ts\"", + "lint": "eslint --ext \".vue,.js,.mjs,.ts\" --ignore-path .gitignore . --cache", + "lint:fix": "eslint --fix --ext \".vue,.js,.mjs,.ts\" --ignore-path .gitignore ." }, - "keywords": [ - "primevue", - "vue", - "vue.js", - "vue2", - "vue3", - "ui library", - "component library", - "material", - "bootstrap", - "fluent", - "tailwind", - "unstyled", - "passthrough" - ], "devDependencies": { - "@babel/eslint-parser": "^7.18.9", "@babel/preset-env": "^7.21.5", "@rollup/plugin-babel": "^6.0.3", "@rollup/plugin-alias": "^5.1.0", - "@stackblitz/sdk": "^1.8.2", - "@vitejs/plugin-vue": "4.1.0", - "@vitest/coverage-istanbul": "^0.29.8", - "@vue/test-utils": "^2.0.0", - "autoprefixer": "^10.4.16", - "chart.js": "3.3.2", - "eslint": "^8.30.0", - "eslint-config-prettier": "^8.5.0", - "eslint-plugin-nuxt": "^4.0.0", - "eslint-plugin-prettier": "^4.2.1", - "eslint-plugin-vue": "^9.4.0", - "jsdom": "^19.0.0", - "nuxt": "3.3.2", - "postcss": "^8.4.31", - "prettier": "2.7.1", - "primeicons": "^7.0.0", - "quill": "^1.3.7", + "@rollup/plugin-node-resolve": "^15.2.3", "rollup-plugin-postcss": "^4.0.0", "rollup-plugin-terser": "^7.0.2", "rollup-plugin-vue": "^6.0.0-beta.9", - "sass": "^1.45.0", - "sass-loader": "^8.0.2", - "tailwindcss": "^3.4.1", - "tailwindcss-primeui": "^0.3.1", - "typedoc": "0.23.23", - "typescript": "^4.9.4", - "vitest": "^0.29.8" + "eslint": "^9.2.0", + "prettier": "^3.2.5", + "pnpm": "9.1.4" + }, + "publishConfig": { + "access": "public" }, - "dependencies": { - "@docsearch/js": "^3.3.3", - "nuxt-gtag": "^0.6.2", - "vee-validate": "^4.8.2" + "engines": { + "node": ">=12.11.0" } } diff --git a/packages/auto-import-resolver/README.md b/packages/auto-import-resolver/README.md new file mode 100644 index 0000000000..ccfaa97676 --- /dev/null +++ b/packages/auto-import-resolver/README.md @@ -0,0 +1 @@ +# PrimeVue AutoImportResolver diff --git a/packages/auto-import-resolver/index.ts b/packages/auto-import-resolver/index.ts new file mode 100644 index 0000000000..9c204ca6c5 --- /dev/null +++ b/packages/auto-import-resolver/index.ts @@ -0,0 +1,55 @@ +import { components, directives } from '@primevue/metadata'; +import type { ComponentResolver } from 'unplugin-vue-components/types'; + +export interface PrimeVueResolverOptions { + components?: { + prefix?: string; + }; + directives?: { + prefix?: string; + }; +} + +export function PrimeVueResolver(options: PrimeVueResolverOptions = {}): ComponentResolver[] { + const getName = (name: string, prefix?: string) => { + if (prefix) { + if (!name.startsWith(prefix)) return; + + name = name.substring(prefix.length); + } + + return name; + }; + + return [ + { + type: 'component', + resolve: (name: string) => { + const { prefix } = options.components || {}; + const cName = getName(name, prefix); + const cMeta = components.find((c) => c.name === cName); + + if (cMeta) { + return { + from: cMeta.from + }; + } + } + }, + { + type: 'directive', + resolve: (name: string) => { + const { prefix } = options.directives || {}; + const dName = getName(name, prefix); + const dMeta = directives.find((d) => d.name === dName); + + if (dMeta) { + return { + as: dMeta.as, + from: dMeta.from + }; + } + } + } + ]; +} diff --git a/packages/auto-import-resolver/package.json b/packages/auto-import-resolver/package.json new file mode 100644 index 0000000000..d8b50691e4 --- /dev/null +++ b/packages/auto-import-resolver/package.json @@ -0,0 +1,48 @@ +{ + "name": "@primevue/auto-import-resolver", + "version": "4.0.0-beta.5", + "private": false, + "author": "PrimeTek Informatics", + "description": "", + "homepage": "https://primevue.org/", + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/primefaces/primevue.git", + "directory": "packages/auto-import-resolver" + }, + "bugs": { + "url": "https://github.com/primefaces/primevue/issues" + }, + "main": "./index.ts", + "publishConfig": { + "main": "./index.mjs", + "module": "./index.mjs", + "types": "./index.d.mts", + "exports": { + ".": { + "types": "./index.d.mts", + "import": "./index.mjs" + } + }, + "directory": "dist", + "linkDirectory": false, + "access": "public" + }, + "scripts": { + "build": "NODE_ENV=production INPUT_DIR=./ OUTPUT_DIR=dist/ pnpm run build:package", + "build:package": "pnpm run build:prebuild && tsup && pnpm run build:postbuild", + "build:prebuild": "node ./scripts/prebuild.mjs", + "build:postbuild": "node ./scripts/postbuild.mjs" + }, + "dependencies": { + "@primevue/metadata": "workspace:*" + }, + "devDependencies": { + "tsup": "^8.1.0", + "unplugin-vue-components": "^0.27.0" + }, + "engines": { + "node": ">=12.11.0" + } +} \ No newline at end of file diff --git a/packages/auto-import-resolver/scripts/postbuild.mjs b/packages/auto-import-resolver/scripts/postbuild.mjs new file mode 100644 index 0000000000..2ec4510bf9 --- /dev/null +++ b/packages/auto-import-resolver/scripts/postbuild.mjs @@ -0,0 +1,11 @@ +import fs from 'fs-extra'; +import path from 'path'; +import { clearPackageJson, resolvePath } from '../../../scripts/build-helper.mjs'; + +const { __dirname, __workspace, OUTPUT_DIR } = resolvePath(import.meta.url); + +fs.copySync(path.resolve(__dirname, '../package.json'), `${OUTPUT_DIR}/package.json`); +fs.copySync(path.resolve(__dirname, '../README.md'), `${OUTPUT_DIR}/README.md`); +fs.copySync(path.resolve(__workspace, './LICENSE.md'), `${OUTPUT_DIR}/LICENSE.md`); + +clearPackageJson(path.resolve(__dirname, `../${OUTPUT_DIR}/package.json`)); diff --git a/packages/auto-import-resolver/scripts/prebuild.mjs b/packages/auto-import-resolver/scripts/prebuild.mjs new file mode 100644 index 0000000000..e8449e469f --- /dev/null +++ b/packages/auto-import-resolver/scripts/prebuild.mjs @@ -0,0 +1,5 @@ +import path from 'path'; +import { removeBuild, resolvePath, updatePackageJson } from '../../../scripts/build-helper.mjs'; + +removeBuild(import.meta.url); +updatePackageJson(path.resolve(resolvePath(import.meta.url).__dirname, '../package.json')); diff --git a/packages/auto-import-resolver/tsconfig.json b/packages/auto-import-resolver/tsconfig.json new file mode 100644 index 0000000000..ddcbdccfe6 --- /dev/null +++ b/packages/auto-import-resolver/tsconfig.json @@ -0,0 +1,7 @@ +{ + "compilerOptions": { + "module": "es2022", + "moduleResolution": "Node" + }, + "exclude": ["node_modules"] +} diff --git a/packages/auto-import-resolver/tsup.config.ts b/packages/auto-import-resolver/tsup.config.ts new file mode 100644 index 0000000000..9b86809991 --- /dev/null +++ b/packages/auto-import-resolver/tsup.config.ts @@ -0,0 +1,8 @@ +import { defineConfig } from 'tsup'; + +export default defineConfig({ + entry: ['index.ts'], + format: ['esm'], + dts: true, + splitting: false +}); diff --git a/packages/core/README.md b/packages/core/README.md new file mode 100644 index 0000000000..11c9c11b1e --- /dev/null +++ b/packages/core/README.md @@ -0,0 +1 @@ +# PrimeVue Core diff --git a/packages/core/package.json b/packages/core/package.json new file mode 100644 index 0000000000..58bc4f2137 --- /dev/null +++ b/packages/core/package.json @@ -0,0 +1,55 @@ +{ + "name": "@primevue/core", + "version": "4.0.0-beta.5", + "private": false, + "author": "PrimeTek Informatics", + "description": "", + "homepage": "https://primevue.org/", + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/primefaces/primevue.git", + "directory": "packages/core" + }, + "bugs": { + "url": "https://github.com/primefaces/primevue/issues" + }, + "exports": { + "./api": "./src/api/Api.js", + "./base/style": "./src/base/style/BaseStyle.js", + "./base": "./src/base/Base.js", + "./basecomponent/style": "./src/basecomponent/style/BaseComponentStyle.js", + "./basecomponent": "./src/basecomponent/BaseComponent.vue", + "./basedirective": "./src/basedirective/BaseDirective.js", + "./config": "./src/config/PrimeVue.js", + "./service": "./src/service/PrimeVueService.js", + "./usestyle": "./src/usestyle/UseStyle.js", + "./utils": "./src/utils/Utils.js" + }, + "publishConfig": { + "exports": { + "./*": { + "types": "./*/index.d.ts", + "import": "./*/index.mjs" + } + }, + "directory": "dist", + "linkDirectory": false, + "access": "public" + }, + "scripts": { + "build": "NODE_ENV=production INPUT_DIR=src/ OUTPUT_DIR=dist/ pnpm run build:package", + "build:package": "pnpm run build:prebuild && rollup -c && pnpm run build:postbuild", + "build:prebuild": "node ./scripts/prebuild.mjs", + "build:postbuild": "node ./scripts/postbuild.mjs" + }, + "dependencies": { + "@primevue/themes": "workspace:*" + }, + "peerDependencies": { + "vue": "^3.0.0" + }, + "engines": { + "node": ">=12.11.0" + } +} \ No newline at end of file diff --git a/packages/core/rollup.config.mjs b/packages/core/rollup.config.mjs new file mode 100644 index 0000000000..3933dfd943 --- /dev/null +++ b/packages/core/rollup.config.mjs @@ -0,0 +1,220 @@ +import alias from '@rollup/plugin-alias'; +import { babel } from '@rollup/plugin-babel'; +import resolve from '@rollup/plugin-node-resolve'; +import postcss from 'rollup-plugin-postcss'; +import { terser } from 'rollup-plugin-terser'; +import vue from 'rollup-plugin-vue'; + +import fs from 'fs-extra'; +import path, { dirname } from 'path'; +import { fileURLToPath } from 'url'; + +// @todo - Remove +const __dirname = dirname(fileURLToPath(import.meta.url)); + +// globals +const GLOBALS = { + vue: 'Vue' +}; + +// externals +const GLOBAL_EXTERNALS = ['vue']; +const INLINE_EXTERNALS = [/@primevue\/themes\/.*/]; +const EXTERNALS = [...GLOBAL_EXTERNALS, ...INLINE_EXTERNALS]; + +// alias +const ALIAS_ENTRIES = [ + { + find: /^primevue\/core\/(.*)$/, + replacement: path.resolve(__dirname, './src/$1'), + customResolver(source, importer) { + const basedir = path.dirname(importer); + const folderPath = path.resolve(basedir, source); + const folderName = path.basename(folderPath); + + const fName = folderName === 'style' ? `${path.basename(path.dirname(folderPath))}Style` : folderName; + const files = fs.readdirSync(folderPath); + const targetFile = files.find((file) => { + const ext = path.extname(file); + return ['.vue', '.js'].includes(ext) && path.basename(file, ext).toLowerCase() === fName.toLowerCase(); + }); + + return targetFile ? path.join(folderPath, targetFile) : null; + } + }, + { find: '@primevue/themes', replacement: path.resolve(__dirname, '../themes/src/index.js') } +]; + +// plugins +const BABEL_PLUGIN_OPTIONS = { + extensions: ['.js', '.vue'], + exclude: 'node_modules/**', + presets: ['@babel/preset-env'], + plugins: [], + skipPreflightCheck: true, + babelHelpers: 'runtime', + babelrc: false +}; + +const ALIAS_PLUGIN_OPTIONS = { + entries: ALIAS_ENTRIES +}; + +const POSTCSS_PLUGIN_OPTIONS = { + sourceMap: false +}; + +const TERSER_PLUGIN_OPTIONS = { + compress: { + keep_infinity: true, + pure_getters: true, + reduce_funcs: true + }, + mangle: { + reserved: ['theme', 'css'] + } +}; + +const PLUGINS = [vue(), postcss(POSTCSS_PLUGIN_OPTIONS), babel(BABEL_PLUGIN_OPTIONS)]; + +const ENTRY = { + entries: [], + onwarn(warning) { + if (warning.code === 'CIRCULAR_DEPENDENCY') { + //console.error(`(!) ${warning.message}`); + return; + } + }, + format: { + cjs_es(options) { + return ENTRY.format.cjs(options).es(options); + }, + cjs({ input, output, minify }) { + ENTRY.entries.push({ + onwarn: ENTRY.onwarn, + input, + plugins: [...PLUGINS, minify && terser(TERSER_PLUGIN_OPTIONS)], + external: EXTERNALS, + inlineDynamicImports: true, + output: [ + { + format: 'cjs', + file: `${output}${minify ? '.min' : ''}.cjs`, + sourcemap: true, + exports: 'auto' + } + ] + }); + + ENTRY.update.packageJson({ input, output, options: { main: `${output}.cjs` } }); + + return ENTRY.format; + }, + es({ input, output, minify }) { + ENTRY.entries.push({ + onwarn: ENTRY.onwarn, + input, + plugins: [...PLUGINS, minify && terser(TERSER_PLUGIN_OPTIONS)], + external: EXTERNALS, + inlineDynamicImports: true, + output: [ + { + format: 'es', + file: `${output}${minify ? '.min' : ''}.mjs`, + sourcemap: true, + exports: 'auto' + } + ] + }); + + ENTRY.update.packageJson({ input, output, options: { main: `${output}.mjs`, module: `${output}.mjs` } }); + + return ENTRY.format; + }, + umd({ name, input, output, minify }) { + ENTRY.entries.push({ + onwarn: ENTRY.onwarn, + input, + plugins: [alias(ALIAS_PLUGIN_OPTIONS), resolve(), ...PLUGINS, minify && terser(TERSER_PLUGIN_OPTIONS)], + external: GLOBAL_EXTERNALS, + inlineDynamicImports: true, + output: [ + { + format: 'umd', + name: name ?? 'PrimeVue', + file: `${output}${minify ? '.min' : ''}.js`, + globals: GLOBALS, + exports: 'auto' + } + ] + }); + + return ENTRY.format; + } + }, + update: { + packageJson({ input, output, options }) { + try { + const inputDir = path.resolve(__dirname, path.dirname(input)); + const outputDir = path.resolve(__dirname, path.dirname(output)); + const packageJson = path.resolve(outputDir, 'package.json'); + + !fs.existsSync(packageJson) && fs.copySync(path.resolve(inputDir, './package.json'), packageJson); + + const pkg = JSON.parse(fs.readFileSync(packageJson, { encoding: 'utf8', flag: 'r' })); + + !pkg?.main?.includes('.cjs') && (pkg.main = path.basename(options?.main) ? `./${path.basename(options.main)}` : pkg.main); + pkg.module = path.basename(options?.module) ? `./${path.basename(options.module)}` : packageJson.module; + pkg.types && (pkg.types = './index.d.ts'); + + fs.writeFileSync(packageJson, JSON.stringify(pkg, null, 4)); + } catch {} + } + } +}; + +function addCore() { + ENTRY.format.es({ input: process.env.INPUT_DIR + 'config/PrimeVue.js', output: process.env.OUTPUT_DIR + 'config/index' }); + ENTRY.format.es({ input: process.env.INPUT_DIR + 'service/PrimeVueService.js', output: process.env.OUTPUT_DIR + 'service/index' }); +} + +function addFile() { + fs.readdirSync(path.resolve(__dirname, process.env.INPUT_DIR), { withFileTypes: true }) + .filter((dir) => dir.isDirectory()) + .forEach(({ name: folderName }) => { + fs.readdirSync(path.resolve(__dirname, process.env.INPUT_DIR + folderName)).forEach((file) => { + let name = file.split(/(.vue)$|(.js)$/)[0].toLowerCase(); + + if (name === folderName) { + const input = process.env.INPUT_DIR + folderName + '/' + file; + const output = process.env.OUTPUT_DIR + folderName + '/index'; + + ENTRY.format.es({ input, output }); + } + }); + }); +} + +function addStyle() { + fs.readdirSync(path.resolve(__dirname, process.env.INPUT_DIR), { withFileTypes: true }) + .filter((dir) => dir.isDirectory()) + .forEach(({ name: folderName }) => { + try { + fs.readdirSync(path.resolve(__dirname, process.env.INPUT_DIR + folderName + '/style')).forEach((file) => { + if (/\.js$/.test(file)) { + const name = file.split(/(.js)$/)[0].toLowerCase(); + const input = process.env.INPUT_DIR + folderName + '/style/' + file; + const output = process.env.OUTPUT_DIR + folderName + '/style/index'; + + ENTRY.format.es({ input, output }); + } + }); + } catch {} + }); +} + +addCore(); +addFile(); +addStyle(); + +export default ENTRY.entries; diff --git a/packages/core/scripts/postbuild.mjs b/packages/core/scripts/postbuild.mjs new file mode 100644 index 0000000000..6ba5621517 --- /dev/null +++ b/packages/core/scripts/postbuild.mjs @@ -0,0 +1,14 @@ +import fs from 'fs-extra'; +import path from 'path'; +import { clearPackageJson, copyDependencies, renameDTSFile, resolvePath } from '../../../scripts/build-helper.mjs'; + +const { __dirname, __workspace, INPUT_DIR, OUTPUT_DIR } = resolvePath(import.meta.url); + +copyDependencies(INPUT_DIR, OUTPUT_DIR, '/style'); +renameDTSFile(OUTPUT_DIR, 'index'); + +fs.copySync(path.resolve(__dirname, '../package.json'), `${OUTPUT_DIR}/package.json`); +fs.copySync(path.resolve(__dirname, '../README.md'), `${OUTPUT_DIR}/README.md`); +fs.copySync(path.resolve(__workspace, './LICENSE.md'), `${OUTPUT_DIR}/LICENSE.md`); + +clearPackageJson(path.resolve(__dirname, `../${OUTPUT_DIR}/package.json`)); diff --git a/packages/core/scripts/prebuild.mjs b/packages/core/scripts/prebuild.mjs new file mode 100644 index 0000000000..e8449e469f --- /dev/null +++ b/packages/core/scripts/prebuild.mjs @@ -0,0 +1,5 @@ +import path from 'path'; +import { removeBuild, resolvePath, updatePackageJson } from '../../../scripts/build-helper.mjs'; + +removeBuild(import.meta.url); +updatePackageJson(path.resolve(resolvePath(import.meta.url).__dirname, '../package.json')); diff --git a/components/lib/api/Api.d.ts b/packages/core/src/api/Api.d.ts similarity index 100% rename from components/lib/api/Api.d.ts rename to packages/core/src/api/Api.d.ts diff --git a/components/lib/api/Api.js b/packages/core/src/api/Api.js similarity index 100% rename from components/lib/api/Api.js rename to packages/core/src/api/Api.js diff --git a/components/lib/api/FilterMatchMode.js b/packages/core/src/api/FilterMatchMode.js similarity index 100% rename from components/lib/api/FilterMatchMode.js rename to packages/core/src/api/FilterMatchMode.js diff --git a/components/lib/api/FilterOperator.js b/packages/core/src/api/FilterOperator.js similarity index 100% rename from components/lib/api/FilterOperator.js rename to packages/core/src/api/FilterOperator.js diff --git a/components/lib/api/FilterService.js b/packages/core/src/api/FilterService.js similarity index 99% rename from components/lib/api/FilterService.js rename to packages/core/src/api/FilterService.js index 534b5491b5..46c9c6fc66 100644 --- a/components/lib/api/FilterService.js +++ b/packages/core/src/api/FilterService.js @@ -1,4 +1,4 @@ -import { ObjectUtils } from 'primevue/utils'; +import { ObjectUtils } from '@primevue/core/utils'; const FilterService = { filter(value, fields, filterValue, filterMatchMode, filterLocale) { diff --git a/components/lib/api/PrimeIcons.js b/packages/core/src/api/PrimeIcons.js similarity index 100% rename from components/lib/api/PrimeIcons.js rename to packages/core/src/api/PrimeIcons.js diff --git a/components/lib/api/ToastSeverity.js b/packages/core/src/api/ToastSeverity.js similarity index 100% rename from components/lib/api/ToastSeverity.js rename to packages/core/src/api/ToastSeverity.js diff --git a/packages/core/src/api/package.json b/packages/core/src/api/package.json new file mode 100644 index 0000000000..b5547d5bde --- /dev/null +++ b/packages/core/src/api/package.json @@ -0,0 +1,5 @@ +{ + "main": "./Api.js", + "module": "./Api.js", + "types": "./Api.d.ts" +} diff --git a/components/lib/base/Base.js b/packages/core/src/base/Base.js similarity index 100% rename from components/lib/base/Base.js rename to packages/core/src/base/Base.js diff --git a/packages/core/src/base/package.json b/packages/core/src/base/package.json new file mode 100644 index 0000000000..c47f5b327e --- /dev/null +++ b/packages/core/src/base/package.json @@ -0,0 +1,4 @@ +{ + "main": "./Base.js", + "module": "./Base.js" +} diff --git a/components/lib/base/style/BaseStyle.d.ts b/packages/core/src/base/style/BaseStyle.d.ts similarity index 100% rename from components/lib/base/style/BaseStyle.d.ts rename to packages/core/src/base/style/BaseStyle.d.ts diff --git a/components/lib/base/style/BaseStyle.js b/packages/core/src/base/style/BaseStyle.js similarity index 97% rename from components/lib/base/style/BaseStyle.js rename to packages/core/src/base/style/BaseStyle.js index a5fa4f1eb0..711484320d 100644 --- a/components/lib/base/style/BaseStyle.js +++ b/packages/core/src/base/style/BaseStyle.js @@ -1,6 +1,6 @@ -import { Theme, dt } from 'primevue/themes'; -import { useStyle } from 'primevue/usestyle'; -import { ObjectUtils } from 'primevue/utils'; +import { useStyle } from '@primevue/core/usestyle'; +import { ObjectUtils } from '@primevue/core/utils'; +import { Theme, dt } from '@primevue/themes'; const theme = ({ dt }) => ` * { diff --git a/packages/core/src/base/style/package.json b/packages/core/src/base/style/package.json new file mode 100644 index 0000000000..cc4ac20af4 --- /dev/null +++ b/packages/core/src/base/style/package.json @@ -0,0 +1,6 @@ +{ + "main": "./BaseStyle.js", + "module": "./BaseStyle.js", + "types": "./BaseStyle.d.ts", + "sideEffects": false +} diff --git a/components/lib/basecomponent/BaseComponent.d.ts b/packages/core/src/basecomponent/BaseComponent.d.ts similarity index 100% rename from components/lib/basecomponent/BaseComponent.d.ts rename to packages/core/src/basecomponent/BaseComponent.d.ts diff --git a/components/lib/basecomponent/BaseComponent.vue b/packages/core/src/basecomponent/BaseComponent.vue similarity index 98% rename from components/lib/basecomponent/BaseComponent.vue rename to packages/core/src/basecomponent/BaseComponent.vue index 556400d8f3..226853c9b6 100644 --- a/components/lib/basecomponent/BaseComponent.vue +++ b/packages/core/src/basecomponent/BaseComponent.vue @@ -1,8 +1,8 @@ diff --git a/packages/icons/src/angledoubledown/package.json b/packages/icons/src/angledoubledown/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/angledoubledown/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/angledoubleleft/index.d.ts b/packages/icons/src/angledoubleleft/index.d.ts new file mode 100644 index 0000000000..3a1439068f --- /dev/null +++ b/packages/icons/src/angledoubleleft/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class AngleDoubleLeftIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + AngleDoubleLeftIcon: GlobalComponentConstructor; + } +} + +export default AngleDoubleLeftIcon; diff --git a/packages/icons/src/angledoubleleft/index.vue b/packages/icons/src/angledoubleleft/index.vue new file mode 100644 index 0000000000..18b47f097d --- /dev/null +++ b/packages/icons/src/angledoubleleft/index.vue @@ -0,0 +1,18 @@ + + diff --git a/packages/icons/src/angledoubleleft/package.json b/packages/icons/src/angledoubleleft/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/angledoubleleft/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/angledoubleright/index.d.ts b/packages/icons/src/angledoubleright/index.d.ts new file mode 100644 index 0000000000..96fc8dd736 --- /dev/null +++ b/packages/icons/src/angledoubleright/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class AngleDoubleRightIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + AngleDoubleRightIcon: GlobalComponentConstructor; + } +} + +export default AngleDoubleRightIcon; diff --git a/packages/icons/src/angledoubleright/index.vue b/packages/icons/src/angledoubleright/index.vue new file mode 100644 index 0000000000..7b4d4a9a9e --- /dev/null +++ b/packages/icons/src/angledoubleright/index.vue @@ -0,0 +1,18 @@ + + diff --git a/packages/icons/src/angledoubleright/package.json b/packages/icons/src/angledoubleright/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/angledoubleright/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/angledoubleup/index.d.ts b/packages/icons/src/angledoubleup/index.d.ts new file mode 100644 index 0000000000..68d4682e4d --- /dev/null +++ b/packages/icons/src/angledoubleup/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class AngleDoubleUpIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + AngleDoubleUpIcon: GlobalComponentConstructor; + } +} + +export default AngleDoubleUpIcon; diff --git a/packages/icons/src/angledoubleup/index.vue b/packages/icons/src/angledoubleup/index.vue new file mode 100644 index 0000000000..16b61feadb --- /dev/null +++ b/packages/icons/src/angledoubleup/index.vue @@ -0,0 +1,18 @@ + + diff --git a/packages/icons/src/angledoubleup/package.json b/packages/icons/src/angledoubleup/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/angledoubleup/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/angledown/index.d.ts b/packages/icons/src/angledown/index.d.ts new file mode 100644 index 0000000000..d34ed13da1 --- /dev/null +++ b/packages/icons/src/angledown/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class AngleDownIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + AngleDownIcon: GlobalComponentConstructor; + } +} + +export default AngleDownIcon; diff --git a/packages/icons/src/angledown/index.vue b/packages/icons/src/angledown/index.vue new file mode 100644 index 0000000000..0cc75ab5b5 --- /dev/null +++ b/packages/icons/src/angledown/index.vue @@ -0,0 +1,16 @@ + + diff --git a/packages/icons/src/angledown/package.json b/packages/icons/src/angledown/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/angledown/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/angleleft/index.d.ts b/packages/icons/src/angleleft/index.d.ts new file mode 100644 index 0000000000..1852005ba2 --- /dev/null +++ b/packages/icons/src/angleleft/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class AngleLeftIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + AngleLeftIcon: GlobalComponentConstructor; + } +} + +export default AngleLeftIcon; diff --git a/packages/icons/src/angleleft/index.vue b/packages/icons/src/angleleft/index.vue new file mode 100644 index 0000000000..3cbfe08b91 --- /dev/null +++ b/packages/icons/src/angleleft/index.vue @@ -0,0 +1,16 @@ + + diff --git a/packages/icons/src/angleleft/package.json b/packages/icons/src/angleleft/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/angleleft/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/angleright/index.d.ts b/packages/icons/src/angleright/index.d.ts new file mode 100644 index 0000000000..c6b1232ab3 --- /dev/null +++ b/packages/icons/src/angleright/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class AngleRightIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + AngleRightIcon: GlobalComponentConstructor; + } +} + +export default AngleRightIcon; diff --git a/packages/icons/src/angleright/index.vue b/packages/icons/src/angleright/index.vue new file mode 100644 index 0000000000..99f7531161 --- /dev/null +++ b/packages/icons/src/angleright/index.vue @@ -0,0 +1,16 @@ + + diff --git a/packages/icons/src/angleright/package.json b/packages/icons/src/angleright/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/angleright/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/angleup/index.d.ts b/packages/icons/src/angleup/index.d.ts new file mode 100644 index 0000000000..fbef9eddf5 --- /dev/null +++ b/packages/icons/src/angleup/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class AngleUpIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + AngleUpIcon: GlobalComponentConstructor; + } +} + +export default AngleUpIcon; diff --git a/packages/icons/src/angleup/index.vue b/packages/icons/src/angleup/index.vue new file mode 100644 index 0000000000..c3e983e3da --- /dev/null +++ b/packages/icons/src/angleup/index.vue @@ -0,0 +1,16 @@ + + diff --git a/packages/icons/src/angleup/package.json b/packages/icons/src/angleup/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/angleup/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/arrowdown/index.d.ts b/packages/icons/src/arrowdown/index.d.ts new file mode 100644 index 0000000000..54a8bcd84d --- /dev/null +++ b/packages/icons/src/arrowdown/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class ArrowDownIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + ArrowDownIcon: GlobalComponentConstructor; + } +} + +export default ArrowDownIcon; diff --git a/packages/icons/src/arrowdown/index.vue b/packages/icons/src/arrowdown/index.vue new file mode 100644 index 0000000000..707fc5f15d --- /dev/null +++ b/packages/icons/src/arrowdown/index.vue @@ -0,0 +1,19 @@ + + + diff --git a/packages/icons/src/arrowdown/package.json b/packages/icons/src/arrowdown/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/arrowdown/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/arrowup/index.d.ts b/packages/icons/src/arrowup/index.d.ts new file mode 100644 index 0000000000..d4dfabb2be --- /dev/null +++ b/packages/icons/src/arrowup/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class ArrowUpIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + ArrowUpIcon: GlobalComponentConstructor; + } +} + +export default ArrowUpIcon; diff --git a/packages/icons/src/arrowup/index.vue b/packages/icons/src/arrowup/index.vue new file mode 100644 index 0000000000..9d1e3e1a1b --- /dev/null +++ b/packages/icons/src/arrowup/index.vue @@ -0,0 +1,19 @@ + + + diff --git a/packages/icons/src/arrowup/package.json b/packages/icons/src/arrowup/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/arrowup/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/ban/index.d.ts b/packages/icons/src/ban/index.d.ts new file mode 100644 index 0000000000..ae9aab564a --- /dev/null +++ b/packages/icons/src/ban/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class BanIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + BanIcon: GlobalComponentConstructor; + } +} + +export default BanIcon; diff --git a/packages/icons/src/ban/index.vue b/packages/icons/src/ban/index.vue new file mode 100644 index 0000000000..fa2bc4caf7 --- /dev/null +++ b/packages/icons/src/ban/index.vue @@ -0,0 +1,17 @@ + + + diff --git a/packages/icons/src/ban/package.json b/packages/icons/src/ban/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/ban/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/bars/index.d.ts b/packages/icons/src/bars/index.d.ts new file mode 100644 index 0000000000..c84222ff5a --- /dev/null +++ b/packages/icons/src/bars/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class BarsIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + BarsIcon: GlobalComponentConstructor; + } +} + +export default BarsIcon; diff --git a/packages/icons/src/bars/index.vue b/packages/icons/src/bars/index.vue new file mode 100644 index 0000000000..de712a4182 --- /dev/null +++ b/packages/icons/src/bars/index.vue @@ -0,0 +1,18 @@ + + diff --git a/packages/icons/src/bars/package.json b/packages/icons/src/bars/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/bars/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/components/lib/baseicon/BaseIcon.vue b/packages/icons/src/baseicon/BaseIcon.vue similarity index 85% rename from components/lib/baseicon/BaseIcon.vue rename to packages/icons/src/baseicon/BaseIcon.vue index 71dfc9a42d..2e6fed453b 100644 --- a/components/lib/baseicon/BaseIcon.vue +++ b/packages/icons/src/baseicon/BaseIcon.vue @@ -1,7 +1,7 @@ diff --git a/packages/icons/src/blank/package.json b/packages/icons/src/blank/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/blank/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/calendar/index.d.ts b/packages/icons/src/calendar/index.d.ts new file mode 100644 index 0000000000..88922e17c3 --- /dev/null +++ b/packages/icons/src/calendar/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class CalendarIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + CalendarIcon: GlobalComponentConstructor; + } +} + +export default CalendarIcon; diff --git a/packages/icons/src/calendar/index.vue b/packages/icons/src/calendar/index.vue new file mode 100644 index 0000000000..c0f0a8f160 --- /dev/null +++ b/packages/icons/src/calendar/index.vue @@ -0,0 +1,16 @@ + + diff --git a/packages/icons/src/calendar/package.json b/packages/icons/src/calendar/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/calendar/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/check/index.d.ts b/packages/icons/src/check/index.d.ts new file mode 100644 index 0000000000..0c4400fc96 --- /dev/null +++ b/packages/icons/src/check/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class CheckIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + CheckIcon: GlobalComponentConstructor; + } +} + +export default CheckIcon; diff --git a/packages/icons/src/check/index.vue b/packages/icons/src/check/index.vue new file mode 100644 index 0000000000..6d1e2e55c2 --- /dev/null +++ b/packages/icons/src/check/index.vue @@ -0,0 +1,16 @@ + + diff --git a/packages/icons/src/check/package.json b/packages/icons/src/check/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/check/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/chevrondown/index.d.ts b/packages/icons/src/chevrondown/index.d.ts new file mode 100644 index 0000000000..a3b7692065 --- /dev/null +++ b/packages/icons/src/chevrondown/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class ChevronDownIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + ChevronDownIcon: GlobalComponentConstructor; + } +} + +export default ChevronDownIcon; diff --git a/packages/icons/src/chevrondown/index.vue b/packages/icons/src/chevrondown/index.vue new file mode 100644 index 0000000000..5d2edb2997 --- /dev/null +++ b/packages/icons/src/chevrondown/index.vue @@ -0,0 +1,16 @@ + + diff --git a/packages/icons/src/chevrondown/package.json b/packages/icons/src/chevrondown/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/chevrondown/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/chevronleft/index.d.ts b/packages/icons/src/chevronleft/index.d.ts new file mode 100644 index 0000000000..f5b5b399f8 --- /dev/null +++ b/packages/icons/src/chevronleft/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class ChevronLeftIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + ChevronLeftIcon: GlobalComponentConstructor; + } +} + +export default ChevronLeftIcon; diff --git a/packages/icons/src/chevronleft/index.vue b/packages/icons/src/chevronleft/index.vue new file mode 100644 index 0000000000..2285b94fec --- /dev/null +++ b/packages/icons/src/chevronleft/index.vue @@ -0,0 +1,16 @@ + + diff --git a/packages/icons/src/chevronleft/package.json b/packages/icons/src/chevronleft/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/chevronleft/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/chevronright/index.d.ts b/packages/icons/src/chevronright/index.d.ts new file mode 100644 index 0000000000..368e5fad18 --- /dev/null +++ b/packages/icons/src/chevronright/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class ChevronRightIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + ChevronRightIcon: GlobalComponentConstructor; + } +} + +export default ChevronRightIcon; diff --git a/packages/icons/src/chevronright/index.vue b/packages/icons/src/chevronright/index.vue new file mode 100644 index 0000000000..545976ee2d --- /dev/null +++ b/packages/icons/src/chevronright/index.vue @@ -0,0 +1,16 @@ + + diff --git a/packages/icons/src/chevronright/package.json b/packages/icons/src/chevronright/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/chevronright/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/chevronup/index.d.ts b/packages/icons/src/chevronup/index.d.ts new file mode 100644 index 0000000000..1c8f42a26d --- /dev/null +++ b/packages/icons/src/chevronup/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class ChevronUpIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + ChevronUpIcon: GlobalComponentConstructor; + } +} + +export default ChevronUpIcon; diff --git a/packages/icons/src/chevronup/index.vue b/packages/icons/src/chevronup/index.vue new file mode 100644 index 0000000000..778ce465d9 --- /dev/null +++ b/packages/icons/src/chevronup/index.vue @@ -0,0 +1,16 @@ + + diff --git a/packages/icons/src/chevronup/package.json b/packages/icons/src/chevronup/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/chevronup/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/exclamationtriangle/index.d.ts b/packages/icons/src/exclamationtriangle/index.d.ts new file mode 100644 index 0000000000..5537e1febd --- /dev/null +++ b/packages/icons/src/exclamationtriangle/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class ExclamationTriangleIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + ExclamationTriangleIcon: GlobalComponentConstructor; + } +} + +export default ExclamationTriangleIcon; diff --git a/packages/icons/src/exclamationtriangle/index.vue b/packages/icons/src/exclamationtriangle/index.vue new file mode 100644 index 0000000000..69e9e8e91f --- /dev/null +++ b/packages/icons/src/exclamationtriangle/index.vue @@ -0,0 +1,25 @@ + + + diff --git a/packages/icons/src/exclamationtriangle/package.json b/packages/icons/src/exclamationtriangle/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/exclamationtriangle/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/eye/index.d.ts b/packages/icons/src/eye/index.d.ts new file mode 100644 index 0000000000..7726fdd34d --- /dev/null +++ b/packages/icons/src/eye/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class EyeIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + EyeIcon: GlobalComponentConstructor; + } +} + +export default EyeIcon; diff --git a/packages/icons/src/eye/index.vue b/packages/icons/src/eye/index.vue new file mode 100644 index 0000000000..8872886dbf --- /dev/null +++ b/packages/icons/src/eye/index.vue @@ -0,0 +1,18 @@ + + diff --git a/packages/icons/src/eye/package.json b/packages/icons/src/eye/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/eye/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/eyeslash/index.d.ts b/packages/icons/src/eyeslash/index.d.ts new file mode 100644 index 0000000000..0ed07490e2 --- /dev/null +++ b/packages/icons/src/eyeslash/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class EyeSlashIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + EyeSlashIcon: GlobalComponentConstructor; + } +} + +export default EyeSlashIcon; diff --git a/packages/icons/src/eyeslash/index.vue b/packages/icons/src/eyeslash/index.vue new file mode 100644 index 0000000000..1c2cfc93ec --- /dev/null +++ b/packages/icons/src/eyeslash/index.vue @@ -0,0 +1,19 @@ + + + diff --git a/packages/icons/src/eyeslash/package.json b/packages/icons/src/eyeslash/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/eyeslash/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/filter/index.d.ts b/packages/icons/src/filter/index.d.ts new file mode 100644 index 0000000000..54ced5e427 --- /dev/null +++ b/packages/icons/src/filter/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class FilterIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + FilterIcon: GlobalComponentConstructor; + } +} + +export default FilterIcon; diff --git a/packages/icons/src/filter/index.vue b/packages/icons/src/filter/index.vue new file mode 100644 index 0000000000..2b15c08094 --- /dev/null +++ b/packages/icons/src/filter/index.vue @@ -0,0 +1,17 @@ + + + diff --git a/packages/icons/src/filter/package.json b/packages/icons/src/filter/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/filter/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/filterslash/index.d.ts b/packages/icons/src/filterslash/index.d.ts new file mode 100644 index 0000000000..aba7ac29da --- /dev/null +++ b/packages/icons/src/filterslash/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class FilterSlashIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + FilterSlashIcon: GlobalComponentConstructor; + } +} + +export default FilterSlashIcon; diff --git a/packages/icons/src/filterslash/index.vue b/packages/icons/src/filterslash/index.vue new file mode 100644 index 0000000000..059419b165 --- /dev/null +++ b/packages/icons/src/filterslash/index.vue @@ -0,0 +1,19 @@ + + + diff --git a/packages/icons/src/filterslash/package.json b/packages/icons/src/filterslash/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/filterslash/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/index.d.ts b/packages/icons/src/index.d.ts new file mode 100644 index 0000000000..91d7766460 --- /dev/null +++ b/packages/icons/src/index.d.ts @@ -0,0 +1,14 @@ +import { DefineComponent, EmitFn } from '../../primevue/src/ts-helpers'; + +export interface IconProps { + label?: string | undefined; + spin?: boolean; +} + +export interface IconSlots {} + +export interface IconEmitsOptions {} + +export declare type IconEmits = EmitFn; + +declare const Icon: DefineComponent; diff --git a/packages/icons/src/infocircle/index.d.ts b/packages/icons/src/infocircle/index.d.ts new file mode 100644 index 0000000000..08cdcf2704 --- /dev/null +++ b/packages/icons/src/infocircle/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class InfoCircleIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + InfoCircleIcon: GlobalComponentConstructor; + } +} + +export default InfoCircleIcon; diff --git a/packages/icons/src/infocircle/index.vue b/packages/icons/src/infocircle/index.vue new file mode 100644 index 0000000000..f7abf97919 --- /dev/null +++ b/packages/icons/src/infocircle/index.vue @@ -0,0 +1,19 @@ + + + diff --git a/packages/icons/src/infocircle/package.json b/packages/icons/src/infocircle/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/infocircle/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/minus/index.d.ts b/packages/icons/src/minus/index.d.ts new file mode 100644 index 0000000000..76cc96fd18 --- /dev/null +++ b/packages/icons/src/minus/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class MinusIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + MinusIcon: GlobalComponentConstructor; + } +} + +export default MinusIcon; diff --git a/packages/icons/src/minus/index.vue b/packages/icons/src/minus/index.vue new file mode 100644 index 0000000000..1c12061320 --- /dev/null +++ b/packages/icons/src/minus/index.vue @@ -0,0 +1,16 @@ + + diff --git a/packages/icons/src/minus/package.json b/packages/icons/src/minus/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/minus/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/pencil/index.d.ts b/packages/icons/src/pencil/index.d.ts new file mode 100644 index 0000000000..e9f6cd3d05 --- /dev/null +++ b/packages/icons/src/pencil/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class PencilIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + PencilIcon: GlobalComponentConstructor; + } +} + +export default PencilIcon; diff --git a/packages/icons/src/pencil/index.vue b/packages/icons/src/pencil/index.vue new file mode 100644 index 0000000000..6ba22b779d --- /dev/null +++ b/packages/icons/src/pencil/index.vue @@ -0,0 +1,17 @@ + + + diff --git a/packages/icons/src/pencil/package.json b/packages/icons/src/pencil/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/pencil/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/plus/index.d.ts b/packages/icons/src/plus/index.d.ts new file mode 100644 index 0000000000..9eacc183ad --- /dev/null +++ b/packages/icons/src/plus/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class PlusIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + PlusIcon: GlobalComponentConstructor; + } +} + +export default PlusIcon; diff --git a/packages/icons/src/plus/index.vue b/packages/icons/src/plus/index.vue new file mode 100644 index 0000000000..2a70c80f97 --- /dev/null +++ b/packages/icons/src/plus/index.vue @@ -0,0 +1,17 @@ + + + diff --git a/packages/icons/src/plus/package.json b/packages/icons/src/plus/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/plus/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/refresh/index.d.ts b/packages/icons/src/refresh/index.d.ts new file mode 100644 index 0000000000..947fb64fde --- /dev/null +++ b/packages/icons/src/refresh/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class RefreshIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + RefreshIcon: GlobalComponentConstructor; + } +} + +export default RefreshIcon; diff --git a/packages/icons/src/refresh/index.vue b/packages/icons/src/refresh/index.vue new file mode 100644 index 0000000000..9afababf8b --- /dev/null +++ b/packages/icons/src/refresh/index.vue @@ -0,0 +1,19 @@ + + + diff --git a/packages/icons/src/refresh/package.json b/packages/icons/src/refresh/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/refresh/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/search/index.d.ts b/packages/icons/src/search/index.d.ts new file mode 100644 index 0000000000..440da66041 --- /dev/null +++ b/packages/icons/src/search/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class SearchIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + SearchIcon: GlobalComponentConstructor; + } +} + +export default SearchIcon; diff --git a/packages/icons/src/search/index.vue b/packages/icons/src/search/index.vue new file mode 100644 index 0000000000..ebbf568311 --- /dev/null +++ b/packages/icons/src/search/index.vue @@ -0,0 +1,19 @@ + + + diff --git a/packages/icons/src/search/package.json b/packages/icons/src/search/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/search/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/searchminus/index.d.ts b/packages/icons/src/searchminus/index.d.ts new file mode 100644 index 0000000000..ca05ee7012 --- /dev/null +++ b/packages/icons/src/searchminus/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class SearchMinusIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + SearchMinusIcon: GlobalComponentConstructor; + } +} + +export default SearchMinusIcon; diff --git a/packages/icons/src/searchminus/index.vue b/packages/icons/src/searchminus/index.vue new file mode 100644 index 0000000000..0fa92d0bd3 --- /dev/null +++ b/packages/icons/src/searchminus/index.vue @@ -0,0 +1,19 @@ + + + diff --git a/packages/icons/src/searchminus/package.json b/packages/icons/src/searchminus/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/searchminus/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/searchplus/index.d.ts b/packages/icons/src/searchplus/index.d.ts new file mode 100644 index 0000000000..199fdebd77 --- /dev/null +++ b/packages/icons/src/searchplus/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class SearchPlusIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + SearchPlusIcon: GlobalComponentConstructor; + } +} + +export default SearchPlusIcon; diff --git a/packages/icons/src/searchplus/index.vue b/packages/icons/src/searchplus/index.vue new file mode 100644 index 0000000000..8a9d1960a0 --- /dev/null +++ b/packages/icons/src/searchplus/index.vue @@ -0,0 +1,19 @@ + + + diff --git a/packages/icons/src/searchplus/package.json b/packages/icons/src/searchplus/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/searchplus/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/sortalt/index.d.ts b/packages/icons/src/sortalt/index.d.ts new file mode 100644 index 0000000000..ab1133086f --- /dev/null +++ b/packages/icons/src/sortalt/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class SortAltIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + SortAltIcon: GlobalComponentConstructor; + } +} + +export default SortAltIcon; diff --git a/packages/icons/src/sortalt/index.vue b/packages/icons/src/sortalt/index.vue new file mode 100644 index 0000000000..dc461a7024 --- /dev/null +++ b/packages/icons/src/sortalt/index.vue @@ -0,0 +1,23 @@ + + + diff --git a/packages/icons/src/sortalt/package.json b/packages/icons/src/sortalt/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/sortalt/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/sortamountdown/index.d.ts b/packages/icons/src/sortamountdown/index.d.ts new file mode 100644 index 0000000000..34a604ffd0 --- /dev/null +++ b/packages/icons/src/sortamountdown/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class SortAmountDownIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + SortAmountDownIcon: GlobalComponentConstructor; + } +} + +export default SortAmountDownIcon; diff --git a/packages/icons/src/sortamountdown/index.vue b/packages/icons/src/sortamountdown/index.vue new file mode 100644 index 0000000000..1a909d8a70 --- /dev/null +++ b/packages/icons/src/sortamountdown/index.vue @@ -0,0 +1,17 @@ + + + diff --git a/packages/icons/src/sortamountdown/package.json b/packages/icons/src/sortamountdown/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/sortamountdown/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/sortamountupalt/index.d.ts b/packages/icons/src/sortamountupalt/index.d.ts new file mode 100644 index 0000000000..fb0d8f26c5 --- /dev/null +++ b/packages/icons/src/sortamountupalt/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class SortAmountUpAltIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + SortAmountUpAltIcon: GlobalComponentConstructor; + } +} + +export default SortAmountUpAltIcon; diff --git a/packages/icons/src/sortamountupalt/index.vue b/packages/icons/src/sortamountupalt/index.vue new file mode 100644 index 0000000000..48561f0ae8 --- /dev/null +++ b/packages/icons/src/sortamountupalt/index.vue @@ -0,0 +1,17 @@ + + + diff --git a/packages/icons/src/sortamountupalt/package.json b/packages/icons/src/sortamountupalt/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/sortamountupalt/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/spinner/index.d.ts b/packages/icons/src/spinner/index.d.ts new file mode 100644 index 0000000000..9c98a0dd5f --- /dev/null +++ b/packages/icons/src/spinner/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class SpinnerIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + SpinnerIcon: GlobalComponentConstructor; + } +} + +export default SpinnerIcon; diff --git a/packages/icons/src/spinner/index.vue b/packages/icons/src/spinner/index.vue new file mode 100644 index 0000000000..d79e79bec1 --- /dev/null +++ b/packages/icons/src/spinner/index.vue @@ -0,0 +1,17 @@ + + + diff --git a/packages/icons/src/spinner/package.json b/packages/icons/src/spinner/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/spinner/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/star/index.d.ts b/packages/icons/src/star/index.d.ts new file mode 100644 index 0000000000..ae3b60ce40 --- /dev/null +++ b/packages/icons/src/star/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class StarIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + StarIcon: GlobalComponentConstructor; + } +} + +export default StarIcon; diff --git a/packages/icons/src/star/index.vue b/packages/icons/src/star/index.vue new file mode 100644 index 0000000000..a52d2edb50 --- /dev/null +++ b/packages/icons/src/star/index.vue @@ -0,0 +1,17 @@ + + + diff --git a/packages/icons/src/star/package.json b/packages/icons/src/star/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/star/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/starfill/index.d.ts b/packages/icons/src/starfill/index.d.ts new file mode 100644 index 0000000000..d3ee4ca38c --- /dev/null +++ b/packages/icons/src/starfill/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class StarFillIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + StarFillIcon: GlobalComponentConstructor; + } +} + +export default StarFillIcon; diff --git a/packages/icons/src/starfill/index.vue b/packages/icons/src/starfill/index.vue new file mode 100644 index 0000000000..41e3896808 --- /dev/null +++ b/packages/icons/src/starfill/index.vue @@ -0,0 +1,17 @@ + + + diff --git a/packages/icons/src/starfill/package.json b/packages/icons/src/starfill/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/starfill/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/thlarge/index.d.ts b/packages/icons/src/thlarge/index.d.ts new file mode 100644 index 0000000000..c8d85a33e5 --- /dev/null +++ b/packages/icons/src/thlarge/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class ThLargeIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + ThLargeIcon: GlobalComponentConstructor; + } +} + +export default ThLargeIcon; diff --git a/packages/icons/src/thlarge/index.vue b/packages/icons/src/thlarge/index.vue new file mode 100644 index 0000000000..7cc1417026 --- /dev/null +++ b/packages/icons/src/thlarge/index.vue @@ -0,0 +1,19 @@ + + + diff --git a/packages/icons/src/thlarge/package.json b/packages/icons/src/thlarge/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/thlarge/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/times/index.d.ts b/packages/icons/src/times/index.d.ts new file mode 100644 index 0000000000..bcc08ac6e0 --- /dev/null +++ b/packages/icons/src/times/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class TimesIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + TimesIcon: GlobalComponentConstructor; + } +} + +export default TimesIcon; diff --git a/packages/icons/src/times/index.vue b/packages/icons/src/times/index.vue new file mode 100644 index 0000000000..f10e39a978 --- /dev/null +++ b/packages/icons/src/times/index.vue @@ -0,0 +1,16 @@ + + diff --git a/packages/icons/src/times/package.json b/packages/icons/src/times/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/times/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/timescircle/index.d.ts b/packages/icons/src/timescircle/index.d.ts new file mode 100644 index 0000000000..5bb1d0bd80 --- /dev/null +++ b/packages/icons/src/timescircle/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class TimesCircleIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + TimesCircleIcon: GlobalComponentConstructor; + } +} + +export default TimesCircleIcon; diff --git a/packages/icons/src/timescircle/index.vue b/packages/icons/src/timescircle/index.vue new file mode 100644 index 0000000000..836c94a4e7 --- /dev/null +++ b/packages/icons/src/timescircle/index.vue @@ -0,0 +1,19 @@ + + + diff --git a/packages/icons/src/timescircle/package.json b/packages/icons/src/timescircle/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/timescircle/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/trash/index.d.ts b/packages/icons/src/trash/index.d.ts new file mode 100644 index 0000000000..9e5242789b --- /dev/null +++ b/packages/icons/src/trash/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class TrashIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + TrashIcon: GlobalComponentConstructor; + } +} + +export default TrashIcon; diff --git a/packages/icons/src/trash/index.vue b/packages/icons/src/trash/index.vue new file mode 100644 index 0000000000..5cb057f217 --- /dev/null +++ b/packages/icons/src/trash/index.vue @@ -0,0 +1,19 @@ + + + diff --git a/packages/icons/src/trash/package.json b/packages/icons/src/trash/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/trash/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/undo/index.d.ts b/packages/icons/src/undo/index.d.ts new file mode 100644 index 0000000000..ca1f89161a --- /dev/null +++ b/packages/icons/src/undo/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class UndoIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + UndoIcon: GlobalComponentConstructor; + } +} + +export default UndoIcon; diff --git a/packages/icons/src/undo/index.vue b/packages/icons/src/undo/index.vue new file mode 100644 index 0000000000..41956d2d92 --- /dev/null +++ b/packages/icons/src/undo/index.vue @@ -0,0 +1,19 @@ + + + diff --git a/packages/icons/src/undo/package.json b/packages/icons/src/undo/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/undo/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/upload/index.d.ts b/packages/icons/src/upload/index.d.ts new file mode 100644 index 0000000000..ede1f57f29 --- /dev/null +++ b/packages/icons/src/upload/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class UploadIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + UploadIcon: GlobalComponentConstructor; + } +} + +export default UploadIcon; diff --git a/packages/icons/src/upload/index.vue b/packages/icons/src/upload/index.vue new file mode 100644 index 0000000000..e4321ad995 --- /dev/null +++ b/packages/icons/src/upload/index.vue @@ -0,0 +1,19 @@ + + + diff --git a/packages/icons/src/upload/package.json b/packages/icons/src/upload/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/upload/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/windowmaximize/index.d.ts b/packages/icons/src/windowmaximize/index.d.ts new file mode 100644 index 0000000000..691efb43e8 --- /dev/null +++ b/packages/icons/src/windowmaximize/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class WindowMaximizeIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + WindowMaximizeIcon: GlobalComponentConstructor; + } +} + +export default WindowMaximizeIcon; diff --git a/packages/icons/src/windowmaximize/index.vue b/packages/icons/src/windowmaximize/index.vue new file mode 100644 index 0000000000..58689d4f46 --- /dev/null +++ b/packages/icons/src/windowmaximize/index.vue @@ -0,0 +1,19 @@ + + + diff --git a/packages/icons/src/windowmaximize/package.json b/packages/icons/src/windowmaximize/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/windowmaximize/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/src/windowminimize/index.d.ts b/packages/icons/src/windowminimize/index.d.ts new file mode 100644 index 0000000000..02f4d09c53 --- /dev/null +++ b/packages/icons/src/windowminimize/index.d.ts @@ -0,0 +1,12 @@ +import { GlobalComponentConstructor } from '../../../primevue/src/ts-helpers'; +import { Icon } from '../../icons/index'; + +declare class WindowMinimizeIcon extends Icon {} + +declare module 'vue' { + export interface GlobalComponents { + WindowMinimizeIcon: GlobalComponentConstructor; + } +} + +export default WindowMinimizeIcon; diff --git a/packages/icons/src/windowminimize/index.vue b/packages/icons/src/windowminimize/index.vue new file mode 100644 index 0000000000..1c68659446 --- /dev/null +++ b/packages/icons/src/windowminimize/index.vue @@ -0,0 +1,19 @@ + + + diff --git a/packages/icons/src/windowminimize/package.json b/packages/icons/src/windowminimize/package.json new file mode 100644 index 0000000000..dbc8e9bc45 --- /dev/null +++ b/packages/icons/src/windowminimize/package.json @@ -0,0 +1,11 @@ +{ + "main": "./index.vue", + "module": "./index.vue", + "types": "./index.d.ts", + "browser": { + "./sfc": "./index.vue" + }, + "sideEffects": [ + "*.vue" + ] +} diff --git a/packages/icons/tsconfig.json b/packages/icons/tsconfig.json new file mode 100644 index 0000000000..2d6db56d7e --- /dev/null +++ b/packages/icons/tsconfig.json @@ -0,0 +1,24 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, + "skipLibCheck": false, + "strict": true, + "forceConsistentCasingInFileNames": true, + "noEmit": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": false, + "jsx": "preserve", + "incremental": true, + "baseUrl": ".", + "paths": { + "@primevue/core/*": ["../../packages/core/src/*"] + } + }, + "include": ["**/*.ts", "src/*"], + "exclude": ["node_modules", "dist"] +} diff --git a/packages/metadata/README.md b/packages/metadata/README.md new file mode 100644 index 0000000000..36265b0936 --- /dev/null +++ b/packages/metadata/README.md @@ -0,0 +1 @@ +# PrimeVue MetaData diff --git a/packages/metadata/package.json b/packages/metadata/package.json new file mode 100644 index 0000000000..30aae215af --- /dev/null +++ b/packages/metadata/package.json @@ -0,0 +1,44 @@ +{ + "name": "@primevue/metadata", + "version": "4.0.0-beta.5", + "private": false, + "author": "PrimeTek Informatics", + "description": "", + "homepage": "https://primevue.org/", + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/primefaces/primevue.git", + "directory": "packages/metadata" + }, + "bugs": { + "url": "https://github.com/primefaces/primevue/issues" + }, + "main": "./src/index.ts", + "publishConfig": { + "main": "./index.mjs", + "module": "./index.mjs", + "types": "./index.d.mts", + "exports": { + ".": { + "types": "./index.d.mts", + "import": "./index.mjs" + } + }, + "directory": "dist", + "linkDirectory": false, + "access": "public" + }, + "scripts": { + "build": "NODE_ENV=production INPUT_DIR=src/ OUTPUT_DIR=dist/ pnpm run build:package", + "build:package": "pnpm run build:prebuild && tsup && pnpm run build:postbuild", + "build:prebuild": "node ./scripts/prebuild.mjs", + "build:postbuild": "node ./scripts/postbuild.mjs" + }, + "devDependencies": { + "tsup": "^8.1.0" + }, + "engines": { + "node": ">=12.11.0" + } +} \ No newline at end of file diff --git a/packages/metadata/scripts/postbuild.mjs b/packages/metadata/scripts/postbuild.mjs new file mode 100644 index 0000000000..2ec4510bf9 --- /dev/null +++ b/packages/metadata/scripts/postbuild.mjs @@ -0,0 +1,11 @@ +import fs from 'fs-extra'; +import path from 'path'; +import { clearPackageJson, resolvePath } from '../../../scripts/build-helper.mjs'; + +const { __dirname, __workspace, OUTPUT_DIR } = resolvePath(import.meta.url); + +fs.copySync(path.resolve(__dirname, '../package.json'), `${OUTPUT_DIR}/package.json`); +fs.copySync(path.resolve(__dirname, '../README.md'), `${OUTPUT_DIR}/README.md`); +fs.copySync(path.resolve(__workspace, './LICENSE.md'), `${OUTPUT_DIR}/LICENSE.md`); + +clearPackageJson(path.resolve(__dirname, `../${OUTPUT_DIR}/package.json`)); diff --git a/packages/metadata/scripts/prebuild.mjs b/packages/metadata/scripts/prebuild.mjs new file mode 100644 index 0000000000..e8449e469f --- /dev/null +++ b/packages/metadata/scripts/prebuild.mjs @@ -0,0 +1,5 @@ +import path from 'path'; +import { removeBuild, resolvePath, updatePackageJson } from '../../../scripts/build-helper.mjs'; + +removeBuild(import.meta.url); +updatePackageJson(path.resolve(resolvePath(import.meta.url).__dirname, '../package.json')); diff --git a/packages/metadata/src/components/index.ts b/packages/metadata/src/components/index.ts new file mode 100644 index 0000000000..b2304580a0 --- /dev/null +++ b/packages/metadata/src/components/index.ts @@ -0,0 +1,92 @@ +import { MetaType, toMeta } from '../index'; + +export const form: MetaType[] = toMeta([ + 'AutoComplete', + 'Calendar', + 'CascadeSelect', + 'Checkbox', + 'Chips', + 'ColorPicker', + 'DatePicker', + 'Dropdown', + 'Editor', + 'FloatLabel', + 'IconField', + 'InputChips', + 'InputGroup', + 'InputGroupAddon', + 'InputIcon', + 'InputMask', + 'InputNumber', + 'InputOtp', + 'InputSwitch', + 'InputText', + 'Knob', + 'Listbox', + 'MultiSelect', + 'Password', + 'RadioButton', + 'Rating', + 'Select', + 'SelectButton', + 'Slider', + 'Textarea', + 'ToggleButton', + 'ToggleSwitch', + 'TreeSelect' +]); + +export const button: MetaType[] = toMeta(['Button', 'ButtonGroup', 'SpeedDial', 'SplitButton']); + +export const data: MetaType[] = toMeta(['Column', 'Row', 'ColumnGroup', 'DataTable', 'DataView', 'OrderList', 'OrganizationChart', 'Paginator', 'PickList', 'Tree', 'TreeTable', 'Timeline', 'VirtualScroller']); + +export const panel: MetaType[] = toMeta([ + 'Accordion', + 'AccordionPanel', + 'AccordionHeader', + 'AccordionContent', + 'AccordionTab', + 'Card', + 'DeferredContent', + 'Divider', + 'Fieldset', + 'Panel', + 'ScrollPanel', + 'Splitter', + 'SplitterPanel', + 'Stepper', + 'StepperPanel', + 'TabView', + 'Tabs', + 'TabList', + 'Tab', + 'TabPanels', + 'TabPanel', + 'Toolbar' +]); + +export const overlay: MetaType[] = toMeta([ + { name: 'ConfirmDialog', use: { as: 'ConfirmationService' } }, + { name: 'ConfirmPopup', use: { as: 'ConfirmationService' } }, + 'Dialog', + 'Drawer', + { name: 'DynamicDialog', use: { as: 'DialogService' } }, + 'OverlayPanel', + 'Popover', + 'Sidebar' +]); + +export const file: MetaType[] = toMeta(['FileUpload']); + +export const menu: MetaType[] = toMeta(['Breadcrumb', 'ContextMenu', 'Dock', 'Menu', 'Menubar', 'MegaMenu', 'PanelMenu', 'Steps', 'TabMenu', 'TieredMenu']); + +export const chart: MetaType[] = toMeta(['Chart']); + +export const messages: MetaType[] = toMeta(['Message', 'InlineMessage', { name: 'Toast', use: { as: 'ToastService' } }]); + +export const media: MetaType[] = toMeta(['Carousel', 'Galleria', 'Image']); + +export const misc: MetaType[] = toMeta(['Avatar', 'AvatarGroup', 'Badge', 'BlockUI', 'Chip', 'Inplace', 'MeterGroup', 'OverlayBadge', 'ScrollTop', 'Skeleton', 'ProgressBar', 'ProgressSpinner', 'Tag', 'Terminal']); + +// All PrimeVue Components +export const components: MetaType[] = [...form, ...button, ...data, ...panel, ...overlay, ...file, ...menu, ...chart, ...messages, ...media, ...misc]; diff --git a/packages/metadata/src/composables/index.ts b/packages/metadata/src/composables/index.ts new file mode 100644 index 0000000000..98c8bf0bd0 --- /dev/null +++ b/packages/metadata/src/composables/index.ts @@ -0,0 +1,9 @@ +import { MetaType, toMeta } from '../index'; + +export const composables: MetaType[] = toMeta([ + { name: 'usePrimeVue', as: 'usePrimeVue', from: 'primevue/config' }, + { name: 'useStyle', as: 'useStyle', from: 'primevue/usestyle' }, + { name: 'useConfirm', as: 'useConfirm', from: 'primevue/useconfirm' }, + { name: 'useToast', as: 'useToast', from: 'primevue/usetoast' }, + { name: 'useDialog', as: 'useDialog', from: 'primevue/usedialog' } +]); diff --git a/packages/metadata/src/directives/index.ts b/packages/metadata/src/directives/index.ts new file mode 100644 index 0000000000..ea3857f712 --- /dev/null +++ b/packages/metadata/src/directives/index.ts @@ -0,0 +1,10 @@ +import { MetaType, toMeta } from '../index'; + +export const directives: MetaType[] = toMeta([ + { name: 'badge', as: 'BadgeDirective', from: 'primevue/badgedirective' }, + { name: 'tooltip', as: 'Tooltip', from: 'primevue/tooltip' }, + { name: 'ripple', as: 'Ripple', from: 'primevue/ripple' }, + { name: 'styleclass', as: 'StyleClass', from: 'primevue/styleclass' }, + { name: 'focustrap', as: 'FocusTrap', from: 'primevue/focustrap' }, + { name: 'animateonscroll', as: 'AnimateOnScroll', from: 'primevue/animateonscroll' } +]); diff --git a/packages/metadata/src/index.ts b/packages/metadata/src/index.ts new file mode 100644 index 0000000000..191812514e --- /dev/null +++ b/packages/metadata/src/index.ts @@ -0,0 +1,21 @@ +export interface MetaType { + name?: string; + as?: string; + from?: string; + use?: { + as?: string; + }; +} + +export function toMeta(arr?: any[]): MetaType[] | undefined { + return arr?.map((item) => { + const it = typeof item === 'string' ? { name: item } : item; + it.from ??= `primevue/${it?.name?.toLowerCase()}`; + + return it; + }); +} + +export * from './components/index'; +export * from './composables/index'; +export * from './directives/index'; diff --git a/packages/metadata/tsconfig.json b/packages/metadata/tsconfig.json new file mode 100644 index 0000000000..ddcbdccfe6 --- /dev/null +++ b/packages/metadata/tsconfig.json @@ -0,0 +1,7 @@ +{ + "compilerOptions": { + "module": "es2022", + "moduleResolution": "Node" + }, + "exclude": ["node_modules"] +} diff --git a/packages/metadata/tsup.config.ts b/packages/metadata/tsup.config.ts new file mode 100644 index 0000000000..06edfbd3ab --- /dev/null +++ b/packages/metadata/tsup.config.ts @@ -0,0 +1,8 @@ +import { defineConfig } from 'tsup'; + +export default defineConfig({ + entry: ['./src/index.ts'], + format: ['esm'], + dts: true, + splitting: false +}); diff --git a/packages/nuxt-module/.npmrc b/packages/nuxt-module/.npmrc new file mode 100644 index 0000000000..cf04042455 --- /dev/null +++ b/packages/nuxt-module/.npmrc @@ -0,0 +1,2 @@ +shamefully-hoist=true +strict-peer-dependencies=false diff --git a/packages/nuxt-module/.nuxtrc b/packages/nuxt-module/.nuxtrc new file mode 100644 index 0000000000..f033419921 --- /dev/null +++ b/packages/nuxt-module/.nuxtrc @@ -0,0 +1,2 @@ +imports.autoImport=false +typescript.includeWorkspace=true diff --git a/packages/nuxt-module/README.md b/packages/nuxt-module/README.md new file mode 100644 index 0000000000..e743b30d93 --- /dev/null +++ b/packages/nuxt-module/README.md @@ -0,0 +1,43 @@ +![@primevue/nuxt-module](https://github.com/primefaces/primevue-nuxt-module/assets/11868120/c35e1180-573f-4650-bbe9-0c79bff71f05) + +# PrimeVue Nuxt Module + +[![npm version][npm-version-src]][npm-version-href] +[![npm downloads][npm-downloads-src]][npm-downloads-href] +[![Discord Chat][discord-src]](discord-href) +[![License][license-src]][license-href] + +- [✨ Release Notes](https://github.com/primefaces/primevue/packages/nuxt-module/blob/main/CHANGELOG.md#changelog) +- [📖 Documentation](https://primevue.org/nuxt/) + +## Quick Setup + +1. Add `@primevue/nuxt-module` dependency to your project + +```bash +npx nuxi@latest module add primevue +``` + +2. Add `@primevue/nuxt-module` to the `modules` section of `nuxt.config.{ts,js}` + +```js +{ + modules: [ + '@primevue/nuxt-module' + ] +} +``` + +That's it! You can now use `@primevue/nuxt-module` in your Nuxt app ✨ + + +[npm-version-src]: https://img.shields.io/npm/v/@primevue/nuxt-module/latest.svg?color +[npm-version-href]: https://npmjs.com/package/@primevue/nuxt-module + +[npm-downloads-src]: https://img.shields.io/npm/dm/@primevue/nuxt-module +[npm-downloads-href]: https://npmjs.com/package/@primevue/nuxt-module + +[discord-src]: https://img.shields.io/discord/557940238991753223.svg?colorB=7289da&label=chat&logo=discord + +[license-src]: https://img.shields.io/npm/l/@primevue/nuxt-module.svg?style=flat&colorB=yellow +[license-href]: https://npmjs.com/package/@primevue/nuxt-module diff --git a/packages/nuxt-module/package.json b/packages/nuxt-module/package.json new file mode 100644 index 0000000000..9590a27acc --- /dev/null +++ b/packages/nuxt-module/package.json @@ -0,0 +1,79 @@ +{ + "name": "@primevue/nuxt-module", + "version": "4.0.0-beta.5", + "private": false, + "author": "PrimeTek Informatics", + "description": "Nuxt module for PrimeVue", + "homepage": "https://primevue.org/", + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/primefaces/primevue.git", + "directory": "packages/nuxt-module" + }, + "bugs": { + "url": "https://github.com/primefaces/primevue/issues" + }, + "keywords": [ + "vue", + "vue.js", + "vue3", + "nuxt", + "nuxt3", + "primevue", + "primevue nuxt module", + "primevue nuxt3", + "primevue 4" + ], + "sideEffects": false, + "type": "module", + "main": "./src/module.ts", + "types": "./src/types.d.ts", + "files": [ + "dist" + ], + "publishConfig": { + "main": "./dist/module.cjs", + "types": "./dist/types.d.ts", + "exports": { + ".": { + "types": "./dist/types.d.ts", + "import": "./dist/module.mjs", + "require": "./dist/module.cjs" + } + }, + "access": "public" + }, + "scripts": { + "build": "NODE_ENV=production INPUT_DIR=src/ OUTPUT_DIR=dist/ pnpm run build:package", + "build:package": "pnpm run build:prebuild && pnpm run test && pnpm run prepack", + "build:prebuild": "node ./scripts/prebuild.mjs", + "prepack": "nuxt-module-build", + "dev": "nuxi dev playground", + "dev:build": "nuxi build playground", + "dev:prepare": "nuxt-module-build --stub && nuxt-module-build prepare && nuxi prepare playground", + "test": "vitest run", + "test:watch": "vitest watch" + }, + "dependencies": { + "@nuxt/kit": "^3.7.3", + "pathe": "^1.1.2", + "primevue": "workspace:*", + "@primevue/metadata": "workspace:*" + }, + "devDependencies": { + "@types/node": "^18.17.17", + "@nuxt/devtools": "^0.8.5", + "@nuxt/eslint-config": "^0.2.0", + "@nuxt/module-builder": "^0.5.1", + "@nuxt/schema": "^3.7.3", + "@nuxt/test-utils": "^3.7.3", + "changelogen": "^0.5.5", + "nitropack": "^2.6.3", + "nuxt": "3.3.2", + "vitest": "^1.6.0" + }, + "engines": { + "node": ">=12.11.0" + } +} \ No newline at end of file diff --git a/packages/nuxt-module/playground/app.vue b/packages/nuxt-module/playground/app.vue new file mode 100644 index 0000000000..d559885226 --- /dev/null +++ b/packages/nuxt-module/playground/app.vue @@ -0,0 +1,27 @@ + + + diff --git a/packages/nuxt-module/playground/nuxt.config.ts b/packages/nuxt-module/playground/nuxt.config.ts new file mode 100644 index 0000000000..09299ba581 --- /dev/null +++ b/packages/nuxt-module/playground/nuxt.config.ts @@ -0,0 +1,31 @@ +export default defineNuxtConfig({ + modules: ['../src/module'], + primevue: { + usePrimeVue: true, + options: { + // ripple, inputStyle etc. + ripple: true, + pt: { + panel: { + header: 'my-panel-header' + } + } + }, + components: { + prefix: '', + include: '*', + exclude: undefined + }, + directives: { + prefix: '', + include: undefined, + exclude: '*' + }, + composables: { + //prefix: '', + include: undefined, + exclude: undefined + } + }, + devtools: { enabled: true } +}); diff --git a/packages/nuxt-module/playground/package.json b/packages/nuxt-module/playground/package.json new file mode 100644 index 0000000000..202a524bc5 --- /dev/null +++ b/packages/nuxt-module/playground/package.json @@ -0,0 +1,13 @@ +{ + "private": true, + "name": "my-module-playground", + "type": "module", + "scripts": { + "dev": "nuxi dev", + "build": "nuxi build", + "generate": "nuxi generate" + }, + "devDependencies": { + "nuxt": "3.3.2" + } +} diff --git a/packages/nuxt-module/playground/server/tsconfig.json b/packages/nuxt-module/playground/server/tsconfig.json new file mode 100644 index 0000000000..deaaf79bfd --- /dev/null +++ b/packages/nuxt-module/playground/server/tsconfig.json @@ -0,0 +1,3 @@ +{ + "extends": "../.nuxt/tsconfig.server.json" +} diff --git a/packages/nuxt-module/playground/tsconfig.json b/packages/nuxt-module/playground/tsconfig.json new file mode 100644 index 0000000000..0d9b5cbd92 --- /dev/null +++ b/packages/nuxt-module/playground/tsconfig.json @@ -0,0 +1,3 @@ +{ + "extends": "./.nuxt/tsconfig.json" +} diff --git a/packages/nuxt-module/scripts/prebuild.mjs b/packages/nuxt-module/scripts/prebuild.mjs new file mode 100644 index 0000000000..e8449e469f --- /dev/null +++ b/packages/nuxt-module/scripts/prebuild.mjs @@ -0,0 +1,5 @@ +import path from 'path'; +import { removeBuild, resolvePath, updatePackageJson } from '../../../scripts/build-helper.mjs'; + +removeBuild(import.meta.url); +updatePackageJson(path.resolve(resolvePath(import.meta.url).__dirname, '../package.json')); diff --git a/packages/nuxt-module/src/module.ts b/packages/nuxt-module/src/module.ts new file mode 100644 index 0000000000..b364ee03ac --- /dev/null +++ b/packages/nuxt-module/src/module.ts @@ -0,0 +1,131 @@ +import { addPlugin, addPluginTemplate, addTemplate, createResolver, defineNuxtModule } from '@nuxt/kit'; +import { normalize } from 'pathe'; +import { register } from './register'; +import type { ModuleOptions } from './types'; + +export default defineNuxtModule({ + meta: { + name: '@primevue/nuxt-module', + configKey: 'primevue', + compatibility: { + nuxt: '^3.0.0' + } + }, + defaults: { + usePrimeVue: true, + resolvePath: undefined, + cssLayerOrder: 'tailwind-base, primevue, tailwind-utilities', + importPT: undefined, + importTheme: undefined, + options: {}, + components: { + prefix: '', + name: undefined, + include: undefined, + exclude: undefined + }, + directives: { + prefix: '', + name: undefined, + include: undefined, + exclude: undefined + }, + composables: { + //prefix: '', + name: undefined, + include: undefined, + exclude: undefined + } + }, + hooks: {}, + setup(moduleOptions, nuxt) { + moduleOptions.components.exclude = moduleOptions.components.exclude || ['Editor', 'Chart']; + + const resolver = createResolver(import.meta.url); + const registered = register(moduleOptions); + const { importPT, importTheme, options } = moduleOptions; + const hasTheme = importTheme && !options?.unstyled; + + nuxt.options.runtimeConfig.public.primevue = { + ...moduleOptions, + ...registered + }; + + //nuxt.options.build.transpile.push('nuxt'); + nuxt.options.build.transpile.push('primevue'); + /*nuxt.options.build.transpile.push('@primevue/core'); + nuxt.options.build.transpile.push('@primevue/icons'); + nuxt.options.build.transpile.push('@primevue/themes');*/ + + const styleContent = () => ` +${registered.styles.map((style: any) => `import ${style.as} from '${style.from}';`).join('\n')} +${ + hasTheme + ? `import { Theme } from '@primevue/themes'; +import ${importTheme.as} from '${normalize(importTheme.from)}';\n` + : '' +} + +const stylesToTop = [${registered.injectStylesAsStringToTop.join('')}].join(''); +const styleProps = { + ${options?.csp?.nonce ? `nonce: ${options?.csp?.nonce}` : ''} +} +const styles = [ + ${registered.injectStylesAsString.join('')}, + ${registered.styles.map((item) => `${item.as} && ${item.as}.getStyleSheet ? ${item.as}.getStyleSheet(undefined, styleProps) : ''`).join(',')} +].join(''); + +${hasTheme ? `Theme.setTheme(${importTheme.as})` : ''} + +const themes = [ + ${hasTheme ? `${registered.styles[0].as} && ${registered.styles[0].as}.getCommonThemeStyleSheet ? ${registered.styles[0].as}.getCommonThemeStyleSheet(undefined, styleProps) : ''` : ''}, + ${hasTheme ? registered.styles.map((item) => `${item.as} && ${item.as}.getThemeStyleSheet ? ${item.as}.getThemeStyleSheet(undefined, styleProps) : ''`).join(',') : ''} +].join(''); + +export { styles, stylesToTop, themes }; +`; + + nuxt.options.alias['#primevue-style'] = addTemplate({ + filename: 'primevue-style.mjs', + getContents: styleContent + }).dst; + + addPlugin(resolver.resolve('./runtime/plugin.client')); + + addPluginTemplate({ + filename: 'primevue-plugin.mjs', + getContents() { + return ` +import { defineNuxtPlugin, useRuntimeConfig } from '#imports'; +${registered.config.map((config: any) => `import ${config.as} from '${config.from}';`).join('\n')} +${registered.services.map((service: any) => `import ${service.as} from '${service.from}';`).join('\n')} +${registered.directives.map((directive: any) => `import ${directive.as} from '${directive.from}';`).join('\n')} +${importPT ? `import ${importPT.as} from '${normalize(importPT.from)}';\n` : ''} +${hasTheme ? `import ${importTheme.as} from '${normalize(importTheme.from)}';\n` : ''} + +export default defineNuxtPlugin(({ vueApp }) => { + const runtimeConfig = useRuntimeConfig(); + const config = runtimeConfig?.public?.primevue ?? {}; + const { usePrimeVue = true, options = {} } = config; + const pt = ${importPT ? `{ pt: ${importPT.as} }` : `{}`}; + const theme = ${hasTheme ? `{ theme: ${importTheme.as} }` : `{}`}; + + usePrimeVue && vueApp.use(PrimeVue, { ...options, ...pt, ...theme }); + ${registered.services.map((service: any) => `vueApp.use(${service.as});`).join('\n')} + ${registered.directives.map((directive: any) => `vueApp.directive('${directive.name}', ${directive.as});`).join('\n')} +}); + `; + } + }); + + nuxt.hook('nitro:config', async (config) => { + config.externals = config.externals || {}; + config.externals.inline = config.externals.inline || []; + config.externals.inline.push(resolver.resolve('./runtime/plugin.server')); + config.virtual = config.virtual || {}; + config.virtual['#primevue-style'] = styleContent; + config.plugins = config.plugins || []; + config.plugins.push(resolver.resolve('./runtime/plugin.server')); + }); + } +}); diff --git a/packages/nuxt-module/src/register.ts b/packages/nuxt-module/src/register.ts new file mode 100644 index 0000000000..265037b07c --- /dev/null +++ b/packages/nuxt-module/src/register.ts @@ -0,0 +1,164 @@ +import { addComponent, addImports } from '@nuxt/kit'; +import type { MetaType } from '@primevue/metadata'; +import { components, composables, directives } from '@primevue/metadata'; +import type { ConstructsType, ModuleOptions, ResolvePathOptions } from './types'; +import { Utils } from './utils'; + +function registerItems(items: any[] = [], options: ConstructsType = {}, params: any) { + const included = Utils.object.getValue(options.include, params); + const excluded = Utils.object.getValue(options.exclude, params); + const isMatched = (name: string, tName: any) => name?.toLowerCase() === (Utils.object.isString(tName) ? tName?.toLowerCase() : tName?.name?.toLowerCase()); + + return items.filter((item) => { + const name = item?.name; + const matchedIn = included === '*' || included === undefined ? true : Utils.object.isNotEmpty(included) ? included.some((inc: any) => isMatched(name, inc)) : false; + const matchedEx = included === '*' && excluded === '*' ? false : excluded === '*' ? true : Utils.object.isNotEmpty(excluded) ? excluded.some((exc: any) => isMatched(name, exc)) : false; + + return matchedIn && !matchedEx; + }); +} + +function registerConfig(resolvePath: any) { + return [ + { + name: 'PrimeVue', + as: 'PrimeVue', + from: resolvePath({ name: 'PrimeVue', as: 'PrimeVue', from: `primevue/config`, type: 'config' }) + } + ]; +} + +function registerComponents(resolvePath: any, options: ConstructsType = {}) { + const items: MetaType[] = registerItems(components, options, { components }); + + return items.map((item: MetaType) => { + const _item = { ...item, name: item.name, as: item.name, from: item.from }; + const name = Utils.object.getName(_item, options); + const from = resolvePath({ name, as: _item.as, from: _item.from, type: 'component' }); + const opt = { + export: 'default', + name, + filePath: from, + global: true + }; + + addComponent(opt); + + return { + ..._item, + ...opt + }; + }); +} + +function registerDirectives(resolvePath: any, options: ConstructsType = {}) { + const items: MetaType[] = registerItems(directives, options, { directives }); + + return items.map((item: MetaType) => { + const name = Utils.object.getName(item, options); + const opt = { + ...item, + name, + from: resolvePath({ name, as: item.as, from: item.from, type: 'directive' }) + }; + + return opt; + }); +} + +function registerComposables(resolvePath: any, options: ConstructsType = {}) { + const items: MetaType[] = registerItems(composables, options, { composables }); + + return items.map((item: MetaType) => { + const name = item.name; //Utils.object.getName(item, options); + const opt = { + ...item, + name, + from: resolvePath({ name, as: item.as, from: item.from, type: 'composable' }) + }; + + addImports(opt); + + return opt; + }); +} + +function registerServices(resolvePath: any, registered: any) { + const services: any = new Set(); + + registered?.components?.forEach((component: MetaType) => component?.use && services.add(component.use.as)); + + return [...services].map((service) => ({ + name: service, + as: service, + from: resolvePath({ name: service, as: service, from: `primevue/${service.toLowerCase()}`, type: 'service' }) + })); +} + +function registerStyles(resolvePath: any, registered: any, options: any) { + const styles: MetaType[] = [ + { + name: 'BaseStyle', + as: 'BaseStyle', + from: resolvePath({ name: 'BaseStyle', as: 'BaseStyle', from: '@primevue/core/base/style', type: 'style' }) + } + ]; + + if (!options?.unstyled) { + if (Utils.object.isNotEmpty(registered?.components)) { + styles.push({ + name: 'BaseComponentStyle', + as: 'BaseComponentStyle', + from: resolvePath({ name: 'BaseComponentStyle', as: 'BaseComponentStyle', from: '@primevue/core/basecomponent/style', type: 'style' }) + }); + } + + [registered.components, registered.directives] + .flat() + .reduce((acc: any[], citem: any) => (acc.some((item) => item.as.toLowerCase() === citem.as.toLowerCase()) ? acc : [...acc, citem]), []) + .forEach((item: any) => + styles.push({ + name: `${item.as}Style`, + as: `${item.as}Style`, + from: resolvePath({ name: `${item.as}Style`, as: `${item.as}Style`, from: `primevue/${item.as.toLowerCase()}/style`, type: 'style' }) + }) + ); + } + + return styles; +} + +function registerInjectStylesAsString(options: any) { + return []; +} + +function registerInjectStylesAsStringToTop(options: any) { + return [Utils.object.createStyleAsString(options.cssLayerOrder ? `@layer ${options.cssLayerOrder}` : undefined, { name: 'layer-order' })]; +} + +export function register(moduleOptions: ModuleOptions) { + const resolvePath = (resolveOptions: ResolvePathOptions) => Utils.object.getPath(moduleOptions.resolvePath, resolveOptions); + + const config = registerConfig(resolvePath); + const components = registerComponents(resolvePath, moduleOptions.components); + const directives = registerDirectives(resolvePath, moduleOptions.directives); + const composables = registerComposables(resolvePath, moduleOptions.composables); + const registered = { + components, + directives, + composables + }; + const services = registerServices(resolvePath, registered); + const styles = registerStyles(resolvePath, registered, moduleOptions.options); + const injectStylesAsString = registerInjectStylesAsString(moduleOptions); + const injectStylesAsStringToTop = registerInjectStylesAsStringToTop(moduleOptions); + + return { + config, + ...registered, + services, + styles, + injectStylesAsString, + injectStylesAsStringToTop + }; +} diff --git a/modules/nuxt-primevue/runtime/plugin.client.js b/packages/nuxt-module/src/runtime/plugin.client.ts similarity index 100% rename from modules/nuxt-primevue/runtime/plugin.client.js rename to packages/nuxt-module/src/runtime/plugin.client.ts diff --git a/packages/nuxt-module/src/runtime/plugin.server.ts b/packages/nuxt-module/src/runtime/plugin.server.ts new file mode 100644 index 0000000000..99ce77a234 --- /dev/null +++ b/packages/nuxt-module/src/runtime/plugin.server.ts @@ -0,0 +1,17 @@ +import type { NitroApp } from 'nitropack'; +// @ts-expect-error +import { styles, stylesToTop, themes } from '#primevue-style'; +//import { useRuntimeConfig } from '#imports'; + +type NitroAppPlugin = (nitro: NitroApp) => void; + +const defineNitroPlugin = (def: NitroAppPlugin): NitroAppPlugin => def; + +export default defineNitroPlugin(async (nitroApp) => { + nitroApp.hooks.hook('render:html' as any, (html: any) => { + html.head.unshift(stylesToTop); + html.head.push(styles); + html.head.push(themes); + //html.htmlAttrs.push('class="p-dark"'); // @todo + }); +}); diff --git a/packages/nuxt-module/src/types.d.ts b/packages/nuxt-module/src/types.d.ts new file mode 100644 index 0000000000..b5e117ffb0 --- /dev/null +++ b/packages/nuxt-module/src/types.d.ts @@ -0,0 +1,43 @@ +import type { PrimeVueConfiguration } from 'primevue/config'; + +export interface ConstructsType { + prefix?: string | undefined; + name?: (item: any) => string | undefined; + include?: '*' | Array | ((list: any) => string[] | undefined) | undefined; + exclude?: '*' | Array | ((list: any) => string[] | undefined) | undefined; +} + +export interface ModuleOptions { + usePrimeVue?: boolean; + resolvePath?: any; + cssLayerOrder?: string; + importPT?: ImportOptions; + importTheme?: ImportOptions; + options?: PrimeVueOptions; + components?: ConstructsType; + directives?: ConstructsType; + composables?: Omit; +} + +export interface PrimeVueOptions extends PrimeVueConfiguration {} + +export interface ImportOptions { + as?: string; + from: string; +} + +export interface ResolvePathOptions { + name?: string; + as?: string; + from: string; + type?: 'config' | 'component' | 'directive' | 'composable' | 'service' | 'style' | undefined; +} + +declare module '@nuxt/schema' { + interface NuxtConfig { + primevue?: ModuleOptions; + } + interface NuxtOptions { + primevue?: ModuleOptions; + } +} diff --git a/packages/nuxt-module/src/utils.ts b/packages/nuxt-module/src/utils.ts new file mode 100644 index 0000000000..5f79db6887 --- /dev/null +++ b/packages/nuxt-module/src/utils.ts @@ -0,0 +1,37 @@ +import type { MetaType } from '@primevue/metadata'; +import type { ConstructsType, ResolvePathOptions } from './types'; + +export const Utils = { + object: { + isEmpty(value: any) { + return value === null || value === undefined || value === '' || (Array.isArray(value) && value.length === 0) || (!(value instanceof Date) && typeof value === 'object' && Object.keys(value).length === 0); + }, + isNotEmpty(value: any) { + return !this.isEmpty(value); + }, + isFunction(value: any) { + return !!(value && value.constructor && value.call && value.apply); + }, + isString(value: any, empty: boolean = true) { + return typeof value === 'string' && (empty || value !== ''); + }, + getValue(obj: any, ...params: any) { + return this.isFunction(obj) ? obj(...params) : obj; + }, + getName(item: MetaType, options: ConstructsType) { + return this.isFunction(options?.name) ? options.name(item) : `${options.prefix}${item.name}`; + }, + getPath(fn: any, options: ResolvePathOptions) { + return this.isFunction(fn) ? fn(options) : options.from; + }, + createStyleAsString(css: string, options = { name: '' }) { + if (css) { + const { name, ...rest } = options; + + return `''`; + } + + return ''; + } + } +}; diff --git a/packages/nuxt-module/test/basic.test.ts b/packages/nuxt-module/test/basic.test.ts new file mode 100644 index 0000000000..cd76056944 --- /dev/null +++ b/packages/nuxt-module/test/basic.test.ts @@ -0,0 +1,16 @@ +import { $fetch, setup } from '@nuxt/test-utils'; +import { fileURLToPath } from 'node:url'; +import { describe, expect, it } from 'vitest'; + +describe('ssr', async () => { + await setup({ + rootDir: fileURLToPath(new URL('./fixtures/basic', import.meta.url)) + }); + + it('renders the index page', async () => { + // Get response to a server-rendered page with `$fetch`. + const html = await $fetch('/'); + + expect(html).toContain('

basic
'); + }); +}); diff --git a/packages/nuxt-module/test/fixtures/basic/app.vue b/packages/nuxt-module/test/fixtures/basic/app.vue new file mode 100644 index 0000000000..9e8b97ed7e --- /dev/null +++ b/packages/nuxt-module/test/fixtures/basic/app.vue @@ -0,0 +1,5 @@ + + + diff --git a/packages/nuxt-module/test/fixtures/basic/nuxt.config.ts b/packages/nuxt-module/test/fixtures/basic/nuxt.config.ts new file mode 100644 index 0000000000..b35f4bbfec --- /dev/null +++ b/packages/nuxt-module/test/fixtures/basic/nuxt.config.ts @@ -0,0 +1,5 @@ +import MyModule from '../../../src/module'; + +export default defineNuxtConfig({ + modules: [MyModule] +}); diff --git a/packages/nuxt-module/test/fixtures/basic/package.json b/packages/nuxt-module/test/fixtures/basic/package.json new file mode 100644 index 0000000000..4a63509f52 --- /dev/null +++ b/packages/nuxt-module/test/fixtures/basic/package.json @@ -0,0 +1,5 @@ +{ + "private": true, + "name": "basic", + "type": "module" +} diff --git a/packages/nuxt-module/tsconfig.json b/packages/nuxt-module/tsconfig.json new file mode 100644 index 0000000000..881f17ba32 --- /dev/null +++ b/packages/nuxt-module/tsconfig.json @@ -0,0 +1,11 @@ +{ + "compilerOptions": { + "module": "es2022", + "moduleResolution": "Node", + "baseUrl": ".", + "paths": { + "primevue/*": ["../../packages/primevue/src/*"] + } + }, + "exclude": ["node_modules"] +} diff --git a/packages/primevue/CHANGELOG.md b/packages/primevue/CHANGELOG.md new file mode 100644 index 0000000000..1cfa89c1fb --- /dev/null +++ b/packages/primevue/CHANGELOG.md @@ -0,0 +1,3955 @@ +# Changelog + +## [4.0.0-beta.4](https://github.com/primefaces/primevue/tree/4.0.0-beta.4) (2024-05-30) + +[Full Changelog](https://github.com/primefaces/primevue/compare/4.0.0-beta.3...4.0.0-beta.4) + +**Deprecated:** + +- Deprecate inputStyle and add inputVariant [\#5786](https://github.com/primefaces/primevue/issues/5786) + +**Breaking Changes:** + +- Deprecated slots [\#5785](https://github.com/primefaces/primevue/issues/5785) +- Renamed properties [\#5784](https://github.com/primefaces/primevue/issues/5784) +- Add OverlayBadge component, deprecate Badge directive [\#5769](https://github.com/primefaces/primevue/issues/5769) +- Dialog: rtl removed [\#5763](https://github.com/primefaces/primevue/issues/5763) + +**Fixed bugs:** + +- Popover: Arrow offset uses wrong design token [\#5755](https://github.com/primefaces/primevue/issues/5755) +- InputNumber: Missing type declaration for buttons leads to form submit on button click [\#5700](https://github.com/primefaces/primevue/issues/5700) +- DatePicker: Focus blink on select [\#5676](https://github.com/primefaces/primevue/issues/5676) + +**Implemented New Features and Enhancements:** + +- Load primitive, semantic and global styles in styled mode [\#5789](https://github.com/primefaces/primevue/issues/5789) +- [All components]: TypeScript emits are in an incompatible format with defineEmits [\#5405](https://github.com/primefaces/primevue/issues/5405) + +## [4.0.0-beta.3](https://github.com/primefaces/primevue/tree/4.0.0-beta.3) (2024-05-15) + +[Full Changelog](https://github.com/primefaces/primevue/compare/4.0.0-beta.2...4.0.0-beta.3) + +**Deprecated:** + +- Deprecated: InputChips [\#5744](https://github.com/primefaces/primevue/issues/5744) + +**Breaking Changes:** + +- Removed Utility Classes [\#5727](https://github.com/primefaces/primevue/issues/5727) +- Fieldset: #legend updates [\#5719](https://github.com/primefaces/primevue/issues/5719) +- Table: remove responsiveLayout [\#5717](https://github.com/primefaces/primevue/issues/5717) +- FileUpload: basic mode button label & file label changes [\#5715](https://github.com/primefaces/primevue/issues/5715) +- Remove Drawer size [\#5714](https://github.com/primefaces/primevue/issues/5714) +- Deprecated emits [\#5721](https://github.com/primefaces/primevue/issues/5721) +- Deprecated properties [\#5683](https://github.com/primefaces/primevue/issues/5683) +- Deprecated slots [\#5682](https://github.com/primefaces/primevue/issues/5682) +- Key name changes for pt property [\#5681](https://github.com/primefaces/primevue/issues/5681) + +**Fixed bugs:** + +- Tabs: Ripple Position [\#5690](https://github.com/primefaces/primevue/issues/5690) +- [v4 beta1: InputMask] Placeholder attribute does not work [\#5664](https://github.com/primefaces/primevue/issues/5664) +- Accordion: "Invalid watch source: undefined" and "Failed to resolve directive: ripple" [\#5733](https://github.com/primefaces/primevue/issues/5733) +- v4: TypeError: Theme\_\_default.default.setPreset is not a function when configuring theme configuration using definePreset in vitest tests [\#5689](https://github.com/primefaces/primevue/issues/5689) + +**Implemented New Features and Enhancements:** + +- Remove PrimeVueStyled and PrimeVueUnstyled plugins [\#5728](https://github.com/primefaces/primevue/issues/5728) +- Small sized Badge [\#5729](https://github.com/primefaces/primevue/issues/5729) + +## [4.0.0-beta.2](https://github.com/primefaces/primevue/tree/4.0.0-beta.2) (2024-05-03) + +[Full Changelog](https://github.com/primefaces/primevue/compare/4.0.0-beta.1...4.0.0-beta.2) + +**Deprecated:** + +- Deprecated: TabView [\#5622](https://github.com/primefaces/primevue/issues/5622) + +**Breaking Changes:** + +- TreeTable CSS and responsive structure improvements [\#5678](https://github.com/primefaces/primevue/issues/5678) +- Deprecated properties [\#5662](https://github.com/primefaces/primevue/issues/5662) +- Deprecated slots [\#5661](https://github.com/primefaces/primevue/issues/5618) +- Legacy & New alternative components [\#5612](https://github.com/primefaces/primevue/issues/5612) +- Key name changes for pt property [\#5592](https://github.com/primefaces/primevue/issues/5592) +- Remove legacy CSS rules [\#5493](https://github.com/primefaces/primevue/issues/5493) +- warning property name changed as warn [\#5591](https://github.com/primefaces/primevue/issues/5591) +- Removed properties [\#5553](https://github.com/primefaces/primevue/issues/5553) +- Component Replacements [\#5548](https://github.com/primefaces/primevue/issues/5548) +- Remove iconPosition from IconField [\#5547](https://github.com/primefaces/primevue/issues/5547) + +**Fixed bugs:** + +- FileUpload v4: disabled property does not disable choose button (it only disables the choose functionality) [\#5529](https://github.com/primefaces/primevue/issues/5529) + +**Implemented New Features and Enhancements:** + +- Add sideEffects: false to nested package.json files on components [\#5668](https://github.com/primefaces/primevue/issues/5668) +- Remove base option from theme config [\#5667](https://github.com/primefaces/primevue/issues/5667) +- Reimplement: Accordion [\#5643](https://github.com/primefaces/primevue/issues/5643) +- New Component: Tabs [\#5621](https://github.com/primefaces/primevue/issues/5621) + +## [4.0.0-beta.1](https://github.com/primefaces/primevue/tree/4.0.0-beta.1) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.51.0...4.0.0-beta.1) + +**Breaking Changes:** + +- New Styled Mode Implementation [\#5501](https://github.com/primefaces/primevue/issues/5662) +- Remove changeTheme method from $primevue [\#5000](https://github.com/primefaces/primevue/issues/5000) +- Remove deprecated Tailwind Pass Through Object [\#5478](https://github.com/primefaces/primevue/issues/5478) +- Removed components [\#5476](https://github.com/primefaces/primevue/issues/5662) +- Remove primevue[.min].css from build [\#5481](https://github.com/primefaces/primevue/issues/5481) +- Remove themes folder from resources [\#5477](https://github.com/primefaces/primevue/issues/5477) +- Core behavior changes [\#5437](https://github.com/primefaces/primevue/issues/5437) +- Component Replacements [\#5426](https://github.com/primefaces/primevue/issues/5426) + +**Implemented New Features and Enhancements:** + +- Add dt props to all components and directives [\#5506](https://github.com/primefaces/primevue/issues/5506) +- Add PrimeVueStyled and PrimeVueUnstyled plugins [\#5502](https://github.com/primefaces/primevue/issues/5502) +- Checkbox: new indeterminate state [\#5479](https://github.com/primefaces/primevue/issues/5479) + +## [3.52.0](https://github.com/primefaces/primevue/tree/3.52.0) (2024-04-26) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.51.0...3.52.0) + +**Fixed bugs:** + +- InputOp: Digits only doesn't work on mobile [\#5635](https://github.com/primefaces/primevue/issues/5635) +- Calendar: Hours are set to 00 when clicking the "Today" button [\#5620](https://github.com/primefaces/primevue/issues/5620) +- Paginator: Responsive Templating showing multiple layouts on break points [\#5604](https://github.com/primefaces/primevue/issues/5604) +- InputNumber: The InputNumber is not working properly in the new version [\#5602](https://github.com/primefaces/primevue/issues/5602) +- Menu / Stepper: Pass Through Unstyled Mode [\#5599](https://github.com/primefaces/primevue/issues/5599) +- Hydration defects [\#5593](https://github.com/primefaces/primevue/issues/5593) +- InputNumber: Cannot input number 0 in Hungarian(QWERTZ) layout [\#5577](https://github.com/primefaces/primevue/issues/5577) +- Menu: support style property for submenuHeader item [\#5562](https://github.com/primefaces/primevue/issues/5562) +- InputNumber Not Working android [\#5545](https://github.com/primefaces/primevue/issues/5545) +- InputNumber: Cannot input numbers in AZERTY layout [\#5508](https://github.com/primefaces/primevue/issues/5508) +- DataTable: rowClass, rowStyle typing defects [\#5498](https://github.com/primefaces/primevue/issues/5498) +- DataTable: Modifying value of expendedRow is not reflected [\#5372](https://github.com/primefaces/primevue/issues/5372) +- InputNumber can't enter 0.0x using minFractionDigits/mode="currency" [\#5170](https://github.com/primefaces/primevue/issues/5170) +- Calendar: Input value is not updated when model is changed externally [\#4938](https://github.com/primefaces/primevue/issues/4938) + +**Implemented New Features and Enhancements:** + +- AutoComplete: Enter does not submit form [\#5618](https://github.com/primefaces/primevue/issues/5618) +- Knob: Added valueTemplate function support [\#5616](https://github.com/primefaces/primevue/issues/5616) +- Tree: Missing Passthrough Options [\#5574](https://github.com/primefaces/primevue/issues/5574) +- Sidebar: dismissable prop can't be changed dynamically [\#5563](https://github.com/primefaces/primevue/issues/5563) +- TreeTable: filterField ignored [\#5525](https://github.com/primefaces/primevue/issues/5525) +- ScrollPanel: Errors in moveBar() when xBar and yBar attributes don't exist [\#5518](https://github.com/primefaces/primevue/issues/5518) +- Toast: Race condition on remove [\#5225](https://github.com/primefaces/primevue/issues/5225) +- Dropdown: aria-label missing from inner ul element [\#5277](https://github.com/primefaces/primevue/issues/5277) + +## [3.51.0](https://github.com/primefaces/primevue/tree/3.51.0) (2024-04-04) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.50.0...3.51.0) + +**Fixed bugs:** + +- tree: loadingMode [\#5509](https://github.com/primefaces/primevue/issues/5509) +- Upload File doen'st show invalidFileSizeMessage [\#5497](https://github.com/primefaces/primevue/issues/5497) +- Stepper: changing step is making the StepperPanel a render [\#5495](https://github.com/primefaces/primevue/issues/5495) +- Multiselect - Filter - Duplicate keys on search. [\#5455](https://github.com/primefaces/primevue/issues/5455) +- Slider: Focus on slider on mouse click not working [\#5446](https://github.com/primefaces/primevue/issues/4833) +- Dropdown: throws error when grouped item is selected [\#5445](https://github.com/primefaces/primevue/issues/5445) +- Stepper: number element box-shadow defect [\#5442](https://github.com/primefaces/primevue/issues/5442) +- Autocomplete: isSelected(option) doesn't work correctly when 'multiple' is true [\#5435](https://github.com/primefaces/primevue/issues/5435) +- Carousel: Unable to scroll vertically on mobile [\#5320](https://github.com/primefaces/primevue/issues/5320) +- InputOtp: Unable to input integers in integerOnly [\#5422](https://github.com/primefaces/primevue/issues/5422) +- Menu components: Hidden Menu-Item can still be activated (focused) on Keyboard-Navigation [\#5318](https://github.com/primefaces/primevue/issues/5318) +- Slider: [Violation] Non-passive event [\#5213](https://github.com/primefaces/primevue/issues/5213) +- DataTable: improve globalFilterFields type [\#5212](https://github.com/primefaces/primevue/issues/5212) +- DataTable: resizableColumns and paginator bug [\#5210](https://github.com/primefaces/primevue/issues/5210) +- Calendar: no enter transition when used in inline mode inside HeadlessUI dialog [\#5294](https://github.com/primefaces/primevue/issues/5294) +- InputNumber: Cut or Paste via keyboard shortcuts in Safari doesn't work [\#3928](https://github.com/primefaces/primevue/issues/3928) +- Calendar: Invalid typings for modelValue. [\#3609](https://github.com/primefaces/primevue/issues/3609) + +**Implemented New Features and Enhancements:** + +- PrimeIcons: version 7 [\#5524](https://github.com/primefaces/primevue/issues/5524) +- Carousel Enhancement - Empty Slot [\#5474](https://github.com/primefaces/primevue/issues/5474) +- Dropdown Pass Through: item [\#5470](https://github.com/primefaces/primevue/issues/5470) +- Tree: Style Classes not passed to nodeicon slot [\#5452](https://github.com/primefaces/primevue/issues/5452) +- fix(types): augment GlobalComponent interface in vue module [\#5419](https://github.com/primefaces/primevue/pull/5419) +- Twice render if $attrs.id not defined [\#5412](https://github.com/primefaces/primevue/issues/5412) +- TieredMenu: Pressing Escape-Key in submenu moves focus to first menuitem [\#5327](https://github.com/primefaces/primevue/issues/5327) + +## [3.50.0](https://github.com/primefaces/primevue/tree/3.50.0) (2024-03-15) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.49.1...3.50.0) + +**Fixed bugs:** + +- InputOtp: typing defects [\#5421](https://github.com/primefaces/primevue/issues/5421) +- Multiselect: Wrong position of the panel with appendTo="self" [\#5411](https://github.com/primefaces/primevue/issues/5411) +- DataTable: tableStyle typing defect [\#5410](https://github.com/primefaces/primevue/issues/5410) +- Image: indicator slot is without function [\#5389](https://github.com/primefaces/primevue/issues/5389) +- InputOtp: wrong usage of inputmode[\#5382](https://github.com/primefaces/primevue/issues/5382) +- IconField: Wrong casing in Typescript module declaration file (.d.ts) [\#5376](https://github.com/primefaces/primevue/issues/5376) +- Terimnal: Doesn't work on mobile [\#5364](https://github.com/primefaces/primevue/issues/5364) +- Property 'disabled' does not exist on type 'SelectButtonContext'. [\#5354](https://github.com/primefaces/primevue/issues/5354) +- DataTable: rowStyle invalid Type: Got function expected object [\#5349](https://github.com/primefaces/primevue/issues/5349) +- DataTable: [Vue warn]: Invalid prop: type check failed for prop "rowClass". Expected String | Object, got Function [\#5341](https://github.com/primefaces/primevue/issues/5341) +- InputOtp: Length not working [\#5336](https://github.com/primefaces/primevue/issues/5336) +- inputOTP - integerOnly doesn't work with number pad [\#5329](https://github.com/primefaces/primevue/issues/5329) +- Table: Computed property "bodyStyle" is already defined in Props. [\#5243](https://github.com/primefaces/primevue/issues/5243) +- InputNumber: Bug deprecated KeyCode Usage [\#5008](https://github.com/primefaces/primevue/issues/5008) + +**Implemented New Features and Enhancements:** + +- Tree: Slot for icon property of value [\#4833](https://github.com/primefaces/primevue/issues/4833) + +## [3.49.1](https://github.com/primefaces/primevue/tree/3.49.1) (2024-02-26) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.49.0...3.49.1) + +**Fixed bugs:** + +- Stepper component style build is broken [\#5332](https://github.com/primefaces/primevue/issues/5332) + +## [3.49.0](https://github.com/primefaces/primevue/tree/3.49.0) (2024-02-23) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.48.1...3.49.0) + +**Fixed bugs:** + +- SplitterPanel: nested context hydration fixed [\#5322](https://github.com/primefaces/primevue/issues/5322) +- Password: after reset password meter not reset [\#5304](https://github.com/primefaces/primevue/issues/5304) +- DataTable: tableClass prop specifies String type, though Array also works [\#5297](https://github.com/primefaces/primevue/issues/5297) +- document.body.setAttribute('data-p-unselectable-text') missing second arguments. [\#5280](https://github.com/primefaces/primevue/issues/5280) +- Galleria animation defect [\#5279](https://github.com/primefaces/primevue/issues/5279) +- Menu components itemicon slot does not work expected [\#5276](https://github.com/primefaces/primevue/issues/5276) +- SelectButton: (accessibility) disabled mode focus defects [\#5274](https://github.com/primefaces/primevue/issues/5274) +- DataTable: "Ctrl + A" selects all rows even in selectionMode "single" [\#5271](https://github.com/primefaces/primevue/issues/5271) +- Galleria: fullscreen mode bug with thumbnails [\#5267](https://github.com/primefaces/primevue/issues/5267) +- TabView: previousicon slot doesn't work [\#5264](https://github.com/primefaces/primevue/issues/5264) +- Calendar: When entering the time by hand into timeOnly calendar, values switch to NaN:NaN [\#5254](https://github.com/primefaces/primevue/issues/5254) +- MeterGroup: Cutoff at the beginning when the first element is 0 [\#5252](https://github.com/primefaces/primevue/issues/5252) +- TabView: selectOnFocus mode defect [\#5245](https://github.com/primefaces/primevue/issues/5245) +- ConfirmDialog: Dragging dialog fires an error [\#5244](https://github.com/primefaces/primevue/issues/5244) +- Dialog: Error when clicking on header to drag [\#5240](https://github.com/primefaces/primevue/issues/5240) +- SelectButton: aria-disabled contains code instead of a boolean value [\#5235](https://github.com/primefaces/primevue/issues/5235) +- Tooltip: OutOfBounds alignment does not affect tooltip arrow position [\#5153](https://github.com/primefaces/primevue/issues/5153) +- Dropdown: esc keypress propagates and triggers close in dialogs [\#5138](https://github.com/primefaces/primevue/issues/5138) +- The arrow position is wrong after overlayPanel/confirmPopup is flipped[\#5091](https://github.com/primefaces/primevue/issues/5091) +- Listbox: issue with navigating through list items using tab and enter buttons [\#4906](https://github.com/primefaces/primevue/issues/4906) + +**Implemented New Features and Enhancements:** + +- New InputOtp component [\#5321](https://github.com/primefaces/primevue/issues/5321) +- MenuBar: Pressing Escape-Key in submenu moves focus to first menuitem [\#5316](https://github.com/primefaces/primevue/issues/5316) +- Calendar: pt.day missing disabled and selected attrs in options.context [\#5312](https://github.com/primefaces/primevue/issues/5312) +- InputSwitch: Aura invalid state updates [\#5311](https://github.com/primefaces/primevue/issues/5311) +- aria-invalid state added to Input components [\#5293](https://github.com/primefaces/primevue/issues/5293) +- New ButtonGroup component [\#5292](https://github.com/primefaces/primevue/issues/5292) +- CascadeSelect: second click should close the submenu [\#5289](https://github.com/primefaces/primevue/issues/5289) +- Menu components: track focus with also mousemove [\#5288](https://github.com/primefaces/primevue/issues/5288) +- InputIcon class support & InputField style updates [\#5273](https://github.com/primefaces/primevue/issues/5273) +- New Stepper component [\#5266](https://github.com/primefaces/primevue/issues/5266) +- Upload: Error showing when all the files are removed. [\#5260](https://github.com/primefaces/primevue/issues/5260) + +## [3.48.1](https://github.com/primefaces/primevue/tree/3.48.1) (2024-02-07) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.48.0...3.48.1) + +**Fixed bugs:** + +- Fix PrimeVuePTOptions.global.css (missing parenthesis) [\#5232](https://github.com/primefaces/primevue/issues/5232) +- Overwritten styles defect [\#5231](https://github.com/primefaces/primevue/issues/5231) +- Steps: Aura extension defect [\#5230](https://github.com/primefaces/primevue/issues/5230) +- Remove missed inputProps from InputSwitch [\#5227](https://github.com/primefaces/primevue/issues/5227) +- The scrollToIndex method on VirtualScroller does not scroll to the correct index when triggered twice. [\#5223](https://github.com/primefaces/primevue/issues/5223) +- Splitter: Fix keyboard repeat behavior [\#5219](https://github.com/primefaces/primevue/issues/5219) +- Dropdown / MultiSelect : Incorrect alignment on filtering [\#5215](https://github.com/primefaces/primevue/issues/5215) + +## [3.48.0](https://github.com/primefaces/primevue/tree/3.48.0) (2024-02-05) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.47.2...3.48.0) + +**Deprecated:** + +- Deprecate Legacy Themes [\#5201](https://github.com/primefaces/primevue/issues/5201) + +**Fixed bugs:** + +- SplitButton templating is broken [\#5199](https://github.com/primefaces/primevue/issues/5199) +- DataTable: Row selection styling defect [\#5196](https://github.com/primefaces/primevue/issues/5196) +- ColorPicker: parameter field in emit change event is incorrect [\#5188](https://github.com/primefaces/primevue/issues/5188) +- Hydration attribute mismatch on Icons [\#5187](https://github.com/primefaces/primevue/issues/5187) +- Calendar: 'view' property has no effect when changed after component initialization [\#5132](https://github.com/primefaces/primevue/issues/5132) +- TabView + Splitter: Navigation Buttons not showing [\#5111](https://github.com/primefaces/primevue/issues/5111) +- Knob: Problem with the step property when using the keyboard arrows [\#5097](https://github.com/primefaces/primevue/issues/5097) +- DataTable: VirtualScroller Resets Scroll Position to top on lazy load more data [\#5078](https://github.com/primefaces/primevue/issues/5078) +- Dropdown: autoSize works incorrectly with filter and not only [\#5073](https://github.com/primefaces/primevue/issues/5073) +- Calendar: 12h time picker changes from 12 am to 12 pm automatically [\#5108](https://github.com/primefaces/primevue/issues/5108) +- colorPicker: change event only shows old color value [\#5004](https://github.com/primefaces/primevue/issues/5004) +- Divider: Divider line doesn't show (Using the nuxt-primevue module) [\#5000](https://github.com/primefaces/primevue/issues/5000) +- Menubar, Megamenu, Contextmenu and etc.: Twice render if $attrs.id not defined [\#4953](https://github.com/primefaces/primevue/issues/4953) + +**Implemented New Features and Enhancements:** + +- Move core alignment styles to theme files [\#5214](https://github.com/primefaces/primevue/issues/5214) +- Update default dropdown filter icon [\#5208](https://github.com/primefaces/primevue/issues/5208) +- Refactor MeterGroup Component and Demos [\#5203](https://github.com/primefaces/primevue/issues/5203) +- Contrast and Secondary Variants for Badge/Tag/Message/Toast [\#5200](https://github.com/primefaces/primevue/issues/5200) +- Contrast variant for SplitButton [\#5198](https://github.com/primefaces/primevue/issues/5198) +- Add data-p-unselectable-text attribute on resizing and dragging phases [\#5194](https://github.com/primefaces/primevue/issues/5194) +- Improve data-pc- structure in components [\#5179](https://github.com/primefaces/primevue/issues/5179) +- New invalid and variant properties [\#5176](https://github.com/primefaces/primevue/issues/5176) +- New Components [\#5175](https://github.com/primefaces/primevue/issues/5175) +- Themes: end value has mixed support, consider using flex-end instead warning [\#5155](https://github.com/primefaces/primevue/issues/5155) +- Bug: Cannot override preset if using Tailwind important: true [\#5081](https://github.com/primefaces/primevue/issues/5081) +- TableBody: Render "BodyRow" binding dataKey of props to key attribute [\#5006](https://github.com/primefaces/primevue/issues/5006) +- PassThough new merging strategy with tailwind-merge to smartly merge classes [\#4707](https://github.com/primefaces/primevue/issues/4707) + +## [3.47.2](https://github.com/primefaces/primevue/tree/3.47.1) (2024-01-23) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.47.1...3.47.2) + +**Fixed bugs:** + +- OverlayPanel: RangeError: Maximum call stack size exceeded inside link [\#5146](https://github.com/primefaces/primevue/issues/5146) +- Align hover colors for MultipleSelect, AutoComplete and CascadeSelect [\#5150](https://github.com/primefaces/primevue/issues/5150) + +## [3.47.1](https://github.com/primefaces/primevue/tree/3.47.1) (2024-01-24) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.47.0...3.47.1) + +**Fixed bugs:** + +- Keyboard accessibility is not working on OrderList and PickList [\#5144](https://github.com/primefaces/primevue/issues/5144) + +## [3.47.0](https://github.com/primefaces/primevue/tree/3.47.0) (2024-01-24) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.46.0...3.47.0) + +**Breaking Changes:** + +- Change visual focus behavior for UI/UX enhancement on some components [\#5106](https://github.com/primefaces/primevue/issues/5106) +- Highlight state changes on Checkbox selection mode [\#5105](https://github.com/primefaces/primevue/issues/5105) +- autoOptionFocus property added to Input-like components [\#5099](https://github.com/primefaces/primevue/issues/5099) +- Improve the structure of some components to comply with standards [\#5071](https://github.com/primefaces/primevue/issues/5071) +- autoOptionFocus default type is changed as false [\#5096](https://github.com/primefaces/primevue/issues/5096) + +**Fixed bugs:** + +- Search with null/undefined values breaks rendering [\#5140](https://github.com/primefaces/primevue/issues/5140) +- The hideIcon property is not working on SpeedDial [\#5135](https://github.com/primefaces/primevue/issues/5135) +- Textarea: modelValue should accept Nullable as InputText does [\#5127](https://github.com/primefaces/primevue/issues/5127) +- Chips: Separator by new line doesn't work by pasting value [\#5103](https://github.com/primefaces/primevue/issues/5103) +- DataTable: Cannot read properties of null when editMode="cell" and selectionMode="single" [\#5100](https://github.com/primefaces/primevue/issues/5100) +- Unit tests in the master branch are failing [\#5095](https://github.com/primefaces/primevue/issues/5095) +- InputNumber: Home and End key defects [\#5094](https://github.com/primefaces/primevue/issues/5094) +- Float label demo is broken in mobile mode [\#5089](https://github.com/primefaces/primevue/issues/5089) +- [TabMenu] Router demo has the wrong code [\#5082](https://github.com/primefaces/primevue/issues/5082) +- Calendar: Incorrect interface "CalendarContext" for Calendar component [\#5077](https://github.com/primefaces/primevue/issues/5077) +- Tag: center icon when no label is present (icon-only mode) [\#5067](https://github.com/primefaces/primevue/issues/5067) +- DataTable: Uncaught TypeError: Cannot read properties of null (reading 'sortable') at Proxy.getColumnPT8 [\#5062](https://github.com/primefaces/primevue/issues/5062) +- Calendar: When use with Datatable filter, the calendar would show at the bottom of the page. [\#5055](https://github.com/primefaces/primevue/issues/5055) +- DataTable: persistent expandedRows with dataKey doesn't working properly [\#5057](https://github.com/primefaces/primevue/issues/5057) +- DataTable: Column with no props throws exception [\#5056](https://github.com/primefaces/primevue/issues/5056) +- DataTable: Empty column causes maximum recursive calls to be reached [\#5053](https://github.com/primefaces/primevue/issues/5053) +- ContextMenu: Cache duplication "focusedItemId" [\#5054](https://github.com/primefaces/primevue/issues/5054) +- Calendar: panel does not hide when pressing enter [\#5050](https://github.com/primefaces/primevue/issues/5050) +- Dialog: maximizable broken if dialog moved [\#5048](https://github.com/primefaces/primevue/issues/5048) +- DataTable: Hydration attribute mismatch with sortable columns [\#5046](https://github.com/primefaces/primevue/issues/5046) +- Can't paste a decimal value when there is a total value in the input. [\#5034](https://github.com/primefaces/primevue/issues/5034) +- Tooltip: Malfunction inside Links [\#5030](https://github.com/primefaces/primevue/issues/5030) +- SplitButton inherits CSS properties from DynamicDialog "footer" and disrupts the original design [\#5012](https://github.com/primefaces/primevue/issues/5012) +- Tooltip: missing nonce for inline styles [\#5010](https://github.com/primefaces/primevue/issues/5010) +- InputNumber: insert behavior defects [\#4539](https://github.com/primefaces/primevue/issues/4539) + +**Implemented New Features and Enhancements:** + +- New Aura Theme[\#5143](https://github.com/primefaces/primevue/issues/5143) +- Add itemGroupLabel, itemLabel, tickIcon and blankIcon options to pt in Dropdown [\#5142](https://github.com/primefaces/primevue/issues/5142) +- Add highlightOnSelect and checkmark props to Dropdown [\#5141](https://github.com/primefaces/primevue/issues/5141) +- Icon: BlankIcon [\#5139](https://github.com/primefaces/primevue/issues/5139) +- Add focusOnHover props to some components [\#5130](https://github.com/primefaces/primevue/issues/5130) +- DataTable: body template rowTogglerCallback callback option added [\#5123](https://github.com/primefaces/primevue/issues/5123) +- Dialog: no transition on open/close when dialog is maximized [\#5118](https://github.com/primefaces/primevue/issues/5118) +- Expose alignOverlay method in OverlayPanel [\#5075](https://github.com/primefaces/primevue/issues/5075) +- Message: 'life-end' emit [\#5070](https://github.com/primefaces/primevue/issues/5070) +- New MeterGroup component [\#5066](https://github.com/primefaces/primevue/issues/5066) +- Dropdown: After selecting an option, clearing the value using close icon should clear the filter input [\#5060](https://github.com/primefaces/primevue/issues/5060) + +## [3.46.0](https://github.com/primefaces/primevue/tree/3.46.0) (2024-01-08) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.45.0...3.46.0) + +**Fixed bugs:** + +- SVG clip path attribute should be clip-path and not clipPath [\#5036](https://github.com/primefaces/primevue/issues/5036) +- Tooltip arrow is broken [\#5033](https://github.com/primefaces/primevue/issues/5033) +- ConfirmDialog & ConfirmPopup: icon option class pt implementation defect [\#5028](https://github.com/primefaces/primevue/issues/5028) +- Sidebar: Escape key doesn't close the Slidebar [\#5016](https://github.com/primefaces/primevue/issues/5016) +- BodyRow: Cannot read propertie of null (reading 'forEach) [\#5005](https://github.com/primefaces/primevue/issues/5005) +- InputNumber: highlight on focus don't work on multiple inputs with the same value [\#5003](https://github.com/primefaces/primevue/issues/5003) +- TreeSelect: tab key control defect [\#4998](https://github.com/primefaces/primevue/issues/4998) +- bodyRow broken pt context options [\#4996](https://github.com/primefaces/primevue/issues/4996) +- VirtualScroller loading is not working on DataTable [\#4993](https://github.com/primefaces/primevue/issues/4993) +- added sortIcon property to type ColumnPassThroughOptionType [\#4992](https://github.com/primefaces/primevue/issues/4992) +- wrong type appendTo props [\#4905](https://github.com/primefaces/primevue/issues/4905) + +**Implemented New Features and Enhancements:** + +- Add caption option to passthrough options on Card [\#5020](https://github.com/primefaces/primevue/issues/5020) +- CascadeSelect: context options improvements for pt [\#4995](https://github.com/primefaces/primevue/issues/4995) + +## [3.45.0](https://github.com/primefaces/primevue/tree/3.45.0) (2023-12-22) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.44.0...3.45.0) + +**Breaking Changes:** + +- metaKeySelection default type is changed as false [\#4985](https://github.com/primefaces/primevue/issues/4985) + +**Fixed bugs:** + +- DataTable - sortable header with InputText [\#4988](https://github.com/primefaces/primevue/issues/4988) +- PickList: metaKeySelection does not work as expected [\#4984](https://github.com/primefaces/primevue/issues/4984) +- Datatable rowGroupMode: columns can't be hidden with setting hidden = true [\#4982](https://github.com/primefaces/primevue/issues/4982) +- Table: Sort icons are not showing correct amount directions [\#4981](https://github.com/primefaces/primevue/issues/4981) +- Lara Light Teal: $highlightBg implementation defect [\#4980](https://github.com/primefaces/primevue/issues/4980) +- Image: Preview popup closes on 2nd click of disabled zoomOut and zoomIn in preview [\#4968](https://github.com/primefaces/primevue/issues/4968) +- Knob: Chrome touchstart 'passive' warnings [\#4963](https://github.com/primefaces/primevue/issues/4963) +- Datatable: stripedRows do not work correctly with virtual scroll [\#4957](https://github.com/primefaces/primevue/issues/4957) +- Datatable: Column resize expand mode and Stateful loses scroll [\#4950](https://github.com/primefaces/primevue/issues/4950) +- DataTable or Column leak computed properties to their children through VirtualScroller [\#4924](https://github.com/primefaces/primevue/issues/4924) +- Datatable Slider filter: Filtering breaks after clearing filter when using slider in docs and elsewhere [\#4913](https://github.com/primefaces/primevue/issues/4913) +- DataTable: #loading templates broken with lazy virtual scroller [\#4723](https://github.com/primefaces/primevue/issues/4723) +- DataTable: VirtualScroller breaks when sort is applied [\#4434](https://github.com/primefaces/primevue/issues/4434) +- Treetable: InputText in body Slot does not allow space character [\#4045](https://github.com/primefaces/primevue/issues/4045) +- DataTable:When using ColumnGroup in a table with more than two frozen columns [\#3967](https://github.com/primefaces/primevue/issues/3967) +- DataTable: Pass sorted data on sort event Type: Bug [\#3818](https://github.com/primefaces/primevue/issues/3818) +- DataTable: dataKey Property not relevant for expanding rows [\#3718](https://github.com/primefaces/primevue/issues/3718) +- [DataTable with virtual scroll] Using primevue inside shadow-dom [\#3037](https://github.com/primefaces/primevue/issues/3037) +- DataTable Column Resizing incompatible with Column Reordering [\#2188](https://github.com/primefaces/primevue/issues/2188) + +**Implemented New Features and Enhancements:** + +- Image: Toolbar is hidden when the image is zoomed [\#4986](https://github.com/primefaces/primevue/issues/4986) +- Improve performance of row expansion feature on DataTable [\#4977](https://github.com/primefaces/primevue/issues/4977) +- InputNumber: Support roundingMode for the InputNumber [\#4945](https://github.com/primefaces/primevue/issues/4945) +- BaseIcon: p-icon and p-icon-spin classes in unstyled mode [\#4692](https://github.com/primefaces/primevue/issues/4692) +- Add custom wrapper support for helper components on DataTable and TreeTable [\#4646](https://github.com/primefaces/primevue/issues/4646) +- Component Styles: Remove use of !important now that @layer is used [\#4637](https://github.com/primefaces/primevue/issues/4637) +- DropDown: Labels unassociated from DropDown unless :editable="true" [\#4567](https://github.com/primefaces/primevue/issues/4567) +- TreeTable: Missing dataKey property [\#4273](https://github.com/primefaces/primevue/issues/4273) +- Keyboard support: Numpad enter [\#3602](https://github.com/primefaces/primevue/issues/3602) + +## [3.44.0](https://github.com/primefaces/primevue/tree/3.44.0) (2023-12-13) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.43.0...3.44.0) + +**Fixed bugs:** + +- Calendar: Time only mode does not work [\#4952](https://github.com/primefaces/primevue/issues/4952) +- Calendar PT: mask defect [\#4947](https://github.com/primefaces/primevue/issues/4947) +- CascadeSelect: optionGroupChildren doesn't work in string type [\#4944](https://github.com/primefaces/primevue/issues/4944) +- Dropdown: Overlapping Clear Icon while disabled [\#4923](https://github.com/primefaces/primevue/issues/4923) +- VirtualScroller: getRenderedRange viewport calculation is broken [\#4803](https://github.com/primefaces/primevue/issues/4803) +- Dropdown: Editable dropdown doesn't open when typing on a mobile device [\#4509](https://github.com/primefaces/primevue/issues/4509) +- DynamicDialog: passing pt when opening new dialogs [\#4443](https://github.com/primefaces/primevue/issues/4443) +- Data Table row checkboxes propagate click events when a checkbox is unchecked [\#4100](https://github.com/primefaces/primevue/issues/4100) +- AutoComplete: Duplicate Value [\#3379](https://github.com/primefaces/primevue/issues/3379) + +**Implemented New Features and Enhancements:** + +- Add attrs param to all pt functions [\#4951](https://github.com/primefaces/primevue/issues/4951) + +## [3.43.0](https://github.com/primefaces/primevue/tree/3.43.0) (2023-12-05) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.42.0...3.43.0) + +**Fixed bugs:** + +- Calendar: Overwrites date when in time-only mode [\#4901](https://github.com/primefaces/primevue/issues/4901) +- Binding and ordering pt options defect [\#4921](https://github.com/primefaces/primevue/issues/4921) +- Some icons are not displaying from PrimeIcons.js Api file [\#4897](https://github.com/primefaces/primevue/issues/4897) +- Treetable lazy load plus pagination toggler icon remain as open [\#4441](https://github.com/primefaces/primevue/issues/4441) + +**Implemented New Features and Enhancements:** + +- Add parent param to all pt method options [\#4929](https://github.com/primefaces/primevue/issues/4929) +- Media components Accessibility Improvements [\#4908](https://github.com/primefaces/primevue/issues/4908) +- Tree: Missing 'filter' event on search [\#4876](https://github.com/primefaces/primevue/issues/4876) + +## [3.42.0](https://github.com/primefaces/primevue/tree/3.42.0) (2023-11-28) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.41.1...3.42.0) + +**Breaking Changes:** + +- Menu components: width changed as min-width [\#4870](https://github.com/primefaces/primevue/issues/4870) + +**Fixed bugs:** + +- Splitter: aria-valuenow calculation defect [\#4889](https://github.com/primefaces/primevue/issues/4889) +- Listbox: select-on-focus causes a crash [\#4881](https://github.com/primefaces/primevue/issues/4881) +- Listbox: Tab key support defect when filter mode is on [\#4875](https://github.com/primefaces/primevue/issues/4875) +- Editor: Readonly prop does not react to any change [\#4872](https://github.com/primefaces/primevue/issues/4872) +- DataTable: Type definition doesn't match document [\#4662](https://github.com/primefaces/primevue/issues/4662) +- Wrong types issue with aria-label and aria-labelledby Props [\#4511](https://github.com/primefaces/primevue/issues/4511) + +**Implemented New Features and Enhancements:** + +- Tree / TreeTable: new loadingMode property [\#4886](https://github.com/primefaces/primevue/issues/4886) +- Improve InlineMessage Implementation for Accessibility [\#4880](https://github.com/primefaces/primevue/issues/4880) +- Calendar: new iconDisplay property [\#4871](https://github.com/primefaces/primevue/issues/4871) + +## [3.41.1](https://github.com/primefaces/primevue/tree/3.41.1) (2023-11-22) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.41.0...3.41.1) + +**Breaking Changes:** + +- StyleClass: deprecate enterClass/leaveClass use enterFromClass/leaveFromClass [\#4866](https://github.com/primefaces/primevue/issues/486&) +- Listbox: metaKeySelection default changed as true [\#4865](https://github.com/primefaces/primevue/issues/4865) + +**Fixed bugs:** + +- DataTable: restore state defect [\#4855](https://github.com/primefaces/primevue/issues/4855) +- PanelMenu: Menu items with no sub-items toggling border radius [\#4816](https://github.com/primefaces/primevue/issues/4816) +- Column: Missing typing for sorticon [\#4423](https://github.com/primefaces/primevue/issues/4423) + +**Implemented New Features and Enhancements:** + +- Button: new badgeSeverity property [\#4863](https://github.com/primefaces/primevue/issues/4863) +- MegaMenu / Menubar: menubutton templating [\#4862](https://github.com/primefaces/primevue/issues/4862) +- Calendar: Week Number customization [\#4669](https://github.com/primefaces/primevue/issues/4669) + +## [3.41.0](https://github.com/primefaces/primevue/tree/3.41.0) (2023-11-20) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.40.1...3.41.0) + +**Breaking Changes:** + +- Dialog: PT options rename [\#4848](https://github.com/primefaces/primevue/issues/4848) +- Sidebar: header templating updates [\#4845](https://github.com/primefaces/primevue/issues/4845) +- Remove primeflex dependency from DataView [\#4818](https://github.com/primefaces/primevue/issues/4818) +- Lara theme enhancements [\#4807](https://github.com/primefaces/primevue/issues/4807) + +**Fixed bugs:** + +- OrderList / PickList: defect on first tab focus [\#4839](https://github.com/primefaces/primevue/issues/4839) +- Inplace: console logs error on close [\#4824](https://github.com/primefaces/primevue/issues/4824) +- Menu: submenuheader slot options TypeScript defect [\#4809](https://github.com/primefaces/primevue/issues/4809) +- FileUpload: missing fileSizeTypes locale breaks the file select process [\#4808](https://github.com/primefaces/primevue/issues/4808) +- DataTable | cmd + A highlights page (Accessibility) [\#4804](https://github.com/primefaces/primevue/issues/4804) +- Splitter: stateString is undefined [\#4797](https://github.com/primefaces/primevue/issues/4797) +- BaseIcon: SpinnerIcon component isn't spinning. [\#4791](https://github.com/primefaces/primevue/issues/4791) +- OverlayPanel: wrongly typed slot prop [\#4774](https://github.com/primefaces/primevue/issues/4774) +- MultiSelect: loading spinner is not animated [\#4741](https://github.com/primefaces/primevue/issues/4741) +- AutoComplete: Primitive value 0 or reference value 0 does not display correctly [\#4749](https://github.com/primefaces/primevue/issues/4749) +- InputNumber: float label initially broken if allowEmpty = false [\#4516](https://github.com/primefaces/primevue/issues/4516) +- Paginator: Responsive Templating showing multiple layouts on break points [\#4458](https://github.com/primefaces/primevue/issues/4458) +- DataTable VirtualScroller: resizableColumns broken [\#4394](https://github.com/primefaces/primevue/issues/4394) + +**Implemented New Features and Enhancements:** + +- PickList OrderList | Keyboard Support Enhancements [\#4850](https://github.com/primefaces/primevue/issues/4850) +- TreeSelect: Accessibility Improvements [\#4841](https://github.com/primefaces/primevue/issues/4841) +- MegaMenu responsiveness updates [\#4819](https://github.com/primefaces/primevue/issues/4819) +- PanelMenu: new multiple property [\#4826](https://github.com/primefaces/primevue/issues/4826) +- Calendar responsiveness updates [\#4822](https://github.com/primefaces/primevue/issues/4822) +- Dock responsiveness updates [\#4821](https://github.com/primefaces/primevue/issues/4821) +- Menubar responsiveness updates [\#4820](https://github.com/primefaces/primevue/issues/4820) +- Chore: Duplicated Tailwind Classes [\#4806](https://github.com/primefaces/primevue/issues/4806) +- fix: import nuxt composables from #imports [\#4775](https://github.com/primefaces/primevue/issues/4775) +- Ovarlay / Dialog: Height is not working when use Tailwind [\#4653](https://github.com/primefaces/primevue/issues/4653) +- Media / Image : In preview mode toolbar is not showing when using tailwind unstyled [\#4650](https://github.com/primefaces/primevue/issues/4650) +- Splitter: blocked by content [\#4513](https://github.com/primefaces/primevue/issues/4513) + +## [3.40.1](https://github.com/primefaces/primevue/tree/3.40.1) (2023-11-09) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.40.0...3.40.1) + +**Fixed bugs:** + +- InputGroupAddon esm broken [\#4788](https://github.com/primefaces/primevue/issues/4788) + +## [3.40.0](https://github.com/primefaces/primevue/tree/3.40.0) (2023-11-09) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.39.0...3.40.0) + +**Breaking Changes:** + +- AccordionTab: isTabActive property is deprecated [\#4783](https://github.com/primefaces/primevue/issues/4783) +- Remove vue-router support from Menu components [\#4739](https://github.com/primefaces/primevue/issues/4739) +- Tooltip: escape should be false by default [\#4738](https://github.com/primefaces/primevue/issues/4738) + +**Fixed bugs:** + +- DataTable/TreeTable: Frozen column improvements [\#4786](https://github.com/primefaces/primevue/issues/4786) +- Table row is not highlighted with context menu [\#4785](https://github.com/primefaces/primevue/issues/4785) +- core: Error BaseStyle\_\_default.default is undefined [\#4648](https://github.com/primefaces/primevue/issues/4648) +- DataTable: editingRows watcher implementation defect [\#4757](https://github.com/primefaces/primevue/issues/4757) +- MultiSelect Name: prop overshadowing [\#4743](https://github.com/primefaces/primevue/issues/4743) +- SpeedDial: unstyled implementation defect breaks the calculations [\#4740](https://github.com/primefaces/primevue/issues/4740) +- Tooltip: autoHide does not work properly [\#4737](https://github.com/primefaces/primevue/issues/4737) +- Calendar: Console.Error/Crash when pressing Escape key using Inline Calendar [\#4732](https://github.com/primefaces/primevue/issues/4732) +- Calendar does not show the right month (for the minimal departure date) when it's dynamically set [\#4157](https://github.com/primefaces/primevue/issues/4157) + +**Implemented New Features and Enhancements:** + +- Collision Enhancements [\#4784](https://github.com/primefaces/primevue/issues/4784) +- TabMenu/Steps: active option for item templating [\#4780](https://github.com/primefaces/primevue/issues/4780) +- PanelMenu: root option for item templating [\#4779](https://github.com/primefaces/primevue/issues/4779) +- Steps: new activeStep property [\#4778](https://github.com/primefaces/primevue/issues/4778) +- ContextMenu: hasSubmenu options for item templating [\#4764](https://github.com/primefaces/primevue/issues/4764) +- TieredMenu: New start and end templating [\#4760](https://github.com/primefaces/primevue/issues/4760) +- PanelMenu: active options for item templating [\#4750](https://github.com/primefaces/primevue/issues/4750) +- New InputGroup Component [\#4742](https://github.com/primefaces/primevue/issues/4742) + +## [3.39.0](https://github.com/primefaces/primevue/tree/3.39.0) (2023-11-01) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.38.1...3.39.0) + +**Breaking Changes:** + +- Change slot parameter function name on* to *CallBack [\#4728](https://github.com/primefaces/primevue/issues/4728) + +**Fixed bugs:** + +- ConfirmPopup: arrow defect [\#4730](https://github.com/primefaces/primevue/issues/4730) +- Overlaypanel: Overlaypanel closes when any key is pressed [\#4712](https://github.com/primefaces/primevue/issues/4712) +- Steps: Property 'step' does not exist on type 'StepsRouterBindProps'. [\#4703](https://github.com/primefaces/primevue/issues/4703) +- Datatable: Cannot set properties of null (setting 'tabIndex') [\#4498](https://github.com/primefaces/primevue/issues/4498) +- Menubar: Custom locale config overwriting default untouched config properties [\#4270](https://github.com/primefaces/primevue/issues/4270) + +**Implemented New Features and Enhancements:** + +- SplitButton: new buttoncontent and item slots [\#4729](https://github.com/primefaces/primevue/issues/4729) +- Datatable: Lara Dark Theme Color Inconsistencies [\#4714](https://github.com/primefaces/primevue/issues/4714) + +## [3.38.1](https://github.com/primefaces/primevue/tree/3.38.1) (2023-10-26) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.38.0...3.38.1) + +**Fixed bugs:** + +- The package was not published correctly [\#4697](https://github.com/primefaces/primevue/issues/4697) + +## [3.38.0](https://github.com/primefaces/primevue/tree/3.38.0) (2023-10-26) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.37.0...3.38.0) + +**Breaking Changes:** + +- `Animate` directive renamed as `AnimateOnScroll` [\#4682](https://github.com/primefaces/primevue/issues/4682) + +**Implemented New Features and Enhancements:** + +- MegaMenu: separate `label` and `submenuLabel` pt options [\#4690](https://github.com/primefaces/primevue/issues/4690) +- Improve Lara dark colors [\#4687](https://github.com/primefaces/primevue/issues/4687) +- Accordion: new `expandicon` and `collapseicon` slots [\#4679](https://github.com/primefaces/primevue/issues/4679) +- SpeedDial: mask border-radius added [\#4674](https://github.com/primefaces/primevue/issues/4674) + +**Fixed bugs:** + +- OverlayPanel: closeOnEscape broken [\#4693](https://github.com/primefaces/primevue/issues/4693) +- ScrollPanel: TypeError: Cannot read properties of null \(reading 'scrollWidth'\) [\#4689](https://github.com/primefaces/primevue/issues/4689) +- Carousel: page attribute not updating carousel [\#4684](https://github.com/primefaces/primevue/issues/4684) +- Add empty option check to some components [\#4681](https://github.com/primefaces/primevue/issues/4681) +- PanelMenu: Error when using `#item` slot [\#4671](https://github.com/primefaces/primevue/issues/4671) +- FileUpload: Basic uploader click [\#4667](https://github.com/primefaces/primevue/issues/4667) +- ConfirmPopup: button classes implementation defects [\#4663](https://github.com/primefaces/primevue/issues/4663) +- Tooltip: Cursor flickers on hover [\#4655](https://github.com/primefaces/primevue/issues/4655) +- Splitter: minSize broken [\#4652](https://github.com/primefaces/primevue/issues/4652) + +## [3.37.0](https://github.com/primefaces/primevue/tree/3.37.0) (2023-10-18) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.36.0...3.37.0) + +**Implemented New Features and Enhancements:** + +- Lara Color Enhancements [\#4640](https://github.com/primefaces/primevue/issues/4640) +- Menu components pt context disabled updates [\#4632](https://github.com/primefaces/primevue/issues/4632) +- Overlaypanel: Overlay panel doesnot close on escape button click [\#4620](https://github.com/primefaces/primevue/issues/4620) +- New `animate` directive [\#4610](https://github.com/primefaces/primevue/issues/4610) +- Update Lara Themes [\#4592](https://github.com/primefaces/primevue/issues/4592) +- Tooltip: user interaction with tooltip content [\#3568](https://github.com/primefaces/primevue/issues/3568) + +**Fixed bugs:** + +- SelectButton: unselectable property defect [\#4631](https://github.com/primefaces/primevue/issues/4631) +- Slider: step defect [\#4625](https://github.com/primefaces/primevue/issues/4625) +- Menu: 'class' prop doesnt' work in submenuheader [\#4622](https://github.com/primefaces/primevue/issues/4622) +- Tailwind: typos in passthrough/tailwind [\#4617](https://github.com/primefaces/primevue/issues/4617) +- PanelMenu: top-level items lacking the label, props, hasSubmenu slot properties [\#4616](https://github.com/primefaces/primevue/issues/4616) +- Calendar: Can't navigate after selecting a date [\#4614](https://github.com/primefaces/primevue/issues/4614) +- Tree: Invalid typing of the default slot [\#4608](https://github.com/primefaces/primevue/issues/4608) +- locale "selectedItemsLabel" is broken on MultiSelect [\#4558](https://github.com/primefaces/primevue/issues/4558) +- Tree: Pass Through input options ignored [\#4478](https://github.com/primefaces/primevue/issues/4478) +- Picklist: Unexpected behavior on double click while holding control [\#4072](https://github.com/primefaces/primevue/issues/4072) + +## [3.36.0](https://github.com/primefaces/primevue/tree/3.36.0) (2023-10-11) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.35.0...3.36.0) + +**Implemented New Features and Enhancements:** + +- Improve block/unblockScroll architecture [\#4589](https://github.com/primefaces/primevue/issues/4589) +- Splitter: Add Resize event to Splitter component [\#4561](https://github.com/primefaces/primevue/issues/4561) +- Datatable: Sort mode multiple - undefined breaks order [\#4555](https://github.com/primefaces/primevue/issues/4555) +- InlineMessage: Icon shrinks as text grows larger [\#4550](https://github.com/primefaces/primevue/issues/4550) +- Export styles of all components [\#4530](https://github.com/primefaces/primevue/issues/4530) +- Add `modules` property to Editor [\#4450](https://github.com/primefaces/primevue/issues/4450) +- No styles injected on SSR resulting in Large Layout Shifts on load [\#4210](https://github.com/primefaces/primevue/issues/4210) +- MultiSelect: Filter does not work when options is an array of strings [\#4071](https://github.com/primefaces/primevue/issues/4071) +- Add `allowEmpty` property to SelectButton [\#3973](https://github.com/primefaces/primevue/issues/3973) +- Ability to close a specific toast message [\#1763](https://github.com/primefaces/primevue/issues/1763) + +**Fixed bugs:** + +- Dock Component MenuBar z-index issue [\#4584](https://github.com/primefaces/primevue/issues/4584) +- OrderList: Missing moveUpButtonProps [\#4581](https://github.com/primefaces/primevue/issues/4581) +- Config: Missing export definition in types [\#4579](https://github.com/primefaces/primevue/issues/4579) +- Cannot click to select min or max value when using slider with step property [\#4577](https://github.com/primefaces/primevue/issues/4577) +- Editor layer defect [\#4576](https://github.com/primefaces/primevue/issues/4576) +- Tailwind Datatable: Uncaught \(in promise\) TypeError: Cannot read properties of undefined \(reading 'frozen'\) [\#4566](https://github.com/primefaces/primevue/issues/4566) +- Using Tailwind setup - the Ripple data attributes get added automatically [\#4564](https://github.com/primefaces/primevue/issues/4564) +- Splitter: In the tailwind theme, double-clicking on a split line causes the element to move. [\#4562](https://github.com/primefaces/primevue/issues/4562) +- InputNumber: Buttons are not sorted correctly in TW theme if buttonLayout is horizontal [\#4560](https://github.com/primefaces/primevue/issues/4560) +- The `appearance` style is not working in Tailwind preset [\#4559](https://github.com/primefaces/primevue/issues/4559) +- Image: preview mode button spacing fixes [\#4554](https://github.com/primefaces/primevue/issues/4554) +- Image: toolbar unstyled mode fixes [\#4553](https://github.com/primefaces/primevue/issues/4553) +- Galleria: indicator list z-index defect [\#4545](https://github.com/primefaces/primevue/issues/4545) +- Column: headercheckboxicon slot not working [\#4543](https://github.com/primefaces/primevue/issues/4543) +- ContextMenu: global property is not working [\#4536](https://github.com/primefaces/primevue/issues/4536) +- InputText: Float labels bug out when page loads with form auto-filled \(webkit\) [\#4533](https://github.com/primefaces/primevue/issues/4533) +- Sidebar: autofocus cannot with other components [\#4532](https://github.com/primefaces/primevue/issues/4532) +- PanelMenu | Separator is not ignored when navigating with the arrow keys. [\#4522](https://github.com/primefaces/primevue/issues/4522) +- V-Tooltip, TailwindCSS: Styling not working when using pinia store [\#4505](https://github.com/primefaces/primevue/issues/4505) +- Calendar: Timepicker changes from `12 am` to `12 pm` automatically [\#4449](https://github.com/primefaces/primevue/issues/4449) +- Calendar: Multiple Month/Year selection mode not highlighting selected month [\#4418](https://github.com/primefaces/primevue/issues/4418) +- File Upload - Chrome/Windows input is triggered during any mouse click, not just left click [\#4144](https://github.com/primefaces/primevue/issues/4144) +- InputSwitch: Type Definition doesn't expose `disabled` [\#3985](https://github.com/primefaces/primevue/issues/3985) +- DataGrid: Invalid typing of slot props [\#3395](https://github.com/primefaces/primevue/issues/3395) + +**Deprecated:** + +- Remove FullCalendar theme support [\#4575](https://github.com/primefaces/primevue/issues/4575) + +## [3.35.0](https://github.com/primefaces/primevue/tree/3.35.0) (2023-09-26) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.34.1...3.35.0) + +**Implemented New Features and Enhancements:** + +- New `@layer` implementation [\#4504](https://github.com/primefaces/primevue/issues/4504) +- Theme updates: change `:focus` to `focus-visible` [\#4500](https://github.com/primefaces/primevue/issues/4500) +- Use Inter Var for Lara as the default theme [\#4483](https://github.com/primefaces/primevue/issues/4483) +- Calendar: focus state update [\#4474](https://github.com/primefaces/primevue/issues/4474) +- Add `ptOptions` option to PrimeVue config [\#4473](https://github.com/primefaces/primevue/issues/4473) +- Dialog: new `blockScroll` property [\#4463](https://github.com/primefaces/primevue/issues/4463) +- Container Slots for Overlay Components [\#4433](https://github.com/primefaces/primevue/issues/4433) +- Dialog component scrollbar shift [\#882](https://github.com/primefaces/primevue/issues/882) + +**Fixed bugs:** + +- Calendar | Disabled date is highlighted when it's in the range [\#4508](https://github.com/primefaces/primevue/issues/4508) +- ConfirmPopup: acceptClass and rejectClass is not working on unstyled mode [\#4506](https://github.com/primefaces/primevue/issues/4506) +- Column Filter: Missing type for new `applyFilter` method [\#4484](https://github.com/primefaces/primevue/issues/4484) +- Button: Buttonset with single button has wrong border radius [\#4467](https://github.com/primefaces/primevue/issues/4467) +- \[DataTable\] Reorder feature and rowreordericon slot problem. [\#4459](https://github.com/primefaces/primevue/issues/4459) +- ToastMessage: styleClass property is ignored [\#4454](https://github.com/primefaces/primevue/issues/4454) +- Bitwise operator used in passthorugh/tailwind/index.js instead of logical operator [\#4415](https://github.com/primefaces/primevue/issues/4415) +- Textarea autoResize with max-height doesn't show scrollbar [\#4269](https://github.com/primefaces/primevue/issues/4269) +- Calendar: manualInput property ignored [\#3523](https://github.com/primefaces/primevue/issues/3523) + +## [3.34.1](https://github.com/primefaces/primevue/tree/3.34.1) (2023-09-08) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.34.0...3.34.1) + +**Implemented New Features and Enhancements:** + +- DataTable: \(unstyled + Tailwind\) stripedRows styling applies in dark mode but not light mode [\#4406](https://github.com/primefaces/primevue/issues/4406) +- DataTable: Icon slots issues [\#4366](https://github.com/primefaces/primevue/issues/4366) +- Calendar: showMonthAfterYear IL8N setting \(from PrimeReact/PrimeFaces\) [\#4113](https://github.com/primefaces/primevue/issues/4113) +- DataTable and TreeTable: new Paginator dropdown icon slots [\#3921](https://github.com/primefaces/primevue/issues/3921) +- Column Filter: Expose 'applyFilter' method [\#3519](https://github.com/primefaces/primevue/issues/3519) + +**Fixed bugs:** + +- ConfirmDialog: acceptClass and rejectClass is not working on unstyled mode [\#4412](https://github.com/primefaces/primevue/issues/4412) +- Menubar - clicking outside of submenu should hide it [\#4405](https://github.com/primefaces/primevue/issues/4405) +- Image: Closing fullscreen image \(from preview\) breaks scrolling [\#4401](https://github.com/primefaces/primevue/issues/4401) +- The `ptOptions` property is not working with nested components [\#4400](https://github.com/primefaces/primevue/issues/4400) +- Breadcrumb: duplicate key warning [\#4399](https://github.com/primefaces/primevue/issues/4399) +- Column: rowtogglericon slot does not expose p-row-toggler-icon class [\#4398](https://github.com/primefaces/primevue/issues/4398) +- Calendar: dropdownicon class not being exposed [\#4370](https://github.com/primefaces/primevue/issues/4370) +- SplitButton: some preventDefault are missing [\#4223](https://github.com/primefaces/primevue/issues/4223) +- TreeTable: Custom Column's Toggler Icon [\#4170](https://github.com/primefaces/primevue/issues/4170) +- DataTable \(Virtual Scroll\): Cannot set properties of undefined \(setting 'tabIndex'\) [\#3888](https://github.com/primefaces/primevue/issues/3888) +- Tree: keyboard keys don't work in InputElement [\#3831](https://github.com/primefaces/primevue/issues/3831) + +## [3.34.0](https://github.com/primefaces/primevue/tree/3.34.0) (2023-09-05) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.33.0...3.34.0) + +**Breaking Changes:** + +- Rename PTOptions and DefaultPTOptions types with PassThrough and DefaultPassThrough types [\4389](https://github.com/primefaces/primevue/issues/4389) + +**Implemented New Features and Enhancements:** + +- Add ptOptions property to all components [\4384](https://github.com/primefaces/primevue/issues/4384) +- Improve the performance of resolveFieldData method in core [\4296](https://github.com/primefaces/primevue/issues/4296) +- Locale: Add fileSizeTypes [\4376](https://github.com/primefaces/primevue/issues/4376) +- AutoComplete: Empty Message never displayed [\3669](https://github.com/primefaces/primevue/issues/3669) + +**Fixed bugs:** + +- OrderList and PickList: Getting error when empty field [\4383](https://github.com/primefaces/primevue/issues/4383) +- MenuPassThrough: The PT option menu does not work [\4381](https://github.com/primefaces/primevue/issues/4381) +- Menu components: RouterBindProps typing [\4379](https://github.com/primefaces/primevue/issues/4379) +- TreeTable: aria-expanded attribute should not be on leaf nodes [\4368](https://github.com/primefaces/primevue/issues/4368) +- InputMask: Copy Paste not working [\3915](https://github.com/primefaces/primevue/issues/3915) +- DataTable: Selection and Row/Cell editing : Cannot input space character [\4120](https://github.com/primefaces/primevue/issues/4120) + +## [3.33.0](https://github.com/primefaces/primevue/tree/3.33.0) (2023-09-01) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.32.2...3.33.0) + +**Breaking Changes:** + +- Rename `merge` and `useMergeProps` options with `mergeSections` and `mergeProps` options on `usePassThrough` method [\#4342](https://github.com/primefaces/primevue/issues/4342) + +**Deprecated:** + +- `to` option deprecation of MenuModel for Menu components [\#4372](https://github.com/primefaces/primevue/issues/4372) +- Vue-Router deprecation in Menu components [\#4351](https://github.com/primefaces/primevue/issues/4351) + +**Implemented New Features and Enhancements:** + +- Menu: new `submenuheader` slot [\#4352](https://github.com/primefaces/primevue/issues/4352) +- SplitButton: MenuIcon [\#4201](https://github.com/primefaces/primevue/issues/4201) + +**Fixed bugs:** + +- FileUpload: drag over border implementation bug [\#4371](https://github.com/primefaces/primevue/issues/4371) +- Dialog: drag cannot work as expected [\#4367](https://github.com/primefaces/primevue/issues/4367) +- Testing components will throw a `Cannot read properties of undefined (reading 'unstyled')` error [\#4360](https://github.com/primefaces/primevue/issues/4360) +- VirtualScroller: Unstyled mode is removing needed classes for core functionality [\#4348](https://github.com/primefaces/primevue/issues/4348) +- Component Name: Splitter [\#4341](https://github.com/primefaces/primevue/issues/4341) +- DataTable: v-model:editingRows is not reactive when changed from outside [\#4337](https://github.com/primefaces/primevue/issues/4337) +- DataTable: PT Options missing for Expansion Row Cell [\#4306](https://github.com/primefaces/primevue/issues/4306) +- Calendar: Accessibility features broken when hour-format="12" [\#4287](https://github.com/primefaces/primevue/issues/4287) +- SplitButton: Not rendering icon slot without icon property [\#4200](https://github.com/primefaces/primevue/issues/4200) +- Dialog: Draggable fails if Dialog contains a TabView/TabPanel [\#4182](https://github.com/primefaces/primevue/issues/4182) + +## [3.32.2](https://github.com/primefaces/primevue/tree/3.32.2) (2023-08-23) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.32.1...3.32.2) + +**Implemented New Features and Enhancements:** + +- PassThrough: component option improvements [\#4322](https://github.com/primefaces/primevue/issues/4322) + +**Fixed bugs:** + +- \[AutoComplete\] wrong removetokenicon pt implementation [\#4320](https://github.com/primefaces/primevue/issues/4320) +- \[Editor\] - Tailwind theme is not working. Structure needs adjustments [\#4317](https://github.com/primefaces/primevue/issues/4317) +- Dialog: Uncaught TypeError: getComputedStyle is not a function [\#4312](https://github.com/primefaces/primevue/issues/4312) +- Toast message content overflows the toast border [\#4309](https://github.com/primefaces/primevue/issues/4309) +- Column: `colspan` only applied to `thead>tr>td` but should be applied to `tbody>tr>td` [\#4307](https://github.com/primefaces/primevue/issues/4307) +- Calendar: Icon classes not being correctly exposed [\#4305](https://github.com/primefaces/primevue/issues/4305) +- Listbox: Typing filtericon slot does not expose class [\#4304](https://github.com/primefaces/primevue/issues/4304) +- Sidebar: Icon classes not being correctly exposed [\#4303](https://github.com/primefaces/primevue/issues/4303) +- Toast: Icon classes not being correctly exposed [\#4302](https://github.com/primefaces/primevue/issues/4302) +- Dialog: Draggable Fails [\#4298](https://github.com/primefaces/primevue/issues/4298) +- Datatable Cell Edit: Numpad Enter not saving new data on InputNumber [\#4292](https://github.com/primefaces/primevue/issues/4292) + +## [3.32.1](https://github.com/primefaces/primevue/tree/3.32.1) (2023-08-18) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.32.0...3.32.1) + +**Implemented New Features and Enhancements:** + +- Improve `usePassThrough` method [\#4289](https://github.com/primefaces/primevue/issues/4289) +- SelectButton: passthrough option [\#4286](https://github.com/primefaces/primevue/issues/4286) +- Locale performance updates with large datasets [\#4285](https://github.com/primefaces/primevue/issues/4285) +- Baseicon: Content Security Policy \(CSP\) violation [\#4271](https://github.com/primefaces/primevue/issues/4271) +- FileUpload: Class .p-fileupload-highlight is missing [\#4129](https://github.com/primefaces/primevue/issues/4129) +- DataTable: Slow filter and sort performance with large datasets [\#4007](https://github.com/primefaces/primevue/issues/4007) +- Dropdown: Show Clear Keyboard Binding [\#3834](https://github.com/primefaces/primevue/issues/3834) + +**Fixed bugs:** + +- Sidebar: using unstyled mode and Tailwind theme, the :modal="false" doesn't work. Can't disable the modal layer. [\#4288](https://github.com/primefaces/primevue/issues/4288) +- Unstyled Mode: Tailwind - only refers to a type [\#4280](https://github.com/primefaces/primevue/issues/4280) +- Disabled prop on Password component not working [\#4279](https://github.com/primefaces/primevue/issues/4279) +- usePassThrough: Components with function as their value doesn't seem to work properly [\#4278](https://github.com/primefaces/primevue/issues/4278) +- DataTable in expand mode resizing problem [\#4277](https://github.com/primefaces/primevue/issues/4277) +- Slot function options .d.ts typing fixes [\#4274](https://github.com/primefaces/primevue/issues/4274) +- Sidebar: Tailwind transitions do not work for all positions [\#4272](https://github.com/primefaces/primevue/issues/4272) +- Datatable: Menu Filter Icon Click Causes Column to Sort [\#4268](https://github.com/primefaces/primevue/issues/4268) +- Button: iconClass is not assigned when component is unstyled [\#4265](https://github.com/primefaces/primevue/issues/4265) +- Dropdown: Invalid slot typings [\#4263](https://github.com/primefaces/primevue/issues/4263) +- Unexpected behavior of the ConfirmDialog component during dragging process [\#4251](https://github.com/primefaces/primevue/issues/4251) +- ColorPicker: baseZIndex is unused [\#4228](https://github.com/primefaces/primevue/issues/4228) +- Calendar: increment minute [\#4207](https://github.com/primefaces/primevue/issues/4207) +- Message: Icon shrinks when text in message wraps to new lines. [\#3966](https://github.com/primefaces/primevue/issues/3966) +- Dialog, Sidebar: Not working if v-model:visible is changed quickly [\#3940](https://github.com/primefaces/primevue/issues/3940) +- DataTable: Grouping with Pagination is Broken [\#3896](https://github.com/primefaces/primevue/issues/3896) +- rowGroup feature is not working with paginator in PrimeVue's DataTable [\#3858](https://github.com/primefaces/primevue/issues/3858) +- Image: want set preview to fullscreen [\#2947](https://github.com/primefaces/primevue/issues/2947) +- Buttongroup with outlined buttons [\#2238](https://github.com/primefaces/primevue/issues/2238) + +## [3.32.0](https://github.com/primefaces/primevue/tree/3.32.0) (2023-08-11) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.31.0...3.32.0) + +**Breaking Changes:** + +- Update `Tailwind` package in core [\#4255](https://github.com/primefaces/primevue/issues/4255) + +**Implemented New Features and Enhancements:** + +- Add `usePassThrough` method to customize default PT objects [\#4257](https://github.com/primefaces/primevue/issues/4257) +- AutoComplete: loading state [\#4253](https://github.com/primefaces/primevue/issues/4253) +- Add `Content Security Policy (CSP)` config [\#4241](https://github.com/primefaces/primevue/issues/4241) +- Core unstyled mode updates [\#4235](https://github.com/primefaces/primevue/issues/4235) +- Datatable: Cell Edit Numpad Enter not working [\#4232](https://github.com/primefaces/primevue/issues/4232) +- Add `transition` option to Pass Through\(PT\) of components [\#4231](https://github.com/primefaces/primevue/issues/4231) +- Add custom `global.css` option to Pass Through\(PT\) [\#4230](https://github.com/primefaces/primevue/issues/4230) +- Avatar: Return target in error event callback [\#4222](https://github.com/primefaces/primevue/issues/4222) +- Password: add "@change" event [\#4219](https://github.com/primefaces/primevue/issues/4219) +- PT context improvemens [\#4211](https://github.com/primefaces/primevue/issues/4211) + +**Fixed bugs:** + +- Dropdown: Click on icon line is ignored [\#4259](https://github.com/primefaces/primevue/issues/4259) +- Vue Tooltip: Flickering Issue [\#4256](https://github.com/primefaces/primevue/issues/4256) +- Image: preview button is missing `type="button"` and submits forms by default [\#4249](https://github.com/primefaces/primevue/issues/4249) +- SpeedDial: tooltip not working on speed dial [\#4238](https://github.com/primefaces/primevue/issues/4238) +- Dialog: unstyled mode pointer-event defects [\#4237](https://github.com/primefaces/primevue/issues/4237) +- Toast: Toast Icon is too small [\#4234](https://github.com/primefaces/primevue/issues/4234) +- Datatable: Filtering with grouping not working [\#4229](https://github.com/primefaces/primevue/issues/4229) +- Dropdown: Incorrect prop declaration [\#4225](https://github.com/primefaces/primevue/issues/4225) +- RadioButton: pt prop has incorrect type [\#4202](https://github.com/primefaces/primevue/issues/4202) +- TreeSelect: p-treeselect-items-wrapper is missing [\#4145](https://github.com/primefaces/primevue/issues/4145) +- SplitButton: menu icon not visible in large size [\#4028](https://github.com/primefaces/primevue/issues/4028) +- DataTable and TreeTable: Column sorting not working correctly when using custom header template [\#3702](https://github.com/primefaces/primevue/issues/3702) + +## [3.31.0](https://github.com/primefaces/primevue/tree/3.31.0) (2023-07-25) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.30.2...3.31.0) + +**Implemented New Features and Enhancements:** + +- Tailwind Theme for Unstyled Mode [\#4205](https://github.com/primefaces/primevue/issues/4205) +- PT context improvements [\#4196](https://github.com/primefaces/primevue/issues/4196) +- Add item parameter to menuitem options for pt property [\#4190](https://github.com/primefaces/primevue/issues/4190) + +**Fixed bugs:** + +- Bootstrap: Breadcrumb icon fix [\#4195](https://github.com/primefaces/primevue/issues/4195) +- CascadeSelect unstyled mode defect [\#4192](https://github.com/primefaces/primevue/issues/4192) +- InputSwitch: pt prop has incorrect type [\#4187](https://github.com/primefaces/primevue/issues/4187) +- TabView: ID used in aria-controls does not exist on panel content div [\#4181](https://github.com/primefaces/primevue/issues/4181) +- Dropdown: default optionLabel and default optionValue are null \(but doc say, default to label and value\) [\#4174](https://github.com/primefaces/primevue/issues/4174) +- Image: Preview not closing on escape click [\#4089](https://github.com/primefaces/primevue/issues/4089) + +## [3.30.2](https://github.com/primefaces/primevue/tree/3.30.2) (2023-07-20) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.30.1...3.30.2) + +**Implemented New Features and Enhancements:** + +- Rename `button` and `buttonIcon` pt options with `closeButton` and `closeIcon` options in Message and Toast [\#4159](https://github.com/primefaces/primevue/issues/4159) +- DataTable & TreeTable: new `size` property [\#4156](https://github.com/primefaces/primevue/issues/4156) +- Improve `pt` syntax for 'class' definitions [\#4150](https://github.com/primefaces/primevue/issues/4150) +- PT context improvements [\#4149](https://github.com/primefaces/primevue/issues/4149) + +**Fixed bugs:** + +- TabMenu: disabled item defect & accessibility improvements [\#4169](https://github.com/primefaces/primevue/issues/4169) +- OverlayPanel: Toggle on list of focusable elements forces screen jump [\#4167](https://github.com/primefaces/primevue/issues/4167) +- Global pt implementation defects [\#4163](https://github.com/primefaces/primevue/issues/4163) +- Multiselect: Custom checkbox render issue [\#4152](https://github.com/primefaces/primevue/issues/4152) + +## [3.30.1](https://github.com/primefaces/primevue/tree/3.30.1) (2023-07-14) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.30.0...3.30.1) + +**Implemented New Features and Enhancements:** + +- Button: remove margin from default style [\#4139](https://github.com/primefaces/primevue/issues/4139) +- Improve `pt` options on components that use helper component [\#4136](https://github.com/primefaces/primevue/issues/4136) +- Pass Through Props: Syntactic improvement suggestion [\#4125](https://github.com/primefaces/primevue/issues/4125) +- PT context improvements [\#4124](https://github.com/primefaces/primevue/issues/4124) + +**Fixed bugs:** + +- TreeTable: Sorting does not work when clicking at the header title [\#4138](https://github.com/primefaces/primevue/issues/4138) +- Selection\(multiple and single\) not working in TreeTable [\#4133](https://github.com/primefaces/primevue/issues/4133) +- The types in PrimeVue config are not accessible [\#4122](https://github.com/primefaces/primevue/issues/4122) +- Browser CDN mode is not working as expected [\#4121](https://github.com/primefaces/primevue/issues/4121) +- TypeScript: changeTheme is not declared [\#4118](https://github.com/primefaces/primevue/issues/4118) +- Panel: Wrong prop type in `header` slot [\#4086](https://github.com/primefaces/primevue/issues/4086) + +## [3.30.0](https://github.com/primefaces/primevue/tree/3.30.0) (2023-07-10) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.29.2...3.30.0) + +**Implemented New Features and Enhancements:** + +- InputText: `size` property [\#4106](https://github.com/primefaces/primevue/issues/4106) +- Add `hooks` keyword to `pt` options to access all lifecycle methods on components and directives [\#4103](https://github.com/primefaces/primevue/issues/4103) +- Pass all emits to templates on DynamicDialog [\#4102](https://github.com/primefaces/primevue/issues/4102) +- Improve `pt` options on components that use helper component [\#3983](https://github.com/primefaces/primevue/issues/3983) +- Add `unstyled` mode for all components [\#3965](https://github.com/primefaces/primevue/issues/3965) + +**Fixed bugs:** + +- Button: Button width is to small when have a icon and a badge only [\#4083](https://github.com/primefaces/primevue/issues/4083) +- SplitButton: aria-expanded not set correctly [\#4065](https://github.com/primefaces/primevue/issues/4065) +- Toast: Crashing when no severity value is provided [\#4063](https://github.com/primefaces/primevue/issues/4063) +- Positioning defect PrimeVue Button with icon slot [\#4042](https://github.com/primefaces/primevue/issues/4042) +- Tooltip: showDelay still triggers Tooltip when original element is removed [\#4029](https://github.com/primefaces/primevue/issues/4029) +- tooltip: hideDelay is not defined [\#4025](https://github.com/primefaces/primevue/issues/4025) +- `pt` implementation defects [\#4024](https://github.com/primefaces/primevue/issues/4024) +- FocusTrap.js writes to read-only property `classList` which causes test failures under happy-dom [\#4015](https://github.com/primefaces/primevue/issues/4015) +- The `getScrollableParents` method throws a exception in shadow dom [\#4014](https://github.com/primefaces/primevue/issues/4014) +- TreeTable: event propagation issue [\#4010](https://github.com/primefaces/primevue/issues/4010) +- Dynamic clipPath support for icons [\#3959](https://github.com/primefaces/primevue/issues/3959) +- Accordion: pt options for root applied twice [\#3955](https://github.com/primefaces/primevue/issues/3955) +- InputNumber: Incorrect formatting when in decimal mode with a suffix \(maybe all the time\) [\#3382](https://github.com/primefaces/primevue/issues/3382) + +**Deprecated:** + +- The `primevue[.min].css` has been deprecated [\#4110](https://github.com/primefaces/primevue/issues/4110) + +## [3.29.2](https://github.com/primefaces/primevue/tree/3.29.2) (2023-05-31) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.29.1...3.29.2) + +**Fixed bugs:** + +- Datatable: Custom checkbox render issue [\#4003](https://github.com/primefaces/primevue/issues/4003) + +## [3.29.1](https://github.com/primefaces/primevue/tree/3.29.1) (2023-05-15) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.29.0...3.29.1) + +**Fixed bugs:** + +- SpeedDial: Mask and SpeedDial itself prevent pointer events and speedDial does not close using item slot [\#3945](https://github.com/primefaces/primevue/issues/3945) +- DataTable: Selection and focus loss when no custom ContextMenu is defined [\#3927](https://github.com/primefaces/primevue/issues/3927) +- TabMenu: Accessibility issue in TabMenu with hidden tabs [\#3910](https://github.com/primefaces/primevue/issues/3910) +- Steps: text overflow [\#3631](https://github.com/primefaces/primevue/issues/3631) + +## [3.29.0](https://github.com/primefaces/primevue/tree/3.29.0) (2023-05-11) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.28.0...3.29.0) + +**Implemented New Features and Enhancements:** + +- New passthrough\(pt\) property implementation for Data Components [\#3924](https://github.com/primefaces/primevue/issues/3924) +- New passthrough\(pt\) property implementation for Form Components [\#3922](https://github.com/primefaces/primevue/issues/3922) +- New passthrough\(pt\) property implementation for Media Components [\#3918](https://github.com/primefaces/primevue/issues/3918) +- Image: New `image` and `preview` slots [\#3864](https://github.com/primefaces/primevue/issues/3864) +- Tooltip Delay option [\#3764](https://github.com/primefaces/primevue/issues/3764) +- Image: Handling of disabled zoomOut and zoomIn in preview [\#2948](https://github.com/primefaces/primevue/issues/2948) + +**Fixed bugs:** + +- Calendar: showOnFocus=false does not work [\#3923](https://github.com/primefaces/primevue/issues/3923) +- OrderList: TypeError with empty list [\#3870](https://github.com/primefaces/primevue/issues/3870) + +## [3.28.0](https://github.com/primefaces/primevue/tree/3.28.0) (2023-05-02) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.27.0...3.28.0) + +**Implemented New Features and Enhancements:** + +- New passthrough\(pt\) property implementation for Chart & FileUpload & Message Components [\#3911](https://github.com/primefaces/primevue/issues/3911) +- New passthrough\(pt\) property implementation for Menu Components [\#3907](https://github.com/primefaces/primevue/issues/3907) +- Button: No label [\#3905](https://github.com/primefaces/primevue/issues/3905) +- Add global `pt` option to PrimeVue config [\#3902](https://github.com/primefaces/primevue/issues/3902) +- New passthrough\(pt\) property implementation for Button Components [\#3889](https://github.com/primefaces/primevue/issues/3889) +- New passthrough\(pt\) property implementation for Overlay Components [\#3885](https://github.com/primefaces/primevue/issues/3885) +- New passthrough\(pt\) property implementation for Misc Components [\#3879](https://github.com/primefaces/primevue/issues/3879) + +**Fixed bugs:** + +- Message: wrong close icon size [\#3908](https://github.com/primefaces/primevue/issues/3908) +- Panel: Header accessibility issue [\#3904](https://github.com/primefaces/primevue/issues/3904) +- Calendar: Material theme icons not visible [\#3903](https://github.com/primefaces/primevue/issues/3903) +- Password: Incorrect onClick property as scope for custom icons [\#3900](https://github.com/primefaces/primevue/issues/3900) +- AutoComplete: class style and click event refactor on `removetokenicon` scoped slot [\#3899](https://github.com/primefaces/primevue/issues/3899) +- Dropdown: Selection is not working correctly with falsy values [\#3891](https://github.com/primefaces/primevue/issues/3891) + +## [3.27.0](https://github.com/primefaces/primevue/tree/3.27.0) (2023-04-19) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.26.1...3.27.0) + +**Implemented New Features and Enhancements:** + +- Add icon templating support to components [\#3833](https://github.com/primefaces/primevue/issues/3833) +- Improve icon implementation in core [\#3832](https://github.com/primefaces/primevue/issues/3832) +- Add new Icon components [\#3829](https://github.com/primefaces/primevue/issues/3829) +- Panel: Footer Templating [\#3820](https://github.com/primefaces/primevue/issues/3820) +- AutoComplete: NumpadEnter is not recognised [\#3816](https://github.com/primefaces/primevue/issues/3816) +- Calendar: Emit year-change event via navBackward and navForward [\#3811](https://github.com/primefaces/primevue/issues/3811) +- New passthrough\(pt\) property implementation for Panel Components [\#3797](https://github.com/primefaces/primevue/issues/3797) +- Galleria: Play and Pause [\#3619](https://github.com/primefaces/primevue/issues/3619) + +**Fixed bugs:** + +- TabView: Scrollable Starting/Ending Nav Arrow Blocks First/Last Tab [\#3849](https://github.com/primefaces/primevue/issues/3849) +- DataTable Filter with Calendar is not showing in proper location [\#3632](https://github.com/primefaces/primevue/issues/3632) + +**Deprecated:** + +- Deprecated `indicator` slot [\#3871](https://github.com/primefaces/primevue/issues/3871) +- FullCalendar: Deprecated component [\#3827](https://github.com/primefaces/primevue/issues/3827) + +## [3.26.1](https://github.com/primefaces/primevue/tree/3.26.1) (2023-03-27) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.26.0...3.26.1) + +**Implemented New Features and Enhancements:** + +- Improve folder structure for nuxt configurations [\#3802](https://github.com/primefaces/primevue/issues/3802) +- Image: Add Additional Toolbar Buttons To Preview [\#3771](https://github.com/primefaces/primevue/issues/3771) +- Image: indicator icon property[\#3492](https://github.com/primefaces/primevue/issues/3492) + +**Fixed bugs:** + +- The esm builds throw an exception due to optional chaining [\#3809](https://github.com/primefaces/primevue/issues/3809) +- Filtering: doesn't respect optionGroupChildren [\#3807](https://github.com/primefaces/primevue/issues/3807) +- Api: Typing mismatch [\#3806](https://github.com/primefaces/primevue/issues/3806) +- DataTable: Row edits when enabled doesn't work with pagination [\#3801](https://github.com/primefaces/primevue/issues/3801) +- Calendar: Page scrolls to top when clicked on calendar icon [\#3791](https://github.com/primefaces/primevue/issues/3791) +- Splitter: a couple of errors related to aria-\* attributes [\#3783](https://github.com/primefaces/primevue/issues/3783) +- DataTable: Group Rows do not span all Columns with Selection Mode set and group-by not in the Column list [\#3781](https://github.com/primefaces/primevue/issues/3781) +- DataTable: the table disappears when using scrollHeight="flex" and virtual scrolling [\#3772](https://github.com/primefaces/primevue/issues/3772) + +## [3.26.0](https://github.com/primefaces/primevue/tree/3.26.0) (2023-03-20) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.25.0...3.26.0) + +**Implemented New Features and Enhancements:** + +- TriStateCheckbox: case of modelValue undefined [\#3762](https://github.com/primefaces/primevue/issues/3762) +- Inplace: FocusTrap support [\#3760](https://github.com/primefaces/primevue/issues/3760) +- ConfirmDialog: Add draggable property [\#3753](https://github.com/primefaces/primevue/issues/3753) +- Inplace editing does not focus on input element as expected [\#2348](https://github.com/primefaces/primevue/issues/2348) + +**Fixed bugs:** + +- Slider: Accessibility issue [\#3768](https://github.com/primefaces/primevue/issues/3768) +- TreeTable: Column Resizing defect [\#3754](https://github.com/primefaces/primevue/issues/3754) +- Api: Typing mismatch [\#3751](https://github.com/primefaces/primevue/issues/3751) +- SplitButton/OverlayPanel: OverlayPanel won't open from default call by SplitButton [\#3750](https://github.com/primefaces/primevue/issues/3750) +- Slider: Focus on slider on mouse click [\#3748](https://github.com/primefaces/primevue/issues/3748) +- Dropdown preselected disabled option is not shown [\#3541](https://github.com/primefaces/primevue/issues/3541) + +## [3.25.0](https://github.com/primefaces/primevue/tree/3.25.0) (2023-03-13) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.24.0...3.25.0) + +**Breaking Changes:** + +- SelectButton: inverse `unselectable` behaviour [\#3708](https://github.com/primefaces/primevue/issues/3708) + +**Implemented New Features and Enhancements:** + +- DynamicDialog: Improve `templates` option to use dynamic components in header and footer templates. [\#3736](https://github.com/primefaces/primevue/issues/3736) +- Api: Type mismatch [\#3727](https://github.com/primefaces/primevue/issues/3727) +- DynamicDialog: Add `emits` option to handle events emitted by the child component [\#3726](https://github.com/primefaces/primevue/issues/3726) + +**Fixed bugs:** + +- DataTable: rowStyle function doesn't work [\#3738](https://github.com/primefaces/primevue/issues/3738) +- Dialog: header buttons autofocus defect [\#3729](https://github.com/primefaces/primevue/issues/3729) +- Class and Style properties type definition defects [\#3707](https://github.com/primefaces/primevue/issues/3707) +- InputMask: Dynamic mask change issue [\#3698](https://github.com/primefaces/primevue/issues/3698) +- Tooltip: cannot unbind events when tooltip value is cleared [\#3645](https://github.com/primefaces/primevue/issues/3645) +- Calendar: Disable year and month when set minDate or maxDate [\#3589](https://github.com/primefaces/primevue/issues/3589) +- DataTable frozen columns in footer not freezing [\#3190](https://github.com/primefaces/primevue/issues/3190) +- ConfirmPopup: page scrolls up when the button is clicked a second time [\#3516](https://github.com/primefaces/primevue/issues/3516) + +## [3.24.0](https://github.com/primefaces/primevue/tree/3.24.0) (2023-03-07) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.23.0...3.24.0) + +**Breaking Changes:** + +- Removed TypeScript types [\#3696](https://github.com/primefaces/primevue/issues/3696) +- DataTable CSS and responsive structure improvements [\#3682](https://github.com/primefaces/primevue/issues/3682) + +**Implemented New Features and Enhancements:** + +- SplitButton: New Styling properties [\#3697](https://github.com/primefaces/primevue/issues/3697) +- Button: New Styling Properties [\#3695](https://github.com/primefaces/primevue/issues/3695) +- Add appendOnly and inline properties to VirtualScroller [\#3683](https://github.com/primefaces/primevue/issues/3683) +- Avatar - Image Alt text Accessibility [\#3593](https://github.com/primefaces/primevue/issues/3593) +- Tab Menu: Add role to ink bar [\#3583](https://github.com/primefaces/primevue/issues/3583) +- Toast: new `close` and `life-end` methods [\#2989](https://github.com/primefaces/primevue/issues/2989) + +**Fixed bugs:** + +- Dropdown: editable mode add change event [\#3692](https://github.com/primefaces/primevue/issues/3692) +- DataTable: cannot uncheck when click the checkbox in column [\#3691](https://github.com/primefaces/primevue/issues/3691) +- Checkbox: has an attribute that is not supported by input checkboxes. [\#3678](https://github.com/primefaces/primevue/issues/3678) +- Badge: do not render Zero correctly [\#3649](https://github.com/primefaces/primevue/issues/3649) +- InputSwitch: invalid state defect [\#3646](https://github.com/primefaces/primevue/issues/3646) +- MegaMenu templating defect [\#3621](https://github.com/primefaces/primevue/issues/3621) + +## [3.23.0](https://github.com/primefaces/primevue/tree/3.23.0) (2023-01-30) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.22.4...3.23.0) + +**Implemented New Features and Enhancements:** + +- Menu: `start` and `end` templating [\#3599](https://github.com/primefaces/primevue/issues/3599) +- Intro 6 New Free Themes [\#3597](https://github.com/primefaces/primevue/issues/3597) +- DataTable: exportData exclude column footers [\#3328](https://github.com/primefaces/primevue/issues/3328) + +**Fixed bugs:** + +- Breadcrumb: Home item not using item slot [\#3604](https://github.com/primefaces/primevue/issues/3604) +- Locale: `endsWith` typing error on d.ts [\#3595](https://github.com/primefaces/primevue/issues/3595) +- Tag: Duplicate class names [\#3584](https://github.com/primefaces/primevue/issues/3584) +- DataTable: tabbing error with row select and expanded rows enabled [\#3571](https://github.com/primefaces/primevue/issues/3571) +- Dialog: dismissableMask not working when closable false [\#3560](https://github.com/primefaces/primevue/issues/3560) +- DataTable: Paginator should be below DataTable Footer templating [\#3540](https://github.com/primefaces/primevue/issues/3540) +- Datatable: RowReorder fails in case of pagination on page other than first & last [\#3443](https://github.com/primefaces/primevue/issues/3443) +- Calendar: maxDate with 12-hour-format does not allow minute and second value modification [\#3356](https://github.com/primefaces/primevue/issues/3356) + +## [3.22.4](https://github.com/primefaces/primevue/tree/3.22.4) (2023-01-23) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.22.3...3.22.4) + +**Fixed bugs:** + +- Breadcrumb: when home is not defined, first separator should not be rendered [\#3570](https://github.com/primefaces/primevue/issues/3570) +- PanelMenu header action color update [\#3561](https://github.com/primefaces/primevue/issues/3561) +- Unique values created in components are set incorrectly. [\#3558](https://github.com/primefaces/primevue/issues/3558) +- ZIndexUtils: Dropdown inside Dialog doesn't work [\#3554](https://github.com/primefaces/primevue/issues/3554) +- PanelMenu: Link items can't be opened with a keyboard \(slot issue\) [\#3553](https://github.com/primefaces/primevue/issues/3553) +- Material Calendar: Invalid State defect [\#3547](https://github.com/primefaces/primevue/issues/3547) +- Textarea : Label colour do not changes to primary colour when floating above [\#3530](https://github.com/primefaces/primevue/issues/3530) +- Calendar: Regression. Incorrect calendar pop-up positioning when used as editor in DataTable [\#3526](https://github.com/primefaces/primevue/issues/3526) + +## [3.22.3](https://github.com/primefaces/primevue/tree/3.22.3) (2023-01-17) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.22.2...3.22.3) + +**Fixed bugs:** + +- ZIndexUtils is not working as expected on the overlays [\#3549](https://github.com/primefaces/primevue/issues/3549) + +## [3.22.2](https://github.com/primefaces/primevue/tree/3.22.2) (2023-01-16) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.22.1...3.22.2) + +**Implemented New Features and Enhancements:** + +- Sidebar: transition class update and adding `after-hide` event [\#3535](https://github.com/primefaces/primevue/issues/3535) + +**Fixed bugs:** + +- Divider: dotted vertical divider is not working [\#3534](https://github.com/primefaces/primevue/issues/3534) +- RadioButton and Rating causes scroll [\#3533](https://github.com/primefaces/primevue/issues/3533) +- Sidebar: Mask container should be removed from DOM [\#3531](https://github.com/primefaces/primevue/issues/3531) +- Menu: TypeError with only disabled menuitems [\#3513](https://github.com/primefaces/primevue/issues/3513) +- DataTable/Paginator: JumpToInput not working. Incrementing page not changing input value [\#3538](https://github.com/primefaces/primevue/issues/3538) + +## [3.22.1](https://github.com/primefaces/primevue/tree/3.22.1) (2023-01-12) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.22.0...3.22.1) + +- Sidebar: Extraneous non-props attributes warnings [\#3524](https://github.com/primefaces/primevue/issues/3524) + +**Fixed bugs:** + +## [3.22.0](https://github.com/primefaces/primevue/tree/3.22.0) (2023-01-11) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.21.0...3.22.0) + +**Implemented New Features and Enhancements:** + +- ProgressSpinner| color updates [\#3511](https://github.com/primefaces/primevue/issues/3511) +- Reimplement Sidebar [\#3474](https://github.com/primefaces/primevue/issues/3474) +- Pass props to SplitButton MenuButton [\#3394](https://github.com/primefaces/primevue/issues/3394) +- TabMenu: index of menu item must be accessible in slot [\#3393](https://github.com/primefaces/primevue/issues/3393) +- `empty` slot for Autocomplete [\#2525](https://github.com/primefaces/primevue/issues/2525) + +**Fixed bugs:** + +- DropdownMenu: Disabled dropdown can still be opened with screen reader [\#3512](https://github.com/primefaces/primevue/issues/3512) +- SpeedDial: Overlapping Issue [\#3504](https://github.com/primefaces/primevue/issues/3504) +- Breadcrumb: Using template the Home icon is not appearing [\#3503](https://github.com/primefaces/primevue/issues/3503) +- SplitButton: unexpected call of default action [\#3467](https://github.com/primefaces/primevue/issues/3467) +- Calendar: inline mode accepts focus [\#3452](https://github.com/primefaces/primevue/issues/3452) +- Data Table: groupRowsBy, prop type error [\#3450](https://github.com/primefaces/primevue/issues/3450) +- The focus styling is always set to the first element in List components [\#3447](https://github.com/primefaces/primevue/issues/3447) +- Panel: typo on toggle button props [\#3436](https://github.com/primefaces/primevue/issues/3436) +- MultiSelect: mark text with shift+Home does not work [\#3435](https://github.com/primefaces/primevue/issues/3435) +- PanelMenu: open/close events flipped [\#3434](https://github.com/primefaces/primevue/issues/3434) +- ConfirmPopup: page scrolls up when push the button [\#3432](https://github.com/primefaces/primevue/issues/3432) +- ConfirmDialog: icon element still rendering even when icon property is null [\#3431](https://github.com/primefaces/primevue/issues/3431) +- DataTable/Paginator: Double event fire in JumpToPageInput [\#3409](https://github.com/primefaces/primevue/issues/3409) +- Checkbox: inputClass and inputStyle properties does not apply correctly [\#3406](https://github.com/primefaces/primevue/issues/3406) +- DataTable: Invalid typing for DataTableSortFieldType [\#3403](https://github.com/primefaces/primevue/issues/3403) +- Calendar: Invalid TypeScript definitions for modelValue [\#3400](https://github.com/primefaces/primevue/issues/3400) +- Calendar: Time input doesn't allow PM when typed in [\#3398](https://github.com/primefaces/primevue/issues/3398) +- FileUpload Missing TypeDefinitions for Callbacks in \#content slot [\#3396](https://github.com/primefaces/primevue/issues/3396) +- TieredMenu: Menu commands in the TieredMenu don't receive any arguments [\#3391](https://github.com/primefaces/primevue/issues/3391) +- PanelMenu: passing computed value as a model prop [\#3166](https://github.com/primefaces/primevue/issues/3166) +- Editor: Can not click change color text and background color in Editor [\#3097](https://github.com/primefaces/primevue/issues/3097) +- Sidebar overlay not removed after changing position [\#1823](https://github.com/primefaces/primevue/issues/1823) + +## [3.21.0](https://github.com/primefaces/primevue/tree/3.21.0) (2022-12-08) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.20.0...3.21.0) + +**Implemented New Features and Enhancements:** + +- MultiSelect: Very long selection time due to Chips [\#3380](https://github.com/primefaces/primevue/issues/3380) +- Improve Message Implementation for Accessibility [\#3370](https://github.com/primefaces/primevue/issues/3370) +- Improve Toast Implementation for Accessibility [\#3369](https://github.com/primefaces/primevue/issues/3369) +- Add gap when Toolbar wraps [\#3366](https://github.com/primefaces/primevue/issues/3366) +- Center content to Toolbar [\#3365](https://github.com/primefaces/primevue/issues/3365) +- Deprecate Toolbar CSS classes [\#3364](https://github.com/primefaces/primevue/issues/3364) +- Improve Tree Implementation for Accessibility [\#3360](https://github.com/primefaces/primevue/issues/3360) +- Calendar: Chrome autocomplete list is overlaying the data picker model [\#3355](https://github.com/primefaces/primevue/issues/3355) +- Improve SpeedDial Implementation for Accessibility [\#3353](https://github.com/primefaces/primevue/issues/3353) +- When clicking any menuitem in the Menu components, it always focuses on the first menuitem [\#3352](https://github.com/primefaces/primevue/issues/3352) +- Improve Image Implementation for Accessibility [\#3351](https://github.com/primefaces/primevue/issues/3351) +- AutoComplete: new `dropdownClass` prop [\#3350](https://github.com/primefaces/primevue/issues/3350) +- Improve Galleria Implementation for Accessibility [\#3349](https://github.com/primefaces/primevue/issues/3349) +- Improve Carousel Implementation for Accessibility [\#3348](https://github.com/primefaces/primevue/issues/3348) +- Improve SplitButton Implementation for Accessibility [\#3344](https://github.com/primefaces/primevue/issues/3344) +- Improve search operation on PanelMenu [\#3342](https://github.com/primefaces/primevue/issues/3342) +- Improve Chart Component Implementation for Accessibility [\#3333](https://github.com/primefaces/primevue/issues/3333) +- Improve DataTable Implementation for Accessibility [\#3330](https://github.com/primefaces/primevue/issues/3330) +- Improve PickList Implementation for Accessibility [\#3323](https://github.com/primefaces/primevue/issues/3323) +- Improve OrderList Implementation for Accessibility [\#3321](https://github.com/primefaces/primevue/issues/3321) +- Improve TreeTable Implementation for Accessibility [\#3319](https://github.com/primefaces/primevue/issues/3319) +- Improve DataView Implementation for Accessibility [\#3310](https://github.com/primefaces/primevue/issues/3310) +- Improve Paginator Implementation for Accessibility [\#3304](https://github.com/primefaces/primevue/issues/3304) +- Improve OrganizationChart Implementation for Accessibility [\#3302](https://github.com/primefaces/primevue/issues/3302) +- Improve Timeline Implementation for Accessibility [\#3296](https://github.com/primefaces/primevue/issues/3296) +- Dropdown: add keyboard support for Numpad Enter [\#3257](https://github.com/primefaces/primevue/issues/3257) +- Calendar: Accessibility for Material themes [\#2900](https://github.com/primefaces/primevue/issues/2900) + +**Fixed bugs:** + +- Password: Eye icon problem in MS Edge and IE [\#3372](https://github.com/primefaces/primevue/issues/3372) +- Menubar: No items property fails to compile [\#3359](https://github.com/primefaces/primevue/issues/3359) +- TabMenu: we can not use tab-change event with menuitem templating [\#3357](https://github.com/primefaces/primevue/issues/3357) +- FileUpload Missing TypeDefinitions for Slots [\#3335](https://github.com/primefaces/primevue/issues/3335) +- Multiselect Uncaught TypeError [\#3329](https://github.com/primefaces/primevue/issues/3329) +- AutoComplete: the forceSelection property causes inconsistent behavior when the value is removed [\#3161](https://github.com/primefaces/primevue/issues/3161) +- Dropdown: Long list causes the page to have a long scroll bar [\#3031](https://github.com/primefaces/primevue/issues/3031) + +## [3.20.0](https://github.com/primefaces/primevue/tree/3.20.0) (2022-11-18) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.19.0...3.20.0) + +**Implemented New Features and Enhancements:** + +- OverlayPanel: deprecate `ariaCloseLabel` prop [\#3287](https://github.com/primefaces/primevue/issues/3287) +- Improve Inplace Implementation for Accessibility [\#3286](https://github.com/primefaces/primevue/issues/3286) +- Improve ProgressBar Implementation for Accessibility [\#3284](https://github.com/primefaces/primevue/issues/3284) +- Improve Chip Implementation for Accessibility [\#3282](https://github.com/primefaces/primevue/issues/3282) +- Improve BlockUI Implementation for Accessibility [\#3280](https://github.com/primefaces/primevue/issues/3280) +- Improve Badge Implementation for Accessibility [\#3278](https://github.com/primefaces/primevue/issues/3278) +- Improve Tag Implementation for Accessibility [\#3277](https://github.com/primefaces/primevue/issues/3277) +- Improve Ripple Implementation for Accessibility [\#3276](https://github.com/primefaces/primevue/issues/3276) +- Improve Skeleton Implementation for Accessibility [\#3275](https://github.com/primefaces/primevue/issues/3275) +- Improve Avatar Implementation for Accessibility [\#3273](https://github.com/primefaces/primevue/issues/3273) +- Improve ProgressSpinner Implementation for Accessibility [\#3272](https://github.com/primefaces/primevue/issues/3272) +- Improve Terminal Implementation for Accessibility [\#3271](https://github.com/primefaces/primevue/issues/3271) +- Improve ScrollTop Implementation for Accessibility [\#3270](https://github.com/primefaces/primevue/issues/3270) + +**Fixed bugs:** + +- PrimeIcons missing type definition [\#3292](https://github.com/primefaces/primevue/issues/3292) +- Panel: `toggleButtonProps` prop defect [\#3289](https://github.com/primefaces/primevue/issues/3289) +- Fieldset: `toggleButtonProps` prop defect [\#3288](https://github.com/primefaces/primevue/issues/3288) +- Calendar: maxDate with 12-hour formatting restricts values incorrectly [\#3253](https://github.com/primefaces/primevue/issues/3253) + +## [3.19.0](https://github.com/primefaces/primevue/tree/3.19.0) (2022-11-16) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.18.1...3.19.0) + +**Implemented New Features and Enhancements:** + +- Update PrimeFlex 3.3.0 [\#3261](https://github.com/primefaces/primevue/issues/3261) +- Improve OverlayPanel Implementation for Accessibility [\#3254](https://github.com/primefaces/primevue/issues/3254) +- Improve Tooltip Implementation for Accessibility [\#3248](https://github.com/primefaces/primevue/issues/3248) +- Chips | Allow multiple seperators [\#3240](https://github.com/primefaces/primevue/issues/3240) +- Improve ConfirmPopup implementation for Accessibility [\#3236](https://github.com/primefaces/primevue/issues/3236) +- Improve Sidebar implementation for Accessibility [\#3233](https://github.com/primefaces/primevue/issues/3233) +- Improve ConfirmDialog implementation for Accessibility [\#3232](https://github.com/primefaces/primevue/issues/3232) +- Improve Dialog implementation for Accessibility [\#3231](https://github.com/primefaces/primevue/issues/3231) +- FocusTrap Directive [\#3225](https://github.com/primefaces/primevue/issues/3225) +- Splitter: Emit Resize Start event [\#3203](https://github.com/primefaces/primevue/issues/3203) + +**Fixed bugs:** + +- PrimeVue Radiobutton - Mobile - scroll to top [\#3266](https://github.com/primefaces/primevue/issues/3266) +- Calendar: Inline Calendar is jumping when selected mode is range and number of months is more then 1 [\#3247](https://github.com/primefaces/primevue/issues/3247) +- Slider: Range feature not working correctly [\#3238](https://github.com/primefaces/primevue/issues/3238) +- Chips | Cannot remove p-focus [\#3237](https://github.com/primefaces/primevue/issues/3237) +- Menubar: should accept empty items [\#3224](https://github.com/primefaces/primevue/issues/3224) +- Menu: TypeError with only disabled menuitems [\#3223](https://github.com/primefaces/primevue/issues/3223) +- Menubar: Menu Icon in mobile view problem [\#3221](https://github.com/primefaces/primevue/issues/3221) +- DataTable: groupRowsBy has wrong type [\#3219](https://github.com/primefaces/primevue/issues/3219) +- TieredMenu \(and SplitButton\): Jumps to the top of the page [\#3212](https://github.com/primefaces/primevue/issues/3212) + +## [3.18.1](https://github.com/primefaces/primevue/tree/3.18.1) (2022-10-31) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.18.0...3.18.1) + +**Implemented New Features and Enhancements:** + +- Dialog: Allow custom icons for maximizing [\#3192](https://github.com/primefaces/primevue/issues/3192) +- InputNumber: `highlightOnFocus` property [\#3179](https://github.com/primefaces/primevue/issues/3179) +- Inplace: Allow custom icons [\#3134](https://github.com/primefaces/primevue/issues/3134) +- Slider: Range slider can not be dragged to the left when both thumbs overlap [\#3104](https://github.com/primefaces/primevue/issues/3104) +- Calendar: Allow custom icons [\#3081](https://github.com/primefaces/primevue/issues/3081) +- Toast: Allow custom icons [\#3061](https://github.com/primefaces/primevue/issues/3061) +- Message: Allow custom icons [\#3059](https://github.com/primefaces/primevue/issues/3059) +- Sidebar: Allow custom icons [\#3057](https://github.com/primefaces/primevue/issues/3057) +- Dialog: Allow custom icons [\#3054](https://github.com/primefaces/primevue/issues/3054) +- Chips: Allow custom icons [\#3052](https://github.com/primefaces/primevue/issues/3052) + +**Fixed bugs:** + +- PanelMenu: Can't resolve DomHandler [\#3198](https://github.com/primefaces/primevue/issues/3198) +- ContextMenu: attributes could not be automatically inherited [\#3197](https://github.com/primefaces/primevue/issues/3197) +- DataTable: the table is broken in 3.18.0 [\#3189](https://github.com/primefaces/primevue/issues/3189) +- Menubar: \#item slot is never called [\#3177](https://github.com/primefaces/primevue/issues/3177) +- OverlayPanel: Missing type defination [\#3168](https://github.com/primefaces/primevue/issues/3168) +- Tooltip: loose reactivity when the content is empty [\#3163](https://github.com/primefaces/primevue/issues/3163) +- ContextMenu | does not close when left click outside of menu [\#3158](https://github.com/primefaces/primevue/issues/3158) +- Breadcrumb: SSR Error window is not defined [\#3156](https://github.com/primefaces/primevue/issues/3156) +- Calendar | set readonly prop to readonly attribute [\#3155](https://github.com/primefaces/primevue/issues/3155) +- FileUpload: Failed to resolve the Badge and Button components [\#3154](https://github.com/primefaces/primevue/issues/3154) +- Menu.vue: seperatorClass is not a function [\#3151](https://github.com/primefaces/primevue/issues/3151) +- AutoComplete: mark text with shift+Home does not work. [\#3140](https://github.com/primefaces/primevue/issues/3140) +- Calendar in inline : Cannot read properties of undefined \(reading 'focus'\) [\#3108](https://github.com/primefaces/primevue/issues/3108) +- Can select disabled options in multiselect [\#3094](https://github.com/primefaces/primevue/issues/3094) +- Dropdown: OptionGroup disappear with filter [\#3078](https://github.com/primefaces/primevue/issues/3078) +- MultiSelect group labels disappear when filtering [\#3068](https://github.com/primefaces/primevue/issues/3068) +- Calendar: locale am & pm not work on time picker panel [\#2952](https://github.com/primefaces/primevue/issues/2952) +- ScrollPanel Bars visible with Browser Zoom [\#2137](https://github.com/primefaces/primevue/issues/2137) + +## [3.18.0](https://github.com/primefaces/primevue/tree/3.18.0) (2022-10-24) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.17.0...3.18.0) + +**Implemented New Features and Enhancements:** + +- Update primeicons dependency on build [\#3139](https://github.com/primefaces/primevue/issues/3139) +- Improve MegaMenu implementation for Accessibility [\#3125](https://github.com/primefaces/primevue/issues/3125) +- FileUpload: Templating for advance upload [\#3111](https://github.com/primefaces/primevue/issues/3111) +- Paginator: Responsive breakpoints [\#3110](https://github.com/primefaces/primevue/issues/3110) +- Improve TieredMenu implementation for Accessibility [\#3100](https://github.com/primefaces/primevue/issues/3100) +- Improve PanelMenu implementation for Accessibility [\#3099](https://github.com/primefaces/primevue/issues/3099) +- Improve Dock implementation for Accessibility [\#3092](https://github.com/primefaces/primevue/issues/3092) +- Improve Menu implementation for Accessibility [\#3085](https://github.com/primefaces/primevue/issues/3085) +- InputNumber : pass formattedValue to input event [\#3047](https://github.com/primefaces/primevue/issues/3047) +- Improve TabMenu implementation for Accessibility [\#3043](https://github.com/primefaces/primevue/issues/3043) +- Improve Steps implementation for Accessibility [\#3026](https://github.com/primefaces/primevue/issues/3026) +- Improve ContextMenu implementation for Accessibility [\#3021](https://github.com/primefaces/primevue/issues/3021) +- Improve Menubar implementation for Accessibility [\#3020](https://github.com/primefaces/primevue/issues/3020) +- CascadeSelect: input-text class [\#3013](https://github.com/primefaces/primevue/issues/3013) +- Multiselect: Allow custom icons [\#3008](https://github.com/primefaces/primevue/issues/3008) +- Listbox: Allow custom icons [\#3006](https://github.com/primefaces/primevue/issues/3006) +- AutoComplete: Allow custom icons [\#3004](https://github.com/primefaces/primevue/issues/3004) +- Update PrimeIcons v6.0.1 [\#3003](https://github.com/primefaces/primevue/issues/3003) +- CascadeSelect: Allow custom icons [\#3000](https://github.com/primefaces/primevue/issues/3000) +- Dropdown: Allow custom icons [\#2998](https://github.com/primefaces/primevue/issues/2998) +- Improve Breadcrumb implementation for Accessibility [\#2977](https://github.com/primefaces/primevue/issues/2977) +- FileUpload | new `content` slot [\#2974](https://github.com/primefaces/primevue/issues/2974) + +**Fixed bugs:** + +- Speeddial items visible even if MenuItem object property "visible" is false [\#3131](https://github.com/primefaces/primevue/issues/3131) +- Tree: Missing types for tree node [\#3106](https://github.com/primefaces/primevue/issues/3106) +- InputNumber: support highlight on focus property [\#3067](https://github.com/primefaces/primevue/issues/3067) +- Toast z-index is removed before toast animation is done [\#3050](https://github.com/primefaces/primevue/issues/3050) +- Calendar: keyboard support bug when there is a disable date next to the focused date [\#3032](https://github.com/primefaces/primevue/issues/3032) +- Dropdown: Long list causes the page to have a long scroll bar [\#3031](https://github.com/primefaces/primevue/issues/3031) +- Galleria: Using touch to move to the next image will allow to go further than the last image [\#3028](https://github.com/primefaces/primevue/issues/3028) +- InputText: Floating label with placeholder [\#3018](https://github.com/primefaces/primevue/issues/3018) +- Ripple: not properly destroyed cases [\#3015](https://github.com/primefaces/primevue/issues/3015) +- ToggleButton: focus-visible not triggered by keyboard navigation [\#2997](https://github.com/primefaces/primevue/issues/2997) +- Calendar| overlay not visible on second click unless user clicks away first [\#2990](https://github.com/primefaces/primevue/issues/2990) +- TabView: Next button is not disabled when all the tabs are visible [\#2987](https://github.com/primefaces/primevue/issues/2987) +- Password: disabled property not working [\#2958](https://github.com/primefaces/primevue/issues/2958) +- MultiSelect: Scroll to focused item on select [\#2957](https://github.com/primefaces/primevue/issues/2957) +- Toast: Close button resizes on longer text [\#2949](https://github.com/primefaces/primevue/issues/2949) + +## [3.17.0](https://github.com/primefaces/primevue/tree/3.17.0) (2022-09-08) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.16.2...3.17.0) + +**Implemented New Features and Enhancements:** + +- Add prettier to standardize formatting [\#2939](https://github.com/primefaces/primevue/issues/2939) +- Carousel: Navigators and indicators control props [\#2928](https://github.com/primefaces/primevue/issues/2928) +- Password | missing `required` property [\#2921](https://github.com/primefaces/primevue/issues/2921) +- Improve ScrollPanel implementation for Accessibility [\#2920](https://github.com/primefaces/primevue/issues/2920) +- Improve focus method to Components [\#2918](https://github.com/primefaces/primevue/issues/2918) +- Add `autoFilterFocus` property to Dropdown and MultiSelect [\#2916](https://github.com/primefaces/primevue/issues/2916) +- Improve Splitter implementation for Accessibility [\#2913](https://github.com/primefaces/primevue/issues/2913) +- New `iconClass` property for Button component [\#2911](https://github.com/primefaces/primevue/issues/2911) +- Improve Toolbar implementation for Accessibility [\#2909](https://github.com/primefaces/primevue/issues/2909) +- Improve Panel implementation for Accessibility [\#2908](https://github.com/primefaces/primevue/issues/2908) +- Improve Fieldset implementation for Accessibility [\#2907](https://github.com/primefaces/primevue/issues/2907) +- Improve Divider implementation for Accessibility [\#2906](https://github.com/primefaces/primevue/issues/2906) +- Improve Deferred Content implementation for Accessibility [\#2905](https://github.com/primefaces/primevue/issues/2905) +- Improve Card implementation for Accessibility [\#2904](https://github.com/primefaces/primevue/issues/2904) +- Add `selectOnFocus` property to Overlay components [\#2902](https://github.com/primefaces/primevue/issues/2902) +- Improve TabView implementation for Accessibility [\#2896](https://github.com/primefaces/primevue/issues/2896) +- Improve Accordion implementation for Accessibility [\#2895](https://github.com/primefaces/primevue/issues/2895) +- Dropdown: Prevent show of overlay when pressing meta key [\#2886](https://github.com/primefaces/primevue/issues/2886) +- ConfirmDialog : Add support for "Message" slot template, similar to ConfirmPopup [\#2884](https://github.com/primefaces/primevue/issues/2884) +- Add resetFilterOnHide property to Dropdown [\#2846](https://github.com/primefaces/primevue/issues/2846) +- Add icon templating to Rating [\#2834](https://github.com/primefaces/primevue/issues/2834) +- Add `modules` property to Editor [\#2498](https://github.com/primefaces/primevue/issues/2498) + +**Fixed bugs:** + +- Calendar | input disabled does not work [\#2935](https://github.com/primefaces/primevue/issues/2935) +- Update for props typing in .vue files [\#2926](https://github.com/primefaces/primevue/issues/2926) +- Textarea: resize height when window resized if autoResize is true [\#2919](https://github.com/primefaces/primevue/issues/2919) +- Tooltip: add type/empty check for its value [\#2903](https://github.com/primefaces/primevue/issues/2903) +- MultiSelect: filtering causes labels of currently selected values to display "null" [\#2901](https://github.com/primefaces/primevue/issues/2901) +- The type of inputProps prop requires every possible attribute for HTMLInputElement type [\#2891](https://github.com/primefaces/primevue/issues/2891) +- SpeedDial: Cannot use Scoped Slot to customize items [\#2889](https://github.com/primefaces/primevue/issues/2889) +- Password: When its value is dynamically set, the strength indicator is not updated [\#2885](https://github.com/primefaces/primevue/issues/2885) +- AutoComplete: setTimeout\(\) in hide-function sometimes causes NULL-Pointer Exception [\#2881](https://github.com/primefaces/primevue/issues/2881) +- Password: Unable to add invalid event listener after 3.16 [\#2880](https://github.com/primefaces/primevue/issues/2880) +- Editor Quill: SSR error document is not defined [\#2842](https://github.com/primefaces/primevue/issues/2842) +- ConfirmDialog won't the reject event be triggered when closing things? [\#2821](https://github.com/primefaces/primevue/issues/2821) +- Calendar: inline calendar force scroll into viewport when disabledDates changed [\#2803](https://github.com/primefaces/primevue/issues/2803) + +## [3.16.2](https://github.com/primefaces/primevue/tree/3.16.2) (2022-08-23) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.16.1...3.16.2) + +**Fixed bugs:** + +- Dropdown: UpArrow triggers "Uncaught TypeError: this.visibleOptions.slice\(...\).findLastIndex is not a function" Firefox, Nuxt 3 [\#2872](https://github.com/primefaces/primevue/issues/2872) +- OverlayPanel: Doesn't work in SSR [\#2871](https://github.com/primefaces/primevue/issues/2871) +- Tooltip: `escape`, `disabled` and `fitContent` properties should not accept string as a value [\#2868](https://github.com/primefaces/primevue/issues/2868) +- AutoComplete: Typescript compilation error due to a typo in the t.ds definition file [\#2866](https://github.com/primefaces/primevue/issues/2866) +- InputNumber: disabled prop is not passed to input text [\#2864](https://github.com/primefaces/primevue/issues/2864) +- InputNumber: invalid 'placeholder' prop type \(TS only\) [\#2863](https://github.com/primefaces/primevue/issues/2863) +- Calendar: showOtherMonths - does not match the description in the documentation [\#2810](https://github.com/primefaces/primevue/issues/2810) +- Datatable rows are not the full width in scroll both mode [\#2622](https://github.com/primefaces/primevue/issues/2622) + +## [3.16.1](https://github.com/primefaces/primevue/tree/3.16.1) (2022-08-17) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.16.0...3.16.1) + +**Fixed bugs:** + +- Header checkbox is not styled as expected in Material themes. [\#2856](https://github.com/primefaces/primevue/issues/2856) +- Types: Missing types in PrimeVueLocaleOptions [\#2855](https://github.com/primefaces/primevue/issues/2855) +- Overlay components don't work with SSR [\#2853](https://github.com/primefaces/primevue/issues/2853) +- Editor | selection-change typing error [\#2852](https://github.com/primefaces/primevue/issues/2852) +- InputNumber : incrementButtonClass does not working [\#2850](https://github.com/primefaces/primevue/issues/2850) +- Dropdown: Cannot read properties of undefined \(reading 'replaceAll'\) [\#2848](https://github.com/primefaces/primevue/issues/2848) +- Dropdown and MultiSelect: TS2322 compilcation error [\#2845](https://github.com/primefaces/primevue/issues/2845) +- CDN Script fails [\#2844](https://github.com/primefaces/primevue/issues/2844) +- AutoComplete: completeOnFocus with keyboard navigation [\#2824](https://github.com/primefaces/primevue/issues/2824) + +## [3.16.0](https://github.com/primefaces/primevue/tree/3.16.0) (2022-08-15) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.15.0...3.16.0) + +**Breaking Changes:** + +- Accessibility for Form Components [\#2838](https://github.com/primefaces/primevue/issues/2838) +- Improve CascadeSelect implementation for Accessibility [\#2831](https://github.com/primefaces/primevue/issues/2831) +- Improve AutoComplete implementation for Accessibility [\#2822](https://github.com/primefaces/primevue/issues/2822) +- Improve Listbox implementation for Accessibility [\#2819](https://github.com/primefaces/primevue/issues/2819) +- Improve MultiSelect implementation for Accessibility [\#2814](https://github.com/primefaces/primevue/issues/2814) +- Improve Dropdown implementation for Accessibility [\#2811](https://github.com/primefaces/primevue/issues/2811) + +**Implemented New Features and Enhancements:** + +- Editor | new `selection-change` event [\#2829](https://github.com/primefaces/primevue/issues/2829) +- SelectButton | new `unselectable` property [\#2826](https://github.com/primefaces/primevue/issues/2826) +- Add tabindex property to VirtualScroller [\#2813](https://github.com/primefaces/primevue/issues/2813) +- Add new message options to PrimeVue API [\#2812](https://github.com/primefaces/primevue/issues/2812) +- New inputClass and inputStyle properties [\#2801](https://github.com/primefaces/primevue/issues/2801) +- Timeline: new item and index slot props for connector slot [\#2771](https://github.com/primefaces/primevue/issues/2771) +- Add getVirtualScrollerRef method to DataTable to access virtualScroller's reference [\#2756](https://github.com/primefaces/primevue/issues/2756) +- The scrollToIndex method doesn't work as expected [\#2755](https://github.com/primefaces/primevue/issues/2755) +- Slider: key support [\#2735](https://github.com/primefaces/primevue/issues/2735) +- Add color-scheme style to Themes [\#2730](https://github.com/primefaces/primevue/issues/2730) +- PickList: Disable show source and target buttons [\#2697](https://github.com/primefaces/primevue/issues/2697) +- Add hideOnRangeSelection property to Calendar [\#2684](https://github.com/primefaces/primevue/issues/2684) +- ConfirmDialog: closeOnEscape support [\#2675](https://github.com/primefaces/primevue/issues/2675) +- OverlayPanel's dismissable prop can't be changed dynamically [\#2540](https://github.com/primefaces/primevue/issues/2540) +- New `exportFooter` property for Exportable DataTable [\#2395](https://github.com/primefaces/primevue/issues/2395) + +**Fixed bugs:** + +- Tooltip : Displays empty value [\#2788](https://github.com/primefaces/primevue/issues/2788) +- appendTo prop TypeScript typing disallows usage of HTML elements [\#2780](https://github.com/primefaces/primevue/issues/2780) +- DataTable v3: Cannot use the editorCancelCallBack / editorSaveCallback while editing in cell mode [\#2754](https://github.com/primefaces/primevue/issues/2754) +- Dropdown: with template and no placeholder shows p-emptylabel as placeholder [\#2751](https://github.com/primefaces/primevue/issues/2751) +- Checkbox, RadioButton: should not pointer cursor when is disabled [\#2745](https://github.com/primefaces/primevue/issues/2745) +- Paginator: slot typescript error [\#2738](https://github.com/primefaces/primevue/issues/2738) +- DataTable: No onLazyLoad property in virtualScrollerOptions props [\#2729](https://github.com/primefaces/primevue/issues/2729) +- DropDown: Filter with Virtual Scroll does not work as expected [\#2715](https://github.com/primefaces/primevue/issues/2715) +- Component: Type error for InputNumber's class [\#2712](https://github.com/primefaces/primevue/issues/2712) +- Calendar: Incorrect TypeScript typing of date slot [\#2703](https://github.com/primefaces/primevue/issues/2703) +- Dynamic Dialog : style property TypeScript error [\#2699](https://github.com/primefaces/primevue/issues/2699) +- Component: Calendar @month-change returns 0-11 and 1-12 [\#2696](https://github.com/primefaces/primevue/issues/2696) +- Menu, Menubar, ContextMenu, TieredMenu: Extra spacing when no icon [\#2695](https://github.com/primefaces/primevue/issues/2695) +- Calendar: wrong overlay position [\#2689](https://github.com/primefaces/primevue/issues/2689) +- Splitter: mobile resize fails [\#2513](https://github.com/primefaces/primevue/issues/2513) +- Carousel autoplay not working with static data [\#2356](https://github.com/primefaces/primevue/issues/2356) + +## [3.15.0](https://github.com/primefaces/primevue/tree/3.15.0) (2022-06-15) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.13.1...3.15.0) + +**Implemented New Features and Enhancements:** + +- Avatar | New error event [\#2670](https://github.com/primefaces/primevue/issues/2670) +- MultiSelect | resetFilterOnHide property [\#2664](https://github.com/primefaces/primevue/issues/2664) +- Add after-hide event to Dialog [\#2662](https://github.com/primefaces/primevue/issues/2662) +- New Image error event [\#2661](https://github.com/primefaces/primevue/issues/2661) +- New Component: DynamicDialog [\#2653](https://github.com/primefaces/primevue/issues/2653) + +**Fixed bugs:** + +- Dialog bottom has no border radius when footer does not exist [\#2673](https://github.com/primefaces/primevue/issues/2673) +- ColorPicker: inline mode doesn't work [\#2656](https://github.com/primefaces/primevue/issues/2656) +- Tooltip: ZIndex is cleared on wrong element [\#2649](https://github.com/primefaces/primevue/issues/2649) +- DataTable: when using v-model:selection the checkbox appears checked when the table has no items [\#2637](https://github.com/primefaces/primevue/issues/2637) +- DTHeaderCheckbox: browser displays the "pointer" cursor when disabled [\#2635](https://github.com/primefaces/primevue/issues/2635) +- DataTable: Header columns and row columns doesn't resize together with Virtual Scroller and resizable columns [\#2630](https://github.com/primefaces/primevue/issues/2630) + +## [3.13.1](https://github.com/primefaces/primevue/tree/3.13.1) (2022-06-07) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.13.0...3.13.1) + +**Fixed bugs:** + +- Script: CDN Script Fail [\#2642](https://github.com/primefaces/primevue/issues/2642) + +## [3.13.0](https://github.com/primefaces/primevue/tree/3.13.0) (2022-06-06) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.12.6...3.13.0) + +**Implemented New Features and Enhancements:** + +- DataTable | new 'p-reorderable-column' class and reorderable columns cursor update [\#2620](https://github.com/primefaces/primevue/issues/2620) +- Add a param to the show\(\) method to focus Dropdown component [\#2619](https://github.com/primefaces/primevue/issues/2619) +- The overlay elements automatically close on mobile devices [\#2618](https://github.com/primefaces/primevue/issues/2618) +- Add Nuxt3 support for components using teleport [\#2602](https://github.com/primefaces/primevue/issues/2602) +- DataTable: support passing a function to the dataKey prop [\#2589](https://github.com/primefaces/primevue/issues/2589) +- Autocomplete | new loadingIcon property [\#2542](https://github.com/primefaces/primevue/issues/2542) +- Tooltip new fitContent property [\#2536](https://github.com/primefaces/primevue/issues/2536) +- Arrow for OverlayPanel doesn't have borders in Lara Light Blue theme [\#2390](https://github.com/primefaces/primevue/issues/2390) +- 'tab' key support on Input Number [\#1518](https://github.com/primefaces/primevue/issues/1518) + +**Fixed bugs:** + +- The maxSelectedLabels props is not working with 0 value on MultiSelect [\#2617](https://github.com/primefaces/primevue/issues/2617) +- Calendar | Could not edit end date with time picker properly [\#2588](https://github.com/primefaces/primevue/issues/2588) +- PanelMenu animation issue [\#2583](https://github.com/primefaces/primevue/issues/2583) +- Add null types to InputText and Password [\#2576](https://github.com/primefaces/primevue/issues/2576) +- Step tabs not highlighted correctly for named routes [\#2568](https://github.com/primefaces/primevue/issues/2568) +- DataTable | column reorder is broken with hidden column [\#2562](https://github.com/primefaces/primevue/issues/2562) +- Column node declaration TypeScript error [\#2553](https://github.com/primefaces/primevue/issues/2553) +- DataTable \#loading overridden template is not always rendered [\#2547](https://github.com/primefaces/primevue/issues/2547) +- Dropdown duplicates options key [\#2545](https://github.com/primefaces/primevue/issues/2545) +- Header elements in DataTable with virtualScroller are not in the correct position on the scroll. [\#2534](https://github.com/primefaces/primevue/issues/2534) +- Sub-items in PanelMenu does not receive the `router-link-active` class [\#2528](https://github.com/primefaces/primevue/issues/2528) +- InputText and Textarea duplicating custom class\(es\) in DOM element [\#2522](https://github.com/primefaces/primevue/issues/2522) +- Carousel: Display issues when loading less items that the allocated slots [\#2516](https://github.com/primefaces/primevue/issues/2516) +- Missing invalid float label color [\#2510](https://github.com/primefaces/primevue/issues/2510) +- Calendar resize listener bug [\#2509](https://github.com/primefaces/primevue/issues/2509) +- The default severity of the InlineMessage is info, but in the code the default severity is 'error'. [\#2507](https://github.com/primefaces/primevue/issues/2507) +- \[BUG\] DataTable column reorder in wrong order [\#2225](https://github.com/primefaces/primevue/issues/2225) +- \[BUG\] Range slider cannot be set to \[min, min\] [\#2104](https://github.com/primefaces/primevue/issues/2104) + +## [3.12.6](https://github.com/primefaces/primevue/tree/3.12.5) (2022-04-27) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.12.5...3.12.6) + +**Implemented New Features and Enhancements:** + +- InputNumber new readonly attribute [\#2469](https://github.com/primefaces/primevue/issues/2469) +- New Primary Color [\#2462](https://github.com/primefaces/primevue/issues/2462) +- FileUpload | Customizable Icons [\#2401](https://github.com/primefaces/primevue/issues/2401) +- Extend TreeNode API with expandedIcon & collapsedIcon [\#2108](https://github.com/primefaces/primevue/issues/2108) +- Sidebar new header templating [\#1939](https://github.com/primefaces/primevue/issues/1939) + +**Fixed bugs:** + +- Error in console when Password component get prop "inputClass" with Object type [\#2487](https://github.com/primefaces/primevue/issues/2487) + +## [3.12.5](https://github.com/primefaces/primevue/tree/3.12.5) (2022-04-13) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.12.4...3.12.5) + +**Fixed bugs:** + +- Toast | z-index shouldn't removed when other toasts are shown [\#2434](https://github.com/primefaces/primevue/issues/2434) +- ConfirmDialog: 'position' TypeScript errors [\#2381](https://github.com/primefaces/primevue/issues/2381) +- TreeTable and DataTable | Typescript Definition Bug for global Filters [\#2378](https://github.com/primefaces/primevue/issues/2378) +- Timeline component: type TimelineVerticalAlignType lack of enum value of 'alternate' [\#2367](https://github.com/primefaces/primevue/issues/2367) +- Menu | disabled property as a function is not working with command prop [\#2365](https://github.com/primefaces/primevue/issues/2365) + +## [3.12.4](https://github.com/primefaces/primevue/tree/3.12.4) (2022-03-31) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.12.3...3.12.4) + +**Fixed bugs:** + +- StyleClass may fail to enter the element defect [\#2382](https://github.com/primefaces/primevue/issues/2382) + +## [3.12.3](https://github.com/primefaces/primevue/tree/3.12.3) (2022-03-30) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.12.2...3.12.3) + +**Implemented New Features and Enhancements:** + +- Accordion | New expandIcon and collapseIcon properties [\#2373](https://github.com/primefaces/primevue/issues/2373) +- Tooltip | Escape Support [\#2363](https://github.com/primefaces/primevue/issues/2363) +- DataView new dataKey property [\#2361](https://github.com/primefaces/primevue/issues/2361) +- Numpad comma separator support for Chips [\#2349](https://github.com/primefaces/primevue/issues/2349) + +**Fixed bugs:** + +- StyleClass may fail to enter the element [\#2371](https://github.com/primefaces/primevue/issues/2371) +- Calendar | Loses alignment when positioned at the top of the input and the user clicks in the year/month [\#2369](https://github.com/primefaces/primevue/issues/2369) +- The v-ripple directive breaks the behavior of list components in Firefox [\#2333](https://github.com/primefaces/primevue/issues/2333) +- Align overlay not working correctly in ConfirmPopup [\#2038](https://github.com/primefaces/primevue/issues/2038) + +## [3.12.2](https://github.com/primefaces/primevue/tree/3.12.2) (2022-03-16) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.12.1...3.12.2) + +**Implemented New Features and Enhancements:** + +- New DataTable editor callbacks [\#2312](https://github.com/primefaces/primevue/issues/2312) + +**Fixed bugs:** + +- Type declaration and export bug on ConfirmationService [\#2266](https://github.com/primefaces/primevue/issues/2266) +- The type declaration for global property $primevue is not woking in Vue3 [\#2315](https://github.com/primefaces/primevue/issues/2315) +- Colspan defect with hidden Columns [\#2310](https://github.com/primefaces/primevue/issues/2310) +- DataTable with edit, sort and filter options does not work as expected [\#2271](https://github.com/primefaces/primevue/issues/2271) +- InputSwitch TypeScript modelValue error [\#2262](https://github.com/primefaces/primevue/issues/2262) +- Data Table row checkboxes propagate click events leading to double-handling of row select/unselect [\#2259](https://github.com/primefaces/primevue/issues/2259) +- Pressing Enter/Return key submits form when there is a single MultiSelect and it has focus [\#2241](https://github.com/primefaces/primevue/issues/2241) +- Multiselect with Grouped Data, select all options [\#2168](https://github.com/primefaces/primevue/issues/2168) +- filterMatchMode option is ignored in MultiSelect [\#2162](https://github.com/primefaces/primevue/issues/2162) +- Range slider get stuck when both handle on max value [\#2074](https://github.com/primefaces/primevue/issues/2074) +- Bug: Tooltip shown at wrong place [\#1976](https://github.com/primefaces/primevue/issues/1976) +- FileUpload: Custom upload bug on clear list [\#1723](https://github.com/primefaces/primevue/issues/1723) + +## [3.12.1](https://github.com/primefaces/primevue/tree/3.12.1) (2022-03-02) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.12.0...3.12.1) + +**Implemented New Features and Enhancements:** + +- Added InputNumber focus and blur events [\#2235](https://github.com/primefaces/primevue/issues/2235) +- Add p-button-\* class support to SplitButton [\#2230](https://github.com/primefaces/primevue/issues/2230) +- Calendar keydown event [\#2219](https://github.com/primefaces/primevue/issues/2219) +- Calendar input value added blur event [\#2186](https://github.com/primefaces/primevue/issues/2186) +- PanelMenu keyboard navigation [\#2181](https://github.com/primefaces/primevue/issues/2181) +- Change lara to use system font [\#2180](https://github.com/primefaces/primevue/issues/2180) +- Red Color Palette [\#1944](https://github.com/primefaces/primevue/issues/1944) + +**Fixed bugs:** + +- Galleria containerStyle and containerClass TypeScript error [\#2245](https://github.com/primefaces/primevue/issues/2245) +- Material Calendar | Disabled Calendar getting opacity twice [\#2239](https://github.com/primefaces/primevue/issues/2239) +- DataView DataViewLayoutType TypeScript error [\#2228](https://github.com/primefaces/primevue/issues/2228) +- Material DataTable extension border typo fix [\#2227](https://github.com/primefaces/primevue/issues/2227) +- Inline calendar adds autofocus [\#2212](https://github.com/primefaces/primevue/issues/2212) +- Bug on Dark Themes related with fixed columns [\#2210](https://github.com/primefaces/primevue/issues/2210) +- Lara Light Blue | Primary Button Hover is not Changing [\#2209](https://github.com/primefaces/primevue/issues/2209) +- DataTableFilterMeta TypeScript error [\#2196](https://github.com/primefaces/primevue/issues/2196) +- Toast: add missing 'top-right' ToastPositionType causing Typescript compilation errors [\#2176](https://github.com/primefaces/primevue/issues/2176) +- \[BUG\] Advanced FileUploader in Dialog in IOS [\#2167](https://github.com/primefaces/primevue/issues/2167) +- DataTable row-select and row-unselect index is always undefined [\#2068](https://github.com/primefaces/primevue/issues/2068) +- Dropdown search don't work with Gboard [\#1389](https://github.com/primefaces/primevue/issues/1389) + +## [3.12.0](https://github.com/primefaces/primevue/tree/3.12.0) (2022-02-15) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.11.0...3.12.0) + +**Implemented New Features and Enhancements:** + +- New Calendar focus and blur events [\#2160](https://github.com/primefaces/primevue/issues/2160) +- Calendar | hide timepicker on month/year select [\#2156](https://github.com/primefaces/primevue/issues/2156) +- New stripedRows property for OrderList and PickList [\#2154](https://github.com/primefaces/primevue/issues/2154) +- New input event for Calendar [\#2152](https://github.com/primefaces/primevue/issues/2152) +- MultiSelect | Filter autocomplete attribute support [\#2145](https://github.com/primefaces/primevue/issues/2145) +- Custom Table CSV Export Headers [\#2141](https://github.com/primefaces/primevue/issues/2141) +- Knob | replace surface letters with new surface variables [\#2132](https://github.com/primefaces/primevue/issues/2132) +- Replace surface letters with new surface variables [\#2129](https://github.com/primefaces/primevue/issues/2129) + +**Fixed bugs:** + +- Scrollable TabView forwardIsDisabled defect [\#2169](https://github.com/primefaces/primevue/issues/2169) +- Lara scrollable Tabview highlight defect [\#2165](https://github.com/primefaces/primevue/issues/2165) +- MultiSelect virtual scroll with selected item [\#2158](https://github.com/primefaces/primevue/issues/2158) +- TreeTable Typescript - 'checkbox' missing in TreeTableSelectionModeType [\#2148](https://github.com/primefaces/primevue/issues/2148) +- FullCalendar | Bootstrap background highlight is wrong [\#2143](https://github.com/primefaces/primevue/issues/2143) +- Wrong property name "col" in Treetable/FooterCell [\#2134](https://github.com/primefaces/primevue/issues/2134) +- Multiple SplitterPanels created using v-for directive [\#2120](https://github.com/primefaces/primevue/issues/2120) +- Dropdown virtual scroll and lazy load dropdown with selected item [\#2114](https://github.com/primefaces/primevue/issues/2114) +- Incomplete prop types specified in Column [\#2097](https://github.com/primefaces/primevue/issues/2097) +- OrganizationChart: "value" property improperly defined as "OrganizationChartNode\[\]" in OrganizationChartProps [\#2069](https://github.com/primefaces/primevue/issues/2069) +- ConfirmDialog: 'defaultFocus' property missing from ConfirmationOptions.d.ts, causing TypeScript errors [\#2058](https://github.com/primefaces/primevue/issues/2058) + +## [3.11.1](https://github.com/primefaces/primevue/tree/3.11.1) (2022-01-31) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.11.0...3.11.1) + +**Implemented New Features and Enhancements:** + +- Update themes for datatable list shadow style [\#2025](https://github.com/primefaces/primevue/issues/2025) + +**Fixed bugs:** + +- contentStyle defect on VirtualScroller [\#2064](https://github.com/primefaces/primevue/issues/2064) +- Sidebar: ripple appears in the wrong place [\#2039](https://github.com/primefaces/primevue/issues/2039) +- tailwind theme - wrong styles [\#2023](https://github.com/primefaces/primevue/issues/2023) +- TreeTable | More than 2 Frozen Columns not Compatible with Table Scroll [\#2019](https://github.com/primefaces/primevue/issues/2019) +- TreeTable | ColResize Expand Mode not Compatible with Table Scroll and Frozen [\#1989](https://github.com/primefaces/primevue/issues/1989) +- DataTable Dynamic Row defect [\#1932](https://github.com/primefaces/primevue/issues/1932) + +## [3.11.0](https://github.com/primefaces/primevue/tree/3.11.0) (2022-01-18) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.10.0...3.11.0) + +**Implemented New Features and Enhancements:** + +- Move PrimeFlex v2 Docs to Github [\#2017](https://github.com/primefaces/primevue/issues/2017) +- Update themes for list shadow style [\#2008](https://github.com/primefaces/primevue/issues/2008) +- Improve resizable structure on DataTable [\#2001](https://github.com/primefaces/primevue/issues/2001) +- PrimeFlex 3 update for PrimeVue showcase [\#1977](https://github.com/primefaces/primevue/issues/1977) +- Dialog: close button cannot receive focus [\#1975](https://github.com/primefaces/primevue/issues/1975) +- New Color Scheme for Lara Dark [\#1919](https://github.com/primefaces/primevue/issues/1919) +- Templating for SplitButton [\#1795](https://github.com/primefaces/primevue/issues/1795) + +**Fixed bugs:** + +- Tooltip import defect [\#2013](https://github.com/primefaces/primevue/issues/2013) +- Tree node toggler button is shrunk until not visible if label starts to not fit the node [\#2011](https://github.com/primefaces/primevue/issues/2011) +- DataTable | Footer is not align when resize mode is enable [\#2003](https://github.com/primefaces/primevue/issues/2003) +- Dropdown doesn't display empty string [\#1995](https://github.com/primefaces/primevue/issues/1995) +- Tag doesn't show icon when slot is used instead of "value" attribute [\#1993](https://github.com/primefaces/primevue/issues/1993) +- Dropdown | filled background problem [\#1980](https://github.com/primefaces/primevue/issues/1980) +- DataTable | ColResize Expand Mode not Compatible with Table Scroll [\#1970](https://github.com/primefaces/primevue/issues/1970) +- DataTable, TreeTable | Checkbox and RadioButton Focus Missing on Material [\#1967](https://github.com/primefaces/primevue/issues/1967) +- Datatable: Inline filterMenuStyle doesn't add css properties [\#1966](https://github.com/primefaces/primevue/issues/1966) +- Update type checking for class properties [\#1959](https://github.com/primefaces/primevue/issues/1959) +- Cannot dynamically set Toast severity [\#1955](https://github.com/primefaces/primevue/issues/1955) +- tooltip type error in SpeedDial.d.ts and Dock.d.ts [\#1945](https://github.com/primefaces/primevue/issues/1945) +- Type definition for 'header' slot missing in TabPanel component [\#1943](https://github.com/primefaces/primevue/issues/1943) +- Calendar: the Year is incorrect for Multiple Months mode [\#1942](https://github.com/primefaces/primevue/issues/1942) +- DataTable: sticky column header doesn't stay fixed [\#1938](https://github.com/primefaces/primevue/issues/1938) +- MenuItem: type of `to` should be `RouteLocationRaw` [\#1933](https://github.com/primefaces/primevue/issues/1933) +- Calendar: the Year is incorrect for Multiple Months mode [\#1924](https://github.com/primefaces/primevue/issues/1924) +- Error while dynamic remove SplitterPanel component. [\#1914](https://github.com/primefaces/primevue/issues/1914) +- DataTable - Paginator doesn't reset on Lazy sort [\#1905](https://github.com/primefaces/primevue/issues/1905) +- header option is missing from confirmoption [\#1902](https://github.com/primefaces/primevue/issues/1902) +- ConfirmationService: require is not defined [\#1897](https://github.com/primefaces/primevue/issues/1897) +- Toast: Production Typescript Build Error: Type detail [\#1856](https://github.com/primefaces/primevue/issues/1856) +- Missing props in ConfirmationOptions.d.ts [\#1852](https://github.com/primefaces/primevue/issues/1852) + +## [3.10.0](https://github.com/primefaces/primevue/tree/3.10.0) (2021-12-07) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.7.0...3.10.0) + +**Implemented New Features and Enhancements:** + +- Calendar | Escape Support For Month and Year Picker [\#1847](https://github.com/primefaces/primevue/issues/1847) +- Add data param to exportCSV method on DataTable [\#1845](https://github.com/primefaces/primevue/issues/1845) +- Improve VirtualScroller implementation for Data components [\#1844](https://github.com/primefaces/primevue/issues/1844) +- Add virtualScroller feature to DataTable [\#1843](https://github.com/primefaces/primevue/issues/1843) +- DataTable component does not work correctly "Checkbox selection" together with "lazy" [\#1841](https://github.com/primefaces/primevue/issues/1841) +- Provide chartjs object when Chart component is totally instantiated [\#1840](https://github.com/primefaces/primevue/issues/1840) +- Improve TypeScript Definitions on all components [\#1836](https://github.com/primefaces/primevue/issues/1836) + +**Fixed bugs:** + +- Calendar | Year Picker and Month Picker empty when using Range and Multiple options [\#1848](https://github.com/primefaces/primevue/issues/1848) +- Calendar manual input doesn't work [\#1825](https://github.com/primefaces/primevue/issues/1825) +- PanelMenu does not use unique IDs [\#1791](https://github.com/primefaces/primevue/issues/1791) + +**Deprecated:** + +- Deprecate keepInvalid of Calendar [\#1849](https://github.com/primefaces/primevue/issues/1849) + +## [3.9.1](https://github.com/primefaces/primevue/tree/3.9.1) (2021-11-18) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.9.0...3.9.1) + +**Breaking Changes:** + +- Rename slots for toolbar [\#1761](https://github.com/primefaces/primevue/issues/1761) + +## [3.9.0](https://github.com/primefaces/primevue/tree/3.9.0) (2021-11-18) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.8.1...3.9.0) + +**Implemented New Features and Enhancements:** + +- Improve table row reorder highlight [\#1777](https://github.com/primefaces/primevue/issues/1777) +- PickList slots before and after the buttons [\#1758](https://github.com/primefaces/primevue/issues/1758) +- OrderList slots before and after the buttons [\#1757](https://github.com/primefaces/primevue/issues/1757) +- Add responsiveOptions property to Calendar [\#1750](https://github.com/primefaces/primevue/issues/1750) +- New change event for SelectButton [\#1748](https://github.com/primefaces/primevue/issues/1748) +- Year Picker for Calendar [\#1744](https://github.com/primefaces/primevue/issues/1744) +- New Lara Theme Family as the Default Theme [\#1742](https://github.com/primefaces/primevue/issues/1742) +- TreeSelect should automatically scroll to show the selected option [\#1735](https://github.com/primefaces/primevue/issues/1735) +- New rowStyle prop for DataTable [\#1734](https://github.com/primefaces/primevue/issues/1734) +- Update PrimeIcons v5.0.0 [\#1733](https://github.com/primefaces/primevue/issues/1733) +- Material | Use box-shadow for outlined Buttons [\#1729](https://github.com/primefaces/primevue/issues/1729) +- Material Focus Improvements [\#1728](https://github.com/primefaces/primevue/issues/1728) +- ColorPicker: events [\#1719](https://github.com/primefaces/primevue/issues/1719) +- Templating Support for ConfirmPopup [\#1685](https://github.com/primefaces/primevue/issues/1685) +- Default focus button should be configurable for ConfirmDialog [\#1663](https://github.com/primefaces/primevue/issues/1663) +- \[Feature Request\] Disable +- Button on InputNumber when value reach min, max [\#1621](https://github.com/primefaces/primevue/issues/1621) +- Enhanced UI for month and year picker for Calendar [\#1580](https://github.com/primefaces/primevue/issues/1580) +- Dynamic labels for Menu components [\#449](https://github.com/primefaces/primevue/issues/449) + +**Breaking Changes:** + +- Rename slot names for paginatorLeft and paginatorRight [\#1760](https://github.com/primefaces/primevue/issues/1760) +- Lowercase slot names for PickList sourceHeader-targetHeader [\#1759](https://github.com/primefaces/primevue/issues/1759) + +**Fixed bugs:** + +- Cannot select date in calendar in small viewports [\#1775](https://github.com/primefaces/primevue/issues/1775) +- Disabled not working for SelectButton [\#1773](https://github.com/primefaces/primevue/issues/1773) +- Formatting is not applied when keepInvalid is on [\#1772](https://github.com/primefaces/primevue/issues/1772) +- DataTable Focus Row Rectangle on Safari [\#1768](https://github.com/primefaces/primevue/issues/1768) +- DataTable lazy loading paginator defect [\#1766](https://github.com/primefaces/primevue/issues/1766) +- ProgressBar: color text accessibility issue [\#1752](https://github.com/primefaces/primevue/issues/1752) +- Cell editing without editor templating defect [\#1745](https://github.com/primefaces/primevue/issues/1745) +- Missing InputText events [\#1738](https://github.com/primefaces/primevue/issues/1738) +- \[Bug\] PanelMenu template prop type issue [\#1732](https://github.com/primefaces/primevue/issues/1732) +- BUG: Autocomplete \#header slot with autoHighlight option [\#1720](https://github.com/primefaces/primevue/issues/1720) +- Calendar in timeonly mode ignores minDate, maxDate [\#1716](https://github.com/primefaces/primevue/issues/1716) +- DataTable wrong TypeScript definition for row click events [\#1715](https://github.com/primefaces/primevue/issues/1715) +- Calendar manual input 1st digit does not appear [\#1713](https://github.com/primefaces/primevue/issues/1713) +- Calendar manual input not working properly [\#1712](https://github.com/primefaces/primevue/issues/1712) +- optionDisabled prop on Dropdown wrongly typed [\#1705](https://github.com/primefaces/primevue/issues/1705) +- TS Typings for TerminalService are incorrect [\#1701](https://github.com/primefaces/primevue/issues/1701) +- Panel \#icons template causes vue-tsc compile error [\#1698](https://github.com/primefaces/primevue/issues/1698) +- Cannot create dynamic ColumnGroup columns in DataTable [\#1630](https://github.com/primefaces/primevue/issues/1630) +- keyboard navigation is broken in AutoComplete with VirtualScroller [\#1597](https://github.com/primefaces/primevue/issues/1597) +- Carousel swipe function is broken on iOS devices [\#1584](https://github.com/primefaces/primevue/issues/1584) +- DataTable with selectionMode 'multiple' select with shift [\#1562](https://github.com/primefaces/primevue/issues/1562) +- bug ConfirmDialog \(async accept\reject\) [\#1454](https://github.com/primefaces/primevue/issues/1454) + +**Deprecated:** + +- Deprecated props in Calendar [\#1743](https://github.com/primefaces/primevue/issues/1743) + +## [3.8.2](https://github.com/primefaces/primevue/tree/3.8.2) (2021-10-25) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.8.1...3.8.2) + +**Implemented New Features and Enhancements:** + +- Nuxt3 integration [\#1660](https://github.com/primefaces/primevue/issues/1660) +- Update all .d.ts files for events and slots [\#1695](https://github.com/primefaces/primevue/issues/1695) +- Add tableStyle and tableClass to Table [\#1696](https://github.com/primefaces/primevue/issues/1696) +- VirtualScroll update d.ts [\#1687](https://github.com/primefaces/primevue/issues/1687) +- Dropdown should automatically scroll to show the selected option [\#1657](https://github.com/primefaces/primevue/issues/1657) +- BlockUI not working with div as child component [\#1625](https://github.com/primefaces/primevue/issues/1625) +- Accessibility issue with Accordion keyboard navigation [\#1616](https://github.com/primefaces/primevue/issues/1616) + +**Fixed bugs:** + +- Flicker on non-modal Dialogs [\#1697](https://github.com/primefaces/primevue/issues/1697) +- ToastSeverity added .d.ts [\#1690](https://github.com/primefaces/primevue/issues/1690) +- ContextMenu "template" prop type error [\#1688](https://github.com/primefaces/primevue/issues/1688) +- Dragging a Dialog breaks "maximize" feature [\#1684](https://github.com/primefaces/primevue/issues/1684) +- MegaMenu templating not work [\#1679](https://github.com/primefaces/primevue/issues/1679) +- Wrong TypeScript-types for InputText component [\#1674](https://github.com/primefaces/primevue/issues/1674) +- inputNumber class prop type defect [\#1661](https://github.com/primefaces/primevue/issues/1661) +- Menubar templating error [\#1526](https://github.com/primefaces/primevue/issues/1526) + +## [3.8.1](https://github.com/primefaces/primevue/tree/3.8.1) (2021-10-13) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.8.0...3.8.1) + +**Implemented New Features and Enhancements:** + +- Script tag with CDN samples [\#1662](https://github.com/primefaces/primevue/issues/1662) +- disabled props for Inplace [\#1651](https://github.com/primefaces/primevue/issues/1651) + +**Fixed bugs:** + +- Menu Model icon defect for Dock [\#1658](https://github.com/primefaces/primevue/issues/1658) +- Ripple added Dock [\#1652](https://github.com/primefaces/primevue/issues/1652) +- Kebab-case properties are not working on DataTable and TreeTable [\#1646](https://github.com/primefaces/primevue/issues/1646) +- The virtualscroller component is missing in core.min.js [\#1642](https://github.com/primefaces/primevue/issues/1642) +- VirtualScroller.scrollToIndex programming error [\#1610](https://github.com/primefaces/primevue/issues/1610) + +## [3.8.0](https://github.com/primefaces/primevue/tree/3.8.0) (2021-10-05) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.7.2...3.8.0) + +**Breaking Changes:** + +- Support for Filtering and Sorting on Editable DataTable [\#1273](https://github.com/primefaces/primevue/issues/1273) + +**Implemented New Features and Enhancements:** + +- Kebab-case is not supported in some components like DataTable [\#1263](https://github.com/primefaces/primevue/issues/1263) +- Improve sorting performance on DataTable [\#1633](https://github.com/primefaces/primevue/issues/1633) +- Improve accessibility on Editable DataTable [\#1632](https://github.com/primefaces/primevue/issues/1632) +- Add type definition for Utils modules [\#1622](https://github.com/primefaces/primevue/issues/1622) +- Improve scrollbar style on BreadCrumb and TabMenu [\#1620](https://github.com/primefaces/primevue/issues/1620) +- Tailwind theme location typing mistake in Setup docs [\#1614](https://github.com/primefaces/primevue/issues/1614) +- Add class option to Tooltip directive [\#1612](https://github.com/primefaces/primevue/issues/1612) + +**Fixed bugs:** + +- Tiered Menu with Templating throw 'type check failed for prop "template" [\#1638](https://github.com/primefaces/primevue/issues/1638) +- The editingRows property is not working with initial value on DataTable [\#1631](https://github.com/primefaces/primevue/issues/1631) +- The DataTable.d.ts file is missing the 'expansion' field in the $slots class field. [\#1629](https://github.com/primefaces/primevue/issues/1629) +- Paginator's Inputnumber displays index instead of current page [\#1602](https://github.com/primefaces/primevue/issues/1602) +- Vite build with Typescript Module '"vue"' has no exported member 'PluginFunction'. in `ConfirmationService.d.ts` and `ToastService.d.ts` [\#1596](https://github.com/primefaces/primevue/issues/1596) +- InputSwitch - trueValue-falseValue features causes warning [\#1586](https://github.com/primefaces/primevue/issues/1586) +- SpeedDial :hideOnClickOutside="false" is not working [\#1545](https://github.com/primefaces/primevue/issues/1545) + +## [3.7.2](https://github.com/primefaces/primevue/tree/3.7.2) (2021-09-15) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.7.1...3.7.2) + +**Implemented New Features and Enhancements:** + +- Incorrect Sizing due to filter input width of dropdown [\#1519](https://github.com/primefaces/primevue/issues/1519) +- Tooltip: word wrap [\#1512](https://github.com/primefaces/primevue/issues/1512) +- Add getFormatter method to InputNumber [\#1509](https://github.com/primefaces/primevue/issues/1509) +- \[Feature Request\] Add autoHighlight property to AutoComplete [\#1362](https://github.com/primefaces/primevue/issues/1362) + +**Fixed bugs:** + +- InputNumber: setting "min" to anything greater than 0 implies "required" [\#1542](https://github.com/primefaces/primevue/issues/1542) +- BlockUI doesn't get rid of div [\#1537](https://github.com/primefaces/primevue/issues/1537) +- PanelMenu subItems 'to' route configuration breaks menu rendering [\#1536](https://github.com/primefaces/primevue/issues/1536) +- Checkbox causes layout issues when used inside an overflow: auto div [\#1534](https://github.com/primefaces/primevue/issues/1534) +- DataTable - The showClearButton literally doesn't do anything [\#1532](https://github.com/primefaces/primevue/issues/1532) +- DataTable - RowGrouping Breaks Filter Row Column Widths [\#1531](https://github.com/primefaces/primevue/issues/1531) +- Overlay panel hide when clicking on a label inside of it [\#1528](https://github.com/primefaces/primevue/issues/1528) +- Thumbnails are not displayed correctly on Galleria if numVisible is greater than the length of value [\#1523](https://github.com/primefaces/primevue/issues/1523) +- InputNumber: issues with decimal separator for some locales, 0s are added to input [\#1522](https://github.com/primefaces/primevue/issues/1522) +- DataTable doesn't work as expected when the container is resized. [\#1521](https://github.com/primefaces/primevue/issues/1521) +- Extra space between Dropdown and filter list [\#1520](https://github.com/primefaces/primevue/issues/1520) +- Dropdown with filter bug selecting with arrow keys [\#1516](https://github.com/primefaces/primevue/issues/1516) +- Negative sign in front of number is not possible for Finnish or Swedish locale [\#1515](https://github.com/primefaces/primevue/issues/1515) +- Input number caret issue with negatives [\#1513](https://github.com/primefaces/primevue/issues/1513) +- Tooltip: crash when empty\null [\#1511](https://github.com/primefaces/primevue/issues/1511) +- inputnumber : both prefix and currency Input error [\#1510](https://github.com/primefaces/primevue/issues/1510) +- DataTable: Dialog and table problem \(column expansion\) [\#1508](https://github.com/primefaces/primevue/issues/1508) +- DataTable State broken with resizableColumns [\#1505](https://github.com/primefaces/primevue/issues/1505) + +## [3.7.1](https://github.com/primefaces/primevue/tree/3.7.1) (2021-09-06) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.7.0...3.7.1) + +**Implemented New Features and Enhancements:** + +- Add allowEmpty property to InputNumber [\#1502](https://github.com/primefaces/primevue/issues/1502) +- Tailwind Theme [\#1500](https://github.com/primefaces/primevue/issues/1500) + +**Fixed bugs:** + +- Dropdown scrolls top after reopened [\#1501](https://github.com/primefaces/primevue/issues/1501) +- When inputnumber has fractionDigits and suffix, a number cannot be entered into it. [\#1498](https://github.com/primefaces/primevue/issues/1498) +- filterMatchMode option is ignored in Dropdown [\#1496](https://github.com/primefaces/primevue/issues/1496) + +## [3.7.0](https://github.com/primefaces/primevue/tree/3.7.0) (2021-09-01) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.6.4...3.7.0) + +**Implemented New Features and Enhancements:** + +- Change button/maskClassName properties with button/maskClass properties on SpeedDial [\#1495](https://github.com/primefaces/primevue/issues/1495) +- Modal layer enter-leave transition [\#1491](https://github.com/primefaces/primevue/issues/1491) +- Add tooltipOptions property to Dock [\#1490](https://github.com/primefaces/primevue/issues/1490) +- Add tooltipOptions property to SpeedDial [\#1489](https://github.com/primefaces/primevue/issues/1489) +- activeIndex for TabMenu [\#1488](https://github.com/primefaces/primevue/issues/1488) +- Improve responsive behavior of TabView component [\#1486](https://github.com/primefaces/primevue/issues/1486) +- Add appendTo property to Dialog [\#1483](https://github.com/primefaces/primevue/issues/1483) +- start and end slots for MegaMenu, remove default slot [\#1482](https://github.com/primefaces/primevue/issues/1482) +- Image Component [\#1481](https://github.com/primefaces/primevue/issues/1481) +- Add keepInvalid property to Calendar [\#1477](https://github.com/primefaces/primevue/issues/1477) +- Add input event Checkbox [\#1471](https://github.com/primefaces/primevue/issues/1471) +- Add trueValue-falseValue to InputSwitch [\#1470](https://github.com/primefaces/primevue/issues/1470) +- Dropdown, MultiSelect, CascadeSelect, TreeSelect slot for indicator [\#1459](https://github.com/primefaces/primevue/issues/1459) +- Add maxSelectedLabels, selectedItemsLabel and selectAll properties to MultiSelect [\#1455](https://github.com/primefaces/primevue/issues/1455) +- VirtualScroller for Select Components [\#1451](https://github.com/primefaces/primevue/issues/1451) +- Set Paginator Page from InputNumber [\#1447](https://github.com/primefaces/primevue/issues/1447) +- Scrollable Tabs [\#1446](https://github.com/primefaces/primevue/issues/1446) +- InputNumber behaves odd when trying to insert fracitonal digits [\#1441](https://github.com/primefaces/primevue/issues/1441) +- \[feature request\]Please add event while menu/overlay is dismissed. [\#1428](https://github.com/primefaces/primevue/issues/1428) +- Make Dock component mobile friendly [\#1398](https://github.com/primefaces/primevue/issues/1398) +- Checkbox true-value / false-value does not work [\#1320](https://github.com/primefaces/primevue/issues/1320) +- MenuModel - disabled should be a function to support dynamic behavior [\#1293](https://github.com/primefaces/primevue/issues/1293) +- Add router-link-active and router-link-active-exact to menu components [\#1275](https://github.com/primefaces/primevue/issues/1275) +- Add input event for InputSwitch [\#1234](https://github.com/primefaces/primevue/issues/1234) +- Vite support for FullCalendar [\#1211](https://github.com/primefaces/primevue/issues/1211) +- Constants for Toast severities [\#1187](https://github.com/primefaces/primevue/issues/1187) +- InputNumber - Ability to add or remove fraction digits when min-fraction-digits is not set [\#1136](https://github.com/primefaces/primevue/issues/1136) + +**Fixed bugs:** + +- The maskStyle property doesn't work as expected in SpeedDial [\#1494](https://github.com/primefaces/primevue/issues/1494) +- DomHandler imports from wrong module path in SpeedDial component [\#1493](https://github.com/primefaces/primevue/issues/1493) +- Router support for Dock [\#1484](https://github.com/primefaces/primevue/issues/1484) +- CurrentPageReport displays wrong value [\#1475](https://github.com/primefaces/primevue/issues/1475) +- Alignment issue with multiple frozen columns on DataTable [\#1473](https://github.com/primefaces/primevue/issues/1473) +- Dropdown does not correctly handle empty label strings [\#1468](https://github.com/primefaces/primevue/issues/1468) +- Table Header Checkbox not working when lazy loading enabled [\#1467](https://github.com/primefaces/primevue/issues/1467) +- Material themes secondary text color issue [\#1465](https://github.com/primefaces/primevue/issues/1465) +- When Chart component is updated, it throws an exception [\#1463](https://github.com/primefaces/primevue/issues/1463) +- pFrozenColumn is moving when position set to left [\#1461](https://github.com/primefaces/primevue/issues/1461) +- Slotname message is unrecognized in toast template [\#1448](https://github.com/primefaces/primevue/issues/1448) +- Unnecessary horizontal scrollbar displayed with rowgrouping [\#1443](https://github.com/primefaces/primevue/issues/1443) +- Filtered Dropdown unusable on Windows Tablet [\#1411](https://github.com/primefaces/primevue/issues/1411) +- FileUpload Invalid File messages not displaying on repeat attempts [\#1399](https://github.com/primefaces/primevue/issues/1399) +- Calendar WCAG Accessibility Issue with Keyboard Navigation [\#1393](https://github.com/primefaces/primevue/issues/1393) +- Datatable date filter throws uncaught error when invalid date string is entered [\#1392](https://github.com/primefaces/primevue/issues/1392) +- Dropdown onkeydown item search not working properly [\#1390](https://github.com/primefaces/primevue/issues/1390) +- Auto ZIndex Issue with Toast and Sidebar [\#1381](https://github.com/primefaces/primevue/issues/1381) +- DataTable row group and sortable columns are not working together [\#1345](https://github.com/primefaces/primevue/issues/1345) +- input mask - mask affecting dirty state [\#1337](https://github.com/primefaces/primevue/issues/1337) +- DataTable State: columnwidths are not restored correctly when using scrollable and resizableColumns props [\#1311](https://github.com/primefaces/primevue/issues/1311) +- FullCalendar does not use option "backgroundColor" for each events [\#1119](https://github.com/primefaces/primevue/issues/1119) + +## [3.6.4](https://github.com/primefaces/primevue/tree/3.6.4) (2021-08-10) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.6.3...3.6.4) + +**Fixed bugs:** + +- Vue < 3.2 Compatibility [\#1437](https://github.com/primefaces/primevue/issues/1437) + +## [3.6.3](https://github.com/primefaces/primevue/tree/3.6.3) (2021-08-10) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.6.2...3.6.3) + +**Fixed bugs:** + +- Support for scrolling and column groups [\#1314](https://github.com/primefaces/primevue/issues/1314) +- StyleClass does not open overlay when source is clicked again [\#1436](https://github.com/primefaces/primevue/issues/1436) + +## [3.6.2](https://github.com/primefaces/primevue/tree/3.6.2) (2021-08-06) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.6.1...3.6.2) + +**Fixed bugs:** + +- Toast does not clear hide timeout on unmount [\#1415](https://github.com/primefaces/primevue/issues/1415) + +## [3.6.1](https://github.com/primefaces/primevue/tree/3.6.1) (2021-08-05) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.6.0...3.6.1) + +**Implemented New Features and Enhancements:** + +- style and class props for FileUpload [\#1407](https://github.com/primefaces/primevue/issues/1407) +- New v-styleclass directive [\#1405](https://github.com/primefaces/primevue/issues/1405) +- value and disabled props for Tooltip [\#1404](https://github.com/primefaces/primevue/issues/1404) +- New styleClass and contentStyleClass props for Toast [\#1403](https://github.com/primefaces/primevue/issues/1403) + +## [3.6.0](https://github.com/primefaces/primevue/tree/3.6.0) (2021-07-27) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.5.1...3.6.0) + +**Implemented New Features and Enhancements:** + +- New Dock Component [\#1386](https://github.com/primefaces/primevue/issues/1386) +- Gray palette for themes [\#1385](https://github.com/primefaces/primevue/issues/1385) +- New Speed Dial Component [\#1384](https://github.com/primefaces/primevue/issues/1384) +- Responsive Toast [\#1354](https://github.com/primefaces/primevue/issues/1354) +- Responsive TabMenu and Breadcrumb [\#1353](https://github.com/primefaces/primevue/issues/1353) +- Update FullCalendar to 5.7.2 [\#1351](https://github.com/primefaces/primevue/issues/1351) +- Update Chart.js to 3.3.2 [\#1348](https://github.com/primefaces/primevue/issues/1348) +- Row double click for DataTable [\#1347](https://github.com/primefaces/primevue/issues/1347) +- New SplitButton with TieredMenu [\#1313](https://github.com/primefaces/primevue/issues/1313) +- Feature Request: Templating for Toast component [\#1249](https://github.com/primefaces/primevue/issues/1249) +- Custom target for OverlayPanel [\#942](https://github.com/primefaces/primevue/issues/942) +- VirtualScroller Component [\#692](https://github.com/primefaces/primevue/issues/692) + +**Fixed bugs:** + +- Comments in ColumnGroup rows are rendered as \ elements [\#1368](https://github.com/primefaces/primevue/issues/1368) +- Overlay aligning calculation defect [\#1358](https://github.com/primefaces/primevue/issues/1358) +- DataTable cell editing regression [\#1357](https://github.com/primefaces/primevue/issues/1357) +- DataTable row group and resizable column not working together [\#1355](https://github.com/primefaces/primevue/issues/1355) +- Filtering non existing item in dropdown \[filter=true, group=true\] and pressing key down generates error [\#1342](https://github.com/primefaces/primevue/issues/1342) +- Accordion tab-open and tab-close events [\#1329](https://github.com/primefaces/primevue/issues/1329) +- Missing `class` prop on Button component fails Typescript complier [\#1319](https://github.com/primefaces/primevue/issues/1319) +- Tooltips closed on window resize after system keyboard appears on mobile devices [\#1318](https://github.com/primefaces/primevue/issues/1318) +- ProgressBar does not show zero percent [\#1272](https://github.com/primefaces/primevue/issues/1272) + +## [3.5.1](https://github.com/primefaces/primevue/tree/3.5.1) (2021-06-11) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.5.0...3.5.1) + +**Implemented New Features and Enhancements:** + +- Chip templating support for AutoComplete and MultiSelect [\#1341](https://github.com/primefaces/primevue/issues/1341) +- TreeSelect and CascadeSelect material theming improvements [\#1321](https://github.com/primefaces/primevue/issues/1321) +- Toast center positioning enhancement [\#1315](https://github.com/primefaces/primevue/issues/1315) +- Remove button in Chips template [\#1300](https://github.com/primefaces/primevue/issues/1300) +- The TreeSelect shouldn't scroll the Browser when trying to open it with the keyboard [\#1298](https://github.com/primefaces/primevue/issues/1298) + +**Fixed bugs:** + +- AccordionTab error with v-if="false" [\#1339](https://github.com/primefaces/primevue/issues/1339) +- Dynamic columns not showing in Datatable with vue 3.1.1 [\#1323](https://github.com/primefaces/primevue/issues/1323) +- Programmatic PanelMenu header link needs click twice to toggle itself [\#1310](https://github.com/primefaces/primevue/issues/1310) +- Datatable event @value-change return undefined when filtering [\#1308](https://github.com/primefaces/primevue/issues/1308) +- JumpToPageDropdown are numbered from 0 instead of 1 [\#1306](https://github.com/primefaces/primevue/issues/1306) +- Upload button disable on FileUpload [\#1294](https://github.com/primefaces/primevue/issues/1294) +- DataTable slotProps.index mismatch [\#1274](https://github.com/primefaces/primevue/issues/1274) +- DataTable does not honor initial selection [\#1269](https://github.com/primefaces/primevue/issues/1269) + +## [3.5.0](https://github.com/primefaces/primevue/tree/3.5.0) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.4.0...3.5.0) + +**Implemented New Features and Enhancements:** + +- Add lazy option to TabView and Accordion [\#1268](https://github.com/primefaces/primevue/issues/1268) +- Add responsiveLayout property to TreeTable [\#1261](https://github.com/primefaces/primevue/issues/1261) +- FileUpload invalidFileTypeMessage props and upload button [\#1252](https://github.com/primefaces/primevue/issues/1252) +- Add showToggleAll to MultiSelect [\#1251](https://github.com/primefaces/primevue/issues/1251) +- Add inputStyle to PrimeVue Config [\#1246](https://github.com/primefaces/primevue/issues/1246) +- Templating for Menus [\#1244](https://github.com/primefaces/primevue/issues/1244) +- Add selectionLimit to MultiSelect [\#1239](https://github.com/primefaces/primevue/issues/1239) +- Missing documentation for menu separator [\#1217](https://github.com/primefaces/primevue/issues/1217) +- Slot support for Badge component [\#1207](https://github.com/primefaces/primevue/issues/1207) +- Support moving the item in PickList with double-click [\#1206](https://github.com/primefaces/primevue/issues/1206) +- Add metadata as web-types for better developing experience using Jetbrains Webstorm/Intellij IDEA [\#1138](https://github.com/primefaces/primevue/issues/1138) +- Add loading prop to Dropdown, Multiselect, CascadeSelect [\#1132](https://github.com/primefaces/primevue/issues/1132) +- ScrollPanel pushes content to the left in order to show scrollbar [\#1131](https://github.com/primefaces/primevue/issues/1131) +- Filter Event for Lazy Loading [\#1105](https://github.com/primefaces/primevue/issues/1105) +- Column Reorder and Toggle support for Table [\#1098](https://github.com/primefaces/primevue/issues/1098) +- Anonymous Component in vue-devtools [\#1093](https://github.com/primefaces/primevue/issues/1093) +- DataTable global filter is reset when applying other filters [\#1087](https://github.com/primefaces/primevue/issues/1087) +- Row double click for Table [\#1075](https://github.com/primefaces/primevue/issues/1075) +- Feature Request: Show active tab in TabMenu with different Route-Defintion [\#1051](https://github.com/primefaces/primevue/issues/1051) +- Resize support for Scrollable Tables [\#1018](https://github.com/primefaces/primevue/issues/1018) +- Event for file remove in FileUpload [\#1013](https://github.com/primefaces/primevue/issues/1013) +- Add vetur component data to improve developer experience [\#962](https://github.com/primefaces/primevue/issues/962) +- Possibility to define column visibility [\#956](https://github.com/primefaces/primevue/issues/956) +- Router support for PanelMenu headers [\#949](https://github.com/primefaces/primevue/issues/949) +- Customizing the line of Timeline component [\#931](https://github.com/primefaces/primevue/issues/931) +- Improve active route detection in TabMenu [\#830](https://github.com/primefaces/primevue/issues/830) +- Named routes support for Menu Components [\#594](https://github.com/primefaces/primevue/issues/594) +- Edit and Sort combination support for Table [\#508](https://github.com/primefaces/primevue/issues/508) +- Scrollable Tree [\#396](https://github.com/primefaces/primevue/issues/396) +- Ability to activate PanelMenu item declaratively or programmatically [\#367](https://github.com/primefaces/primevue/issues/367) +- AutoComplete completeOnFocus like PrimeNG [\#354](https://github.com/primefaces/primevue/issues/354) +- Scrollable TreeTable [\#338](https://github.com/primefaces/primevue/issues/338) +- Add JumpToPageDropdown to paginator template [\#247](https://github.com/primefaces/primevue/issues/247) +- New Component: GMap [\#210](https://github.com/primefaces/primevue/issues/210) +- Draggable Dialog [\#85](https://github.com/primefaces/primevue/issues/85) + +**Fixed bugs:** + +- FilterContent overlaps on frozen columns [\#1266](https://github.com/primefaces/primevue/issues/1266) +- showGridlines display 2px borders on ScrollableTable [\#1265](https://github.com/primefaces/primevue/issues/1265) +- TreeTable does not add column and style props [\#1260](https://github.com/primefaces/primevue/issues/1260) +- Filter column is not frozen [\#1259](https://github.com/primefaces/primevue/issues/1259) +- Chip - allow removable property while template is defined [\#1256](https://github.com/primefaces/primevue/issues/1256) +- Dropdown filter is incorrect when grouped and optionGroupChildren not named "items" [\#1255](https://github.com/primefaces/primevue/issues/1255) +- InputStyle and Ripple config do not work on components that are attached to body [\#1248](https://github.com/primefaces/primevue/issues/1248) +- RowGroup scroll problem on smaller screens [\#1247](https://github.com/primefaces/primevue/issues/1247) +- Calendar view property description error in documentation [\#1236](https://github.com/primefaces/primevue/issues/1236) +- FileUpload - long filename [\#1210](https://github.com/primefaces/primevue/issues/1210) +- AutoComplete forceSelection with Multiple overwrites selection [\#1205](https://github.com/primefaces/primevue/issues/1205) +- Carousel cannot render when value.length === 0 && numVisible !== numScroll [\#1201](https://github.com/primefaces/primevue/issues/1201) +- Disabled options do not get disabled [\#1192](https://github.com/primefaces/primevue/issues/1192) +- Checkbox typings insufficient [\#1191](https://github.com/primefaces/primevue/issues/1191) +- Error when hidding tab panel using v-if [\#1186](https://github.com/primefaces/primevue/issues/1186) +- Dropdown and Multiselect with filter fails in Android [\#1180](https://github.com/primefaces/primevue/issues/1180) +- DataTable state restoring seems broken for columnOrder and columnWidths [\#1178](https://github.com/primefaces/primevue/issues/1178) +- Sidebar content overflows its container [\#1175](https://github.com/primefaces/primevue/issues/1175) +- FullCalendar can't display on a hiden TabView-\> TabPanel [\#1151](https://github.com/primefaces/primevue/issues/1151) +- On Row Expansion Nested Data Table Column Headers No Longer work [\#1096](https://github.com/primefaces/primevue/issues/1096) +- Bad type for column field when fn is used [\#1078](https://github.com/primefaces/primevue/issues/1078) +- Scrollpanel - Cannot read property classList [\#1077](https://github.com/primefaces/primevue/issues/1077) +- OverlayPanel with input closes when typing on mobile [\#984](https://github.com/primefaces/primevue/issues/984) +- Decimal value for Slider step does not work [\#967](https://github.com/primefaces/primevue/issues/967) +- Chart.js gives Chart is not a contructor [\#955](https://github.com/primefaces/primevue/issues/955) +- Dropdown component does not fire focus or blur events [\#944](https://github.com/primefaces/primevue/issues/944) +- \[BUG\] FileUpload accepts any type of file despite configuring at Component Level [\#878](https://github.com/primefaces/primevue/issues/878) +- Conditonally rendering columns in DataTable with v-if is throwing error [\#719](https://github.com/primefaces/primevue/issues/719) + +## [3.4.0](https://github.com/primefaces/primevue/tree/3.4.0) (2021-04-16) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.3.5...3.4.0) + +**Implemented New Features and Enhancements:** + +- Support "self" as an appendTo target [\#1185](https://github.com/primefaces/primevue/issues/1185) +- Reimplement EventBus [\#1181](https://github.com/primefaces/primevue/issues/1181) +- Color Picker Touch Support [\#1173](https://github.com/primefaces/primevue/issues/1173) +- Customizable ZIndex Layering [\#1169](https://github.com/primefaces/primevue/issues/1169) +- \[Feature-Request\] Add "loading" prop to Buttons [\#1160](https://github.com/primefaces/primevue/issues/1160) +- New Component: TreeSelect [\#1159](https://github.com/primefaces/primevue/issues/1159) +- Allow Adding Classes to Dialog Content [\#1146](https://github.com/primefaces/primevue/issues/1146) +- Add maximize event to Dialog [\#1108](https://github.com/primefaces/primevue/issues/1108) +- Add panelClass to overlay components [\#1083](https://github.com/primefaces/primevue/issues/1083) + +**Fixed bugs:** + +- AutoComplete scroll defect at demo [\#1183](https://github.com/primefaces/primevue/issues/1183) +- primevue/config: TypeScript error due to unexported type [\#1164](https://github.com/primefaces/primevue/issues/1164) +- documentation: Wrong CSS variable name for secondary text color [\#1162](https://github.com/primefaces/primevue/issues/1162) +- Datatable - Subheader Grouping with button, button comes over the subheader [\#1158](https://github.com/primefaces/primevue/issues/1158) +- primevue/api: TypeScript compilation errors due to wrong declarations [\#1154](https://github.com/primefaces/primevue/issues/1154) +- Switching between OverlayPanels [\#1153](https://github.com/primefaces/primevue/issues/1153) +- DataTable : Selection multiple with checkbox didn't appear with filter row [\#1150](https://github.com/primefaces/primevue/issues/1150) +- DataTable: Filter Menu error [\#1133](https://github.com/primefaces/primevue/issues/1133) +- Circle shape is broken for Avatar [\#1114](https://github.com/primefaces/primevue/issues/1114) +- Animation "none" not working for Skeleton [\#1103](https://github.com/primefaces/primevue/issues/1103) +- DataTable Filter Menu insertBefore defect [\#1076](https://github.com/primefaces/primevue/issues/1076) +- Calendar showOtherMonths = false does not hide neighbour months` [\#1071](https://github.com/primefaces/primevue/issues/1071) +- Dropdown optionDisabled is not working [\#1037](https://github.com/primefaces/primevue/issues/1037) + +## [3.3.5](https://github.com/primefaces/primevue/tree/3.3.5) (2021-03-10) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.3.4...3.3.5) + +**Implemented New Features and Enhancements:** + +- \[Enhancement\] - For editor component [\#1050](https://github.com/primefaces/primevue/issues/1050) + +**Fixed bugs:** + +- Inline Calendar Teleport defect [\#1060](https://github.com/primefaces/primevue/issues/1060) +- Filter Popup window closes when clicking / choosing option in table filter menu [\#1049](https://github.com/primefaces/primevue/issues/1049) +- Date Filter Error on DataTable [\#1048](https://github.com/primefaces/primevue/issues/1048) +- DataTable "select all checkbox" and "export csv" exclude frozen rows [\#1042](https://github.com/primefaces/primevue/issues/1042) + +## [3.3.4](https://github.com/primefaces/primevue/tree/3.3.4) (2021-03-03) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.3.3...3.3.4) + +**Fixed bugs:** + +- CDN builds are broken [\#1046](https://github.com/primefaces/primevue/issues/1046) + +## [3.3.3](https://github.com/primefaces/primevue/tree/3.3.3) (2021-03-02) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.3.2...3.3.3) + +**Implemented New Features and Enhancements:** + +- Improve the interaction of nested overlays [\#1041](https://github.com/primefaces/primevue/issues/1041) +- Remove mitt event bus [\#1040](https://github.com/primefaces/primevue/issues/1040) +- Breakpoints to OverlayPanel [\#1039](https://github.com/primefaces/primevue/issues/1039) +- Migrate appendTo use Teleport [\#1028](https://github.com/primefaces/primevue/issues/1028) +- Set appendTo as body by default [\#993](https://github.com/primefaces/primevue/issues/993) + +**Fixed bugs:** + +- Galleria thumbnail animation jumps [\#1038](https://github.com/primefaces/primevue/issues/1038) +- TreeTable filter demo not working [\#1036](https://github.com/primefaces/primevue/issues/1036) +- AutoComplete component is broken [\#1033](https://github.com/primefaces/primevue/issues/1033) + +## [3.3.2](https://github.com/primefaces/primevue/tree/3.3.2) (2021-02-27) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.3.1...3.3.2) + +**Fixed bugs:** + +- Menubar, ContextMenu, TieredMenu warning [\#1029](https://github.com/primefaces/primevue/issues/1029) + +## [3.3.1](https://github.com/primefaces/primevue/tree/3.3.1) (2021-02-26) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.3.0...3.3.1) + +**Implemented New Features and Enhancements:** + +- Add showGridlines and stripedRows props to DataTable [\#1024](https://github.com/primefaces/primevue/issues/1024) +- Add responsive and breakpoint props to OrderList and PickList [\#1023](https://github.com/primefaces/primevue/issues/1023) +- New Table Responsive layout [\#1022](https://github.com/primefaces/primevue/issues/1022) +- Feature Request: Add "tab-click" to Event from TabView [\#1015](https://github.com/primefaces/primevue/issues/1015) +- Refactor surface color[\#1008](https://github.com/primefaces/primevue/issues/1008) + +**Fixed bugs:** + +- PrimeVue 3.3.0: Dropdown's select item logic is broken [\#1026](https://github.com/primefaces/primevue/issues/1026) +- DataTable error while using stateStorage with date filter [\#1020](https://github.com/primefaces/primevue/issues/1020) +- DataTable Column's header text does not align in v.3.3.0 [\#1016](https://github.com/primefaces/primevue/issues/1016) + +## [3.3.0](https://github.com/primefaces/primevue/tree/3.3.0) (2021-02-23) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.3.0-rc.1...3.3.0) + +**Implemented New Features and Enhancements:** + +- Color Palettes for Each Theme [\#1004](https://github.com/primefaces/primevue/issues/1004) +- breakpoints for Dialog and ConfirmDialog [\#992](https://github.com/primefaces/primevue/issues/992) + +**Fixed bugs:** + +- Calendar seconds are locked when min/max set [\#998](https://github.com/primefaces/primevue/issues/998) +- FileUpload callback 'Select' little adjust. [\#990](https://github.com/primefaces/primevue/issues/990) +- DataTable Column header slot does not work [\#987](https://github.com/primefaces/primevue/issues/987) + +## [3.3.0-rc.1](https://github.com/primefaces/primevue/tree/3.3.0-rc.1) (2021-02-18) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.2.4...3.3.0-rc.1) + +**Breaking Changes:** + +- Disable VirtualScroll Table [\#981](https://github.com/primefaces/primevue/issues/981) + +**Implemented New Features and Enhancements:** + +- Add Search to Showcase [\#985](https://github.com/primefaces/primevue/issues/985) +- Constants for PrimeIcons [\#982](https://github.com/primefaces/primevue/issues/982) +- Touch support for ColorPicker [\#980](https://github.com/primefaces/primevue/issues/980) +- FilterService Utility [\#979](https://github.com/primefaces/primevue/issues/979) +- AutoComplete Enhancements [\#976](https://github.com/primefaces/primevue/issues/976) +- Dropdown Enhancements [\#974](https://github.com/primefaces/primevue/issues/974) +- Listbox Enhancements [\#972](https://github.com/primefaces/primevue/issues/972) +- Reimplement DataTable Scrolling [\#960](https://github.com/primefaces/primevue/issues/960) +- Add keys to template v-for [\#959](https://github.com/primefaces/primevue/issues/959) +- Advanced Filtering for DataTable [\#718](https://github.com/primefaces/primevue/issues/718) + +**Fixed bugs:** + +- Space key support for row radio and checkbox [\#986](https://github.com/primefaces/primevue/issues/986) +- PrimeVue DataTable bug [\#977](https://github.com/primefaces/primevue/issues/977) +- ScrollTop props have wrong type definitions [\#963](https://github.com/primefaces/primevue/issues/963) +- Error when removing InputNumbers from DOM tree [\#950](https://github.com/primefaces/primevue/issues/950) + +## [3.2.4](https://github.com/primefaces/primevue/tree/3.2.4) (2021-02-10) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.2.3...3.2.4) + +**Fixed bugs:** + +- Minified iife builds are broken [\#964](https://github.com/primefaces/primevue/issues/964) + +## [3.2.3](https://github.com/primefaces/primevue/tree/3.2.3) (2021-02-10) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.2.2...3.2.3) + +**Fixed bugs:** + +- Improve TypeScript definitions [\#957](https://github.com/primefaces/primevue/issues/957) +- useToast.d.ts missing api method definitions [\#958](https://github.com/primefaces/primevue/issues/958) +- Compile Problem with Directives( Typescript and 3.2.0-rc.1) [\#877](https://github.com/primefaces/primevue/issues/877) + +## [3.2.2](https://github.com/primefaces/primevue/tree/3.2.2) (2021-02-04) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.2.1...3.2.2) + +**Fixed bugs:** + +- DataTable, exportCSV failed: TypeError: Cannot read property 'type' of undefined [\#941](https://github.com/primefaces/primevue/issues/941) +- Calendar component throws error on blur if popup is not visible [\#940](https://github.com/primefaces/primevue/issues/940) +- Optional chaining not working for TreeTable in version 3.2.1 [\#939](https://github.com/primefaces/primevue/issues/939) +- Casing error in primevue/terminalservice/package.json [\#937](https://github.com/primefaces/primevue/issues/937) + +## [3.2.1](https://github.com/primefaces/primevue/tree/3.2.1) (2021-02-03) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.2.0...3.2.1) + +**Fixed bugs:** + +- password-meter.png missing in resources/images in v3.2.0 [\#935](https://github.com/primefaces/primevue/issues/935) + +## [3.2.0](https://github.com/primefaces/primevue/tree/3.2.0) (2021-02-03) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.2.0-rc.1...3.2.0) + +**Implemented New Features and Enhancements:** + +- InputStyle and InputClass for AutoComplete, Calendar and Password [\#933](https://github.com/primefaces/primevue/issues/933) +- Reimplement password strength ui [\#932](https://github.com/primefaces/primevue/issues/932) +- Reset page on filter [\#928](https://github.com/primefaces/primevue/issues/928) +- show password feature [\#892](https://github.com/primefaces/primevue/issues/892) +- forceSelection for AutoComplete [\#872](https://github.com/primefaces/primevue/issues/872) + +**Fixed bugs:** + +- Vue 3 + TS: fix for config.globalProperties services [\#880](https://github.com/primefaces/primevue/issues/880) +- Tooltip focus fails with some input components [\#915](https://github.com/primefaces/primevue/issues/915) +- v3.2.0-rc.1 webpack babel errors with optional chaining operator [\#913](https://github.com/primefaces/primevue/issues/913) +- DataTable sort not working with boolean shorthand [\#912](https://github.com/primefaces/primevue/issues/912) +- datatable headerStyle is applied to body and footer colgroups. headerClass is not. [\#888](https://github.com/primefaces/primevue/issues/888) +- \[Bug\] Selecting all elements results in scrolling to table bottom [\#887](https://github.com/primefaces/primevue/issues/887) +- Strange behavior using context menu on Safari [\#885](https://github.com/primefaces/primevue/issues/885) + +## [3.2.0-rc.1](https://github.com/primefaces/primevue/tree/3.2.0-rc.1) (2021-01-20) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.1.2...3.2.0-rc.1) + +**Implemented New Features and Enhancements:** + +- New Lazy DataTable Demo with Remote Source [\#862](https://github.com/primefaces/primevue/issues/862) +- state-save and state-restore events for Table [\#850](https://github.com/primefaces/primevue/issues/850) +- File Upload cant disable and hide Upload & Cancel [\#821](https://github.com/primefaces/primevue/issues/821) +- Vite Compatibility [\#581](https://github.com/primefaces/primevue/issues/581) + +**Fixed bugs:** + +- Improve float label support in overlay selects [\#871](https://github.com/primefaces/primevue/issues/871) +- Sidebar Mask not being removed from DOM on close [\#869](https://github.com/primefaces/primevue/issues/869) +- "Clear" button in Calendar wrongly labeled [\#863](https://github.com/primefaces/primevue/issues/863) +- ConfirmPopup : useConfirm define target is missing in ts [\#859](https://github.com/primefaces/primevue/issues/859) +- Autocomplete crashes when "field" property is a function [\#858](https://github.com/primefaces/primevue/issues/858) +- p-button-link not visible in Material Design themes [\#852](https://github.com/primefaces/primevue/issues/852) +- Textarea autoresize does not respect its border [\#847](https://github.com/primefaces/primevue/issues/847) +- Calender monthNavigator error monthNames [\#845](https://github.com/primefaces/primevue/issues/845) +- Knob replaceAll causes issue with nuxt SSR [\#844](https://github.com/primefaces/primevue/issues/844) +- Slider incorrectly positions handle when using mixed-sign min/max [\#826](https://github.com/primefaces/primevue/issues/826) +- MenuItem: class does not apply to separator item [\#814](https://github.com/primefaces/primevue/issues/814) +- \[Bug\] Error import ScrollTop component [\#799](https://github.com/primefaces/primevue/issues/799) +- PrimeVue 3 getting started script tag example not working [\#732](https://github.com/primefaces/primevue/issues/732) + +## [3.1.2](https://github.com/primefaces/primevue/tree/3.1.2) (2021-01-13) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.1.1...3.1.2) + +**Implemented New Features and Enhancements:** + +- New Viva Theme [\#856](https://github.com/primefaces/primevue/issues/856) +- Improve invalid validation visuals on material themes [\#855](https://github.com/primefaces/primevue/issues/855) +- New Lazy DataTable Demo with Remote Source [\#841](https://github.com/primefaces/primevue/issues/841) +- Touch support for Slider [\#757](https://github.com/primefaces/primevue/issues/757) + +**Fixed bugs:** + +- primevue/useconfirm not found [\#839](https://github.com/primefaces/primevue/issues/839) +- usetoast.d.ts casing issue [\#825](https://github.com/primefaces/primevue/issues/825) +- exports files for Chip component [\#781](https://github.com/primefaces/primevue/issues/781) +- Slider has incorrect aria-\* variable values [\#775](https://github.com/primefaces/primevue/issues/775) +- Safari issue with Skeleton [\#755](https://github.com/primefaces/primevue/issues/755) + +## [3.1.1](https://github.com/primefaces/primevue/tree/3.1.1) (2020-12-10) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.10....3.1.1) + +**Fixed bugs:** + +- CascadeSelect fails with Vue 3.0.3 [\#753](https://github.com/primefaces/primevue/issues/753) + +## [3.1.0](https://github.com/primefaces/primevue/tree/3.1.0) (2020-12-10) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.0.2...3.1.0) + +**Breaking Changes:** + +- Setup Requirement [\#748](https://github.com/primefaces/primevue/issues/748) +- Remove locale from Calendar [\#747](https://github.com/primefaces/primevue/issues/747) + +**Implemented New Features and Enhancements:** + +- Implement Badge as a directive alternative [\#753](https://github.com/primefaces/primevue/issues/753) +- Chip Component [\#740](https://github.com/primefaces/primevue/issues/740) +- Close event for Message component [\#739](https://github.com/primefaces/primevue/issues/739) +- Splitter Component [\#737](https://github.com/primefaces/primevue/issues/737) +- Component for Tag [\#717](https://github.com/primefaces/primevue/issues/717) +- Locale API [\#716](https://github.com/primefaces/primevue/issues/716) +- Component for Badge [\#715](https://github.com/primefaces/primevue/issues/715) +- Dot mode for Badge [\#695](https://github.com/primefaces/primevue/issues/695) +- Knob Component [\#693](https://github.com/primefaces/primevue/issues/693) +- ScrollTop Component [\#691](https://github.com/primefaces/primevue/issues/691) +- \[FEATURE REQUEST\] - Divider/Separator Component [\#690](https://github.com/primefaces/primevue/issues/690) +- Skeleton Component [\#689](https://github.com/primefaces/primevue/issues/689) +- CascadeSelect Component [\#686](https://github.com/primefaces/primevue/issues/686) +- \[FEATURE REQUEST\] - Avatar Component [\#684](https://github.com/primefaces/primevue/issues/684) +- New ConfirmPopup Component [\#679](https://github.com/primefaces/primevue/issues/679) +- New ConfirmDialog Component [\#678](https://github.com/primefaces/primevue/issues/678) +- Update to FullCalendar 5 [\#540](https://github.com/primefaces/primevue/issues/540) + +**Fixed bugs:** + +- DataTable throws error when there are no columns [\#749](https://github.com/primefaces/primevue/issues/749) +- Textarea does not auto resize its height when created [\#733](https://github.com/primefaces/primevue/issues/733) +- Calendar navigation \(next, prev month\) inside DataTable or OverlayPanel not working [\#729](https://github.com/primefaces/primevue/issues/729) +- Keyboard support problem for AutoComplete [\#723](https://github.com/primefaces/primevue/issues/723) +- InputMask with unmask doesn't work as expected [\#714](https://github.com/primefaces/primevue/issues/714) +- display prop of MultiSelect is not documented [\#713](https://github.com/primefaces/primevue/issues/713) +- Invalid "sortField" property type in Vue and type definition files [\#681](https://github.com/primefaces/primevue/issues/681) +- TreeTable emit warns [\#750](https://github.com/primefaces/primevue/issues/750) +- Fixed use of MenuModel's "class" property in PanelMenuSub [\#746](https://github.com/primefaces/primevue/issues/746) + +## [3.0.2](https://github.com/primefaces/primevue/tree/3.0.2) (2020-11-26) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.0.1...3.0.2) + +**Implemented New Features and Enhancements:** + +- Add the 'enter' key support to InputNumber [\#675](https://github.com/primefaces/primevue/issues/675) +- Chips mode for MultiSelect [\#673](https://github.com/primefaces/primevue/issues/673) +- New Timeline Component [\#672](https://github.com/primefaces/primevue/issues/672) +- Toolbar requires slot attribute which is deprecated in Vue.js 3 [\#639](https://github.com/primefaces/primevue/issues/639) +- SelectButton should allow a mode to ensure an options is always selected [\#494](https://github.com/primefaces/primevue/issues/494) + +**Fixed bugs:** + +- SplitButton: after selecting the default command, the command menu does not close. [\#660](https://github.com/primefaces/primevue/issues/660) +- Multiselect/Dropdown: when the menu open upwards style broken [\#659](https://github.com/primefaces/primevue/issues/659) +- Autocomplete: when the menu open upwards style broken [\#658](https://github.com/primefaces/primevue/issues/658) +- DataTable global filter bug [\#655](https://github.com/primefaces/primevue/issues/655) +- Closing message and reopening it does not work [\#653](https://github.com/primefaces/primevue/issues/653) +- Password element does not inherit attributes [\#651](https://github.com/primefaces/primevue/issues/651) +- DataTable sortField allows a function, but the prop type is only a string [\#647](https://github.com/primefaces/primevue/issues/647) +- Missing .d.ts file for usetoast [\#645](https://github.com/primefaces/primevue/issues/645) +- InputNumber's onInputBlur fails when component gets destroyed [\#633](https://github.com/primefaces/primevue/issues/633) +- missing type definition for toast/useToast.js [\#630](https://github.com/primefaces/primevue/issues/630) +- Sidebar not visible on mount [\#627](https://github.com/primefaces/primevue/issues/627) +- Accordion does not support dynamic tabs [\#622](https://github.com/primefaces/primevue/issues/622) +- TabView does not support dynamic tabs [\#616](https://github.com/primefaces/primevue/issues/616) +- PrimeVue FileUpload FileLimit [\#610](https://github.com/primefaces/primevue/issues/610) +- DataTable multiple click RadioButton focus previous row [\#606](https://github.com/primefaces/primevue/issues/606) +- FileUpload Preview columns become misaligned when both image and non-image files are uploaded [\#585](https://github.com/primefaces/primevue/issues/585) +- Error with empty objects [\#556](https://github.com/primefaces/primevue/issues/556) +- OverlayPanel :before "indicator" needs dynamic placement [\#490](https://github.com/primefaces/primevue/issues/490) + +## [3.0.1](https://github.com/primefaces/primevue/tree/3.0.1) (2020-10-22) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.2.0...3.0.1) + +**Implemented New Features and Enhancements:** + +- Do not hide overlays on body scroll [\#591](https://github.com/primefaces/primevue/issues/591) +- Add inputStyle and inputClass properties to InputNumber [\#551](https://github.com/primefaces/primevue/issues/551) +- Declare events in "emits" section of every component [\#549](https://github.com/primefaces/primevue/issues/549) + +**Fixed bugs:** + +- Overriding ProgressSpinner colors doc error [\#589](https://github.com/primefaces/primevue/issues/589) +- Property "disabled" was accessed during render but is not defined on instance. [\#587](https://github.com/primefaces/primevue/issues/587) +- Dropdown inside datable using showClear causing: Cannot read property 'classList' of null [\#586](https://github.com/primefaces/primevue/issues/586) +- DataTable crashes with a "Cannot read property 'xxx' of null" for nested objects [\#555](https://github.com/primefaces/primevue/issues/555) +- pRipple works even when disabled\(etc menuitem\) [\#550](https://github.com/primefaces/primevue/issues/550) +- Website / Documentation - Fix third-party dependencies documentation [\#546](https://github.com/primefaces/primevue/issues/546) +- Menu components with web router refresh the whole page [\#536](https://github.com/primefaces/primevue/issues/536) + +## [3.0.0](https://github.com/primefaces/primevue/tree/3.0.0) (2020-10-11) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.1.0...3.0.0) + +**Implemented New Features and Enhancements:** + +- Galleria and Carousel highlight item visual improvement on PrimeOne Themes [\#545](https://github.com/primefaces/primevue/issues/545) +- Soho Theme [\#539](https://github.com/primefaces/primevue/issues/539) +- Fluent UI Theme [\#538](https://github.com/primefaces/primevue/issues/538) +- ToastService $toast is not accessible using Composition API [\#535](https://github.com/primefaces/primevue/issues/535) +- Tooltip doesn't close in scrollable containers [\#523](https://github.com/primefaces/primevue/issues/523) +- Lighter Highlight Color for PrimeOne Themes [\#520](https://github.com/primefaces/primevue/issues/520) +- Add indentation property to TreeTable [\#495](https://github.com/primefaces/primevue/issues/495) +- Accordion rounded border minor visual issue [\#384](https://github.com/primefaces/primevue/issues/384) + +**Fixed bugs:** + +- Tree selection is broken when ripple is enabled [\#543](https://github.com/primefaces/primevue/issues/543) +- Tree toggler icon hover color is wrong in bootstrap theme [\#542](https://github.com/primefaces/primevue/issues/542) +- The 'disabled' option has no effect on InputNumber [\#537](https://github.com/primefaces/primevue/issues/537) +- InputNumber cannot set value when format property is false [\#533](https://github.com/primefaces/primevue/issues/533) +- InputNumber with spinner mode throws a JS exception [\#532](https://github.com/primefaces/primevue/issues/532) +- inputNumber with numeric prefix is not working as expected [\#531](https://github.com/primefaces/primevue/issues/531) +- Problems when typing or pasting numbers into InputNumber [\#530](https://github.com/primefaces/primevue/issues/530) +- Can't close MultiSelect or Select when inside Dialog component [\#524](https://github.com/primefaces/primevue/issues/524) +- TouchUI modal gets stuck if input tabs out [\#519](https://github.com/primefaces/primevue/issues/519) +- TriStateCheckbox doesn't show correct icon when value is false when using material themes [\#517](https://github.com/primefaces/primevue/issues/517) + +## [3.0.0-rc.2](https://github.com/primefaces/primevue/tree/3.0.0-rc.2) (2020-09-29) + +[Full Changelog](https://github.com/primefaces/primevue/compare/3.0.0-rc1...3.0.0-rc.2) + +**Fixed bugs:** + +- 3.0.0-rc.1 npm package includes a node_modules [\#511](https://github.com/primefaces/primevue/issues/511) +- Dialog component VNode [\#510](https://github.com/primefaces/primevue/issues/510) + +## [3.0.0-rc.1](https://github.com/primefaces/primevue/tree/3.0.0-rc.1) (2020-09-28) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.0.9...3.0.0-rc.1) + +**Breaking Changes:** + +- Accessing column props in Slots [\#498](https://github.com/primefaces/primevue/issues/498) +- activeIndex for TabView and Accordion [\#497](https://github.com/primefaces/primevue/issues/497) + +**Implemented New Features and Enhancements:** + +- Vue 3 Compatibility [\#491](https://github.com/primefaces/primevue/issues/491) +- Improvement in behavior of components that have overlay panels in scrollable containers [\#500](https://github.com/primefaces/primevue/issues/500) +- Improve calendar tabbing behavior [\#507](https://github.com/primefaces/primevue/issues/507) +- Add input event to InputNumber [\#506](https://github.com/primefaces/primevue/issues/506) + +**Fixed bugs:** + +- Scrollable Table alignment improvement [\#482](https://github.com/primefaces/primevue/issues/482) +- Button not registered in FileUpload [\#478](https://github.com/primefaces/primevue/issues/478) +- BlockUI documentation indicates "show" event whereas the actual event is "unblock" [\#485](https://github.com/primefaces/primevue/issues/485) + +## [2.10.4](https://github.com/primefaces/primevue/tree/2.10.4) (2023-12-06) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.10.3...2.10.4) + +**Fixed bugs:** + +- v2 DataTable: Frozen column table left and right calculation defects [\#4890](https://github.com/primefaces/primevue/issues/4890) + +## [2.10.3](https://github.com/primefaces/primevue/tree/2.10.3) (2023-11-22) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.10.2...2.10.3) + +**Implemented New Features and Enhancements:** + +- v2 DataTable: Frozen column improvements [\#4795](https://github.com/primefaces/primevue/issues/4795) +- TreeTable: Add custom header for column [\#2941](https://github.com/primefaces/primevue/issues/2941) + +**Fixed bugs:** + +- OrderList: order of selection reversed when moving multiple items to top or bottom [\#4700](https://github.com/primefaces/primevue/issues/4700) +- Calendar: Crashes when Tab pressed and calendar overlay is not showing [\#4586](https://github.com/primefaces/primevue/issues/4586) +- Calendar: Months are not highlighted with selection-mode="multiple" [\#3988](https://github.com/primefaces/primevue/issues/3988) + +## [2.10.2](https://github.com/primefaces/primevue/tree/2.10.2) (2023-08-16) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.10.1...2.10.2) + +**Implemented New Features and Enhancements:** + +- Password: id props is passed to container [\#4143](https://github.com/primefaces/primevue/issues/4143) +- OverlayPanel: Backport events to v2.x [\#3733](https://github.com/primefaces/primevue/issues/3733) + +**Fixed bugs:** + +- Calendar: updateFocus called on unmounted instance [\#3962](https://github.com/primefaces/primevue/issues/3962) +- DataTable: row group header colspan doesn't span full row when table has selection column [\#3685](https://github.com/primefaces/primevue/issues/3685) +- \[2.\] Tooltip: "escape" option is always false when tooltip is updated [\#3529](https://github.com/primefaces/primevue/issues/3529) +- CascadeSelect: "TypeError: Cannot set properties of undefined \(setting 'minWidth'\)" when using appendTo=body [\#3479](https://github.com/primefaces/primevue/issues/3479) +- TabMenu: First tab is always highlighted even when selected other tabs [\#3368](https://github.com/primefaces/primevue/issues/3368) + +## [2.10.1](https://github.com/primefaces/primevue/tree/2.10.1) (2022-11-18) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.10.0...2.10.1) + +**Implemented New Features and Enhancements:** + +- PrimeFlex & PrimeIcons version update v2 [\#3291](https://github.com/primefaces/primevue/issues/3291) +- Sidebar v2: Add slot to header [\#3217](https://github.com/primefaces/primevue/issues/3217) + +**Fixed bugs:** + +- Slider v2: onDragStart\(\) -\> this.modelValue is undefined [\#3251](https://github.com/primefaces/primevue/issues/3251) +- Slider v2: range does not work [\#2986](https://github.com/primefaces/primevue/issues/2986) +- InputNumber v2: Component with Horizontal with step down disabled [\#2980](https://github.com/primefaces/primevue/issues/2980) +- Password v2: Initial value is not displayed [\#2894](https://github.com/primefaces/primevue/issues/2894) +- Textarea v2: resize height when window resized if autoResize is true [\#2919](https://github.com/primefaces/primevue/issues/2919) +- SpeedDial v2: Cannot use Scoped Slot to customize items [\#2889](https://github.com/primefaces/primevue/issues/2889) + +## [2.10.0](https://github.com/primefaces/primevue/tree/2.10.0) (2022-08-23) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.9.2...2.10.0) + +**Implemented New Features and Enhancements:** + +- Button: Bring the loading prop from primevue3 to primevue2 [\#2655](https://github.com/primefaces/primevue/issues/2655) +- Password: Missing change and blur events [\#2610](https://github.com/primefaces/primevue/issues/2610) +- v2 PrimeVue @keyup.enter event does not work on InputNumber component [\#2336](https://github.com/primefaces/primevue/issues/2336) + +**Fixed bugs:** + +- Calendar: Inconsistent @select-month values [\#2859](https://github.com/primefaces/primevue/issues/2859) +- MegaMenu subItems 'to' route ' is not working [\#2501](https://github.com/primefaces/primevue/issues/2501) +- Datatable column order state is not saved [\#2346](https://github.com/primefaces/primevue/issues/2346) +- DataTable SelectAll checkbox stay focused after deselecting [\#2329](https://github.com/primefaces/primevue/issues/2329) +- Cannot use the editorCancelCallBack / editorSaveCallback while editing in cell mode [\#2598](https://github.com/primefaces/primevue/issues/2598) +- v2 Calendar - Could not edit end date with time picker properly [\#2546](https://github.com/primefaces/primevue/issues/2546) + +## [2.9.2](https://github.com/primefaces/primevue/tree/2.9.2) (2022-04-13) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.9.1...2.9.2) + +**Implemented New Features and Enhancements:** + +- Tooltip v2 | Escape Support [\#2432](https://github.com/primefaces/primevue/issues/2432) +- Accordion v2 | New expandIcon and collapseIcon properties [\#2418](https://github.com/primefaces/primevue/issues/2418) + +**Fixed bugs:** + +- Ripple v2 directive breaks the behavior of list components in Firefox [\#2430](https://github.com/primefaces/primevue/issues/2430) +- Calendar | Loses alignment when positioned at the top of the input and the user clicks in the year/month [\#2422](https://github.com/primefaces/primevue/issues/2422) +- StyleClass v2 may fail to enter the element [\#2420](https://github.com/primefaces/primevue/issues/2420) +- Tooltip v2 shown at wrong place [\#2416](https://github.com/primefaces/primevue/issues/2416) +- Slider v2 | Range slider get stuck when both handle on max value [\#2414](https://github.com/primefaces/primevue/issues/2414) +- FileUpload v2: Custom upload bug on clear list [\#2412](https://github.com/primefaces/primevue/issues/2412) +- DataTable v2 | Colspan defect with hidden Columns [\#2410](https://github.com/primefaces/primevue/issues/2410) + +## [2.9.1](https://github.com/primefaces/primevue/tree/2.9.1) (2022-03-16) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.9.0...2.9.1) + +**Implemented New Features and Enhancements:** + +- v2 Add p-button-\* class support to SplitButton [\#2300](https://github.com/primefaces/primevue/issues/2300) +- Calendar v2 | hide timepicker on month/year select [\#2290](https://github.com/primefaces/primevue/issues/2290) +- v2 New stripedRows property for OrderList and PickList [\#2288](https://github.com/primefaces/primevue/issues/2288) +- MultiSelect v2 | Filter autocomplete attribute support [\#2286](https://github.com/primefaces/primevue/issues/2286) +- v2 Custom Table CSV Export Headers [\#2284](https://github.com/primefaces/primevue/issues/2284) +- Knob v2 | replace surface letters with new surface variables [\#2282](https://github.com/primefaces/primevue/issues/2282) +- v2 Replace surface letters with new surface variables [\#2280](https://github.com/primefaces/primevue/issues/2280) +- DataTable v2 editor templating [\#2277](https://github.com/primefaces/primevue/issues/2277) +- InputNumber v2 | Emit focus and blur events added [\#1795](https://github.com/primefaces/primevue/issues/1935) + +**Fixed bugs:** + +- v2 Dropdown search don't work with Gboard [\#2297](https://github.com/primefaces/primevue/issues/2297) +- v2 DataTable row-select and row-unselect index is always undefined [\#2295](https://github.com/primefaces/primevue/issues/2295) +- v2 Scrollable TabView forwardIsDisabled defect [\#2292](https://github.com/primefaces/primevue/issues/2292) +- Row editing does not work as expected in DataTable [\#2270](https://github.com/primefaces/primevue/issues/2270) +- v2 DataTable ColGroup in footer/header: Cannot read properties of undefined \(reading 'tag'\) [\#2163](https://github.com/primefaces/primevue/issues/2163) + +## [2.9.0](https://github.com/primefaces/primevue/tree/2.9.0) (2022-02-07) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.8.0...2.9.0) + +**Implemented New Features and Enhancements:** + +- New v2 TreeTable showGridlines property [\#2115](https://github.com/primefaces/primevue/issues/2115) +- v2 DataTable component does not work correctly "Checkbox selection" together with "lazy" [\#2109](https://github.com/primefaces/primevue/issues/2109) +- Dialog v2: close button cannot receive focus [\#2087](https://github.com/primefaces/primevue/issues/2087) +- PrimeFlex 3 update for PrimeVue 2 showcase [\#2085](https://github.com/primefaces/primevue/issues/2085) +- v2 Update themes for datatable list shadow style [\#2072](https://github.com/primefaces/primevue/issues/2072) +- v2 New Color Scheme for Lara Dark [\#2070](https://github.com/primefaces/primevue/issues/2070) +- New Dialog v2 containerStyle prop and modal leave defect [\#1957](https://github.com/primefaces/primevue/issues/1957) + +**Fixed bugs:** + +- Sidebar v2: ripple appears in the wrong place [\#2105](https://github.com/primefaces/primevue/issues/2105) +- TreeTable v2 | ColResize Expand Mode not Compatible with Table Scroll and Frozen [\#2101](https://github.com/primefaces/primevue/issues/2101) +- v2 Dropdown doesn't display empty string [\#2095](https://github.com/primefaces/primevue/issues/2095) +- v2 Tree node toggler button is shrunk until not visible if label starts to not fit the node [\#2093](https://github.com/primefaces/primevue/issues/2093) +- Tag v2 doesn't show icon when slot is used instead of "value" attribute [\#2091](https://github.com/primefaces/primevue/issues/2091) +- DataTable v2: Inline filterMenuStyle doesn't add css properties [\#2089](https://github.com/primefaces/primevue/issues/2089) +- DataTable v2 | ColResize Expand Mode not Compatible with Table Scroll [\#2080](https://github.com/primefaces/primevue/issues/2080) +- v2 DataTable, TreeTable | Checkbox and RadioButton Focus Missing on Material [\#2078](https://github.com/primefaces/primevue/issues/2078) +- Calendar v2: the Year is incorrect for Multiple Months mode [\#2076](https://github.com/primefaces/primevue/issues/2076) +- v2 Tailwind theme - wrong styles [\#2071](https://github.com/primefaces/primevue/issues/2071) +- bugfix panelMenuSub isActive bug in 2.8.0 [\#1986](https://github.com/primefaces/primevue/issues/1986) + +## [2.8.0](https://github.com/primefaces/primevue/tree/2.8.0) (2021-12-14) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.7.0...2.8.0) + +**Implemented New Features and Enhancements:** + +- Provide chartjs object v2 [\#1887](https://github.com/primefaces/primevue/issues/1887) +- Calendar v2 | Escape Support For Month and Year Picker [\#1879](https://github.com/primefaces/primevue/issues/1879) +- Constants for Toast [\#1874](https://github.com/primefaces/primevue/issues/1874) +- Constants for PrimeIcons [\#1873](https://github.com/primefaces/primevue/issues/1873) +- Add inputStyle to PrimeVue Config v2 [\#1871](https://github.com/primefaces/primevue/issues/1871) +- responsiveLayout for TreeTable v2 [\#1870](https://github.com/primefaces/primevue/issues/1870) +- Reimplemented TreeTable with new FilterService [\#1869](https://github.com/primefaces/primevue/issues/1869) +- New Utils module [\#1867](https://github.com/primefaces/primevue/issues/1867) +- New OverlayEventBus [\#1866](https://github.com/primefaces/primevue/issues/1866) +- New FilterService Utility [\#1865](https://github.com/primefaces/primevue/issues/1865) +- Reimplemented DataTable v2 [\#1864](https://github.com/primefaces/primevue/issues/1864) + +**Fixed bugs:** + +- Slider range with min/max bug [\#1882](https://github.com/primefaces/primevue/issues/1882) +- Calendar v2 | Year Picker and Month Picker empty when using Range and Multiple options [\#1880](https://github.com/primefaces/primevue/issues/1880) +- Calendar v2 manual input doesn't work [\#1878](https://github.com/primefaces/primevue/issues/1878) +- Dropdown v2 positioning issue [\#1868](https://github.com/primefaces/primevue/issues/1868) + +**Deprecated:** + +- Disable VirtualScroll DataTable v2 [\#1863](https://github.com/primefaces/primevue/issues/1863) + +## [2.7.0](https://github.com/primefaces/primevue/tree/2.7.0) (2021-11-25) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.6.0...2.7.0) + +**Implemented New Features and Enhancements:** + +- Remove mitt event bus [\#1826](https://github.com/primefaces/primevue/issues/1826) +- New calendar styple props for v2 [\#1824](https://github.com/primefaces/primevue/issues/1824) +- Dynamic labels for Menu components v2 [\#1821](https://github.com/primefaces/primevue/issues/1821) +- Update Chart to trigger on any change to object data - v2 [\#1813](https://github.com/primefaces/primevue/issues/1813) +- Vue as peer dependency [\#1812](https://github.com/primefaces/primevue/issues/1812) +- icon templating for Message v2 [\#1811](https://github.com/primefaces/primevue/issues/1811) +- PickList v2 slots before and after the buttons [\#1806](https://github.com/primefaces/primevue/issues/1806) +- OrderList v2 slots before and after the buttons [\#1805](https://github.com/primefaces/primevue/issues/1805) +- Add responsiveOptions property to Calendar v2 [\#1803](https://github.com/primefaces/primevue/issues/1803) +- Year Picker for Calendar v2 [\#1802](https://github.com/primefaces/primevue/issues/1802) +- Enhanced UI for month and year picker for Calendar v2 [\#1801](https://github.com/primefaces/primevue/issues/1801) +- Default focus button should be configurable for ConfirmDialog v2 [\#1797](https://github.com/primefaces/primevue/issues/1797) +- New rowStyle prop for DataTable v2 [\#1790](https://github.com/primefaces/primevue/issues/1790) +- Disabled buttons on InputNumber v2 when value reach min, max [\#1789](https://github.com/primefaces/primevue/issues/1789) +- Templating Support for ConfirmPopup v2 [\#1787](https://github.com/primefaces/primevue/issues/1787) +- Update PrimeIcons v5 [\#1785](https://github.com/primefaces/primevue/issues/1785) +- Update Themes and add New Lara Theme [\#1784](https://github.com/primefaces/primevue/issues/1784) + +**Fixed bugs:** + +- Carousel swipe function is broken on iOS devices v2 [\#1822](https://github.com/primefaces/primevue/issues/1822) +- Disabled not working for SelectButton v2 [\#1819](https://github.com/primefaces/primevue/issues/1819) +- Calendar in timeonly mode ignores minDate, maxDate - v2 [\#1818](https://github.com/primefaces/primevue/issues/1818) +- Fix TypeScript definitions for selects - v2 [\#1816](https://github.com/primefaces/primevue/issues/1816) +- optionDisabled wrongly typed [\#1815](https://github.com/primefaces/primevue/issues/1815) +- DataTable lazy loading paginator defect - v2 [\#1814](https://github.com/primefaces/primevue/issues/1814) +- ProgressBar: color text accessibility issue - v2 [\#1810](https://github.com/primefaces/primevue/issues/1810) +- Cell editing without editor templating defect for DataTable v2 [\#1804](https://github.com/primefaces/primevue/issues/1804) +- DataTable v2 events wrong TypeScript definitions [\#1788](https://github.com/primefaces/primevue/issues/1788) +- Panel missing icon template in d.ts [\#1786](https://github.com/primefaces/primevue/issues/1786) +- MenuModel 'to' is not working as routerlink - refreshing the whole app [\#1749](https://github.com/primefaces/primevue/issues/1749) + +**Breaking Changes:** + +- Rename slots for toolbar - v2 [\#1809](https://github.com/primefaces/primevue/issues/1809) +- Rename slot names for paginatorLeft and paginatorRight - v2 [\#1808](https://github.com/primefaces/primevue/issues/1808) +- Lowercase slot names for PickList sourceHeader-targetHeader v2 [\#1807](https://github.com/primefaces/primevue/issues/1807) + +**Deprecated:** + +- Deprecated props in Calendar v2 [\#1798](https://github.com/primefaces/primevue/issues/1798) + +## [2.6.0](https://github.com/primefaces/primevue/tree/2.6.0) (2021-09-29) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.5.1...2.6.0) + +**Implemented New Features and Enhancements:** + +- Add JumpToPageDropdown and JumpToPageInput template to Paginator v2 [\#1605](https://github.com/primefaces/primevue/issues/1605) +- Scrollable Tabs for v2 [\#1604](https://github.com/primefaces/primevue/issues/1604) +- Reimplemented InputNumber v2 [\#1600](https://github.com/primefaces/primevue/issues/1600) +- Modal layer enter-leave transition v2 [\#1599](https://github.com/primefaces/primevue/issues/1599) +- Add autoHighlight to AutoComplete v2 [\#1589](https://github.com/primefaces/primevue/issues/1589) +- function disabled for MenuModel v2 [\#1587](https://github.com/primefaces/primevue/issues/1587) +- Upgrade v2 to Gulp 4 [\#1585](https://github.com/primefaces/primevue/issues/1585) +- Add trueValue-falseValue to Checkbox v2 [\#1583](https://github.com/primefaces/primevue/issues/1583) +- Add trueValue-falseValue to InputSwitch v2 [\#1582](https://github.com/primefaces/primevue/issues/1582) +- Add router-link-active and router-link-active-exact to all menu components v2 [\#1575](https://github.com/primefaces/primevue/issues/1575) +- New Image Preview component v2 [\#1574](https://github.com/primefaces/primevue/issues/1574) +- Responsive Dock v2 [\#1568](https://github.com/primefaces/primevue/issues/1568) +- start and end slots for MegaMenu v2 [\#1566](https://github.com/primefaces/primevue/issues/1566) +- Add indicator slot [\#1565](https://github.com/primefaces/primevue/issues/1565) +- Add tooltipOptions property to Dock v2 [\#1564](https://github.com/primefaces/primevue/issues/1564) +- Add appendTo property to Dialog v2 [\#1561](https://github.com/primefaces/primevue/issues/1561) +- Add tooltipOptions property to SpeedDial v2 [\#1560](https://github.com/primefaces/primevue/issues/1560) +- new activeIndex props for TabMenu v2 [\#1553](https://github.com/primefaces/primevue/issues/1553) +- Change button/maskClassName properties with button/maskClass properties on SpeedDial v2 [\#1551](https://github.com/primefaces/primevue/issues/1551) +- Tailwind theme v2 [\#1549](https://github.com/primefaces/primevue/issues/1549) +- Dropdown v2 doesn't scroll when navigating with keyboard [\#1535](https://github.com/primefaces/primevue/issues/1535) +- Scrollable Tabs [\#364](https://github.com/primefaces/primevue/issues/364) + +**Fixed bugs:** + +- Thumbnails are not displayed correctly on Galleria if numVisible is greater than the length of value for v2 [\#1594](https://github.com/primefaces/primevue/issues/1594) +- Checkbox v2 causes layout issues when used inside an overflow: auto div [\#1593](https://github.com/primefaces/primevue/issues/1593) +- Tooltip v2 word wrap [\#1592](https://github.com/primefaces/primevue/issues/1592) +- BlockUI v2 doesn't get rid of div [\#1591](https://github.com/primefaces/primevue/issues/1591) +- extra space between Dropdown/MultiSelect and filter list [\#1590](https://github.com/primefaces/primevue/issues/1590) +- Chart update throws an exception v2 [\#1588](https://github.com/primefaces/primevue/issues/1588) +- input mask - mask affecting dirty state v2 [\#1581](https://github.com/primefaces/primevue/issues/1581) +- Filtered Dropdown for Windows Tablet [\#1577](https://github.com/primefaces/primevue/issues/1577) +- Calendar WCAG Accessibility Issue with Keyboard Navigation for v2 [\#1576](https://github.com/primefaces/primevue/issues/1576) +- Dropdown onkeydown item search [\#1570](https://github.com/primefaces/primevue/issues/1570) +- Router support for v2 Dock [\#1567](https://github.com/primefaces/primevue/issues/1567) +- FileUpload Invalid File messages [\#1563](https://github.com/primefaces/primevue/issues/1563) +- CurrentPageReport displays wrong value v2 [\#1554](https://github.com/primefaces/primevue/issues/1554) +- The maskStyle property doesn't work as expected in SpeedDial v2 [\#1552](https://github.com/primefaces/primevue/issues/1552) +- DataTable does not assign colspan correctly when working with filters [\#1456](https://github.com/primefaces/primevue/issues/1456) +- DataTable: Pagination stops working when a column filter is applied [\#1388](https://github.com/primefaces/primevue/issues/1388) +- Input components inside DataTable break when upgrading from PrimeVue 1 to PrimeVue 2 [\#1330](https://github.com/primefaces/primevue/issues/1330) + +## [2.5.1](https://github.com/primefaces/primevue/tree/2.5.1) (2021-08-10) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.5.0...2.5.1) + +**Fixed bugs:** + +- Scrollable Table alignment improvement [\#1438](https://github.com/primefaces/primevue/issues/1438) +- PrimeFlex 3 support for DataView [\#1435](https://github.com/primefaces/primevue/issues/1435) + +## [2.5.0](https://github.com/primefaces/primevue/tree/2.5.0) (2021-08-10) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.4.2...2.5.0) + +**Implemented New Features and Enhancements:** + +- Dock component v2 [\#1434](https://github.com/primefaces/primevue/issues/1434) +- Chart.js version update [\#1432](https://github.com/primefaces/primevue/issues/1432) +- Speed Dial component v2 [\#1431](https://github.com/primefaces/primevue/issues/1431) +- FullCalendar-Vue theme update [\#1430](https://github.com/primefaces/primevue/issues/1430) +- Responsive TabMenu and Breadcrumb v2 [\#1424](https://github.com/primefaces/primevue/issues/1424) +- breakpoints prop for Responsive Toast [\#1423](https://github.com/primefaces/primevue/issues/1423) +- Center positioning Toast [\#1422](https://github.com/primefaces/primevue/issues/1422) +- Templating for Toast component [\#1421](https://github.com/primefaces/primevue/issues/1421) +- v-styleclass directive for v2 [\#1417](https://github.com/primefaces/primevue/issues/1417) +- style and class props for FileUpload component [\#1416](https://github.com/primefaces/primevue/issues/1416) +- value and disabled props for Tooltip component [\#1414](https://github.com/primefaces/primevue/issues/1414) +- styleClass and contentStyleClass props for Toast component [\#1413](https://github.com/primefaces/primevue/issues/1413) +- Row double click for DataTable [\#1347](https://github.com/primefaces/primevue/issues/1347) +- CascadeSelect material theming improvements [\#1324](https://github.com/primefaces/primevue/issues/1324) + +**Fixed bugs:** + +- ProgressBar does not show 0 percent [\#1420](https://github.com/primefaces/primevue/issues/1420) +- Toast does not clear hide timeout on beforeDestroy [\#1418](https://github.com/primefaces/primevue/issues/1418) +- Accordion tab-open and tab-close events [\#1329](https://github.com/primefaces/primevue/issues/1329) + +## [2.4.2](https://github.com/primefaces/primevue/tree/2.4.2) (2021-06-07) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.4.1...2.4.2) + +**Implemented New Features and Enhancements:** + +- Chips remove button for templating [\#1307](https://github.com/primefaces/primevue/issues/1307) +- IDE support [\#1296](https://github.com/primefaces/primevue/issues/1296) +- MultiSelect selectionLimit showToggleAll [\#1288](https://github.com/primefaces/primevue/issues/1288) +- FileUpload long filename [\#1287](https://github.com/primefaces/primevue/issues/1287) +- hideIcon and showIcon for Password [\#1286](https://github.com/primefaces/primevue/issues/1286) + +**Fixed bugs:** + +- DataTable multi selection with meta key [\#1305](https://github.com/primefaces/primevue/issues/1305) +- Sidebar content overflows [\#1295](https://github.com/primefaces/primevue/issues/1295) +- FileUpload accepts any type of file [\#1291](https://github.com/primefaces/primevue/issues/1291) +- AutoComplete forceSelection with Multiple [\#1289](https://github.com/primefaces/primevue/issues/1289) +- Decimal value for Slider [\#1285](https://github.com/primefaces/primevue/issues/1285) +- Panel closes itself when typing on mobile [\#1284](https://github.com/primefaces/primevue/issues/1284) +- DataTable state restore broken for columnOrder and columnWidths [\#1283](https://github.com/primefaces/primevue/issues/1283) +- Multiselect doesn't set focus to the multiselect filter when dropdown is expanded [\#1243](https://github.com/primefaces/primevue/issues/1243) +- Error when navigating to a component including TabView with active index \> 0 [\#1221](https://github.com/primefaces/primevue/issues/1221) +- Calendar.vue property panelClass is not used. [\#1213](https://github.com/primefaces/primevue/issues/1213) +- Multiple Form Components Break Inside TabView [\#1209](https://github.com/primefaces/primevue/issues/1209) +- Primevue 2.4 TabView and Accordeon throw errow on npm build [\#1019](https://github.com/primefaces/primevue/issues/1019) + +## [2.4.1](https://github.com/primefaces/primevue/tree/2.4.1) (2021-04-22) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.4.0...2.4.1) + +**Implemented New Features and Enhancements:** + +- Reset page on filter [\#1121](https://github.com/primefaces/primevue/issues/1121) +- forceSelection for AutoComplete [\#1120](https://github.com/primefaces/primevue/issues/1120) + +**Fixed bugs:** + +- Circle shape is broken for Avatar [\#1116](https://github.com/primefaces/primevue/issues/1116) +- Animation "none" not working for Skeleton [\#1115](https://github.com/primefaces/primevue/issues/1115) +- Calendar: prop showOtherMonths = false does not hide neighbour months` dates [\#875](https://github.com/primefaces/primevue/issues/875) +- FileUpload throws error on build [\#1017](https://github.com/primefaces/primevue/issues/1017) +- autocomplete input no response [\#1010](https://github.com/primefaces/primevue/issues/1010) + +## [2.4.0](https://github.com/primefaces/primevue/tree/2.4.0) (2021-02-22) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.3.0...2.4.0) + +**Implemented New Features and Enhancements:** + +- Touch support for ColorPicker [\#1003](https://github.com/primefaces/primevue/issues/1003) +- Error when removing InputNumbers from DOM tree [\#1001](https://github.com/primefaces/primevue/issues/1001) +- FileUpload callback 'Select' little adjust. [\#1000](https://github.com/primefaces/primevue/issues/1000) +- Add activeIndex to Tabview [\#927](https://github.com/primefaces/primevue/issues/927) +- Add activeIndex to Accordion [\#924](https://github.com/primefaces/primevue/issues/924) +- Update material theming and add invalid field demo [\#920](https://github.com/primefaces/primevue/issues/920) +- Upgrade PrimeIcons 4.1.0 [\#914](https://github.com/primefaces/primevue/issues/914) +- \[FileUpload\] when :fileLimit is exceeded, Upload button should not be active [\#909](https://github.com/primefaces/primevue/issues/909) +- state-save and state-restore events for Table [\#901](https://github.com/primefaces/primevue/issues/901) +- File Upload cant disable and hide Upload & Cancel [\#897](https://github.com/primefaces/primevue/issues/897) +- New Lazy DataTable Demo with Remote Source [\#862](https://github.com/primefaces/primevue/issues/862) + +**Fixed bugs:** + +- Space key support for row radio [\#1002](https://github.com/primefaces/primevue/issues/1002) +- Calendar seconds are locked when min/max set [\#923](https://github.com/primefaces/primevue/issues/923) +- Improve float label support in overlay selects [\#907](https://github.com/primefaces/primevue/issues/907) +- Sidebar Mask not being removed from DOM on close [\#906](https://github.com/primefaces/primevue/issues/906) +- "Clear" button in Calendar wrongly labeled [\#905](https://github.com/primefaces/primevue/issues/905) +- Autocomplete crashes when "field" property is a function [\#903](https://github.com/primefaces/primevue/issues/903) +- p-button-link not visible in Material Design themes [\#902](https://github.com/primefaces/primevue/issues/902) +- Textarea autoresize does not respect its border [\#900](https://github.com/primefaces/primevue/issues/900) +- Knob replaceAll causes issue with nuxt SSR [\#898](https://github.com/primefaces/primevue/issues/898) +- \[Bug\] Error import ScrollTop component [\#896](https://github.com/primefaces/primevue/issues/896) +- MenuItem: class does not apply to separator item [\#895](https://github.com/primefaces/primevue/issues/895) +- Slider incorrectly positions handle when using mixed-sign min/max [\#893](https://github.com/primefaces/primevue/issues/893) +- Strange behavior using context menu on Safari [\#886](https://github.com/primefaces/primevue/issues/886) +- Calendar fails with prop monthNavigator = true [\#876](https://github.com/primefaces/primevue/issues/876) +- Calendar component doesn't respect dateFormat config value [\#870](https://github.com/primefaces/primevue/issues/870) +- Multiselect: selected values are not shown without placeholder [\#868](https://github.com/primefaces/primevue/issues/868) +- primevue/fieldset not found [\#860](https://github.com/primefaces/primevue/issues/860) + +## [2.3.0](https://github.com/primefaces/primevue/tree/2.3.0) (2021-01-06) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.2.3...2.3.0) + +**Breaking Changes:** + +- Remove locale from Calendar [\#824](https://github.com/primefaces/primevue/issues/824) +- Setup Requirement [\#823](https://github.com/primefaces/primevue/issues/823) + +**Implemented New Features and Enhancements:** + +- Touch support for Slider [\#757](https://github.com/primefaces/primevue/issues/757) +- Nuxt Module [\#819](https://github.com/primefaces/primevue/issues/819) +- Refactor Build [\#818](https://github.com/primefaces/primevue/issues/818) +- Locale API [\#817](https://github.com/primefaces/primevue/issues/817) +- ConfirmPopup Component [\#791](https://github.com/primefaces/primevue/issues/791) +- ConfirmDialog Component [\#790](https://github.com/primefaces/primevue/issues/790) +- Splitter Component [\#789](https://github.com/primefaces/primevue/issues/789) +- ScrollTop Component [\#788](https://github.com/primefaces/primevue/issues/788) +- Skeleton Component [\#787](https://github.com/primefaces/primevue/issues/787) +- Divider Component [\#786](https://github.com/primefaces/primevue/issues/786) +- Knob Component [\#785](https://github.com/primefaces/primevue/issues/785) +- CascadeSelect Component [\#784](https://github.com/primefaces/primevue/issues/784) +- Avatar Component [\#783](https://github.com/primefaces/primevue/issues/783) +- Badge Component [\#782](https://github.com/primefaces/primevue/issues/782) +- Tag Component [\#779](https://github.com/primefaces/primevue/issues/779) +- Chip Component [\#778](https://github.com/primefaces/primevue/issues/778) + +**Fixed bugs:** + +- Vertical Slider [\#780](https://github.com/primefaces/primevue/issues/780) + +## [2.2.3](https://github.com/primefaces/primevue/tree/2.2.3) (2020-12-14) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.2.2...2.2.3) + +**Implemented New Features and Enhancements:** + +- Chip component cosmetics [\#777](https://github.com/primefaces/primevue/issues/777) +- Update to FullCalendar 5 [\#776](https://github.com/primefaces/primevue/issues/776) +- Close event for Message component [\#761](https://github.com/primefaces/primevue/issues/761) +- Touch support for Slider [\#758](https://github.com/primefaces/primevue/issues/758) + +**Fixed bugs:** + +- Slider has incorrect aria-\* variable values [\#774](https://github.com/primefaces/primevue/issues/774) +- Invalid "sortField" property type in Vue and type definition files [\#764](https://github.com/primefaces/primevue/issues/764) +- Keyboard support problem for AutoComplete [\#763](https://github.com/primefaces/primevue/issues/763) +- Textarea does not auto resize its height when created [\#762](https://github.com/primefaces/primevue/issues/762) +- Calendar navigation \(next, prev month\) inside DataTable or OverlayPanel not working [\#759](https://github.com/primefaces/primevue/issues/759) +- Primevue 2 dismissableMask=true not working when clicking outside the modal [\#741](https://github.com/primefaces/primevue/issues/741) +- FileUpload with fileLimit problem [\#677](https://github.com/primefaces/primevue/issues/677) + +## [2.2.2](https://github.com/primefaces/primevue/tree/2.2.2) (2020-11-30) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.2.1...2.2.2) + +**Implemented New Features and Enhancements:** + +- New Timeline Component [\#712](https://github.com/primefaces/primevue/issues/712) +- Chips mode for MultiSelect [\#711](https://github.com/primefaces/primevue/issues/711) +- SelectButton should allow a mode to ensure an options is always selected [\#698](https://github.com/primefaces/primevue/issues/698) +- OverlayPanel :before "indicator" needs dynamic placement [\#697](https://github.com/primefaces/primevue/issues/697) +- Improve typescript definitions [\#696](https://github.com/primefaces/primevue/issues/696) +- Add the 'enter' key support to InputNumber [\#676](https://github.com/primefaces/primevue/issues/676) + +**Fixed bugs:** + +- SplitButton: after selecting the default command, the command menu does not close. [\#710](https://github.com/primefaces/primevue/issues/710) +- Autocomplete: when the menu open upwards style broken [\#709](https://github.com/primefaces/primevue/issues/709) +- Multiselect/Dropdown: when the menu open upwards style broken [\#708](https://github.com/primefaces/primevue/issues/708) +- DataTable global filter bug [\#707](https://github.com/primefaces/primevue/issues/707) +- InputNumber's onInputBlur fails when component gets destroyed [\#705](https://github.com/primefaces/primevue/issues/705) +- Sidebar not visible on mount [\#704](https://github.com/primefaces/primevue/issues/704) +- PrimeVue FileUpload FileLimit [\#703](https://github.com/primefaces/primevue/issues/703) +- DataTable multiple click RadioButton focus previous row [\#702](https://github.com/primefaces/primevue/issues/702) +- FileUpload Preview columns become misaligned when both image and non-image files are uploaded [\#701](https://github.com/primefaces/primevue/issues/701) +- Error with empty objects [\#700](https://github.com/primefaces/primevue/issues/700) +- ColorPicker overlay input does not reflect to hue section changes [\#699](https://github.com/primefaces/primevue/issues/699) +- Multiselect dropdown closes after selecting one option [\#602](https://github.com/primefaces/primevue/issues/602) +- PrimeVue 2 InputMask with unmask problem [\#577](https://github.com/primefaces/primevue/issues/577) + +## [2.2.1](https://github.com/primefaces/primevue/tree/2.2.1) (2020-11-23) + +**Implemented New Features and Enhancements:** + +- Do not hide overlays on body scroll [\#661](https://github.com/primefaces/primevue/issues/661) + +**Fixed bugs:** + +- Overriding ProgressSpinner colors doc error [\#662](https://github.com/primefaces/primevue/issues/662) +- Dropdown inside datable using showClear causing: Cannot read property 'classList' of null [\#664](https://github.com/primefaces/primevue/issues/664) +- DataTable crashes with a "Cannot read property 'xxx' of null" for nested objects [\#665](https://github.com/primefaces/primevue/issues/665) + +## [2.2.0](https://github.com/primefaces/primevue/tree/2.2.0) (2020-10-14) + +**Implemented New Features and Enhancements:** + +- Add inputStyle and inputClass properties to InputNumber [\#573](https://github.com/primefaces/primevue/issues/573) +- Accordion rounded border minor visual issue [\#572](https://github.com/primefaces/primevue/issues/572) +- Add indentation property to TreeTable [\#571](https://github.com/primefaces/primevue/issues/571) +- Lighter Highlight Color for PrimeOne Themes [\#568](https://github.com/primefaces/primevue/issues/568) +- Fluent UI Theme [\#561](https://github.com/primefaces/primevue/issues/561) +- Soho Theme [\#560](https://github.com/primefaces/primevue/issues/560) +- Galleria and Carousel highlight item visual improvement on PrimeOne Themes [\#557](https://github.com/primefaces/primevue/issues/557) +- Tooltip doesn't close in scrollable containers [\#526](https://github.com/primefaces/primevue/issues/526) + +**Fixed bugs:** + +- pRipple working when disabled\(etc menuitem\) [\#574](https://github.com/primefaces/primevue/issues/574) +- TriStateCheckbox doesn't show correct icon when value is false when using material themes [\#570](https://github.com/primefaces/primevue/issues/570) +- TouchUI modal gets stuck if input tabs out [\#569](https://github.com/primefaces/primevue/issues/569) +- Can't close MultiSelect or Select when inside Dialog component [\#567](https://github.com/primefaces/primevue/issues/567) +- Problems when typing or pasting numbers into InputNumber [\#566](https://github.com/primefaces/primevue/issues/566) +- inputNumber with numeric prefix is not working as expected [\#565](https://github.com/primefaces/primevue/issues/565) +- InputNumber with spinner mode throws a JS exception [\#564](https://github.com/primefaces/primevue/issues/564) +- InputNumber cannot set value when format property is false [\#563](https://github.com/primefaces/primevue/issues/563) +- The 'disabled' option has no effect on InputNumber [\#562](https://github.com/primefaces/primevue/issues/562) +- Tree toggler icon hover color is wrong in bootstrap theme [\#559](https://github.com/primefaces/primevue/issues/559) +- Tree selection is broken when ripple is enabled [\#558](https://github.com/primefaces/primevue/issues/558) + +## [2.1.0](https://github.com/primefaces/primevue/tree/2.1.0) (2020-09-29) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.0.9...2.1.0) + +**Implemented New Features and Enhancements:** + +- Improvement in behavior of components that have overlay panels in scrollable containers [\#514](https://github.com/primefaces/primevue/issues/514) +- Scrollable Table alignment improvement [\#513](https://github.com/primefaces/primevue/issues/513) +- Improve calendar tabbing behavior [\#512](https://github.com/primefaces/primevue/issues/512) + +**Fixed bugs:** + +- TouchUI modal gets stuck if input tabs out [\#518](https://github.com/primefaces/primevue/issues/518) +- Button not registered in FileUpload [\#516](https://github.com/primefaces/primevue/issues/516) +- BlockUI documentation indicates "show" event whereas the actual event is "unblock" [\#515](https://github.com/primefaces/primevue/issues/515) + +## [2.0.9](https://github.com/primefaces/primevue/tree/2.0.9) (2020-09-09) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.0.8...2.0.9) + +**Implemented New Features and Enhancements:** + +- InputGroup support for input components with wrappers [\#471](https://github.com/primefaces/primevue/issues/471) +- Update PrimeFlex documentation to 2.0.0 [\#464](https://github.com/primefaces/primevue/issues/464) +- Scrollable Table alignment improvement [\#462](https://github.com/primefaces/primevue/issues/462) +- emptyFilterMessage for Dropdown, MultiSelect and Listbox filter [\#459](https://github.com/primefaces/primevue/issues/459) +- Negative sign with InputNumber [\#458](https://github.com/primefaces/primevue/issues/458) +- InputNumber Currency not working as expected [\#330](https://github.com/primefaces/primevue/issues/330) + +**Fixed bugs:** + +- Dialog with Long Content does not scroll in IE11 [\#473](https://github.com/primefaces/primevue/issues/473) +- Click on Dropdown's filter text box closes items list [\#465](https://github.com/primefaces/primevue/issues/465) +- Calendar misplaced layout if more than one month is shown [\#461](https://github.com/primefaces/primevue/issues/461) +- inputNumber cannot set value bigger than 99.999 for an ES locale [\#460](https://github.com/primefaces/primevue/issues/460) +- Items in PanelMenu are highlighted wrongly with Material dark themes [\#456](https://github.com/primefaces/primevue/issues/456) +- InputNumber with dynamic fraction digits doesn't work as expected [\#455](https://github.com/primefaces/primevue/issues/455) + +## [2.0.8](https://github.com/primefaces/primevue/tree/2.0.8) (2020-08-27) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.0.7...2.0.8) + +**Implemented New Features and Enhancements:** + +- Add Del key support to InputNumber [\#452](https://github.com/primefaces/primevue/issues/452) +- Documentation for primeflex setup [\#434](https://github.com/primefaces/primevue/issues/434) +- InputNumber with decimals should support entering comma/decimal point [\#432](https://github.com/primefaces/primevue/issues/432) +- dismissableMask and closeOnEscape for Dialog [\#372](https://github.com/primefaces/primevue/issues/372) + +**Fixed bugs:** + +- Can't type - as first symbol into an Inputnumber [\#453](https://github.com/primefaces/primevue/issues/453) +- When autocomplete is bound to an object, float label overlaps in some circumstances [\#450](https://github.com/primefaces/primevue/issues/450) +- TreeTable template always render field value [\#445](https://github.com/primefaces/primevue/issues/445) +- Setting placeholder text for Editor / Quill component doesn't work [\#433](https://github.com/primefaces/primevue/issues/433) +- InputNumber with stacked Buttons is broken [\#431](https://github.com/primefaces/primevue/issues/431) +- Doc error on InputNumber [\#430](https://github.com/primefaces/primevue/issues/430) +- InputNumber throws error if emptied [\#429](https://github.com/primefaces/primevue/issues/429) +- Pill Text not centered [\#428](https://github.com/primefaces/primevue/issues/428) + +## [2.0.7](https://github.com/primefaces/primevue/tree/2.0.7) (2020-08-05) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.0.6...2.0.7) + +**Fixed bugs:** + +- Global filter is not working with invalid values on TreeTable [\#427](https://github.com/primefaces/primevue/issues/427) +- Global filter throws error in TreeTable[\#425](https://github.com/primefaces/primevue/issues/425) +- Duplicate keys in TreeTable [\#424](https://github.com/primefaces/primevue/issues/424) + +## [2.0.6](https://github.com/primefaces/primevue/tree/2.0.6) (2020-08-04) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.0.5...2.0.6) + +**Implemented New Features and Enhancements:** + +- Improve connected overlay positioning [\#418](https://github.com/primefaces/primevue/issues/418) +- TabMenu should include subpaths in active tab detection [\#417](https://github.com/primefaces/primevue/issues/417) +- Rename toast message title class [\#420](https://github.com/primefaces/primevue/issues/420) + +**Fixed bugs:** + +- TabMenu error when no route matches one of the menu paths [\#416](https://github.com/primefaces/primevue/issues/416) +- DataTable row reorder demo not working [\#419](https://github.com/primefaces/primevue/issues/419) +- DataTable: Exporting an empty DataTable throws TypeError [\#413](https://github.com/primefaces/primevue/issues/413) +- Duplicate keys in TreeTable [\#424](https://github.com/primefaces/primevue/issues/424) +- Fixed typo in ProgressBarDoc.vue [\#414](https://github.com/primefaces/primevue/issues/414) +- Paginator is displayed over table loading overlay [\#422](https://github.com/primefaces/primevue/issues/422) +- p-error, p-invalid styling missing on some form elements [\#421](https://github.com/primefaces/primevue/issues/421) + +## [2.0.5](https://github.com/primefaces/primevue/tree/2.0.5) (2020-07-24) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.0.4...2.0.5) + +**Implemented New Features and Enhancements:** + +- SideBar p-sidebar-mask div is not removed automatically [\#329](https://github.com/primefaces/primevue/issues/329) +- Block UI mask remove automatically [\#409](https://github.com/primefaces/primevue/issues/409) + +**Fixed bugs:** + +- Calendar mask animation [\#408](https://github.com/primefaces/primevue/issues/408) + +## [2.0.4](https://github.com/primefaces/primevue/tree/2.0.4) (2020-07-23) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.0.3...2.0.4) + +**Implemented New Features and Enhancements:** + +- MultiSelect close icon spacing issue [\#405](https://github.com/primefaces/primevue/issues/405) +- Refactor OrderList and PickList header style classes [\#403](https://github.com/primefaces/primevue/issues/403) +- Improve Dialog padding [\#404](https://github.com/primefaces/primevue/issues/404) +- Refactor selectbutton focus visuals [\#406](https://github.com/primefaces/primevue/issues/406) + +**Fixed bugs:** + +- Alignment issue on left and right contents of Toolbar [\#400](https://github.com/primefaces/primevue/issues/400) +- Remove default text-decoration style from the header links on Fieldset [\#399](https://github.com/primefaces/primevue/issues/399) + +## [2.0.3](https://github.com/primefaces/primevue/tree/2.0.3) (2020-07-18) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.0.2...2.0.3) + +**Breaking changes:** + +- Improve Toast CSS structure and Add new positions [\#391](https://github.com/primefaces/primevue/issues/391) + +**Implemented New Features and Enhancements:** + +- Add p-button-plain add-on for text button [\#398](https://github.com/primefaces/primevue/issues/398) +- Sort the icons alphabetically in the documentation [\#385](https://github.com/primefaces/primevue/issues/385) +- Button slot [\#388](https://github.com/primefaces/primevue/pull/388) +- Rename p-datatable-row to p-selectable-row [\#397](https://github.com/primefaces/primevue/issues/397) +- Cleanup FullCalendar CSS [\#392](https://github.com/primefaces/primevue/issues/392) + +**Fixed bugs:** + +- Alignment issue on tree [\#395](https://github.com/primefaces/primevue/issues/395) +- Add type="button" to buttons to avoid form submission [\#394](https://github.com/primefaces/primevue/issues/394) +- Wrong class name at FileUpload [\#390](https://github.com/primefaces/primevue/issues/390) + +## [2.0.2](https://github.com/primefaces/primevue/tree/2.0.2) (2020-07-12) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.0.1...2.0.2) + +**Implemented New Features and Enhancements:** + +- OverlayPanel padding visual problem [\#382](https://github.com/primefaces/primevue/issues/382) +- Improved active state for dark themes [\#383](https://github.com/primefaces/primevue/issues/383) + +## [2.0.1](https://github.com/primefaces/primevue/tree/2.0.1) (2020-07-10) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.0.0...2.0.1) + +**Implemented New Features and Enhancements:** + +- Ability to programmatically show or hide Dropdown/MultiSelect [\#368](https://github.com/primefaces/primevue/issues/368) +- Ability to add scaling inputs by group [\#373](https://github.com/primefaces/primevue/issues/373) +- Support for left and right icons for Input [\#379](https://github.com/primefaces/primevue/issues/379) + +**Fixed bugs:** + +- Datatable with RowGroup and Scroll scrollbar misplaced [\#380](https://github.com/primefaces/primevue/issues/380) +- InlineMessage typescript declaration is not available at package root [\#366](https://github.com/primefaces/primevue/issues/366) +- Editor readonly not working due to typo [\#369](https://github.com/primefaces/primevue/issues/369) +- Message error with Ripple [\#378](https://github.com/primefaces/primevue/issues/378) +- Separator problem with Menu [\#377](https://github.com/primefaces/primevue/issues/377) + +## [2.0.0](https://github.com/primefaces/primevue/tree/2.0.0) (2020-07-06) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.0.0-rc.3...2.0.0) + +## [2.0.0-rc.3](https://github.com/primefaces/primevue/tree/2.0.0-rc.3) (2020-07-04) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.0.0-rc.2...2.0.0-rc.3) + +**Implemented New Features and Enhancements:** + +- FileLimit for FileUpload [\#361](https://github.com/primefaces/primevue/issues/361) +- Custom Upload for FileUpload [\#360](https://github.com/primefaces/primevue/issues/360) +- Filter event for Listbox, Dropdown and MultiSelect [\#359](https://github.com/primefaces/primevue/issues/359) +- DataView should reset paginator on sort [\#356](https://github.com/primefaces/primevue/issues/356) + +**Fixed bugs:** + +- Usage of header slot produces JavaScript error when beeing combined with ColumnGroups [\#349](https://github.com/primefaces/primevue/issues/349) +- Messages are not visible in simple uploader [\#343](https://github.com/primefaces/primevue/issues/343) +- Accordion breaks input components inside [\#342](https://github.com/primefaces/primevue/issues/342) +- Picklist 'move-all-to-source' event argument e.items is empty [\#341](https://github.com/primefaces/primevue/issues/341) +- datatable filter not work in some firefox [\#325](https://github.com/primefaces/primevue/issues/325) +- DataTable : \(row\) editing + selection column - focus issues [\#315](https://github.com/primefaces/primevue/issues/315) +- Datatable scrollable mode doesn't load Loading Template [\#296](https://github.com/primefaces/primevue/issues/296) + +## [2.0.0-rc.2](https://github.com/primefaces/primevue/tree/2.0.0-rc.2) (2020-07-02) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.0.0-rc.1...2.0.0-rc.2) + +**Implemented New Features and Enhancements:** + +- Material Theme [\#363](https://github.com/primefaces/primevue/issues/363) +- Bootstrap Theme [\#362](https://github.com/primefaces/primevue/issues/362) +- Improve Galleria animation on FullScreen mode [\#346](https://github.com/primefaces/primevue/issues/346) + +**Fixed bugs:** + +- Item content in Carousel does not expand according to the wrapper element [\#348](https://github.com/primefaces/primevue/issues/348) +- InputNumber prevents min key number [\#337](https://github.com/primefaces/primevue/issues/337) + +## [2.0.0-rc.1](https://github.com/primefaces/primevue/tree/2.0.0-rc.1) (2020-05-28) + +[Full Changelog](https://github.com/primefaces/primevue/compare/2.0.0-beta.1...2.0.0-rc.1) + +**Implemented New Features and Enhancements:** + +- Disable virtual keyboard in calendar [\#334](https://github.com/primefaces/primevue/issues/334) +- Rename dialog titlebar class to dialog header [\#333](https://github.com/primefaces/primevue/issues/333) +- Flex Scroll height for DataTable [\#328](https://github.com/primefaces/primevue/issues/328) +- New Component: ScrollPanel [\#322](https://github.com/primefaces/primevue/issues/322) +- Refactor p-panel-titlebar to p-panel-header [\#321](https://github.com/primefaces/primevue/issues/321) +- Terminal should scroll to bottom after command [\#319](https://github.com/primefaces/primevue/issues/319) +- Rename Nova Themes [\#318](https://github.com/primefaces/primevue/issues/318) +- Datatable coltoggle changes columns order. [\#311](https://github.com/primefaces/primevue/issues/311) + +**Fixed bugs:** + +- Table loader is not visible in scrollable table [\#332](https://github.com/primefaces/primevue/issues/332) +- Alignment issue on Galleria with left and right thumbnail position [\#327](https://github.com/primefaces/primevue/issues/327) +- InputNumber Up Down buttons send form on submit [\#313](https://github.com/primefaces/primevue/issues/313) +- Slider handle moves on click [\#298](https://github.com/primefaces/primevue/issues/298) + +## [2.0.0-beta.1](https://github.com/primefaces/primevue/tree/2.0.0-beta.1) (2020-05-15) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.3.2...2.0.0-beta.1) + +**Implemented New Features and Enhancements:** + +- Modernize CSS [\#263](https://github.com/primefaces/primevue/issues/263) +- Responsive Menubar [\#316](https://github.com/primefaces/primevue/issues/316) +- Top and Bottom icon positioning for button [\#309](https://github.com/primefaces/primevue/issues/309) +- Badges and Tags [\#308](https://github.com/primefaces/primevue/issues/308) +- Saga and Vela Themes [\#307](https://github.com/primefaces/primevue/issues/307) +- Add link button [\#306](https://github.com/primefaces/primevue/issues/306) +- Icons inside InputText [\#305](https://github.com/primefaces/primevue/issues/305) +- Add inputId to Dropdown and MultiSelect [\#303](https://github.com/primefaces/primevue/issues/303) +- ToggleButton refactor [\#297](https://github.com/primefaces/primevue/issues/297) +- Decouple MegaMenu from PrimeFlex [\#295](https://github.com/primefaces/primevue/issues/295) + +**Breaking Changes:** + +- Remove Spinner [\#287](https://github.com/primefaces/primevue/issues/287) +- Rename ValidationMessage to InlineMessage [\#301](https://github.com/primefaces/primevue/issues/301) +- Refactor Messages css naming [\#302](https://github.com/primefaces/primevue/issues/302) + +## [1.3.2](https://github.com/primefaces/primevue/tree/1.3.2) (2020-04-24) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.3.1...1.3.2) + +**Fixed bugs:** + +- Context Menu throw error after update to 1.3.1 [\#291](https://github.com/primefaces/primevue/issues/291) +- InputMask somehow clears the initial value to empty string [\#290](https://github.com/primefaces/primevue/issues/290) + +## [1.3.1](https://github.com/primefaces/primevue/tree/1.3.1) (2020-04-23) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.3.0...1.3.1) + +**Implemented New Features and Enhancements:** + +- FilterPlaceholder for Listbox [\#284](https://github.com/primefaces/primevue/issues/284) +- Function support for MenuModel visible prop [\#286](https://github.com/primefaces/primevue/issues/286) + +**Fixed bugs:** + +- Group Header Broken without Footer Template [\#288](https://github.com/primefaces/primevue/issues/288) +- SplitButton is misaligned [\#289](https://github.com/primefaces/primevue/issues/289) + +## [1.3.0](https://github.com/primefaces/primevue/tree/1.3.0) (2020-04-20) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.1.0...1.3.0) + +**Implemented New Features and Enhancements:** + +- Add empty template to FileUpload [\#265](https://github.com/primefaces/primevue/issues/265) +- DragDrop support for FileUpload [\#262](https://github.com/primefaces/primevue/issues/262) +- Improve DataTable ContextMenu Styling [\#253](https://github.com/primefaces/primevue/issues/253) +- Separator, addOnBlur and allowDuplicate for Chips [\#252](https://github.com/primefaces/primevue/issues/252) +- Add id property to Steps [\#251](https://github.com/primefaces/primevue/issues/251) +- ReImplemented Steps styles [\#250](https://github.com/primefaces/primevue/issues/250) +- Improve autocomplete css by using flex [\#249](https://github.com/primefaces/primevue/issues/249) +- Add menubar-left and menubar-right slots to Menubar [\#246](https://github.com/primefaces/primevue/issues/246) +- New Component: Galleria [\#212](https://github.com/primefaces/primevue/issues/212) +- Ability to disable PanelMenu items [\#171](https://github.com/primefaces/primevue/issues/171) +- TreeTable should pass more information on page-sort-filter events [\#282](https://github.com/primefaces/primevue/issues/282) +- filterLocale for components with filtering [\#279](https://github.com/primefaces/primevue/issues/279) +- Update sort icons [\#278](https://github.com/primefaces/primevue/issues/278) +- Placeholder for Chips [\#277](https://github.com/primefaces/primevue/issues/277) +- New Component: InputNumber [\#275](https://github.com/primefaces/primevue/issues/275) +- Value slot for Dropdown [\#271](https://github.com/primefaces/primevue/issues/271) +- Removable sort on DataTable - TreeTable [\#235](https://github.com/primefaces/primevue/issues/235) +- Order indicators for Multi column sorting [\#189](https://github.com/primefaces/primevue/issues/189) + +**Fixed bugs:** + +- Calendar.vue: Poor handling of user input [\#70](https://github.com/primefaces/primevue/issues/70) +- Carousel - Button inside carousel-item is not clickable in mobile phones [\#264](https://github.com/primefaces/primevue/issues/264) +- Popup menu does not appear where it should [\#258](https://github.com/primefaces/primevue/issues/258) +- FileUpload Multiple: Error when deleting file before upload [\#257](https://github.com/primefaces/primevue/issues/257) +- FileUpload in auto mode sends two post requests in IE11 [\#254](https://github.com/primefaces/primevue/issues/254) +- TreeTable global filtering fails [\#283](https://github.com/primefaces/primevue/issues/283) +- Loop on treetable sort [\#281](https://github.com/primefaces/primevue/issues/281) +- Datatable Group footer doesn't work [\#276](https://github.com/primefaces/primevue/issues/276) +- Textarea with autoResize true not displayed correctly when initially hidden [\#274](https://github.com/primefaces/primevue/issues/274) +- Calendar is not empty when the v-model is null [\#270](https://github.com/primefaces/primevue/issues/270) + +## [1.2.0](https://github.com/primefaces/primevue/tree/1.2.0) (2020-04-17) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.6...1.1.0) + +**Implemented New Features and Enhancements:** + +- Improve autocomplete css by using flex [\#249](https://github.com/primefaces/primevue/issues/249) +- Improve DataTable ContextMenu Styling [\#253](https://github.com/primefaces/primevue/issues/253) +- DragDrop support for FileUpload [\#262](https://github.com/primefaces/primevue/issues/262) +- Add empty template to FileUpload [\#265](https://github.com/primefaces/primevue/issues/265) +- Separator, addOnBlur and allowDuplicate for Chips [\#252](https://github.com/primefaces/primevue/issues/252) +- Add menubar-left and menubar-right slots to Menubar [\#246](https://github.com/primefaces/primevue/issues/246) +- Ability to disable PanelMenu items [\#171](https://github.com/primefaces/primevue/issues/171) +- Add id property to Steps [\#251](https://github.com/primefaces/primevue/issues/251) +- ReImplemented Steps styles [\#250](https://github.com/primefaces/primevue/issues/250) +- ReImplemented Steps styles [\#250](https://github.com/primefaces/primevue/issues/250) + +**Fixed bugs:** + +- Carousel - Button inside carousel-item is not clickable in mobile phones [\#264](https://github.com/primefaces/primevue/issues/264) +- FileUpload Multiple: Error when deleting file before upload [\#257](https://github.com/primefaces/primevue/issues/257) +- Popup menu does not appear where it should [\#258](https://github.com/primefaces/primevue/issues/258) +- FileUpload in auto mode sends two post requests in IE11 [\#254](https://github.com/primefaces/primevue/issues/254) + +**Deprecated:** + +- Deprecate menubar custom slot [\#260](https://github.com/primefaces/primevue/issues/260) + +## [1.1.0](https://github.com/primefaces/primevue/tree/1.1.0) (2020-03-17) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.6...1.1.0) + +**Implemented New Features and Enhancements:** + +- Move column filters to their own row [\#226](https://github.com/primefaces/primevue/issues/226) +- Loading template for DataTable [\#244](https://github.com/primefaces/primevue/issues/244) +- Move TreeTable filters to their own header row [\#241](https://github.com/primefaces/primevue/issues/241) +- Add filterHeaderStyle and filterHeaderClass to Column [\#240](https://github.com/primefaces/primevue/issues/240) +- Unify placeholder colors [\#239](https://github.com/primefaces/primevue/issues/239) +- Opacity Animation for Modals [\#237](https://github.com/primefaces/primevue/issues/237) +- Remove Responsive DataTable [\#232](https://github.com/primefaces/primevue/issues/232) +- Display issues with Chips [\#231](https://github.com/primefaces/primevue/issues/231) +- More options for currentPageReportTemplate [\#230](https://github.com/primefaces/primevue/issues/230) +- New Component: Terminal [\#229](https://github.com/primefaces/primevue/issues/229) +- New Component: BlockUI [\#211](https://github.com/primefaces/primevue/issues/211) +- Ability to disable TabMenu items [\#172](https://github.com/primefaces/primevue/issues/172) +- Ability to disable MegaMenu items [\#170](https://github.com/primefaces/primevue/issues/170) + +**Fixed bugs:** + +- Disabled menuitems with routerLink integration are still functional [\#243](https://github.com/primefaces/primevue/issues/243) +- Disabled menuitems opacity is doubled in MenuBar, TieredMenu and ContextMenu [\#242](https://github.com/primefaces/primevue/issues/242) +- MultiSelect label size grows on items select [\#238](https://github.com/primefaces/primevue/issues/238) +- DataTable scrollHeight doesn't calculate correctly with frozen columns and percentages [\#234](https://github.com/primefaces/primevue/issues/234) +- Select components may throw non-primitive key error [\#233](https://github.com/primefaces/primevue/issues/233) + +## [1.0.6](https://github.com/primefaces/primevue/tree/1.0.6) (2020-03-04) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.5...1.0.6) + +**Implemented New Features and Enhancements:** + +- Add appendTo to components with Overlays [\#224](https://github.com/primefaces/primevue/issues/224) +- Add filterField to column [\#223](https://github.com/primefaces/primevue/issues/223) +- Accents support in Table filtering [\#220](https://github.com/primefaces/primevue/issues/220) +- Date support in table filtering [\#219](https://github.com/primefaces/primevue/issues/219) +- New filtering modes for Table [\#217](https://github.com/primefaces/primevue/issues/217) + +**Fixed bugs:** + +- CurrentPageReport is initially wrong [\#222](https://github.com/primefaces/primevue/issues/222) +- Primitive values support in Select components [\#221](https://github.com/primefaces/primevue/issues/221) +- sortField of column is ignored [\#216](https://github.com/primefaces/primevue/issues/216) +- DataTable Column Group Sort Bug [\#214](https://github.com/primefaces/primevue/issues/214) + +## [1.0.5](https://github.com/primefaces/primevue/tree/1.0.5) (2020-02-27) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.4...1.0.5) + +**Implemented New Features and Enhancements:** + +- Tooltip Component missing typescript declaration file [\#202](https://github.com/primefaces/primevue/issues/202) + +**Fixed bugs:** + +- Tooltip reactive text [\#206](https://github.com/primefaces/primevue/issues/206) +- Editor infinite loop with some specific values [\#204](https://github.com/primefaces/primevue/issues/204) +- DataTable \> Missing `custom` filterMatchMode [\#200](https://github.com/primefaces/primevue/issues/200) +- Top\* and Bottom\* animation are not working correctly on Dialog with 'position' property [\#190](https://github.com/primefaces/primevue/issues/190) + +## [1.0.4](https://github.com/primefaces/primevue/tree/1.0.4) (2020-02-08) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.3...1.0.4) + +**Fixed bugs:** + +- Dialog positions regressions [\#191](https://github.com/primefaces/primevue/issues/191) + +## [1.0.3](https://github.com/primefaces/primevue/tree/1.0.3) (2020-02-07) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.2...1.0.3) + +**Implemented New Features and Enhancements:** + +- Add position property to Dialog [\#184](https://github.com/primefaces/primevue/issues/184) +- Add maximizable property to Dialog [\#183](https://github.com/primefaces/primevue/issues/183) +- DataTable "$event" argument on page/sort events does not contains filterSearchMode. [\#181](https://github.com/primefaces/primevue/issues/181) +- Dialog header not visible [\#179](https://github.com/primefaces/primevue/issues/179) +- Ability to disable TieredMenu items [\#173](https://github.com/primefaces/primevue/issues/173) +- Ability to disable ContextMenu items [\#169](https://github.com/primefaces/primevue/issues/169) +- Ability to disable Menubar items [\#168](https://github.com/primefaces/primevue/issues/168) + +**Fixed bugs:** + +- Chart.vue : Error in v-on handler: "TypeError: this.emit is not a function" [\#188](https://github.com/primefaces/primevue/issues/188) +- OverlayPanel dismissable does not work [\#187](https://github.com/primefaces/primevue/issues/187) +- Could not find module './components/row/Row' [\#185](https://github.com/primefaces/primevue/issues/185) +- Style classes are not rendered correctly on Dialog [\#182](https://github.com/primefaces/primevue/issues/182) + +## [1.0.2](https://github.com/primefaces/primevue/tree/1.0.2) (2020-01-30) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.0...1.0.2) + +**Implemented New Features and Enhancements:** + +- Align focus visuals with the theme [\#177](https://github.com/primefaces/primevue/issues/177) +- Refactor SplitButton to use Menu [\#174](https://github.com/primefaces/primevue/issues/174) +- DataTable onPage event fires without sort and filter information [\#163](https://github.com/primefaces/primevue/issues/163) +- Ability to disable SplitButton or Menu items [\#161](https://github.com/primefaces/primevue/issues/161) +- Enter key should select a PickList item [\#156](https://github.com/primefaces/primevue/issues/156) +- Dialog in mobile view [\#153](https://github.com/primefaces/primevue/issues/153) +- Dropdown and MultiSelect on expand event [\#150](https://github.com/primefaces/primevue/issues/150) + +**Fixed bugs:** + +- Editable Dropdown loses focus [\#149](https://github.com/primefaces/primevue/issues/149) +- Rename select event with \*-select [\#148](https://github.com/primefaces/primevue/issues/148) +- Dialog block UI removes page scroll [\#145](https://github.com/primefaces/primevue/issues/145) +- Calendar select event has no value [\#144](https://github.com/primefaces/primevue/issues/144) +- Calendar manual input fails [\#143](https://github.com/primefaces/primevue/issues/143) +- Calendar giving focus to today when disabled [\#141](https://github.com/primefaces/primevue/issues/141) +- optionValue and dataKey combination is broken is Select Components [\#90](https://github.com/primefaces/primevue/issues/90) +- DataTable column headers always receive focus [\#176](https://github.com/primefaces/primevue/issues/176) +- Disabled button should remove pointer cursor [\#175](https://github.com/primefaces/primevue/issues/175) +- Dialog visuals broken when initially displayed [\#167](https://github.com/primefaces/primevue/issues/167) +- Dialog animation leave does not work [\#166](https://github.com/primefaces/primevue/issues/166) +- rowsPerPageOptions dropdown is not coming in Paginator [\#159](https://github.com/primefaces/primevue/issues/159) +- Calendar today button TypeError: Cannot read property 'currentTarget' of null [\#158](https://github.com/primefaces/primevue/issues/158) +- Row edit save not working properly in data table [\#151](https://github.com/primefaces/primevue/issues/151) + +## [1.0.0](https://github.com/primefaces/primevue/tree/1.0.0) (2020-01-13) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.0-rc.6...1.0.0) + +**Implemented New Features and Enhancements:** + +- New Component: ColorPicker [\#139](https://github.com/primefaces/primevue/issues/139) +- Enhance Dialog Positioning [\#136](https://github.com/primefaces/primevue/issues/136) + +**Fixed bugs:** + +- Error: Do not access Object.prototype method [\#138](https://github.com/primefaces/primevue/issues/138) +- The slot \#empty of DataTable not working [\#137](https://github.com/primefaces/primevue/issues/137) +- Sidebar showCloseIcon not working [\#135](https://github.com/primefaces/primevue/issues/135) +- Error with calendar year navigator [\#134](https://github.com/primefaces/primevue/issues/134) + +## [1.0.0-rc.6](https://github.com/primefaces/primevue/tree/1.0.0-rc.6) (2019-12-30) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.0-rc.5...1.0.0-rc.6) + +**Fixed bugs:** + +- Keydown causes sort on sortable header [\#130](https://github.com/primefaces/primevue/issues/130) + +## [1.0.0-rc.5](https://github.com/primefaces/primevue/tree/1.0.0-rc.5) (2019-12-30) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.0-rc.4...1.0.0-rc.5) + +**Implemented New Features and Enhancements:** + +- TimePicker buttons should trap focus [\#128](https://github.com/primefaces/primevue/issues/128) + +**Fixed bugs:** + +- RadioButton throws error [\#129](https://github.com/primefaces/primevue/issues/129) + +## [1.0.0-rc.4](https://github.com/primefaces/primevue/tree/1.0.0-rc.4) (2019-12-30) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.0-rc.3...1.0.0-rc.4) + +**Implemented New Features and Enhancements:** + +- Inplace focus visuals not themed [\#123](https://github.com/primefaces/primevue/issues/123) +- New Component: Tooltip [\#122](https://github.com/primefaces/primevue/issues/122) +- Keyboard accessibility for Calendar [\#109](https://github.com/primefaces/primevue/issues/109) +- Enhance ARIA roles and attributes for the components [\#108](https://github.com/primefaces/primevue/issues/108) + +**Fixed bugs:** + +- Error in datatable keyboard navigation [\#127](https://github.com/primefaces/primevue/issues/127) +- Scroll+Paginator fails [\#126](https://github.com/primefaces/primevue/issues/126) + +## [1.0.0-rc.3](https://github.com/primefaces/primevue/tree/1.0.0-rc.3) (2019-12-23) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.0-rc.2...1.0.0-rc.3) + +**Fixed bugs:** + +- DataView Grid should have nogutter [\#121](https://github.com/primefaces/primevue/issues/121) +- Menu should prevent default action when there is none [\#120](https://github.com/primefaces/primevue/issues/120) +- Range slider goes out of bounds [\#119](https://github.com/primefaces/primevue/issues/119) + +## [1.0.0-rc.2](https://github.com/primefaces/primevue/tree/1.0.0-rc.2) (2019-12-20) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.0-rc.1...1.0.0-rc.2) + +**Implemented New Features and Enhancements:** + +- Add p-placeholder class to Multiselect label [\#111](https://github.com/primefaces/primevue/issues/111) + +**Fixed bugs:** + +- ContextMenu fails in global mode [\#118](https://github.com/primefaces/primevue/issues/118) +- ProgressBar showValue prop is ignored [\#117](https://github.com/primefaces/primevue/issues/117) +- Calendar icon button submitting form [\#114](https://github.com/primefaces/primevue/issues/114) +- Message icon correction [\#112](https://github.com/primefaces/primevue/issues/112) +- Disabled Dropdown still picking values [\#110](https://github.com/primefaces/primevue/issues/110) +- Calendar clear button does not reset the input field [\#107](https://github.com/primefaces/primevue/issues/107) + +## [1.0.0-rc.1](https://github.com/primefaces/primevue/tree/1.0.0-rc.1) (2019-12-10) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.0-beta.14...1.0.0-rc.1) + +**Implemented New Features and Enhancements:** + +- New Component: Steps [\#103](https://github.com/primefaces/primevue/issues/103) +- New Component: PanelMenu [\#102](https://github.com/primefaces/primevue/issues/102) +- New Component: ContextMenu [\#101](https://github.com/primefaces/primevue/issues/101) +- New Component: MegaMenu [\#100](https://github.com/primefaces/primevue/issues/100) +- New Component: TabMenu [\#99](https://github.com/primefaces/primevue/issues/99) +- New Component: Menubar [\#98](https://github.com/primefaces/primevue/issues/98) +- New Component: TieredMenu [\#97](https://github.com/primefaces/primevue/issues/97) +- New Component: Breadcrumb [\#96](https://github.com/primefaces/primevue/issues/96) +- Add default focus on searchable dropdowns [\#95](https://github.com/primefaces/primevue/issues/95) +- Nuxt integration [\#86](https://github.com/primefaces/primevue/issues/86) + +**Fixed bugs:** + +- Paginator should go to last page if current page has no data [\#106](https://github.com/primefaces/primevue/issues/106) +- TreeNode is not toggled with left and right arrow keys [\#105](https://github.com/primefaces/primevue/issues/105) +- Dialog is not modal when v-if used [\#94](https://github.com/primefaces/primevue/issues/94) +- DataTable rowClick returns a dom event with no data property [\#91](https://github.com/primefaces/primevue/issues/91) + +## [1.0.0-beta.14](https://github.com/primefaces/primevue/tree/1.0.0-beta.14) (2019-11-20) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.0-beta.13...1.0.0-beta.14) + +**Implemented New Features and Enhancements:** + +- Scrollable DataTable [\#87](https://github.com/primefaces/primevue/issues/87) +- Add p-placeholder to Dropdown label [\#84](https://github.com/primefaces/primevue/issues/84) +- Add row-click event to Table [\#82](https://github.com/primefaces/primevue/issues/82) + +## [1.0.0-beta.13](https://github.com/primefaces/primevue/tree/1.0.0-beta.13) (2019-11-01) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.0-beta.12...1.0.0-beta.13) + +**Implemented New Features and Enhancements:** + +- Ability to style certain rows and cells in Table [\#81](https://github.com/primefaces/primevue/issues/81) +- Menu Component a11y issue [\#78](https://github.com/primefaces/primevue/issues/78) +- Modal dialog not blocking background [\#77](https://github.com/primefaces/primevue/issues/77) + +**Fixed bugs:** + +- Modal dialog is not destroyed properly [\#80](https://github.com/primefaces/primevue/issues/80) + +## [1.0.0-beta.12](https://github.com/primefaces/primevue/tree/1.0.0-beta.12) (2019-10-22) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.0-beta.11...1.0.0-beta.12) + +**Implemented New Features and Enhancements:** + +- New Carousel Component [\#73](https://github.com/primefaces/primevue/issues/73) +- Expandable Rows for DataTable [\#72](https://github.com/primefaces/primevue/issues/72) +- TableState for DataTable [\#68](https://github.com/primefaces/primevue/issues/68) +- Row Grouping for DataTable [\#65](https://github.com/primefaces/primevue/issues/65) + +**Fixed bugs:** + +- Time buttons select a date on mouseout event on Calendar with showTime property [\#75](https://github.com/primefaces/primevue/issues/75) +- Clicking column header resets paginator [\#74](https://github.com/primefaces/primevue/issues/74) +- Calendar.vue: "close on blur" not working properly [\#71](https://github.com/primefaces/primevue/issues/71) + +## [1.0.0-beta.11](https://github.com/primefaces/primevue/tree/1.0.0-beta.11) (2019-10-18) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.0-beta.10...1.0.0-beta.11) + +**Implemented New Features and Enhancements:** + +- Row Reordering with DragDrop [\#69](https://github.com/primefaces/primevue/issues/69) +- Improve component styles on Luna and Nova Themes [\#66](https://github.com/primefaces/primevue/issues/66) +- Column Reordering with DragDrop [\#64](https://github.com/primefaces/primevue/issues/64) +- ColumnGroups for DataTable [\#63](https://github.com/primefaces/primevue/issues/63) + +**Fixed bugs:** + +- Accordion and TabView do not sync children changes [\#67](https://github.com/primefaces/primevue/issues/67) +- Accordion and TabView create empty tabs [\#59](https://github.com/primefaces/primevue/issues/59) + +## [1.0.0-beta.10](https://github.com/primefaces/primevue/tree/1.0.0-beta.10) (2019-10-15) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.0-beta.9...1.0.0-beta.10) + +**Implemented New Features and Enhancements:** + +- New Component: Carousel [\#61](https://github.com/primefaces/primevue/issues/61) + +**Fixed bugs:** + +- Menu and OverlayPanel target position miscalculated [\#62](https://github.com/primefaces/primevue/issues/62) +- Dataview paginator gets out of sync [\#60](https://github.com/primefaces/primevue/issues/60) + +## [1.0.0-beta.9](https://github.com/primefaces/primevue/tree/1.0.0-beta.9) (2019-10-01) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.0-beta.8...1.0.0-beta.9) + +**Implemented New Features and Enhancements:** + +- Remove empty spaces with Lint [\#58](https://github.com/primefaces/primevue/issues/58) +- Reimplement Accordion with Templating [\#56](https://github.com/primefaces/primevue/issues/56) +- Reimplement TabView with Templating [\#51](https://github.com/primefaces/primevue/issues/51) + +**Fixed bugs:** + +- MultiSelect filter cannot be turned off [\#57](https://github.com/primefaces/primevue/issues/57) +- DataTable sortField cannot be synced [\#55](https://github.com/primefaces/primevue/issues/55) +- Duplicate key issue in menu component [\#52](https://github.com/primefaces/primevue/issues/52) +- Calendar.vue: when the value is updated, the component partially updates itself [\#47](https://github.com/primefaces/primevue/issues/47) +- MultiSelect.vue: error on onToggleAll and bad default placeholder [\#45](https://github.com/primefaces/primevue/issues/45) +- Calendar clear button does not reset the input field [\#42](https://github.com/primefaces/primevue/issues/42) +- Time does not stop spinning in Calendar [\#40](https://github.com/primefaces/primevue/issues/40) + +## [1.0.0-beta.8](https://github.com/primefaces/primevue/tree/1.0.0-beta.8) (2019-08-21) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.0-beta.7...1.0.0-beta.8) + +**Fixed bugs:** + +- Cannot delete date from calendar once it's selected [\#38](https://github.com/primefaces/primevue/issues/38) +- Dropdown click icon gives error on Firefox [\#37](https://github.com/primefaces/primevue/issues/37) +- TreeTable single sort broken [\#35](https://github.com/primefaces/primevue/issues/35) +- TreeTable highlights unsorted columns [\#34](https://github.com/primefaces/primevue/issues/34) +- InputMask pressing enter [\#33](https://github.com/primefaces/primevue/issues/33) +- Column component registration fails with Typescript [\#29](https://github.com/primefaces/primevue/issues/29) + +## [1.0.0-beta.7](https://github.com/primefaces/primevue/tree/1.0.0-beta.7) (2019-08-15) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.0-beta.6...1.0.0-beta.7) + +**Implemented New Features and Enhancements:** + +- New Component: TreeTable [\#31](https://github.com/primefaces/primevue/issues/31) +- Resizable Columns for DataTable [\#30](https://github.com/primefaces/primevue/issues/30) +- New Component: InputMask [\#26](https://github.com/primefaces/primevue/issues/26) + +## [1.0.0-beta.6](https://github.com/primefaces/primevue/tree/1.0.0-beta.6) (2019-08-05) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.0-beta.5...1.0.0-beta.6) + +**Implemented New Features and Enhancements:** + +- New Component: Tree [\#28](https://github.com/primefaces/primevue/issues/28) + +## [1.0.0-beta.5](https://github.com/primefaces/primevue/tree/1.0.0-beta.5) (2019-07-29) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.0-beta.3...1.0.0-beta.5) + +**Implemented New Features and Enhancements:** + +- New Component: DataTable [\#23](https://github.com/primefaces/primevue/issues/23) +- Convert emptyMessage to a template for DataView [\#10](https://github.com/primefaces/primevue/issues/10) +- Auto z-index layering for Toast [\#9](https://github.com/primefaces/primevue/issues/9) +- Reset DataTable page after sort [\#27](https://github.com/primefaces/primevue/issues/27) +- New Component: ProgressSpinner [\#24](https://github.com/primefaces/primevue/issues/24) +- New Component: DeferredContent [\#20](https://github.com/primefaces/primevue/issues/20) +- New Component: Inplace [\#19](https://github.com/primefaces/primevue/issues/19) +- New Component: PickList [\#18](https://github.com/primefaces/primevue/issues/18) +- New Component: OrderList [\#17](https://github.com/primefaces/primevue/issues/17) +- New Component: OrganizationChart [\#16](https://github.com/primefaces/primevue/issues/16) + +**Fixed bugs:** + +- Calendar today button throws an error [\#22](https://github.com/primefaces/primevue/issues/22) +- DataView paginator is always displayed [\#21](https://github.com/primefaces/primevue/issues/21) +- Dropdown ignores false or 0 values [\#11](https://github.com/primefaces/primevue/issues/11) + +## [1.0.0-beta.3](https://github.com/primefaces/primevue/tree/1.0.0-beta.3) (2019-05-30) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.0-beta.2...1.0.0-beta.3) + +## [1.0.0-beta.2](https://github.com/primefaces/primevue/tree/1.0.0-beta.2) (2019-05-28) + +[Full Changelog](https://github.com/primefaces/primevue/compare/1.0.0-beta.1...1.0.0-beta.2) + +## [1.0.0-beta.1](https://github.com/primefaces/primevue/tree/1.0.0-beta.1) (2019-05-27) + +[Full Changelog](https://github.com/primefaces/primevue/compare/9d2c525d528c9bd6f306c6f550e3f0eef7879054...1.0.0-beta.1) + +\* _This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)_ diff --git a/packages/primevue/README.md b/packages/primevue/README.md new file mode 100644 index 0000000000..7adff46c84 --- /dev/null +++ b/packages/primevue/README.md @@ -0,0 +1,102 @@ +[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) +[![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue) +[![Discord Chat](https://img.shields.io/discord/557940238991753223.svg?color=7289da&label=chat&logo=discord)](https://discord.gg/gzKFYnpmCY) +[![Prime Discussions](https://img.shields.io/github/discussions-search?query=org%3Aprimefaces&logo=github&label=Prime%20Discussions&link=https%3A%2F%2Fgithub.com%2Forgs%2Fprimefaces%2Fdiscussions)](https://github.com/orgs/primefaces/discussions) + +[![PrimeVue Hero](https://www.primefaces.org/static/social/primevue-preview.jpg)](https://primevue.org/) + +# PrimeVue + +PrimeVue is a rich set of open source UI Components for Vue. See [PrimeVue homepage](https://primevue.org/) for live showcase and documentation. + +## Download + +PrimeVue is available at [npm](https://www.npmjs.com/package/primevue). + +```bash +# Using npm +npm install primevue + +# Using yarn +yarn add primevue + +# Using pnpm +pnpm add primevue +``` + +## Plugin + +PrimeVue plugin is required to be installed as an application plugin to set up the default [configuration](https://primevue.org/configuration). The plugin is lightweight, only sets up the configuration object without affecting your application. PrimeVue has two styling modes; Styled and Unstyled. If you are just getting started, we suggest to using the styled mode. + +```javascript +import { createApp } from 'vue'; +import PrimeVue from 'primevue/config'; +const app = createApp(App); + +app.use(PrimeVue); +``` + +## Theming + +PrimeVue has two theming has modes; styled or unstyled. + +**Styled Mode** + +Styled mode provides pre-skinned components, default theme is Aura with emerald as the primary color. + +```javascript +import { createApp } from 'vue'; +import PrimeVueStyled from 'primevue/config'; +const app = createApp(App); + +app.use(PrimeVueStyled); +``` + +**Unstyled Mode** + +In unstyled mode, the components do not include any CSS so you'd need to style the components on your end. If you are using Tailwind CSS, visit the [Tailwind Presets](https://tailwind.primevue.org) project to get you started with styling the components with Tailwind utility classes. + +```javascript +import { createApp } from 'vue'; +import PrimeVueUnstyled from 'primevue/config'; +const app = createApp(App); + +app.use(PrimeVueUnstyled); +``` + +## Usage + +Each component can be imported individually so that you only bundle what you use. Import path is available in the documentation of the corresponding component. + +```javascript +import Button from 'primevue/button'; + +const app = createApp(App); +app.component('Button', Button); +``` + +## Prop Cases + +Component prop names are described as camel case throughout the documentation however kebab-case is also fully supported. Events on the other hand should always be kebab-case. + +```vue + + + + + +``` + +## Nuxt Integration + +The [nuxt-primevue](https://www.npmjs.com/package/nuxt-primevue) package is the official module by PrimeTek. See the nuxt documentation for details. [information](https://primevue.org/nuxt) + +## Example + +We've created various samples for the popular options in the Vue ecosystem. Visit the [primevue-examples](https://github.com/primefaces/primevue-examples) repository for the samples. + +## Contributors + + + + diff --git a/packages/primevue/package.json b/packages/primevue/package.json new file mode 100644 index 0000000000..0b029002ba --- /dev/null +++ b/packages/primevue/package.json @@ -0,0 +1,346 @@ +{ + "name": "primevue", + "version": "4.0.0-beta.5", + "private": false, + "author": "PrimeTek Informatics", + "description": "PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBlock, which has 370+ ready to use UI blocks to build spectacular applications in no time.", + "homepage": "https://primevue.org/", + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/primefaces/primevue.git", + "directory": "packages/primevue" + }, + "bugs": { + "url": "https://github.com/primefaces/primevue/issues" + }, + "keywords": [ + "primevue", + "vue", + "vue.js", + "vue2", + "vue3", + "ui library", + "component library", + "material", + "bootstrap", + "fluent", + "tailwind", + "unstyled", + "passthrough" + ], + "sideEffects": [ + "*.vue" + ], + "unpkg": "umd/primevue.min.js", + "jsdelivr": "umd/primevue.min.js", + "web-types": "./web-types.json", + "vetur": { + "tags": "./vetur-tags.json", + "attributes": "./vetur-attributes.json" + }, + "exports": { + "./accordion": "./src/accordion/Accordion.vue", + "./accordion/style": "./src/accordion/style/AccordionStyle.js", + "./accordioncontent": "./src/accordioncontent/AccordionContent.vue", + "./accordioncontent/style": "./src/accordioncontent/style/AccordionContentStyle.js", + "./accordionheader": "./src/accordionheader/AccordionHeader.vue", + "./accordionheader/style": "./src/accordionheader/style/AccordionHeaderStyle.js", + "./accordionpanel": "./src/accordionpanel/AccordionPanel.vue", + "./accordionpanel/style": "./src/accordionpanel/style/AccordionPanelStyle.js", + "./accordiontab": "./src/accordiontab/AccordionTab.vue", + "./accordiontab/style": "./src/accordiontab/style/AccordionTabStyle.js", + "./animateonscroll": "./src/animateonscroll/AnimateOnScroll.js", + "./animateonscroll/style": "./src/animateonscroll/style/AnimateOnScrollStyle.js", + "./autocomplete": "./src/autocomplete/AutoComplete.vue", + "./autocomplete/style": "./src/autocomplete/style/AutoCompleteStyle.js", + "./avatar": "./src/avatar/Avatar.vue", + "./avatar/style": "./src/avatar/style/AvatarStyle.js", + "./avatargroup": "./src/avatargroup/AvatarGroup.vue", + "./avatargroup/style": "./src/avatargroup/style/AvatarGroupStyle.js", + "./badge": "./src/badge/Badge.vue", + "./badge/style": "./src/badge/style/BadgeStyle.js", + "./badgedirective": "./src/badgedirective/BadgeDirective.js", + "./badgedirective/style": "./src/badgedirective/style/BadgeDirectiveStyle.js", + "./blockui": "./src/blockui/BlockUI.vue", + "./blockui/style": "./src/blockui/style/BlockUIStyle.js", + "./breadcrumb": "./src/breadcrumb/Breadcrumb.vue", + "./breadcrumb/style": "./src/breadcrumb/style/BreadcrumbStyle.js", + "./button": "./src/button/Button.vue", + "./button/style": "./src/button/style/ButtonStyle.js", + "./buttongroup": "./src/buttongroup/ButtonGroup.vue", + "./buttongroup/style": "./src/buttongroup/style/ButtonGroupStyle.js", + "./calendar": "./src/calendar/Calendar.vue", + "./calendar/style": "./src/calendar/style/CalendarStyle.js", + "./card": "./src/card/Card.vue", + "./card/style": "./src/card/style/CardStyle.js", + "./carousel": "./src/carousel/Carousel.vue", + "./carousel/style": "./src/carousel/style/CarouselStyle.js", + "./cascadeselect": "./src/cascadeselect/CascadeSelect.vue", + "./cascadeselect/style": "./src/cascadeselect/style/CascadeSelectStyle.js", + "./chart": "./src/chart/Chart.vue", + "./chart/style": "./src/chart/style/ChartStyle.js", + "./checkbox": "./src/checkbox/Checkbox.vue", + "./checkbox/style": "./src/checkbox/style/CheckboxStyle.js", + "./chip": "./src/chip/Chip.vue", + "./chip/style": "./src/chip/style/ChipStyle.js", + "./chips": "./src/chips/Chips.vue", + "./chips/style": "./src/chips/style/ChipsStyle.js", + "./colorpicker": "./src/colorpicker/ColorPicker.vue", + "./colorpicker/style": "./src/colorpicker/style/ColorPickerStyle.js", + "./column": "./src/column/Column.vue", + "./column/style": "./src/column/style/ColumnStyle.js", + "./columngroup": "./src/columngroup/ColumnGroup.vue", + "./columngroup/style": "./src/columngroup/style/ColumnGroupStyle.js", + "./config": "./src/config/Config.js", + "./config/style": "./src/config/style/ConfigStyle.js", + "./confirmationeventbus": "./src/confirmationeventbus/ConfirmationEventBus.js", + "./confirmationeventbus/style": "./src/confirmationeventbus/style/ConfirmationEventBusStyle.js", + "./confirmationservice": "./src/confirmationservice/ConfirmationService.js", + "./confirmationservice/style": "./src/confirmationservice/style/ConfirmationServiceStyle.js", + "./confirmdialog": "./src/confirmdialog/ConfirmDialog.vue", + "./confirmdialog/style": "./src/confirmdialog/style/ConfirmDialogStyle.js", + "./confirmpopup": "./src/confirmpopup/ConfirmPopup.vue", + "./confirmpopup/style": "./src/confirmpopup/style/ConfirmPopupStyle.js", + "./contextmenu": "./src/contextmenu/ContextMenu.vue", + "./contextmenu/style": "./src/contextmenu/style/ContextMenuStyle.js", + "./datatable": "./src/datatable/DataTable.vue", + "./datatable/style": "./src/datatable/style/DataTableStyle.js", + "./dataview": "./src/dataview/DataView.vue", + "./dataview/style": "./src/dataview/style/DataViewStyle.js", + "./datepicker": "./src/datepicker/DatePicker.vue", + "./datepicker/style": "./src/datepicker/style/DatePickerStyle.js", + "./deferredcontent": "./src/deferredcontent/DeferredContent.vue", + "./deferredcontent/style": "./src/deferredcontent/style/DeferredContentStyle.js", + "./dialog": "./src/dialog/Dialog.vue", + "./dialog/style": "./src/dialog/style/DialogStyle.js", + "./dialogservice": "./src/dialogservice/DialogService.js", + "./dialogservice/style": "./src/dialogservice/style/DialogServiceStyle.js", + "./divider": "./src/divider/Divider.vue", + "./divider/style": "./src/divider/style/DividerStyle.js", + "./dock": "./src/dock/Dock.vue", + "./dock/style": "./src/dock/style/DockStyle.js", + "./drawer": "./src/drawer/Drawer.vue", + "./drawer/style": "./src/drawer/style/DrawerStyle.js", + "./dropdown": "./src/dropdown/Dropdown.vue", + "./dropdown/style": "./src/dropdown/style/DropdownStyle.js", + "./dynamicdialog": "./src/dynamicdialog/DynamicDialog.vue", + "./dynamicdialog/style": "./src/dynamicdialog/style/DynamicDialogStyle.js", + "./dynamicdialogeventbus": "./src/dynamicdialogeventbus/DynamicDialogEventBus.js", + "./dynamicdialogeventbus/style": "./src/dynamicdialogeventbus/style/DynamicDialogEventBusStyle.js", + "./editor": "./src/editor/Editor.vue", + "./editor/style": "./src/editor/style/EditorStyle.js", + "./fieldset": "./src/fieldset/Fieldset.vue", + "./fieldset/style": "./src/fieldset/style/FieldsetStyle.js", + "./fileupload": "./src/fileupload/FileUpload.vue", + "./fileupload/style": "./src/fileupload/style/FileUploadStyle.js", + "./floatlabel": "./src/floatlabel/FloatLabel.vue", + "./floatlabel/style": "./src/floatlabel/style/FloatLabelStyle.js", + "./focustrap": "./src/focustrap/FocusTrap.js", + "./focustrap/style": "./src/focustrap/style/FocusTrapStyle.js", + "./galleria": "./src/galleria/Galleria.vue", + "./galleria/style": "./src/galleria/style/GalleriaStyle.js", + "./iconfield": "./src/iconfield/IconField.vue", + "./iconfield/style": "./src/iconfield/style/IconFieldStyle.js", + "./image": "./src/image/Image.vue", + "./image/style": "./src/image/style/ImageStyle.js", + "./inlinemessage": "./src/inlinemessage/InlineMessage.vue", + "./inlinemessage/style": "./src/inlinemessage/style/InlineMessageStyle.js", + "./inplace": "./src/inplace/Inplace.vue", + "./inplace/style": "./src/inplace/style/InplaceStyle.js", + "./inputchips": "./src/inputchips/InputChips.vue", + "./inputchips/style": "./src/inputchips/style/InputChipsStyle.js", + "./inputgroup": "./src/inputgroup/InputGroup.vue", + "./inputgroup/style": "./src/inputgroup/style/InputGroupStyle.js", + "./inputgroupaddon": "./src/inputgroupaddon/InputGroupAddon.vue", + "./inputgroupaddon/style": "./src/inputgroupaddon/style/InputGroupAddonStyle.js", + "./inputicon": "./src/inputicon/InputIcon.vue", + "./inputicon/style": "./src/inputicon/style/InputIconStyle.js", + "./inputmask": "./src/inputmask/InputMask.vue", + "./inputmask/style": "./src/inputmask/style/InputMaskStyle.js", + "./inputnumber": "./src/inputnumber/InputNumber.vue", + "./inputnumber/style": "./src/inputnumber/style/InputNumberStyle.js", + "./inputotp": "./src/inputotp/InputOtp.vue", + "./inputotp/style": "./src/inputotp/style/InputOtpStyle.js", + "./inputswitch": "./src/inputswitch/InputSwitch.vue", + "./inputswitch/style": "./src/inputswitch/style/InputSwitchStyle.js", + "./inputtext": "./src/inputtext/InputText.vue", + "./inputtext/style": "./src/inputtext/style/InputTextStyle.js", + "./knob": "./src/knob/Knob.vue", + "./knob/style": "./src/knob/style/KnobStyle.js", + "./listbox": "./src/listbox/Listbox.vue", + "./listbox/style": "./src/listbox/style/ListboxStyle.js", + "./megamenu": "./src/megamenu/MegaMenu.vue", + "./megamenu/style": "./src/megamenu/style/MegaMenuStyle.js", + "./menu": "./src/menu/Menu.vue", + "./menu/style": "./src/menu/style/MenuStyle.js", + "./menubar": "./src/menubar/Menubar.vue", + "./menubar/style": "./src/menubar/style/MenubarStyle.js", + "./message": "./src/message/Message.vue", + "./message/style": "./src/message/style/MessageStyle.js", + "./metergroup": "./src/metergroup/MeterGroup.vue", + "./metergroup/style": "./src/metergroup/style/MeterGroupStyle.js", + "./multiselect": "./src/multiselect/MultiSelect.vue", + "./multiselect/style": "./src/multiselect/style/MultiSelectStyle.js", + "./orderlist": "./src/orderlist/OrderList.vue", + "./orderlist/style": "./src/orderlist/style/OrderListStyle.js", + "./organizationchart": "./src/organizationchart/OrganizationChart.vue", + "./organizationchart/style": "./src/organizationchart/style/OrganizationChartStyle.js", + "./overlaybadge": "./src/overlaybadge/OverlayBadge.vue", + "./overlaybadge/style": "./src/overlaybadge/style/OverlayBadgeStyle.js", + "./overlayeventbus": "./src/overlayeventbus/OverlayEventBus.js", + "./overlayeventbus/style": "./src/overlayeventbus/style/OverlayEventBusStyle.js", + "./overlaypanel": "./src/overlaypanel/OverlayPanel.vue", + "./overlaypanel/style": "./src/overlaypanel/style/OverlayPanelStyle.js", + "./paginator": "./src/paginator/Paginator.vue", + "./paginator/style": "./src/paginator/style/PaginatorStyle.js", + "./panel": "./src/panel/Panel.vue", + "./panel/style": "./src/panel/style/PanelStyle.js", + "./panelmenu": "./src/panelmenu/PanelMenu.vue", + "./panelmenu/style": "./src/panelmenu/style/PanelMenuStyle.js", + "./password": "./src/password/Password.vue", + "./password/style": "./src/password/style/PasswordStyle.js", + "./picklist": "./src/picklist/PickList.vue", + "./picklist/style": "./src/picklist/style/PickListStyle.js", + "./popover": "./src/popover/Popover.vue", + "./popover/style": "./src/popover/style/PopoverStyle.js", + "./portal": "./src/portal/Portal.vue", + "./portal/style": "./src/portal/style/PortalStyle.js", + "./progressbar": "./src/progressbar/ProgressBar.vue", + "./progressbar/style": "./src/progressbar/style/ProgressBarStyle.js", + "./progressspinner": "./src/progressspinner/ProgressSpinner.vue", + "./progressspinner/style": "./src/progressspinner/style/ProgressSpinnerStyle.js", + "./radiobutton": "./src/radiobutton/RadioButton.vue", + "./radiobutton/style": "./src/radiobutton/style/RadioButtonStyle.js", + "./rating": "./src/rating/Rating.vue", + "./rating/style": "./src/rating/style/RatingStyle.js", + "./ripple": "./src/ripple/Ripple.js", + "./ripple/style": "./src/ripple/style/RippleStyle.js", + "./row": "./src/row/Row.vue", + "./row/style": "./src/row/style/RowStyle.js", + "./scrollpanel": "./src/scrollpanel/ScrollPanel.vue", + "./scrollpanel/style": "./src/scrollpanel/style/ScrollPanelStyle.js", + "./scrolltop": "./src/scrolltop/ScrollTop.vue", + "./scrolltop/style": "./src/scrolltop/style/ScrollTopStyle.js", + "./select": "./src/select/Select.vue", + "./select/style": "./src/select/style/SelectStyle.js", + "./selectbutton": "./src/selectbutton/SelectButton.vue", + "./selectbutton/style": "./src/selectbutton/style/SelectButtonStyle.js", + "./sidebar": "./src/sidebar/Sidebar.vue", + "./sidebar/style": "./src/sidebar/style/SidebarStyle.js", + "./skeleton": "./src/skeleton/Skeleton.vue", + "./skeleton/style": "./src/skeleton/style/SkeletonStyle.js", + "./slider": "./src/slider/Slider.vue", + "./slider/style": "./src/slider/style/SliderStyle.js", + "./speeddial": "./src/speeddial/SpeedDial.vue", + "./speeddial/style": "./src/speeddial/style/SpeedDialStyle.js", + "./splitbutton": "./src/splitbutton/SplitButton.vue", + "./splitbutton/style": "./src/splitbutton/style/SplitButtonStyle.js", + "./splitter": "./src/splitter/Splitter.vue", + "./splitter/style": "./src/splitter/style/SplitterStyle.js", + "./splitterpanel": "./src/splitterpanel/SplitterPanel.vue", + "./splitterpanel/style": "./src/splitterpanel/style/SplitterPanelStyle.js", + "./step": "./src/step/Step.vue", + "./step/style": "./src/step/style/StepStyle.js", + "./stepitem": "./src/stepitem/StepItem.vue", + "./stepitem/style": "./src/stepitem/style/StepItemStyle.js", + "./steplist": "./src/steplist/StepList.vue", + "./steplist/style": "./src/steplist/style/StepListStyle.js", + "./steppanel": "./src/steppanel/StepPanel.vue", + "./steppanel/style": "./src/steppanel/style/StepPanelStyle.js", + "./steppanels": "./src/steppanels/StepPanels.vue", + "./steppanels/style": "./src/steppanels/style/StepPanelsStyle.js", + "./stepper": "./src/stepper/Stepper.vue", + "./stepper/style": "./src/stepper/style/StepperStyle.js", + "./stepperpanel": "./src/stepperpanel/StepperPanel.vue", + "./stepperpanel/style": "./src/stepperpanel/style/StepperPanelStyle.js", + "./steps": "./src/steps/Steps.vue", + "./steps/style": "./src/steps/style/StepsStyle.js", + "./styleclass": "./src/styleclass/StyleClass.js", + "./styleclass/style": "./src/styleclass/style/StyleClassStyle.js", + "./tab": "./src/tab/Tab.vue", + "./tab/style": "./src/tab/style/TabStyle.js", + "./tablist": "./src/tablist/TabList.vue", + "./tablist/style": "./src/tablist/style/TabListStyle.js", + "./tabmenu": "./src/tabmenu/TabMenu.vue", + "./tabmenu/style": "./src/tabmenu/style/TabMenuStyle.js", + "./tabpanel": "./src/tabpanel/TabPanel.vue", + "./tabpanel/style": "./src/tabpanel/style/TabPanelStyle.js", + "./tabpanels": "./src/tabpanels/TabPanels.vue", + "./tabpanels/style": "./src/tabpanels/style/TabPanelsStyle.js", + "./tabs": "./src/tabs/Tabs.vue", + "./tabs/style": "./src/tabs/style/TabsStyle.js", + "./tabview": "./src/tabview/TabView.vue", + "./tabview/style": "./src/tabview/style/TabViewStyle.js", + "./tag": "./src/tag/Tag.vue", + "./tag/style": "./src/tag/style/TagStyle.js", + "./terminal": "./src/terminal/Terminal.vue", + "./terminal/style": "./src/terminal/style/TerminalStyle.js", + "./terminalservice": "./src/terminalservice/TerminalService.js", + "./terminalservice/style": "./src/terminalservice/style/TerminalServiceStyle.js", + "./textarea": "./src/textarea/Textarea.vue", + "./textarea/style": "./src/textarea/style/TextareaStyle.js", + "./tieredmenu": "./src/tieredmenu/TieredMenu.vue", + "./tieredmenu/style": "./src/tieredmenu/style/TieredMenuStyle.js", + "./timeline": "./src/timeline/Timeline.vue", + "./timeline/style": "./src/timeline/style/TimelineStyle.js", + "./toast": "./src/toast/Toast.vue", + "./toast/style": "./src/toast/style/ToastStyle.js", + "./toasteventbus": "./src/toasteventbus/ToastEventBus.js", + "./toasteventbus/style": "./src/toasteventbus/style/ToastEventBusStyle.js", + "./toastservice": "./src/toastservice/ToastService.js", + "./toastservice/style": "./src/toastservice/style/ToastServiceStyle.js", + "./togglebutton": "./src/togglebutton/ToggleButton.vue", + "./togglebutton/style": "./src/togglebutton/style/ToggleButtonStyle.js", + "./toggleswitch": "./src/toggleswitch/ToggleSwitch.vue", + "./toggleswitch/style": "./src/toggleswitch/style/ToggleSwitchStyle.js", + "./toolbar": "./src/toolbar/Toolbar.vue", + "./toolbar/style": "./src/toolbar/style/ToolbarStyle.js", + "./tooltip": "./src/tooltip/Tooltip.js", + "./tooltip/style": "./src/tooltip/style/TooltipStyle.js", + "./tree": "./src/tree/Tree.vue", + "./tree/style": "./src/tree/style/TreeStyle.js", + "./treeselect": "./src/treeselect/TreeSelect.vue", + "./treeselect/style": "./src/treeselect/style/TreeSelectStyle.js", + "./treetable": "./src/treetable/TreeTable.vue", + "./treetable/style": "./src/treetable/style/TreeTableStyle.js", + "./useconfirm": "./src/useconfirm/UseConfirm.js", + "./useconfirm/style": "./src/useconfirm/style/UseConfirmStyle.js", + "./usedialog": "./src/usedialog/UseDialog.js", + "./usedialog/style": "./src/usedialog/style/UseDialogStyle.js", + "./usestyle": "./src/usestyle/UseStyle.js", + "./usestyle/style": "./src/usestyle/style/UseStyleStyle.js", + "./usetoast": "./src/usetoast/UseToast.js", + "./usetoast/style": "./src/usetoast/style/UseToastStyle.js", + "./utils": "./src/utils/Utils.js", + "./utils/style": "./src/utils/style/UtilsStyle.js", + "./virtualscroller": "./src/virtualscroller/VirtualScroller.vue", + "./virtualscroller/style": "./src/virtualscroller/style/VirtualScrollerStyle.js", + "./*": "./*" + }, + "publishConfig": { + "exports": { + "./*": { + "types": "./*/index.d.ts", + "import": "./*/index.mjs" + } + }, + "directory": "dist", + "linkDirectory": false, + "access": "public" + }, + "scripts": { + "build": "NODE_ENV=production INPUT_DIR=src/ OUTPUT_DIR=dist/ pnpm run build:package", + "build:package": "pnpm run build:prebuild && pnpm run build:api && rollup -c && pnpm run build:postbuild", + "build:api": "node ./scripts/build-api.js", + "build:prebuild": "node ./scripts/prebuild.mjs", + "build:postbuild": "node ./scripts/postbuild.mjs" + }, + "dependencies": { + "@primevue/core": "workspace:*", + "@primevue/icons": "workspace:*" + }, + "engines": { + "node": ">=12.11.0" + } +} \ No newline at end of file diff --git a/packages/primevue/rollup.config.mjs b/packages/primevue/rollup.config.mjs new file mode 100644 index 0000000000..557387b5bd --- /dev/null +++ b/packages/primevue/rollup.config.mjs @@ -0,0 +1,237 @@ +import alias from '@rollup/plugin-alias'; +import { babel } from '@rollup/plugin-babel'; +import resolve from '@rollup/plugin-node-resolve'; +import postcss from 'rollup-plugin-postcss'; +import { terser } from 'rollup-plugin-terser'; +import vue from 'rollup-plugin-vue'; + +import fs from 'fs-extra'; +import path, { dirname } from 'path'; +import { fileURLToPath } from 'url'; + +// @todo - Remove +const __dirname = dirname(fileURLToPath(import.meta.url)); + +// globals +const GLOBALS = { + vue: 'Vue' +}; + +// externals +const GLOBAL_EXTERNALS = ['vue', 'chart.js/auto', 'quill']; +const INLINE_EXTERNALS = [/@primevue\/core\/.*/, /@primevue\/icons\/.*/]; +const EXTERNALS = [...GLOBAL_EXTERNALS, ...INLINE_EXTERNALS]; + +// alias +const ALIAS_ENTRIES = [ + { + find: /^primevue\/(.*)$/, + replacement: path.resolve(__dirname, './src/$1'), + customResolver(source, importer) { + const basedir = path.dirname(importer); + const folderPath = path.resolve(basedir, source); + const folderName = path.basename(folderPath); + + const fName = folderName === 'style' ? `${path.basename(path.dirname(folderPath))}Style` : folderName; + const files = fs.readdirSync(folderPath); + const targetFile = files.find((file) => { + const ext = path.extname(file); + return ['.vue', '.js'].includes(ext) && path.basename(file, ext).toLowerCase() === fName.toLowerCase(); + }); + + return targetFile ? path.join(folderPath, targetFile) : null; + } + }, + // @todo - Remove + { find: '@primevue/core/api', replacement: path.resolve(__dirname, '../core/src/api/Api.js') }, + { find: '@primevue/core/base/style', replacement: path.resolve(__dirname, '../core/src/base/style/BaseStyle.js') }, + { find: '@primevue/core/base', replacement: path.resolve(__dirname, '../core/src/base/Base.js') }, + { find: '@primevue/core/basecomponent/style', replacement: path.resolve(__dirname, '../core/src/basecomponent/style/BaseComponentStyle.js') }, + { find: '@primevue/core/basecomponent', replacement: path.resolve(__dirname, '../core/src/basecomponent/BaseComponent.vue') }, + { find: '@primevue/core/basedirective', replacement: path.resolve(__dirname, '../core/src/basedirective/BaseDirective.js') }, + { find: '@primevue/core/config', replacement: path.resolve(__dirname, '../core/src/config/PrimeVue.js') }, + { find: '@primevue/core/service', replacement: path.resolve(__dirname, '../core/src/service/PrimeVueService.js') }, + { find: '@primevue/core/usestyle', replacement: path.resolve(__dirname, '../core/src/usestyle/UseStyle.js') }, + { find: '@primevue/core/utils', replacement: path.resolve(__dirname, '../core/src/utils/Utils.js') }, + { find: '@primevue/icons/baseicon/style', replacement: path.resolve(__dirname, '../icons/src/baseicon/style/BaseIconStyle.js') }, + { find: '@primevue/icons/baseicon', replacement: path.resolve(__dirname, '../icons/src/baseicon/BaseIcon.vue') }, + { find: '@primevue/themes', replacement: path.resolve(__dirname, '../themes/src/index.js') } +]; + +// plugins +const BABEL_PLUGIN_OPTIONS = { + extensions: ['.js', '.vue'], + exclude: 'node_modules/**', + presets: ['@babel/preset-env'], + plugins: [], + skipPreflightCheck: true, + babelHelpers: 'runtime', + babelrc: false +}; + +const ALIAS_PLUGIN_OPTIONS = { + entries: ALIAS_ENTRIES +}; + +const POSTCSS_PLUGIN_OPTIONS = { + sourceMap: false +}; + +const TERSER_PLUGIN_OPTIONS = { + compress: { + keep_infinity: true, + pure_getters: true, + reduce_funcs: true + }, + mangle: { + reserved: ['theme', 'css'] + } +}; + +const PLUGINS = [vue(), postcss(POSTCSS_PLUGIN_OPTIONS), babel(BABEL_PLUGIN_OPTIONS)]; + +const ENTRY = { + entries: [], + onwarn(warning) { + if (warning.code === 'CIRCULAR_DEPENDENCY') { + //console.error(`(!) ${warning.message}`); + return; + } + }, + format: { + cjs_es(options) { + return ENTRY.format.cjs(options).es(options); + }, + cjs({ input, output, minify }) { + ENTRY.entries.push({ + onwarn: ENTRY.onwarn, + input, + plugins: [...PLUGINS, minify && terser(TERSER_PLUGIN_OPTIONS)], + external: EXTERNALS, + inlineDynamicImports: true, + output: [ + { + format: 'cjs', + file: `${output}${minify ? '.min' : ''}.cjs`, + sourcemap: true, + exports: 'auto' + } + ] + }); + + ENTRY.update.packageJson({ input, output, options: { main: `${output}.cjs` } }); + + return ENTRY.format; + }, + es({ input, output, minify }) { + ENTRY.entries.push({ + onwarn: ENTRY.onwarn, + input, + plugins: [...PLUGINS, minify && terser(TERSER_PLUGIN_OPTIONS)], + external: EXTERNALS, + inlineDynamicImports: true, + output: [ + { + format: 'es', + file: `${output}${minify ? '.min' : ''}.mjs`, + sourcemap: true, + exports: 'auto' + } + ] + }); + + ENTRY.update.packageJson({ input, output, options: { main: `${output}.mjs`, module: `${output}.mjs` } }); + + return ENTRY.format; + }, + umd({ name, input, output, minify }) { + ENTRY.entries.push({ + onwarn: ENTRY.onwarn, + input, + plugins: [alias(ALIAS_PLUGIN_OPTIONS), resolve(), ...PLUGINS, minify && terser(TERSER_PLUGIN_OPTIONS)], + external: GLOBAL_EXTERNALS, + inlineDynamicImports: true, + output: [ + { + format: 'umd', + name: name ?? 'PrimeVue', + file: `${output}${minify ? '.min' : ''}.js`, + globals: GLOBALS, + exports: 'auto' + } + ] + }); + + return ENTRY.format; + } + }, + update: { + packageJson({ input, output, options }) { + try { + const inputDir = path.resolve(__dirname, path.dirname(input)); + const outputDir = path.resolve(__dirname, path.dirname(output)); + const packageJson = path.resolve(outputDir, 'package.json'); + + !fs.existsSync(packageJson) && fs.copySync(path.resolve(inputDir, './package.json'), packageJson); + + const pkg = JSON.parse(fs.readFileSync(packageJson, { encoding: 'utf8', flag: 'r' })); + + !pkg?.main?.includes('.cjs') && (pkg.main = path.basename(options?.main) ? `./${path.basename(options.main)}` : pkg.main); + pkg.module = path.basename(options?.module) ? `./${path.basename(options.module)}` : packageJson.module; + pkg.types && (pkg.types = './index.d.ts'); + + fs.writeFileSync(packageJson, JSON.stringify(pkg, null, 4)); + } catch {} + } + } +}; + +function addFile() { + fs.readdirSync(path.resolve(__dirname, process.env.INPUT_DIR), { withFileTypes: true }) + .filter((dir) => dir.isDirectory()) + .forEach(({ name: folderName }) => { + fs.readdirSync(path.resolve(__dirname, process.env.INPUT_DIR + folderName)).forEach((file) => { + let name = file.split(/(.vue)$|(.js)$/)[0].toLowerCase(); + + if (name === folderName) { + const input = process.env.INPUT_DIR + folderName + '/' + file; + const output = process.env.OUTPUT_DIR + folderName + '/index'; + + ENTRY.format.es({ input, output }); + } + }); + }); +} + +function addStyle() { + fs.readdirSync(path.resolve(__dirname, process.env.INPUT_DIR), { withFileTypes: true }) + .filter((dir) => dir.isDirectory()) + .forEach(({ name: folderName }) => { + try { + fs.readdirSync(path.resolve(__dirname, process.env.INPUT_DIR + folderName + '/style')).forEach((file) => { + if (/\.js$/.test(file)) { + const name = file.split(/(.js)$/)[0].toLowerCase(); + const input = process.env.INPUT_DIR + folderName + '/style/' + file; + const output = process.env.OUTPUT_DIR + folderName + '/style/index'; + + ENTRY.format.es({ input, output }); + } + }); + } catch {} + }); +} + +function addPassThrough() { + ENTRY.format.es({ input: process.env.INPUT_DIR + 'passthrough/index.js', output: process.env.OUTPUT_DIR + 'passthrough/index' }); +} + +function addLibrary() { + ENTRY.format.umd({ name: 'PrimeVue', input: process.env.INPUT_DIR + 'primevue.js', output: process.env.OUTPUT_DIR + 'umd/primevue', minify: true }); +} + +addFile(); +addStyle(); +addPassThrough(); +addLibrary(); + +export default ENTRY.entries; diff --git a/packages/primevue/scripts/build-api.js b/packages/primevue/scripts/build-api.js new file mode 100644 index 0000000000..dbd13a65e5 --- /dev/null +++ b/packages/primevue/scripts/build-api.js @@ -0,0 +1,177 @@ +const fs = require('fs-extra'); +const path = require('path'); + +const rootDir = path.resolve(__dirname, '../'); +const distDir = path.resolve(rootDir, process.env.OUTPUT_DIR); +const componentPath = path.resolve(rootDir, process.env.INPUT_DIR); + +// Import project `package.json` +const pkg = require(path.resolve(rootDir, 'package.json')); +const libraryName = 'PrimeVue'; +const libraryVersion = pkg.version; + +const showcaseURL = 'https://primevue.org/'; + +const fileModules = {}, + veturTags = {}, + veturAttributes = {}; + +const files = fs.readdirSync(componentPath); + +files.forEach((file) => { + const { name } = path.parse(file); + + try { + fileModules[name] = require(`./components/${name}`); + } catch {} +}); + +const webTypes = { + $schema: 'https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json', + framework: 'vue', + name: libraryName, + version: libraryVersion, + contributions: { + html: { + 'types-syntax': 'typescript', + 'description-markup': 'markdown', + tags: [], + attributes: [] + } + } +}; + +const addURL = (attr, url, value) => { + const newArray = []; + + attr.forEach((att) => { + const newObj = {}; + + Object.keys(att).forEach((key) => { + newObj[key] = att[key]; + if (key === value) newObj['doc-url'] = url; + }); + + newArray.push(newObj); + }); + + return newArray; +}; + +const createWebTypes = (component) => { + const url = showcaseURL + `${component['doc-url'] ? component['doc-url'] : component.name.toLowerCase()}`; + + // components + const tag = { + name: component.name, + source: { + module: libraryName, + symbol: component.name + }, + 'doc-url': url, + description: component.description + }; + + // directives + const attribute = { + name: component.name, + source: { + module: libraryName, + symbol: component.name + }, + description: component.description, + 'doc-url': url, + value: { + kind: 'expression', + type: 'function' + } + }; + + if (component.props) { + tag.attributes = addURL(component.props, url, 'default'); + tag.attributes.forEach((k) => { + k['value'] = { + kind: 'expression', + type: k['type'] + }; + + delete k['type']; + }); + } + + if (component.events) { + tag.events = addURL(component.events, url, 'name'); + tag.events.forEach((k) => { + if (k.arguments) { + k.arguments = addURL(k.arguments, url, 'name'); + } + }); + } + + if (component.slots) { + tag.slots = addURL(component.slots, url, 'name'); + } + + if (component['vue-modifiers']) { + attribute.required = false; + attribute['vue-modifiers'] = addURL(component['vue-modifiers'], url, 'name'); + + if (attribute['vue-modifiers'].length < 1) delete attribute['vue-modifiers']; + + webTypes.contributions.html.attributes.push(attribute); + } + + webTypes.contributions.html.tags.push(tag); +}; + +const createVeturTags = (component) => { + const attributes = []; + + if (component.props) { + component.props.forEach((comp) => { + attributes.push(comp.name); + }); + } + + if (attributes.length > 0) { + veturTags[component.name] = { + description: component.description, + attributes + }; + } +}; + +const createVeturAttributes = (component) => { + if (component.props) { + component.props.forEach((comp) => { + veturAttributes[component.name.toLowerCase() + `/${comp.name}`] = { + description: comp.description, + type: comp.type + }; + }); + } +}; + +Object.keys(fileModules).forEach((p) => { + const component = fileModules[p][p]; + + if (component) { + createWebTypes(component); + createVeturTags(component); + createVeturAttributes(component); + } +}); + +!fs.existsSync(distDir) && fs.mkdirSync(distDir); + +const webTypesJson = JSON.stringify(webTypes, null, 2); + +fs.writeFileSync(path.resolve(distDir, 'web-types.json'), webTypesJson); + +const veturTagsJson = JSON.stringify(veturTags, null, 2); + +fs.writeFileSync(path.resolve(distDir, 'vetur-tags.json'), veturTagsJson); + +const veturAttributesJson = JSON.stringify(veturAttributes, null, 2); + +fs.writeFileSync(path.resolve(distDir, 'vetur-attributes.json'), veturAttributesJson); diff --git a/packages/primevue/scripts/components/accordion.js b/packages/primevue/scripts/components/accordion.js new file mode 100644 index 0000000000..12faee5103 --- /dev/null +++ b/packages/primevue/scripts/components/accordion.js @@ -0,0 +1,132 @@ +const AccordionProps = [ + { + name: 'multiple', + type: 'boolean', + default: 'false', + description: 'When enabled, multiple tabs can be activated at the same time.' + }, + { + name: 'activeIndex', + type: 'number|array', + default: 'null', + description: 'Index of the active tab or an array of indexes in multiple mode.' + }, + { + name: 'lazy', + type: 'boolean', + default: 'false', + description: 'When enabled, hidden tabs are not rendered at all. Defaults to false that hides tabs with css.' + }, + { + name: 'expandIcon', + type: 'string', + default: 'null', + description: 'Icon of a collapsed tab.' + }, + { + name: 'collapseIcon', + type: 'string', + default: 'null', + description: 'Icon of a expanded tab.' + }, + { + name: 'tabindex', + type: 'number', + default: '0', + description: 'Index of the element in tabbing order.' + }, + { + name: 'selectOnFocus', + type: 'boolean', + default: 'false', + description: 'When enabled, the focused tab is activated.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const AccordionEvents = [ + { + name: 'tab-open', + description: 'Callback to invoke when a tab gets expanded.', + arguments: [ + { + name: 'originalEvent', + type: 'object', + description: 'Original event' + }, + { + name: 'index', + type: 'number', + description: 'Opened tab index' + } + ] + }, + { + name: 'tab-close', + description: 'Callback to invoke when an active tab is collapsed by clicking on the header.', + arguments: [ + { + name: 'originalEvent', + type: 'object', + description: 'Original event' + }, + { + name: 'index', + type: 'number', + description: 'Closed tab index' + } + ] + }, + { + name: 'tab-click', + description: 'Callback to invoke when an active tab is clicked.', + arguments: [ + { + name: 'originalEvent', + type: 'object', + description: 'Original event' + }, + { + name: 'index', + type: 'number', + description: 'Index of the clicked tab' + } + ] + } +]; + +const AccordioneSlots = [ + { + name: 'default', + description: 'Custom template.' + }, + { + name: 'collapseicon', + description: 'Custom collapse icon template.' + }, + { + name: 'expandicon', + description: 'Custom expand icon template.' + } +]; + +module.exports = { + accordion: { + name: 'Accordion', + description: 'Accordion groups a collection of contents in tabs.', + props: AccordionProps, + events: AccordionEvents, + slots: AccordioneSlots + } +}; diff --git a/packages/primevue/scripts/components/accordiontab.js b/packages/primevue/scripts/components/accordiontab.js new file mode 100644 index 0000000000..368346f8db --- /dev/null +++ b/packages/primevue/scripts/components/accordiontab.js @@ -0,0 +1,82 @@ +const AccordionTabProps = [ + { + name: 'header', + type: 'string', + default: 'null', + description: 'Orientation of tab headers.' + }, + { + name: 'headerStyle', + type: 'any', + default: 'null', + description: 'Inline style of the tab header.' + }, + { + name: 'headerClass', + type: 'any', + default: 'null', + description: 'Style class of the tab header.' + }, + { + name: 'headerProps', + type: 'any', + default: 'null', + description: 'Used to pass all properties of the HTMLDivElement to the tab header.' + }, + { + name: 'headerActionProps', + type: 'any', + default: 'null', + description: 'Used to pass all properties of the HTMLAnchorElement to the focusable anchor element inside the tab header.' + }, + { + name: 'contentStyle', + type: 'any', + default: 'null', + description: 'Inline style of the tab content.' + }, + { + name: 'contentClass', + type: 'any', + default: 'null', + description: 'Style class of the tab content.' + }, + { + name: 'contentProps', + type: 'any', + default: 'null', + description: 'Used to pass all properties of the HTMLDivElement to the tab content.' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'Whether the tab is disabled.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + } +]; + +const AccordionTabSlots = [ + { + name: 'header', + description: 'Custom content for the title section of a AccordionTab is defined using the header template.' + }, + { + name: 'headericon', + description: 'Custom icon for the header section of a AccordionTab is defined using the headericon template.' + } +]; + +module.exports = { + accordiontab: { + name: 'AccordionTab', + description: 'Accordion element consists of one or more AccordionTab elements.', + props: AccordionTabProps, + slots: AccordionTabSlots + } +}; diff --git a/packages/primevue/scripts/components/autocomplete.js b/packages/primevue/scripts/components/autocomplete.js new file mode 100644 index 0000000000..1e1720043a --- /dev/null +++ b/packages/primevue/scripts/components/autocomplete.js @@ -0,0 +1,470 @@ +const AutoCompleteProps = [ + { + name: 'modelValue', + type: 'any', + default: 'null', + description: 'Value of the component.' + }, + { + name: 'suggestions', + type: 'array', + default: 'null', + description: 'An array of suggestions to display.' + }, + { + name: 'field', + type: 'any', + default: 'null', + description: 'Property name or getter function of a suggested object to resolve and display.' + }, + { + name: 'optionLabel', + type: 'string | function', + default: 'null', + description: 'Property name or getter function to use as the label of an option.' + }, + { + name: 'optionDisabled', + type: 'boolean', + default: 'null', + description: 'Property name or getter function to use as the disabled flag of an option, defaults to false when not defined.' + }, + { + name: 'optionGroupLabel', + type: 'string', + default: 'null', + description: 'Property name or getter function to use as the label of an option group.' + }, + { + name: 'optionGroupChildren', + type: 'string', + default: 'null', + description: 'Property name or getter function that refers to the children options of option group.' + }, + { + name: 'scrollHeight', + type: 'string', + default: '200px', + description: 'Maximum height of the suggestions panel.' + }, + { + name: 'dropdown', + type: 'boolean', + default: 'false', + description: 'Displays a button next to the input field when enabled.' + }, + { + name: 'dropdownMode', + type: 'string', + default: 'blank', + description: 'Specifies the behavior dropdown button. Default "blank" mode sends an empty string and "current" mode sends the input value.' + }, + { + name: 'autoHighlight', + type: 'boolean', + default: false, + description: 'Highlights automatically the first item of the dropdown to be selected.' + }, + { + name: 'multiple', + type: 'boolean', + default: 'false', + description: 'Specifies if multiple values can be selected.' + }, + { + name: 'placeholder', + type: 'string', + default: 'null', + description: 'Default text to display when no option is selected.' + }, + { + name: 'loading', + type: 'boolean', + default: 'false', + description: 'Whether the multiselect is in loading state.' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should be disabled.' + }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'null', + description: 'Specifies the input variant of the component.' + }, + { + name: 'dataKey', + type: 'string', + default: 'null', + description: 'A property to uniquely identify an option.' + }, + { + name: 'minLength', + type: 'number', + default: '1', + description: 'Minimum number of characters to initiate a search.' + }, + { + name: 'delay', + type: 'number', + default: '300', + description: 'Delay between keystrokes to wait before sending a query.' + }, + { + name: 'appendTo', + type: 'string', + default: 'body', + description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached. Special keywords are "body" for document body and "self" for the element itself.' + }, + { + name: 'forceSelection', + type: 'boolean', + default: 'false', + description: 'When present, autocomplete clears the manual input if it does not match of the suggestions to force only accepting values from the suggestions.' + }, + { + name: 'completeOnFocus', + type: 'boolean', + default: 'false', + description: 'Whether to run a query when input receives focus.' + }, + { + name: 'inputId', + type: 'string', + default: 'null', + description: 'Identifier of the underlying input element.' + }, + { + name: 'inputStyle', + type: 'object', + default: 'null', + description: 'Inline style of the input field.' + }, + { + name: 'inputClass', + type: 'string | object', + default: 'null', + description: 'Style class of the input field.' + }, + { + name: 'inputProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLInputElement/HTMLSpanElement to the focusable input element inside the component.' + }, + { + name: 'panelStyle', + type: 'object', + default: 'null', + description: 'Inline style of the overlay panel.' + }, + { + name: 'panelClass', + type: 'string | object', + default: 'null', + description: 'Style class of the overlay panel.' + }, + { + name: 'panelProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLDivElement to the overlay panel inside the component.' + }, + { + name: 'dropdownIcon', + type: 'string', + default: 'null', + description: 'Icon to display in the dropdown.' + }, + { + name: 'dropdownClass', + type: 'string', + default: 'null', + description: 'Style class of the dropdown button.' + }, + { + name: 'loadingIcon', + type: 'string', + default: 'null', + description: 'Icon to display in loading state.' + }, + { + name: 'removeTokenIcon', + type: 'string', + default: 'null', + description: 'Icon to display in chip remove action.' + }, + { + name: 'virtualScrollerOptions', + type: 'object', + default: 'null', + description: 'Whether to use the virtualScroller feature. The properties of VirtualScroller component can be used like an object in it.' + }, + { + name: 'autoOptionFocus', + type: 'boolean', + default: 'false', + description: 'Whether to focus on the first visible or selected element when the overlay panel is shown.' + }, + { + name: 'selectOnFocus', + type: 'boolean', + default: 'false', + description: 'When enabled, the focused option is selected.' + }, + { + name: 'searchLocale', + type: 'string', + default: 'undefined', + description: "Locale to use in searching. The default locale is the host environment's current locale." + }, + { + name: 'searchMessage', + type: 'string', + default: '{0} results are available', + description: 'Text to be displayed in hidden accessible field when filtering returns any results. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'selectionMessage', + type: 'string', + default: '{0} items selected', + description: 'Text to be displayed in hidden accessible field when options are selected. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'emptySelectionMessage', + type: 'string', + default: 'No selected item', + description: 'Text to be displayed in hidden accessible field when any option is not selected. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'emptySearchMessage', + type: 'string', + default: 'No results found', + description: 'Text to display when filtering does not return any results. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'tabindex', + type: 'number', + default: '0', + description: 'Index of the element in tabbing order.' + }, + { + name: 'aria-label', + type: 'string', + default: 'null', + description: 'Defines a string value that labels an interactive element.' + }, + { + name: 'aria-labelledby', + type: 'string', + default: 'null', + description: 'Identifier of the underlying input element.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const AutoCompleteEvents = [ + { + name: 'change', + description: 'Callback to invoke on value change.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.value', + type: 'string', + description: 'Selected option value' + } + ] + }, + { + name: 'focus', + description: 'Callback to invoke when component receives focus.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + }, + { + name: 'blur', + description: 'Callback to invoke when component loses focus.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + }, + { + name: 'item-select', + description: 'Callback to invoke when a suggestion is selected.', + arguments: [ + { + name: 'originalEvent', + type: 'object', + description: 'Original event' + }, + { + name: 'value', + type: 'object', + description: 'Selected item' + } + ] + }, + { + name: 'item-unselect', + description: 'Callback to invoke when a selected value is removed.', + arguments: [ + { + name: 'originalEvent', + type: 'object', + description: 'Original event' + }, + { + name: 'value', + type: 'object', + description: 'Unselected item' + } + ] + }, + { + name: 'dropdown-click', + description: 'Callback to invoke to when dropdown button is clicked.', + arguments: [ + { + name: 'originalEvent', + type: 'object', + description: 'Original event' + }, + { + name: 'query', + type: 'string', + description: 'Current value of the input field' + } + ] + }, + { + name: 'clear', + description: 'Callback to invoke when input is cleared by the user.' + }, + { + name: 'complete', + description: 'Callback to invoke to search for suggestions.', + arguments: [ + { + name: 'originalEvent', + type: 'object', + description: 'Original event' + }, + { + name: 'query', + type: 'string', + description: 'Value to search with' + } + ] + }, + { + name: 'before-show', + description: 'Callback to invoke before the overlay is shown.' + }, + { + name: 'before-hide', + description: 'Callback to invoke before the overlay is hidden.' + }, + { + name: 'show', + description: 'Callback to invoke when the overlay is shown.' + }, + { + name: 'hide', + description: 'Callback to invoke when the overlay is hidden.' + } +]; + +const AutoCompleteSlots = [ + { + name: 'chip', + description: 'Custom content for the chip display.' + }, + { + name: 'header', + description: 'Custom content for the component header.' + }, + { + name: 'footer', + description: 'Custom content for the component footer.' + }, + { + name: 'item', + description: 'Custom content for the item.' + }, + { + name: 'option', + description: 'Custom content for the item.' + }, + { + name: 'optiongroup', + description: 'Custom content for the optiongroup item.' + }, + { + name: 'content', + description: 'Custom content for the virtual scroller.' + }, + { + name: 'loader', + description: 'Custom content for the virtual scroller loader items.' + }, + { + name: 'empty', + description: 'Custom empty template when there is no data to display.' + }, + { + name: 'dropdownicon', + description: 'Custom dropdown icon template.' + }, + { + name: 'removetokenicon', + description: 'Custom remove token icon template.' + }, + { + name: 'loadingicon', + description: 'Custom loading icon template.' + } +]; + +module.exports = { + autocomplete: { + name: 'AutoComplete', + description: 'AutoComplete is an input component that provides real-time suggestions when being typed.', + props: AutoCompleteProps, + events: AutoCompleteEvents, + slots: AutoCompleteSlots + } +}; diff --git a/packages/primevue/scripts/components/avatar.js b/packages/primevue/scripts/components/avatar.js new file mode 100644 index 0000000000..396e4b6818 --- /dev/null +++ b/packages/primevue/scripts/components/avatar.js @@ -0,0 +1,75 @@ +const AvatarProps = [ + { + name: 'label', + type: 'string', + default: 'null', + description: 'Defines the text to display.' + }, + { + name: 'icon', + type: 'string', + default: 'null', + description: 'Defines the icon to display.' + }, + { + name: 'image', + type: 'string', + default: 'null', + description: 'Defines the image to display.' + }, + { + name: 'size', + type: 'string', + default: 'null', + description: 'Size of the element, valid options are "large" and "xlarge".' + }, + { + name: 'shape', + type: 'string', + default: 'square', + description: 'Shape of the element, valid options are "square" and "circle".' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const AvatarSlots = [ + { + name: 'icon', + description: 'Custom icon template.' + } +]; + +const AvatarEvents = [ + { + name: 'error', + description: 'Triggered when an error occurs while loading an image file.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + } +]; + +module.exports = { + avatar: { + name: 'Avatar', + description: 'Avatar represents people using icons, labels and images.', + props: AvatarProps, + slots: AvatarSlots, + events: AvatarEvents + } +}; diff --git a/packages/primevue/scripts/components/avatargroup.js b/packages/primevue/scripts/components/avatargroup.js new file mode 100644 index 0000000000..3370038ca6 --- /dev/null +++ b/packages/primevue/scripts/components/avatargroup.js @@ -0,0 +1,53 @@ +const AvatarGroupProps = [ + { + name: 'label', + type: 'string', + default: 'null', + description: 'Defines the text to display.' + }, + { + name: 'icon', + type: 'string', + default: 'null', + description: 'Defines the icon to display.' + }, + { + name: 'image', + type: 'string', + default: 'null', + description: 'Defines the image to display.' + }, + { + name: 'size', + type: 'string', + default: 'null', + description: 'Size of the element, valid options are "large" and "xlarge".' + }, + { + name: 'shape', + type: 'string', + default: 'square', + description: 'Shape of the element, valid options are "square" and "circle".' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +module.exports = { + avatargroup: { + name: 'AvatarGroup', + 'doc-url': 'avatar', + description: 'A set of Avatars can be displayed together using the AvatarGroup component.', + props: AvatarGroupProps + } +}; diff --git a/packages/primevue/scripts/components/badge.js b/packages/primevue/scripts/components/badge.js new file mode 100644 index 0000000000..2eb0a0151c --- /dev/null +++ b/packages/primevue/scripts/components/badge.js @@ -0,0 +1,40 @@ +const BadgeProps = [ + { + name: 'value', + type: 'string | number', + default: 'null', + description: 'Value to display inside the badge.' + }, + { + name: 'severity', + type: 'string', + default: 'null', + description: 'Severity type of the badge. Valid severities are "secondary", "success", "info", "warn", "danger" and "contrast".' + }, + { + name: 'size', + type: 'string', + default: 'null', + description: 'Size of the badge, valid options are "large" and "xlarge".' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +module.exports = { + badge: { + name: 'Badge', + description: 'Badge is a small status indicator for another element.', + props: BadgeProps + } +}; diff --git a/packages/primevue/scripts/components/badgedirective.js b/packages/primevue/scripts/components/badgedirective.js new file mode 100644 index 0000000000..07dbe6d480 --- /dev/null +++ b/packages/primevue/scripts/components/badgedirective.js @@ -0,0 +1,26 @@ +const BadgeDirectiveModifiers = [ + { + name: 'success', + description: 'Overrides default severity color' + }, + { + name: 'info', + description: 'Default color for severity levels' + }, + { + name: 'warn', + description: 'Overrides default severity color' + }, + { + name: 'danger', + description: 'Overrides default severity color' + } +]; + +module.exports = { + badgedirective: { + name: 'BadgeDirective', + description: 'When Badge used as a directive, badge needs to be configured at the application with a name of your choice.', + 'vue-modifiers': BadgeDirectiveModifiers + } +}; diff --git a/packages/primevue/scripts/components/blockui.js b/packages/primevue/scripts/components/blockui.js new file mode 100644 index 0000000000..640559f8b0 --- /dev/null +++ b/packages/primevue/scripts/components/blockui.js @@ -0,0 +1,58 @@ +const BlockUIProps = [ + { + name: 'blocked', + type: 'array', + default: 'null', + description: 'Controls the blocked state.' + }, + { + name: 'fullscreen', + type: 'menuitem', + default: 'null', + description: 'When enabled, the whole document gets blocked.' + }, + { + name: 'baseZIndex', + type: 'number', + default: '0', + description: 'Base zIndex value to use in layering.' + }, + { + name: 'autoZIndex', + type: 'boolean', + default: 'true', + description: 'Whether to automatically manage layering.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const BlockUIEvents = [ + { + name: 'block', + description: 'Fired when the element gets blocked.' + }, + { + name: 'unblock', + description: 'Fired when the element gets unblocked.' + } +]; + +module.exports = { + blockui: { + name: 'BlockUI', + description: 'BlockUI can either block other components or the whole page.', + props: BlockUIProps, + events: BlockUIEvents + } +}; diff --git a/packages/primevue/scripts/components/breadcrumb.js b/packages/primevue/scripts/components/breadcrumb.js new file mode 100644 index 0000000000..84e1c106fa --- /dev/null +++ b/packages/primevue/scripts/components/breadcrumb.js @@ -0,0 +1,50 @@ +const BreadcrumbProps = [ + { + name: 'model', + type: 'array', + default: 'null', + description: 'An array of menuitems.' + }, + { + name: 'home', + type: 'menuitem', + default: 'null', + description: 'Configuration for the home icon.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const BreadcrumbSlots = [ + { + name: 'item', + description: 'Custom item template.' + }, + { + name: 'separator', + description: 'Custom separator template.' + }, + { + name: 'itemicon', + description: 'Custom item icon template.' + } +]; + +module.exports = { + breadcrumb: { + name: 'Breadcrumb', + description: 'Breadcrumb provides contextual information about page hierarchy.', + props: BreadcrumbProps, + slots: BreadcrumbSlots + } +}; diff --git a/packages/primevue/scripts/components/button.js b/packages/primevue/scripts/components/button.js new file mode 100644 index 0000000000..87f1b0437d --- /dev/null +++ b/packages/primevue/scripts/components/button.js @@ -0,0 +1,133 @@ +const ButtonProps = [ + { + name: 'label', + type: 'string', + default: 'null', + description: 'Text of the button.' + }, + { + name: 'icon', + type: 'string', + default: 'null', + description: 'Name of the icon.' + }, + { + name: 'iconPos', + type: 'string', + default: 'left', + description: 'Position of the icon, valid values are "left", "right", "bottom" and "top".' + }, + { + name: 'iconClass', + type: 'string', + default: 'null', + description: 'Style class of the icon.' + }, + { + name: 'badge', + type: 'string', + default: 'null', + description: 'Value of the badge.' + }, + { + name: 'badgeClass', + type: 'string', + default: 'null', + description: 'Style class of the badge.' + }, + { + name: 'loading', + type: 'boolean', + default: 'false', + description: 'Whether the button is in loading state.' + }, + { + name: 'loadingIcon', + type: 'string', + default: 'pi pi-spinner pi-spin', + description: 'Icon to display in loading state.' + }, + { + name: 'link', + type: 'boolean', + default: 'false', + description: 'Add a link style to the button.' + }, + { + name: 'severity', + type: 'string', + default: 'null', + description: 'Defines the style of the button, valid values are "secondary", "success", "info", "warn", "help", "danger", "contrast".' + }, + { + name: 'raised', + type: 'boolean', + default: 'false', + description: 'Add a shadow to indicate elevation.' + }, + { + name: 'rounded', + type: 'boolean', + default: 'false', + description: 'Add a circular border radius to the button.' + }, + { + name: 'text', + type: 'boolean', + default: 'false', + description: 'Add a textual class to the button without a background initially.' + }, + { + name: 'outlined', + type: 'boolean', + default: 'false', + description: 'Add a border class without a background initially.' + }, + { + name: 'size', + type: 'string', + default: 'null', + description: 'Defines the size of the button, valid values are "small" and "large".' + }, + { + name: 'plain', + type: 'boolean', + default: 'false', + description: 'Add a plain textual class to the button without a background initially.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const ButtonEvents = []; + +const ButtonSlots = [ + { + name: 'icon', + description: 'Custom icon template.' + }, + { + name: 'loadingicon', + description: 'Custom loading icon template.' + } +]; + +module.exports = { + button: { + name: 'Button', + description: 'Button is an extension to standard button element with icons and theming.', + props: ButtonProps, + events: ButtonEvents, + slots: ButtonSlots + } +}; diff --git a/packages/primevue/scripts/components/calendar.js b/packages/primevue/scripts/components/calendar.js new file mode 100644 index 0000000000..9e5f3acbea --- /dev/null +++ b/packages/primevue/scripts/components/calendar.js @@ -0,0 +1,512 @@ +const CalendarProps = [ + { + name: 'modelValue', + type: 'any', + default: 'null', + description: 'Value of the component.' + }, + { + name: 'selectionMode', + type: 'string', + default: 'single', + description: 'Defines the quantity of the selection, valid values are "single", "multiple" and "range".' + }, + { + name: 'dateFormat', + type: 'string', + default: 'null', + description: 'Format of the date. Defaults to PrimeVue Locale configuration.' + }, + { + name: 'inline', + type: 'boolean', + default: 'false', + description: 'When enabled, displays the calendar as inline instead of an overlay.' + }, + { + name: 'showOtherMonths', + type: 'boolean', + default: 'true', + description: 'Whether to display dates in other months (non-selectable) at the start or end of the current month. To make these days selectable use the selectOtherMonths option.' + }, + { + name: 'selectOtherMonths', + type: 'boolean', + default: 'false', + description: 'Whether days in other months shown before or after the current month are selectable. This only applies if the showOtherMonths option is set to true.' + }, + { + name: 'showIcon', + type: 'boolean', + default: 'false', + description: 'When enabled, displays a button with icon next to input.' + }, + { + name: 'icon', + type: 'string', + default: 'null', + description: 'Icon of the calendar button.' + }, + { + name: 'prevIcon', + type: 'string', + default: 'null', + description: 'Icon to show in the previous button.' + }, + { + name: 'nextIcon', + type: 'string', + default: 'null', + description: 'Icon to show in the next button.' + }, + { + name: 'incrementIcon', + type: 'string', + default: 'null', + description: 'Icon to show in each of the increment buttons.' + }, + { + name: 'decrementIcon', + type: 'string', + default: 'null', + description: 'Icon to show in each of the decrement buttons.' + }, + { + name: 'numberOfMonths', + type: 'number', + default: '1', + description: 'Number of months to display.' + }, + { + name: 'view', + type: 'string', + default: 'date', + description: 'Type of view to display, valid valids are "date" for datepicker and "month" for month picker.' + }, + { + name: 'monthNavigator', + type: 'boolean', + default: 'false', + description: 'Whether the month should be rendered as a dropdown instead of text.' + }, + { + name: 'yearNavigator', + type: 'boolean', + default: 'false', + description: 'Whether the year should be rendered as a dropdown instead of text.' + }, + { + name: 'yearRange', + type: 'string', + default: 'null', + description: 'The range of years displayed in the year drop-down in (nnnn:nnnn) format such as (2000:2020).' + }, + { + name: 'panelClass', + type: 'string', + default: 'null', + description: 'Style class of the datetimepicker panel.' + }, + { + name: 'minDate', + type: 'Date', + default: 'null', + description: 'The minimum selectable date.' + }, + { + name: 'maxDate', + type: 'Date', + default: 'null', + description: 'The maximum selectable date.' + }, + { + name: 'disabledDates', + type: 'array', + default: 'null', + description: 'Array with dates to disable.' + }, + { + name: 'disabledDays', + type: 'array', + default: 'null', + description: 'Array with disabled weekday numbers.' + }, + { + name: 'maxDateCount', + type: 'number', + default: 'null', + description: 'Maximum number of selectable dates in multiple mode.' + }, + { + name: 'showOnFocus', + type: 'boolean', + default: 'true', + description: 'When disabled, datepicker will not be visible with input focus.' + }, + { + name: 'autoZIndex', + type: 'boolean', + default: 'true', + description: 'Whether to automatically manage layering.' + }, + { + name: 'baseZIndex', + type: 'number', + default: '0', + description: 'Base zIndex value to use in layering.' + }, + { + name: 'showButtonBar', + type: 'boolean', + default: 'false', + description: 'Whether to display today and clear buttons at the footer' + }, + { + name: 'shortYearCutoff', + type: 'string', + default: '+10', + description: 'The cutoff year for determining the century for a date.' + }, + { + name: 'showTime', + type: 'boolean', + default: 'false', + description: 'Whether to display timepicker.' + }, + { + name: 'timeOnly', + type: 'boolean', + default: 'false', + description: 'Whether to display timepicker only.' + }, + { + name: 'hourFormat', + type: 'string', + default: '24', + description: 'Specifies 12 or 24 hour format.' + }, + { + name: 'stepHour', + type: 'number', + default: '1', + description: 'Hours to change per step.' + }, + { + name: 'stepMinute', + type: 'number', + default: '1', + description: 'Minutes to change per step.' + }, + { + name: 'stepSeconds', + type: 'number', + default: '1', + description: 'Seconds to change per step.' + }, + { + name: 'showSeconds', + type: 'boolean', + default: 'false', + description: 'Whether to show the seconds in time picker.' + }, + { + name: 'hideOnDateTimeSelect', + type: 'boolean', + default: 'false', + description: 'Whether to hide the overlay on date selection when showTime is enabled.' + }, + { + name: 'hideOnRangeSelection', + type: 'boolean', + default: 'false', + description: 'Whether to hide the overlay on date selection is completed when selectionMode is range.' + }, + { + name: 'timeSeparator', + type: 'string', + default: ':', + description: 'Separator of time selector.' + }, + { + name: 'showWeek', + type: 'boolean', + default: 'false', + description: 'When enabled, calendar will show week numbers.' + }, + { + name: 'manualInput', + type: 'boolean', + default: 'true', + description: 'Whether to allow entering the date manually via typing.' + }, + { + name: 'appendTo', + type: 'string', + default: 'body', + description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached. Special keywords are "body" for document body and "self" for the element itself.' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the element should be disabled.' + }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'null', + description: 'Specifies the input variant of the component.' + }, + { + name: 'readonly', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that an input field is read-only.' + }, + { + name: 'placeholder', + type: 'string', + default: 'null', + description: 'Placeholder text for the input.' + }, + { + name: 'id', + type: 'string', + default: 'null', + description: 'Identifier of the element.' + }, + { + name: 'inputId', + type: 'string', + default: 'null', + description: 'Identifier of the underlying input element.' + }, + { + name: 'inputClass', + type: 'string | object', + default: 'null', + description: 'Style class of the input field.' + }, + { + name: 'inputStyle', + type: 'object', + default: 'null', + description: 'Inline style of the input field.' + }, + { + name: 'inputProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLInputElement to the focusable input element inside the component.' + }, + { + name: 'panelClass', + type: 'string | object', + default: 'null', + description: 'Style class of the overlay panel.' + }, + { + name: 'panelStyle', + type: 'object', + default: 'null', + description: 'Inline style of the overlay panel.' + }, + { + name: 'panelProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLDivElement to the overlay panel inside the component.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const CalendarEvents = [ + { + name: 'input', + description: 'Callback to invoke when input field is being typed.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'New date' + } + ] + }, + { + name: 'date-select', + description: 'Callback to invoke when a date is selected.', + arguments: [ + { + name: 'value', + type: 'Date', + description: 'Selected value' + } + ] + }, + { + name: 'show', + description: 'Callback to invoke when datepicker panel is shown.' + }, + { + name: 'hide', + description: 'Callback to invoke when datepicker panel is hidden.' + }, + { + name: 'today-click', + description: 'Callback to invoke when today button is clicked.', + arguments: [ + { + name: 'date', + type: 'Date', + description: 'Today as a date instance' + } + ] + }, + { + name: 'clear-click', + description: 'Callback to invoke when clear button is clicked.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Click event' + } + ] + }, + { + name: 'month-change', + description: 'Callback to invoke when a month is changed using the navigators.', + arguments: [ + { + name: 'event.month', + type: 'number', + description: 'New month' + }, + { + name: 'event.year', + type: 'number', + description: 'New year' + } + ] + }, + { + name: 'year-change', + description: 'Callback to invoke when a year is changed using the navigators.', + arguments: [ + { + name: 'event.month', + type: 'number', + description: 'New month' + }, + { + name: 'event.year', + type: 'number', + description: 'New year' + } + ] + }, + { + name: 'focus', + description: 'Callback to invoke on focus of input field.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Focus event' + } + ] + }, + { + name: 'blur', + description: 'Callback to invoke on blur of input field.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.value', + type: 'string', + description: 'Input value' + } + ] + }, + { + name: 'keydown', + description: 'Callback to invoke when a key is pressed.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Keydown event' + } + ] + } +]; + +const CalendarSlots = [ + { + name: 'header', + description: 'Custom content for the component header.' + }, + { + name: 'footer', + description: 'Custom content for the component footer.' + }, + { + name: 'date', + description: 'Custom content for the calendar cell.' + }, + { + name: 'decade', + description: 'Custom content for the calendar decade.' + }, + { + name: 'dropdownicon', + description: 'Custom dropdown icon template.' + }, + { + name: 'prevIcon', + description: 'Custom previous icon template.' + }, + { + name: 'nexticon', + description: 'Custom next icon template.' + }, + { + name: 'incrementicon', + description: 'Custom increment icon template.' + }, + { + name: 'decrementicon', + description: 'Custom decrement icon template.' + } +]; + +module.exports = { + calendar: { + name: 'Calendar', + description: 'Calendar is an input component to select a date.', + props: CalendarProps, + events: CalendarEvents, + slots: CalendarSlots + } +}; diff --git a/packages/primevue/scripts/components/card.js b/packages/primevue/scripts/components/card.js new file mode 100644 index 0000000000..bfbb4700d1 --- /dev/null +++ b/packages/primevue/scripts/components/card.js @@ -0,0 +1,46 @@ +const CardProps = [ + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const CardSlots = [ + { + name: 'header', + description: 'Custom content for the component header.' + }, + { + name: 'title', + description: 'Custom content for the component title.' + }, + { + name: 'subtitle', + description: 'Custom content for the component subtitle.' + }, + { + name: 'content', + description: 'Custom content for the component content.' + }, + { + name: 'footer', + description: 'Custom content for the component footer.' + } +]; + +module.exports = { + card: { + name: 'Card', + description: 'Card is a flexible container component.', + props: CardProps, + slots: CardSlots + } +}; diff --git a/packages/primevue/scripts/components/carousel.js b/packages/primevue/scripts/components/carousel.js new file mode 100644 index 0000000000..8ba6a7c391 --- /dev/null +++ b/packages/primevue/scripts/components/carousel.js @@ -0,0 +1,138 @@ +const CarouselProps = [ + { + name: 'value', + type: 'array', + default: 'null', + description: 'An array of objects to display.' + }, + { + name: 'page', + type: 'number', + default: 'null', + description: 'Index of the first item.' + }, + { + name: 'circular', + type: 'boolean', + default: 'false', + description: 'Defines if scrolling would be infinite.' + }, + { + name: 'autoplayInterval', + type: 'number', + default: 'null', + description: 'Time in milliseconds to scroll items automatically.' + }, + { + name: 'numVisible', + type: 'number', + default: '1', + description: 'Number of items per page.' + }, + { + name: 'numScroll', + type: 'number', + default: '1', + description: 'Number of items to scroll.' + }, + { + name: 'responsiveOptions', + type: 'any', + default: 'null', + description: 'An array of options for responsive design.' + }, + { + name: 'orientation', + type: 'string', + default: 'horizontal', + description: 'Specifies the layout of the component, valid values are "horizontal" and "vertical".' + }, + { + name: 'verticalViewPortHeight', + type: 'string', + default: '300px', + description: 'Height of the viewport in vertical layout.' + }, + { + name: 'contentClass', + type: 'string', + default: 'null', + description: 'Style class of main content.' + }, + { + name: 'containerClass', + type: 'string', + default: 'null', + description: 'Style class of the viewport container.' + }, + { + name: 'indicatorsContentClass', + type: 'string', + default: 'null', + description: 'Style class of the indicator items.' + }, + { + name: 'showNavigators', + type: 'boolean', + default: 'true', + description: 'Whether to display navigation buttons in container.' + }, + { + name: 'showIndicators', + type: 'boolean', + default: 'true', + description: 'Whether to display indicator container.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const CarouselSlots = [ + { + name: 'header', + description: 'Custom content for the component header.' + }, + { + name: 'header', + description: 'Custom content for the component header.' + }, + { + name: 'footer', + description: 'Custom content for the component footer.' + }, + { + name: 'item', + description: 'Custom content for the component item.' + }, + { + name: 'previcon', + description: 'Custom previous icon template.' + }, + { + name: 'nexticon', + description: 'Custom next icon template.' + }, + { + name: 'empty', + description: 'Custom content when there is no data to display.' + } +]; + +module.exports = { + carousel: { + name: 'Carousel', + description: 'Carousel is a content slider featuring various customization options.', + props: CarouselProps, + slots: CarouselSlots + } +}; diff --git a/packages/primevue/scripts/components/cascadeselect.js b/packages/primevue/scripts/components/cascadeselect.js new file mode 100644 index 0000000000..4a870edb46 --- /dev/null +++ b/packages/primevue/scripts/components/cascadeselect.js @@ -0,0 +1,333 @@ +const CascadeSelectProps = [ + { + name: 'modelValue', + type: 'any', + default: 'null', + description: 'Value of the component.' + }, + { + name: 'options', + type: 'array', + default: 'null', + description: 'An array of selectitems to display as the available options.' + }, + { + name: 'optionLabel', + type: 'string | function', + default: 'null', + description: 'Property name or getter function to use as the label of an option.' + }, + { + name: 'optionValue', + type: 'string | function', + default: 'null', + description: 'Property name or getter function to use as the value of an option, defaults to the option itself when not defined.' + }, + { + name: 'optionDisabled', + type: 'boolean', + default: 'null', + description: 'Property name or getter function to use as the disabled flag of an option, defaults to false when not defined.' + }, + { + name: 'optionGroupLabel', + type: 'string | function', + default: 'null', + description: 'Property name or getter function to use as the label of an option group.' + }, + { + name: 'optionGroupChildren', + type: 'array | function', + default: 'null', + description: 'Property name or getter function to retrieve the items of a group.' + }, + { + name: 'placeholder', + type: 'string', + default: 'null', + description: 'Default text to display when no option is selected.' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should be disabled.' + }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'null', + description: 'Specifies the input variant of the component.' + }, + { + name: 'dataKey', + type: 'string', + default: 'null', + description: 'A property to uniquely identify an option.' + }, + { + name: 'inputStyle', + type: 'object', + default: 'null', + description: 'Inline style of the input field.' + }, + { + name: 'inputClass', + type: 'string | object', + default: 'null', + description: 'Style class of the input field.' + }, + { + name: 'inputProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLInputElement/HTMLSpanElement to the focusable input element inside the component.' + }, + { + name: 'panelStyle', + type: 'object', + default: 'null', + description: 'Inline style of the overlay panel.' + }, + { + name: 'panelClass', + type: 'string | object', + default: 'null', + description: 'Style class of the overlay panel.' + }, + { + name: 'panelProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLDivElement to the overlay panel inside the component.' + }, + { + name: 'appendTo', + type: 'string', + default: 'body', + description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached. Special keywords are "body" for document body and "self" for the element itself.' + }, + { + name: 'loading', + type: 'boolean', + default: 'false', + description: 'Whether the multiselect is in loading state.' + }, + { + name: 'dropdownIcon', + type: 'string', + default: 'null', + description: 'Icon to display in the dropdown.' + }, + { + name: 'loadingIcon', + type: 'string', + default: 'null', + description: 'Icon to display in loading state.' + }, + { + name: 'optionGroupIcon', + type: 'string', + default: 'null', + description: 'Icon to display in the option group.' + }, + { + name: 'autoOptionFocus', + type: 'boolean', + default: 'false', + description: 'Whether to focus on the first visible or selected element when the overlay panel is shown.' + }, + { + name: 'selectOnFocus', + type: 'boolean', + default: 'false', + description: 'When enabled, the focused option is selected/opened.' + }, + { + name: 'searchLocale', + type: 'string', + default: 'undefined', + description: "Locale to use in searching. The default locale is the host environment's current locale." + }, + { + name: 'searchMessage', + type: 'string', + default: '{0} results are available', + description: 'Text to be displayed in hidden accessible field when filtering returns any results. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'selectionMessage', + type: 'string', + default: '{0} items selected', + description: 'Text to be displayed in hidden accessible field when options are selected. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'emptySelectionMessage', + type: 'string', + default: 'No selected item', + description: 'Text to be displayed in hidden accessible field when any option is not selected. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'emptySearchMessage', + type: 'string', + default: 'No results found', + description: 'Text to display when filtering does not return any results. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'tabindex', + type: 'number', + default: '0', + description: 'Index of the element in tabbing order.' + }, + { + name: 'aria-label', + type: 'string', + default: 'null', + description: 'Defines a string value that labels an interactive element.' + }, + { + name: 'aria-labelledby', + type: 'string', + default: 'null', + description: 'Identifier of the underlying input element.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const CascadeSelectEvents = [ + { + name: 'change', + description: 'Callback to invoke on value change.', + arguments: [ + { + name: 'originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'value', + type: 'object', + description: 'Selected option value' + } + ] + }, + { + name: 'focus', + description: 'Callback to invoke when component receives focus.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + }, + { + name: 'blur', + description: 'Callback to invoke when component loses focus.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + }, + { + name: 'click', + description: 'Callback to invoke on click.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + }, + { + name: 'group-change', + description: 'Callback to invoke when a group changes.', + arguments: [ + { + name: 'originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'value', + type: 'object', + description: 'Selected option value' + } + ] + }, + { + name: 'before-show', + description: 'Callback to invoke before the overlay is shown.' + }, + { + name: 'before-hide', + description: 'Callback to invoke before the overlay is hidden.' + }, + { + name: 'show', + description: 'Callback to invoke when the overlay is shown.' + }, + { + name: 'hide', + description: 'Callback to invoke when the overlay is hidden.' + } +]; + +const CascadeSelectSlots = [ + { + name: 'value', + description: "Custom content for the item's value." + }, + { + name: 'option', + description: "Custom content for the item's option." + }, + { + name: 'indicator', + description: 'Custom content for the dropdown indicator.' + }, + { + name: 'dropdownicon', + description: 'Custom dropdown icon template.' + }, + { + name: 'loadingicon', + description: 'Custom loading icon template.' + }, + { + name: 'optiongroupicon', + description: 'Custom content for the option group icon.' + } +]; + +module.exports = { + cascadeselect: { + name: 'CascadeSelect', + description: 'CascadeSelect displays a nested structure of options.', + props: CascadeSelectProps, + events: CascadeSelectEvents, + slots: CascadeSelectSlots + } +}; diff --git a/packages/primevue/scripts/components/chart.js b/packages/primevue/scripts/components/chart.js new file mode 100644 index 0000000000..f76d90f730 --- /dev/null +++ b/packages/primevue/scripts/components/chart.js @@ -0,0 +1,104 @@ +const ChartProps = [ + { + name: 'type', + type: 'string', + default: 'null', + description: 'Type of the chart.' + }, + { + name: 'data', + type: 'any', + default: 'null', + description: 'Data to display.' + }, + { + name: 'options', + type: 'any', + default: 'null', + description: 'Options to customize the chart.' + }, + { + name: 'plugins', + type: 'any', + default: 'null', + description: 'Used to custom plugins of the chart.' + }, + { + name: 'width', + type: 'number', + default: '300', + description: 'Width of the chart in non-responsive mode.' + }, + { + name: 'height', + type: 'number', + default: '150', + description: 'Height of the chart in non-responsive mode.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const ChartEvents = [ + { + name: 'select', + description: 'Callback to invoke when a tab gets expanded.', + arguments: [ + { + name: 'originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'dataset', + type: 'object', + description: 'Selected dataset' + }, + { + name: 'element', + type: 'object', + description: 'Selected element' + }, + { + name: 'element._datasetIndex', + type: 'number', + description: 'Index of the dataset in data' + }, + { + name: 'element._index', + type: 'number', + description: 'Index of the data in dataset' + } + ] + }, + { + name: 'loaded', + description: 'Callback to invoke when chart is loaded.', + arguments: [ + { + name: 'chart', + type: 'object', + description: 'Chart instance.' + } + ] + } +]; + +module.exports = { + chart: { + name: 'Chart', + description: 'Chart components are based on Charts.js, an open source HTML5 based charting library.', + props: ChartProps, + events: ChartEvents + } +}; diff --git a/packages/primevue/scripts/components/checkbox.js b/packages/primevue/scripts/components/checkbox.js new file mode 100644 index 0000000000..fc05fa217a --- /dev/null +++ b/packages/primevue/scripts/components/checkbox.js @@ -0,0 +1,148 @@ +const CheckboxProps = [ + { + name: 'value', + type: 'any', + default: 'null', + description: 'Value of the checkbox.' + }, + { + name: 'modelValue', + type: 'any', + default: 'null', + description: 'Value binding of the checkbox.' + }, + { + name: 'binary', + type: 'boolean', + default: 'false', + description: 'Allows to select a boolean value instead of multiple values.' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the element should be disabled.' + }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'null', + description: 'Specifies the input variant of the component.' + }, + { + name: 'readonly', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that an input field is read-only.' + }, + { + name: 'required', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the element is required.' + }, + { + name: 'tabindex', + type: 'number', + default: 'null', + description: 'Index of the element in tabbing order.' + }, + { + name: 'trueValue', + type: 'any', + default: 'null', + description: 'Value in checked state.' + }, + { + name: 'falseValue', + type: 'any', + default: 'null', + description: 'Value in unchecked state.' + }, + { + name: 'inputId', + type: 'string', + default: 'null', + description: 'Identifier of the underlying input element.' + }, + { + name: 'inputClass', + type: 'string | object', + default: 'null', + description: 'Style class of the input field.' + }, + { + name: 'inputStyle', + type: 'object', + default: 'null', + description: 'Inline style of the input field.' + }, + { + name: 'inputProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLInputElement to the focusable input element inside the component.' + }, + { + name: 'aria-labelledby', + type: 'string', + default: 'null', + description: 'Establishes relationships between the component and label(s) where its value should be one or more element IDs.' + }, + { + name: 'aria-label', + type: 'string', + default: 'null', + description: 'Used to define a string that labels the element.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const CheckboxEvents = [ + { + name: 'click', + description: 'Callback to invoke on value click.' + }, + { + name: 'change', + description: 'Callback to invoke on value change.' + }, + { + name: 'input', + description: 'Callback to invoke on value change.' + } +]; + +const CheckboxSlots = [ + { + name: 'icon', + description: 'Custom icon template.' + } +]; + +module.exports = { + checkbox: { + name: 'Checkbox', + description: 'Checkbox is an extension to standard checkbox element with theming.', + props: CheckboxProps, + events: CheckboxEvents, + slots: CheckboxSlots + } +}; diff --git a/packages/primevue/scripts/components/chip.js b/packages/primevue/scripts/components/chip.js new file mode 100644 index 0000000000..e0b6f170ff --- /dev/null +++ b/packages/primevue/scripts/components/chip.js @@ -0,0 +1,79 @@ +const ChipProps = [ + { + name: 'label', + type: 'string', + default: 'null', + description: 'Defines the text to display.' + }, + { + name: 'icon', + type: 'string', + default: 'null', + description: 'Defines the icon to display.' + }, + { + name: 'image', + type: 'string', + default: 'null', + description: 'Defines the image to display.' + }, + { + name: 'removable', + type: 'boolean', + default: 'false', + description: 'Whether to display a remove icon.' + }, + { + name: 'removeIconClass', + type: 'string', + default: 'pi pi-times-circle', + description: 'Icon of the remove element.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const ChipEvents = [ + { + name: 'remove', + description: 'Callback to invoke when a chip is removed.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + } +]; + +const ChipSlots = [ + { + name: 'icon', + description: 'Custom icon template of chip component.' + }, + { + name: 'removeicon', + description: 'Custom remove icon template of chip component.' + } +]; + +module.exports = { + chip: { + name: 'Chip', + description: 'Chip represents entities using icons, labels and images', + props: ChipProps, + events: ChipEvents, + slots: ChipSlots + } +}; diff --git a/packages/primevue/scripts/components/chips.js b/packages/primevue/scripts/components/chips.js new file mode 100644 index 0000000000..84235776e7 --- /dev/null +++ b/packages/primevue/scripts/components/chips.js @@ -0,0 +1,148 @@ +const ChipsProps = [ + { + name: 'modelValue', + type: 'array', + default: 'null', + description: 'Value of the component.' + }, + { + name: 'max', + type: 'number', + default: 'null', + description: 'Maximum number of entries allowed.' + }, + { + name: 'separator', + type: 'string', + default: 'null', + description: 'Separator char to add an item when pressed in addition to the enter key. Currently only possible value is ","' + }, + { + name: 'addOnBlur', + type: 'boolean', + default: 'false', + description: 'Whether to add an item when the input loses focus.' + }, + { + name: 'allowDuplicate', + type: 'boolean', + default: 'false', + description: 'Whether to allow duplicate values or not.' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the element should be disabled.' + }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'null', + description: 'Specifies the input variant of the component.' + }, + { + name: 'placeholder', + type: 'string', + default: 'null', + description: 'Placeholder text for the input.' + }, + { + name: 'inputId', + type: 'string', + default: 'null', + description: 'Identifier of the focus input to match a label defined for the chips.' + }, + { + name: 'inputClass', + type: 'string | object', + default: 'null', + description: 'Style class of the input field.' + }, + { + name: 'inputStyle', + type: 'object', + default: 'null', + description: 'Inline style of the input field.' + }, + { + name: 'inputProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLInputElement to the focusable input element inside the component.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const ChipsEvents = [ + { + name: 'add', + description: 'Callback to invoke when a chip is added.', + arguments: [ + { + name: 'originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'value', + type: 'array', + description: 'Added item value' + } + ] + }, + { + name: 'remove', + description: 'Callback to invoke when a chip is removed.', + arguments: [ + { + name: 'originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'value', + type: 'array', + description: 'Removed item value' + } + ] + } +]; + +const ChipsSlots = [ + { + name: 'chips', + description: 'Custom content for the chips' + }, + { + name: 'removetokenicon', + description: 'Custom remove token icon template.' + } +]; + +module.exports = { + chips: { + name: 'chips', + description: 'Chips is used to enter multiple values on an input field.', + props: ChipsProps, + events: ChipsEvents, + slots: ChipsSlots + } +}; diff --git a/packages/primevue/scripts/components/colorpicker.js b/packages/primevue/scripts/components/colorpicker.js new file mode 100644 index 0000000000..c03ac406c1 --- /dev/null +++ b/packages/primevue/scripts/components/colorpicker.js @@ -0,0 +1,122 @@ +const ColorPickerProps = [ + { + name: 'modelValue', + type: 'string', + default: 'null', + description: 'Value of the component.' + }, + { + name: 'defaultColor', + type: 'string', + default: 'ff0000', + description: 'Initial color to display when value is not defined.' + }, + { + name: 'inline', + type: 'boolean', + default: 'false', + description: 'Whether to display as an overlay or not.' + }, + { + name: 'format', + type: 'string', + default: 'hex', + description: 'Format to use in value binding, supported formats are "hex", "rgb" and "hsb".' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should be disabled.' + }, + { + name: 'tabindex', + type: 'string', + default: 'null', + description: 'Index of the element in tabbing order.' + }, + { + name: 'baseZIndex', + type: 'number', + default: '0', + description: 'Base zIndex value to use in layering.' + }, + { + name: 'autoZIndex', + type: 'boolean', + default: 'true', + description: 'Whether to automatically manage layering.' + }, + { + name: 'panelClass', + type: 'string', + default: 'null', + description: 'Style class of the overlay panel.' + }, + { + name: 'appendTo', + type: 'string', + default: 'body', + description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached. Special keywords are "body" for document body and "self" for the element itself.' + }, + { + name: 'aria-labelledby', + type: 'string', + default: 'null', + description: 'Establishes relationships between the component and label(s) where its value should be one or more element IDs.' + }, + { + name: 'aria-label', + type: 'string', + default: 'null', + description: 'Used to define a string that labels the element.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const ColorPickerEvents = [ + { + name: 'change', + description: 'Callback to invoke when a color is selected.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Original event' + }, + { + name: 'event.value', + type: 'any', + description: 'Selected color' + } + ] + }, + { + name: 'show', + description: 'Callback to invoke when popup is shown.' + }, + { + name: 'hide', + description: 'Callback to invoke when popup is hidden.' + } +]; + +module.exports = { + colorpicker: { + name: 'ColorPicker', + description: 'ColorPicker is an input component to select a color.', + props: ColorPickerProps, + events: ColorPickerEvents + } +}; diff --git a/packages/primevue/scripts/components/column.js b/packages/primevue/scripts/components/column.js new file mode 100644 index 0000000000..7018f8ae55 --- /dev/null +++ b/packages/primevue/scripts/components/column.js @@ -0,0 +1,361 @@ +const ColumnProps = [ + { + name: 'columnKey', + type: 'any', + default: 'null', + description: 'Identifier of a column if field property is not defined.' + }, + { + name: 'field', + type: 'string', + default: 'null', + description: 'Property represented by the column.' + }, + { + name: 'sortField', + type: 'string', + default: 'null', + description: 'Property name to use in sorting, defaults to field.' + }, + { + name: 'filterField', + type: 'string', + default: 'null', + description: 'Property name to use in filtering, defaults to field.' + }, + { + name: 'sortable', + type: 'any', + default: 'false', + description: 'Defines if a column is sortable.' + }, + { + name: 'header', + type: 'any', + default: 'null', + description: 'Header content of the column.' + }, + { + name: 'footer', + type: 'any', + default: 'null', + description: 'Footer content of the column.' + }, + { + name: 'style', + type: 'object', + default: 'null', + description: 'Inline style of header, body and footer cells.' + }, + { + name: 'class', + type: 'string', + default: 'null', + description: 'Style class of header, body and footer cells.' + }, + { + name: 'headerStyle', + type: 'object', + default: 'null', + description: 'Inline style of the column header.' + }, + { + name: 'headerClass', + type: 'string', + default: 'null', + description: 'Style class of the column header.' + }, + { + name: 'bodyStyle', + type: 'object', + default: 'null', + description: 'Inline style of the column body.' + }, + { + name: 'bodyClass', + type: 'string', + default: 'null', + description: 'Style class of the column body.' + }, + { + name: 'footerStyle', + type: 'object', + default: 'null', + description: 'Inline style of the column footer.' + }, + { + name: 'footerClass', + type: 'string', + default: 'null', + description: 'Style class of the footer body.' + }, + { + name: 'showFilterMenu', + type: 'boolean', + default: 'true', + description: 'Whether to display the filter overlay.' + }, + { + name: 'showFilterOperator', + type: 'boolean', + default: 'true', + description: 'When enabled, match all and match any operator selector is displayed.' + }, + { + name: 'showClearButton', + type: 'boolean', + default: 'true', + description: 'Displays a button to clear the column filtering.' + }, + { + name: 'showApplyButton', + type: 'boolean', + default: 'true', + description: 'Displays a button to apply the column filtering.' + }, + { + name: 'showFilterMatchModes', + type: 'boolean', + default: 'true', + description: 'Whether to show the match modes selector.' + }, + { + name: 'showAddButton', + type: 'boolean', + default: 'true', + description: 'When enabled, a button is displayed to add more rules.' + }, + { + name: 'filterMatchModeOptions', + type: 'array', + default: 'null', + description: 'An array of label-value pairs to override the global match mode options.' + }, + { + name: 'maxConstraints', + type: 'number', + default: '2', + description: 'Maximum number of constraints for a column filter.' + }, + { + name: 'excludeGlobalFilter', + type: 'boolean', + default: 'false', + description: 'Whether to exclude from global filtering or not.' + }, + { + name: 'filterHeaderStyle', + type: 'object', + default: 'null', + description: 'Inline style of the column filter header in row filter display.' + }, + { + name: 'filterHeaderClass', + type: 'string', + default: 'null', + description: 'Style class of the column filter header in row filter display.' + }, + { + name: 'filterMenuStyle', + type: 'object', + default: 'null', + description: 'Inline style of the column filter overlay.' + }, + { + name: 'filterMenuClass', + type: 'string', + default: 'null', + description: 'Style class of the column filter overlay.' + }, + { + name: 'selectionMode', + type: 'string', + default: 'null', + description: 'Defines column based selection mode, options are "single" and "multiple".' + }, + { + name: 'expander', + type: 'boolean', + default: 'false', + description: 'Displays an icon to toggle row expansion.' + }, + { + name: 'colspan', + type: 'number', + default: 'null', + description: 'Number of columns to span for grouping.' + }, + { + name: 'rowspan', + type: 'number', + default: 'null', + description: 'Number of rows to span for grouping.' + }, + { + name: 'rowReorder', + type: 'boolean', + default: 'false', + description: 'Whether this column displays an icon to reorder the rows.' + }, + { + name: 'rowReorderIcon', + type: 'string', + default: 'pi pi-bars', + description: 'Icon of the drag handle to reorder rows.' + }, + { + name: 'reorderableColumn', + type: 'boolean', + default: 'true', + description: 'Defines if the column itself can be reordered with dragging.' + }, + { + name: 'rowEditor', + type: 'boolean', + default: 'false', + description: 'When enabled, column displays row editor controls.' + }, + { + name: 'frozen', + type: 'boolean', + default: 'false', + description: 'Whether the column is fixed in horizontal scrolling.' + }, + { + name: 'alignFrozen', + type: 'string', + default: 'left', + description: 'Position of a frozen column, valid values are left and right.' + }, + { + name: 'exportable', + type: 'boolean', + default: 'true', + description: 'Whether the column is included in data export.' + }, + { + name: 'exportHeader', + type: 'string', + default: 'null', + description: 'Custom export header of the column to be exported as CSV.' + }, + { + name: 'exportFooter', + type: 'string', + default: 'null', + description: 'Custom export footer of the column to be exported as CSV.' + }, + { + name: 'hidden', + type: 'boolean', + default: 'false', + description: 'Whether the column is rendered.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + } +]; + +const ColumnSlots = [ + { + name: 'header', + description: "Custom content for the component's header" + }, + { + name: 'body', + description: "Custom content for the component's body" + }, + { + name: 'footer', + description: "Custom content for the component's footer" + }, + { + name: 'editor', + description: 'Custom content for the editing cell' + }, + { + name: 'filter', + description: 'Custom content for the filtering items' + }, + { + name: 'filterheader', + description: "Custom content for the filter menu's header" + }, + { + name: 'filterfooter', + description: "Custom content for the filter menu's footer" + }, + { + name: 'filterclear', + description: "Custom content for the filter menu's clear section" + }, + { + name: 'filterapply', + description: "Custom content for the filter menu's apply section" + }, + { + name: 'loading', + description: 'Custom loading template.' + }, + { + name: 'rowtoggleicon', + description: 'Custom row toggler icon template.' + }, + { + name: 'rowcheckboxicon', + description: 'Custom row checkbox icon template.' + }, + { + name: 'roweditoriniticon', + description: 'Custom row editor init icon template.' + }, + { + name: 'roweditorsaveicon', + description: 'Custom row editor save icon template.' + }, + { + name: 'roweditorcancelicon', + description: 'Custom row editor cancel icon template.' + }, + { + name: 'filtericon', + description: 'Custom filter icon template.' + }, + { + name: 'filterclearicon', + description: 'Custom filter clear icon template.' + }, + { + name: 'filterremoveicon', + description: 'Custom filter remove icon template.' + }, + { + name: 'filteraddicon', + description: 'Custom filter add icon template.' + }, + { + name: 'sorticon', + description: 'Custom sort icon template.' + }, + { + name: 'headercheckboxicon', + description: 'Custom header checkbox icon template.' + }, + { + name: 'rowreordericon', + description: 'Custom row reorder icon template.' + } +]; + +module.exports = { + column: { + name: 'Column', + description: 'DataTable requires a value as an array of objects and columns defined with Column component.', + 'doc-url': 'datatable', + props: ColumnProps, + slots: ColumnSlots + } +}; diff --git a/packages/primevue/scripts/components/columngroup.js b/packages/primevue/scripts/components/columngroup.js new file mode 100644 index 0000000000..49410fc15f --- /dev/null +++ b/packages/primevue/scripts/components/columngroup.js @@ -0,0 +1,23 @@ +const ColumnGroupProps = [ + { + name: 'type', + type: 'string', + default: 'null', + description: 'Defines the type of the group.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + } +]; + +module.exports = { + columngroup: { + name: 'ColumnGroup', + description: 'Columns can be grouped at header and footer sections by defining a ColumnGroup with nested rows and columns', + 'doc-url': 'datatable', + props: ColumnGroupProps + } +}; diff --git a/packages/primevue/scripts/components/confirmdialog.js b/packages/primevue/scripts/components/confirmdialog.js new file mode 100644 index 0000000000..1dcd29cc09 --- /dev/null +++ b/packages/primevue/scripts/components/confirmdialog.js @@ -0,0 +1,64 @@ +const ConfirmDialogProps = [ + { + name: 'group', + type: 'string', + default: 'null', + description: 'Optional key to match the key of the confirmation, useful to target a specific confirm dialog instance.' + }, + { + name: 'breakpoints', + type: 'object', + default: 'null', + description: 'Object literal to define widths per screen size.' + }, + { + name: 'draggable', + type: 'boolean', + default: 'true', + description: 'Whether the dialog can be relocated by dragging.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const ConfirmDialogSlots = [ + { + name: 'message', + description: 'Custom icon template.' + }, + { + name: 'icon', + description: 'Custom icon template.' + }, + { + name: 'accepticon', + description: 'Custom accept icon template.' + }, + { + name: 'rejecticon', + description: 'Custom reject icon template.' + }, + { + name: 'container', + description: 'Custom container template.' + } +]; + +module.exports = { + confirmdialog: { + name: 'ConfirmDialog', + description: 'ConfirmDialog uses a Dialog UI that is integrated with the Confirmation API.', + props: ConfirmDialogProps, + slots: ConfirmDialogSlots + } +}; diff --git a/packages/primevue/scripts/components/confirmpopup.js b/packages/primevue/scripts/components/confirmpopup.js new file mode 100644 index 0000000000..cded48cc0a --- /dev/null +++ b/packages/primevue/scripts/components/confirmpopup.js @@ -0,0 +1,52 @@ +const ConfirmPopupProps = [ + { + name: 'group', + type: 'string', + default: 'null', + description: 'Optional key to match the key of the confirmation, useful to target a specific confirm dialog instance.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const ConfirmPopupSlots = [ + { + name: 'message', + description: 'Custom content for the component.' + }, + { + name: 'icon', + description: 'Custom icon template.' + }, + { + name: 'accepticon', + description: 'Custom accept icon template.' + }, + { + name: 'rejecticon', + description: 'Custom reject icon template.' + }, + { + name: 'container', + description: 'Custom container template.' + } +]; + +module.exports = { + confirmpopup: { + name: 'ConfirmPopup', + description: 'ConfirmPopup displays a confirmation overlay displayed relatively to its target.', + props: ConfirmPopupProps, + slots: ConfirmPopupSlots + } +}; diff --git a/packages/primevue/scripts/components/contextmenu.js b/packages/primevue/scripts/components/contextmenu.js new file mode 100644 index 0000000000..b4cb011896 --- /dev/null +++ b/packages/primevue/scripts/components/contextmenu.js @@ -0,0 +1,68 @@ +const ContextMenuProps = [ + { + name: 'model', + type: 'array', + default: 'null', + description: 'An array of menuitems.' + }, + { + name: 'appendTo', + type: 'string', + default: 'body', + description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached.' + }, + { + name: 'baseZIndex', + type: 'number', + default: '0', + description: 'Base zIndex value to use in layering.' + }, + { + name: 'autoZIndex', + type: 'boolean', + default: 'true', + description: 'Whether to automatically manage layering.' + }, + { + name: 'global', + type: 'boolean', + default: 'false', + description: 'Attaches the menu to document instead of a particular item.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const ContextMenuSlots = [ + { + name: 'item', + description: 'Custom item template.' + }, + { + name: 'submenuicon', + description: 'Custom submenu icon template.' + }, + { + name: 'itemicon', + description: 'Custom item icon template.' + } +]; + +module.exports = { + contextmenu: { + name: 'ContextMenu', + description: 'ContextMenu displays an overlay menu on right click of its target.', + props: ContextMenuProps, + slots: ContextMenuSlots + } +}; diff --git a/packages/primevue/scripts/components/datatable.js b/packages/primevue/scripts/components/datatable.js new file mode 100644 index 0000000000..d9396113cb --- /dev/null +++ b/packages/primevue/scripts/components/datatable.js @@ -0,0 +1,1213 @@ +const DataTableProps = [ + { + name: 'value', + type: 'array', + default: 'null', + description: 'An array of objects to display.' + }, + { + name: 'dataKey', + type: 'string|function', + default: 'null', + description: 'Name of the field that uniquely identifies the a record in the data.' + }, + { + name: 'rows', + type: 'number', + default: 'null', + description: 'Number of rows to display per page.' + }, + { + name: 'first', + type: 'number', + default: '0', + description: 'Index of the first row to be displayed.' + }, + { + name: 'totalRecords', + type: 'number', + default: 'null', + description: 'Number of total records, defaults to length of value when not defined.' + }, + { + name: 'paginator', + type: 'boolean', + default: 'false', + description: 'When specified as true, enables the pagination.' + }, + { + name: 'paginatorPosition', + type: 'string', + default: 'bottom', + description: 'Position of the paginator, options are "top","bottom" or "both".' + }, + { + name: 'alwaysShowPaginator', + type: 'boolean', + default: 'true', + description: 'Whether to show it even there is only one page.' + }, + { + name: 'paginatorTemplate', + type: 'string', + default: 'FirstPageLink PrevPageLink PageLinks NextPageLink LastPageLink CurrentPageReport RowsPerPageDropdown', + description: 'emplate of the paginator.' + }, + { + name: 'pageLinkSize', + type: 'number', + default: '5', + description: 'Number of page links to display.' + }, + { + name: 'rowsPerPageOptions', + type: 'array', + default: 'null', + description: 'Array of integer values to display inside rows per page dropdown.' + }, + { + name: 'currentPageReportTemplate', + type: 'string', + default: '({currentPage} of {totalPages})', + description: 'Template of the current page report element.' + }, + { + name: 'lazy', + type: 'boolean', + default: 'false', + description: 'Defines if data is loaded and interacted with in lazy manner.' + }, + { + name: 'loading', + type: 'boolean', + default: 'false', + description: 'Displays a loader to indicate data load is in progress.' + }, + { + name: 'loadingIcon', + type: 'string', + default: 'pi pi-spinner', + description: 'The icon to show while indicating data load is in progress.' + }, + { + name: 'sortField', + type: 'string', + default: 'null', + description: 'Property name or a getter function of a row data used for sorting by default' + }, + { + name: 'sortOrder', + type: 'number', + default: 'null', + description: 'Order to sort the data by default.' + }, + { + name: 'defaultSortOrder', + type: 'number', + default: '1', + description: 'Default sort order of an unsorted column.' + }, + { + name: 'multiSortMeta', + type: 'array', + default: 'null', + description: 'An array of SortMeta objects to sort the data by default in multiple sort mode.' + }, + { + name: 'sortMode', + type: 'string', + default: 'single', + description: 'Defines whether sorting works on single column or on multiple columns.' + }, + { + name: 'removableSort', + type: 'boolean', + default: 'false', + description: 'When enabled, columns can have an un-sorted state.' + }, + { + name: 'filters', + type: 'object', + default: 'null', + description: 'Filters object with key-value pairs to define the filters.' + }, + { + name: 'filterDisplay', + type: 'string', + default: 'null', + description: 'Layout of the filter elements, valid values are "row" and "menu".' + }, + { + name: 'filterLocale', + type: 'string', + default: 'undefined', + description: "Locale to use in filtering. The default locale is the host environment's current locale." + }, + { + name: 'selection', + type: 'any', + default: 'null', + description: 'Selected row in single mode or an array of values in multiple mode.' + }, + { + name: 'selectionMode', + type: 'string', + default: 'null', + description: 'Specifies the selection mode, valid values are "single" and "multiple".' + }, + { + name: 'compareSelectionBy', + type: 'string', + default: 'deepEquals', + description: 'Algorithm to define if a row is selected, valid values are "equals" that compares by reference and "deepEquals" that compares all fields.' + }, + { + name: 'metaKeySelection', + type: 'boolean', + default: 'true', + description: + 'Defines whether metaKey is requred or not for the selection. When true metaKey needs to be pressed to select or unselect an item and when set to false selection of each item can be toggled individually. On touch enabled devices, metaKeySelection is turned off automatically.' + }, + { + name: 'contextMenu', + type: 'boolean', + default: 'false', + description: 'Enables context menu integration.' + }, + { + name: 'contextMenuSelection', + type: 'object', + default: 'null', + description: 'Selected row instance with the ContextMenu.' + }, + { + name: 'rowHover', + type: 'boolean', + default: 'false', + description: 'When enabled, background of the rows change on hover.' + }, + { + name: 'selectAll', + type: 'boolean', + default: 'null', + description: 'Whether all data is selected.' + }, + { + name: 'csvSeparator', + type: 'string', + default: ',', + description: 'Character to use as the csv separator.' + }, + { + name: 'exportFilename', + type: 'string', + default: 'download', + description: 'Name of the exported file.' + }, + { + name: 'exportFunction', + type: 'function', + default: 'null', + description: 'Custom function to export data.' + }, + { + name: 'autoLayout', + type: 'boolean', + default: 'false', + description: 'Whether the cell widths scale according to their content or not. Does not apply to scrollable tables.' + }, + { + name: 'resizableColumns', + type: 'boolean', + default: 'false', + description: 'When enabled, columns can be resized using drag and drop.' + }, + { + name: 'columnResizeMode', + type: 'string', + default: 'fit', + description: 'Defines whether the overall table width should change on column resize, valid values are "fit" and "expand".' + }, + { + name: 'reorderableColumns', + type: 'boolean', + default: 'false', + description: 'When enabled, columns can be reordered using drag and drop.' + }, + { + name: 'expandedRows', + type: 'array', + default: 'null', + description: 'A collection of row data display as expanded.' + }, + { + name: 'expandedRowIcon', + type: 'string', + default: 'pi-chevron-down', + description: 'Icon of the row toggler to display the row as expanded.' + }, + { + name: 'collapsedRowIcon', + type: 'string', + default: 'pi pi-chevron-right', + description: 'Icon of the row toggler to display the row as collapsed.' + }, + { + name: 'rowGroupMode', + type: 'string', + default: 'null', + description: 'Defines the row group mode, valid options are "subheader" and "rowspan".' + }, + { + name: 'groupRowsBy', + type: 'string|array', + default: 'null', + description: 'One or more field names to use in row grouping.' + }, + { + name: 'expandableRowGroups', + type: 'boolean', + default: 'false', + description: 'Whether the row groups can be expandable.' + }, + { + name: 'expandedRowGroups', + type: 'array', + default: 'null', + description: 'An array of group field values whose groups would be rendered as expanded.' + }, + { + name: 'stateStorage', + type: 'string', + default: 'session', + description: 'Defines where a stateful table keeps its state, valid values are "session" for sessionStorage and "local" for localStorage.' + }, + { + name: 'stateKey', + type: 'string', + default: 'null', + description: 'Unique identifier of a stateful table to use in state storage.' + }, + { + name: 'editMode', + type: 'string', + default: 'null', + description: 'Defines the incell editing mode, valid options are "cell" and "row".' + }, + { + name: 'editingRows', + type: 'array', + default: 'null', + description: 'A collection of rows to represent the current editing data in row edit mode.' + }, + { + name: 'rowClass', + type: 'function', + default: 'null', + description: 'A function that takes the row data and returns a string to apply a particular class for the row.' + }, + { + name: 'rowStyle', + type: 'object', + default: 'null', + description: 'A function that takes the row data as a parameter and returns the inline style for the corresponding row.' + }, + { + name: 'scrollable', + type: 'boolean', + default: 'false', + description: 'When specified, enables horizontal and/or vertical scrolling.' + }, + { + name: 'scrollDirection', + type: 'string', + default: 'vertical', + description: 'Orientation of the scrolling, options are "vertical", "horizontal" and "both".' + }, + { + name: 'scrollHeight', + type: 'string', + default: 'null', + description: 'Height of the scroll viewport in fixed units or the "flex" keyword for a dynamic size.' + }, + { + name: 'virtualScrollerOptions', + type: 'object', + default: 'null', + description: 'Whether to use the virtualScroller feature. The properties of VirtualScroller component can be used like an object in it. Note: Currently only vertical orientation mode is supported.' + }, + { + name: 'frozenValue', + type: 'array', + default: 'null', + description: 'Items of the frozen part in scrollable DataTable.' + }, + { + name: 'breakpoint', + type: 'string', + default: '960px', + description: 'The breakpoint to define the maximum width boundary when using stack responsive layout.' + }, + { + name: 'showGridlines', + type: 'boolean', + default: 'false', + description: 'Whether to show grid lines between cells.' + }, + { + name: 'stripedRows', + type: 'boolean', + default: 'false', + description: 'Whether to displays rows with alternating colors.' + }, + { + name: 'highlightOnSelect', + type: 'boolean', + default: 'false', + description: 'Highlights automatically the first item.' + }, + { + name: 'size', + type: 'string', + default: 'null', + description: 'Defines the size of the table.' + }, + { + name: 'tableStyle', + type: 'object', + default: 'null', + description: 'Inline style of the table element.' + }, + { + name: 'tableClass', + type: 'string', + default: 'null', + description: 'Style class of the table element.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const DataTableEvents = [ + { + name: 'page', + description: 'Callback to invoke on pagination. Sort and Filter information is also available for lazy loading implementation.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Original event' + }, + { + name: 'event.page', + type: 'number', + description: 'New page number' + }, + { + name: 'event.pageCount', + type: 'number', + description: 'Total page count' + }, + { + name: 'event.first', + type: 'number', + description: 'Index of first record' + }, + { + name: 'event.rows', + type: 'number', + description: 'Number of rows to display in new page' + }, + { + name: 'event.sortField', + type: 'object', + description: 'Field to sort against' + }, + { + name: 'event.sortOrder', + type: 'number', + description: 'Sort order as integer' + }, + { + name: 'event.multiSortMeta', + type: 'object', + description: 'MultiSort metadata' + }, + { + name: 'event.filters', + type: 'object', + description: 'Collection of active filters' + }, + { + name: 'event.filterMatchModes', + type: 'object', + description: 'Match modes per field' + } + ] + }, + { + name: 'sort', + description: 'Callback to invoke on sort. Page and Filter information is also available for lazy loading implementation.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Original event' + }, + { + name: 'event.first', + type: 'number', + description: 'Index of first record' + }, + { + name: 'event.rows', + type: 'number', + description: 'Number of rows to display in new page' + }, + { + name: 'event.sortField', + type: 'object', + description: 'Field to sort against' + }, + { + name: 'event.sortOrder', + type: 'number', + description: 'Sort order as integer' + }, + { + name: 'event.multiSortMeta', + type: 'object', + description: 'MultiSort metadata' + }, + { + name: 'event.filters', + type: 'object', + description: 'Collection of active filters' + }, + { + name: 'event.filterMatchModes', + type: 'object', + description: 'Match modes per field' + } + ] + }, + { + name: 'filter', + description: 'Event to emit after filtering, not triggered in lazy mode.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Original event' + }, + { + name: 'event.first', + type: 'number', + description: 'Index of first record' + }, + { + name: 'event.rows', + type: 'number', + description: 'Number of rows to display in new page' + }, + { + name: 'event.sortField', + type: 'object', + description: 'Field to sort against' + }, + { + name: 'event.sortOrder', + type: 'number', + description: 'Sort order as integer' + }, + { + name: 'event.multiSortMeta', + type: 'object', + description: 'MultiSort metadata' + }, + { + name: 'event.filters', + type: 'object', + description: 'Collection of active filters' + }, + { + name: 'event.filteredValue', + type: 'string', + description: 'Filtered collection' + }, + { + name: 'event.filterMatchModes', + type: 'object', + description: 'Match modes per field' + } + ] + }, + { + name: 'value-change', + description: 'Invoked after filtering, sorting, pagination and cell editing to pass the rendered value.', + arguments: [ + { + name: 'value', + type: 'array', + description: 'Value displayed by the table.' + } + ] + }, + { + name: 'row-click', + description: 'Callback to invoke when a row is clicked.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event.' + }, + { + name: 'event.data', + type: 'object', + description: 'Selected row data.' + }, + { + name: 'event.index', + type: 'number', + description: 'Row index' + } + ] + }, + { + name: 'row-contextmenu', + description: 'Callback to invoke when a row is selected with a ContextMenu', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event.' + }, + { + name: 'event.data', + type: 'object', + description: 'Selected row data.' + }, + { + name: 'event.index', + type: 'number', + description: 'Row index' + } + ] + }, + { + name: 'row-select', + description: 'Callback to invoke when a row is selected.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event.' + }, + { + name: 'event.data', + type: 'object', + description: 'Selected row data.' + }, + { + name: 'event.index', + type: 'number', + description: 'Row index' + }, + { + name: 'event.type', + type: 'string', + description: 'Type of the selection, valid values are "row", "radio" or "checkbox".' + } + ] + }, + { + name: 'row-unselect', + description: 'Callback to invoke when a row is unselected.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event.' + }, + { + name: 'event.data', + type: 'object', + description: 'Selected row data.' + }, + { + name: 'event.index', + type: 'number', + description: 'Row index' + }, + { + name: 'event.type', + type: 'string', + description: 'Type of the selection, valid values are "row", "radio" or "checkbox".' + } + ] + }, + { + name: 'select-all-change', + description: 'Callback to invoke when all data is selected.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event.' + }, + { + name: 'event.checked', + type: 'object', + description: 'Whether all data is selected.' + } + ] + }, + { + name: 'column-resize-end', + description: 'Callback to invoke when a column is resized.', + arguments: [ + { + name: 'event.element', + type: 'object', + description: 'DOM element of the resized column.' + }, + { + name: 'event.delta', + type: 'number', + description: 'Change in column width' + } + ] + }, + { + name: 'column-reorder', + description: 'Callback to invoke when a column is reordered.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.dragIndex', + type: 'number', + description: 'Index of the dragged column' + }, + { + name: 'event.dropIndex', + type: 'number', + description: 'Index of the dropped column' + } + ] + }, + { + name: 'row-reorder', + description: 'Callback to invoke when a row is reordered.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.dragIndex', + type: 'number', + description: 'Index of the dragged row' + }, + { + name: 'event.dropIndex', + type: 'number', + description: 'Index of the dropped row' + }, + { + name: 'value', + type: 'array', + description: 'Reordered value' + } + ] + }, + { + name: 'row-expand', + description: 'Callback to invoke when a row is expanded.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.data', + type: 'object', + description: 'Expanded row data.' + } + ] + }, + { + name: 'row-collapse', + description: 'Callback to invoke when a row is collapsed.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.data', + type: 'object', + description: 'Collapsed row data.' + } + ] + }, + { + name: 'rowgroup-expand', + description: 'Callback to invoke when a row group is expanded.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.data', + type: 'object', + description: 'Expanded group value.' + } + ] + }, + { + name: 'rowgroup-collapse', + description: 'Callback to invoke when a row group is collapsed.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.data', + type: 'object', + description: 'Collapsed group value.' + } + ] + }, + { + name: 'cell-edit-init', + description: 'Callback to invoke when cell edit is initiated.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.data', + type: 'object', + description: 'Row data to edit.' + }, + { + name: 'event.field', + type: 'string', + description: 'Field name of the row data.' + }, + { + name: 'event.index', + type: 'number', + description: 'Index of the row data to edit.' + } + ] + }, + { + name: 'cell-edit-complete', + description: 'Callback to invoke when cell edit is completed.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.data', + type: 'object', + description: 'Row data to edit.' + }, + { + name: 'event.newData', + type: 'object', + description: 'New row data after editing.' + }, + { + name: 'event.value', + type: 'object', + description: 'Field value of row data to edit.' + }, + { + name: 'event.newValue', + type: 'object', + description: 'Field value of new row data after editing' + }, + { + name: 'event.field', + type: 'string', + description: 'Field name of the row data.' + }, + { + name: 'event.index', + type: 'number', + description: 'Index of the row data to edit.' + }, + { + name: 'event.type', + type: 'string', + description: 'Type of completion such as "enter", "outside" or "tab".' + } + ] + }, + { + name: 'cell-edit-cancel', + description: 'Callback to invoke when cell edit is cancelled with escape key.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.data', + type: 'object', + description: 'Row data to edit.' + }, + { + name: 'event.field', + type: 'string', + description: 'Field name of the row data.' + }, + { + name: 'event.index', + type: 'number', + description: 'Index of the row data to edit.' + } + ] + }, + { + name: 'row-edit-init', + description: 'Callback to invoke when row edit is initiated.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.data', + type: 'object', + description: 'Row data to edit.' + }, + { + name: 'event.newData', + type: 'object', + description: 'New row data after editing.' + }, + { + name: 'event.field', + type: 'string', + description: 'Field name of the row data.' + }, + { + name: 'event.index', + type: 'number', + description: 'Index of the row data to edit.' + } + ] + }, + { + name: 'row-edit-save', + description: 'Callback to invoke when row edit is saved.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.data', + type: 'object', + description: 'Row data to edit.' + }, + { + name: 'event.newData', + type: 'object', + description: 'New row data after editing.' + }, + { + name: 'event.field', + type: 'string', + description: 'Field name of the row data.' + }, + { + name: 'event.index', + type: 'number', + description: 'Index of the row data to edit.' + } + ] + }, + { + name: 'row-edit-cancel', + description: 'Callback to invoke when row edit is cancelled.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.data', + type: 'object', + description: 'Row data to edit.' + }, + { + name: 'event.newData', + type: 'object', + description: 'New row data after editing.' + }, + { + name: 'event.field', + type: 'string', + description: 'Field name of the row data.' + }, + { + name: 'event.index', + type: 'number', + description: 'Index of the row data to edit.' + } + ] + }, + { + name: 'state-save', + description: 'Invoked when a stateful table saves the state.', + arguments: [ + { + name: 'event.first', + type: 'number', + description: 'Index of first record' + }, + { + name: 'event.rows', + type: 'number', + description: 'Number of rows to display in new page' + }, + { + name: 'event.sortField', + type: 'object', + description: 'Field to sort against' + }, + { + name: 'event.sortOrder', + type: 'number', + description: 'Sort order as integer' + }, + { + name: 'event.multiSortMeta', + type: 'number', + description: 'MultiSort metadata' + }, + { + name: 'event.filters', + type: 'object', + description: 'Collection of active filters' + }, + { + name: 'event.columnWidths', + type: 'number', + description: 'Comma separated list of column widths' + }, + { + name: 'event.columnOrder', + type: 'number', + description: 'Order of the columns' + }, + { + name: 'event.expandedRows', + type: 'array', + description: 'Instances of rows in expanded state' + }, + { + name: 'event.expandedRowKeys', + type: 'array', + description: 'Keys of rows in expanded state' + }, + { + name: 'event.expandedRowGroups', + type: 'array', + description: 'Instances of row groups in expanded state' + }, + { + name: 'event.selection', + type: 'object', + description: 'Selected rows' + }, + { + name: 'event.selectionKeys', + type: 'object', + description: 'Keys of selected rows' + } + ] + }, + { + name: 'state-restore', + description: 'Invoked when a stateful table restores the state.', + arguments: [ + { + name: 'event.first', + type: 'number', + description: 'Index of first record' + }, + { + name: 'event.rows', + type: 'number', + description: 'Number of rows to display in new page' + }, + { + name: 'event.sortField', + type: 'object', + description: 'Field to sort against' + }, + { + name: 'event.sortOrder', + type: 'number', + description: 'Sort order as integer' + }, + { + name: 'event.multiSortMeta', + type: 'number', + description: 'MultiSort metadata' + }, + { + name: 'event.filters', + type: 'object', + description: 'Collection of active filters' + }, + { + name: 'event.columnWidths', + type: 'number', + description: 'Comma separated list of column widths' + }, + { + name: 'event.columnOrder', + type: 'number', + description: 'Order of the columns' + }, + { + name: 'event.expandedRows', + type: 'array', + description: 'Instances of rows in expanded state' + }, + { + name: 'event.expandedRowKeys', + type: 'array', + description: 'Keys of rows in expanded state' + }, + { + name: 'event.expandedRowGroups', + type: 'array', + description: 'Instances of row groups in expanded state' + }, + { + name: 'event.selection', + type: 'object', + description: 'Selected rows' + }, + { + name: 'event.selectionKeys', + type: 'object', + description: 'Keys of selected rows' + } + ] + } +]; + +const DataTableSlots = [ + { + name: 'header', + description: "Custom content for the component's header." + }, + { + name: 'paginatorstart', + description: "Custom content for the component paginator's left side." + }, + { + name: 'paginatorend', + description: "Custom content for the component paginator's right side." + }, + { + name: 'footer', + description: "Custom content for the component's footer." + }, + { + name: 'groupheader', + description: "Custom content for the component's subgroup header." + }, + { + name: 'groupfooter', + description: "Custom content for the component's subgroup footer." + }, + { + name: 'loading', + description: 'Custom loading template.' + }, + { + name: 'loadingicon', + description: 'Custom loading icon template.' + }, + { + name: 'reorderindicatorupicon', + description: 'Custom reorder indicator up icon template.' + }, + { + name: 'reorderindicatordownicon', + description: 'Custom reorder indicator down icon template.' + }, + { + name: 'rowgrouptoggleicon', + description: 'Custom rowgroup toggler icon template.' + }, + { + name: 'paginatorfirstpagelinkicon', + description: 'Custom paginator first page link icon template.' + }, + { + name: 'paginatorprevpagelinkicon', + description: 'Custom paginator prev page link icon template.' + }, + { + name: 'paginatornextpagelinkicon', + description: 'Custom paginator next page link icon template.' + }, + { + name: 'paginatorlastpagelinkicon', + description: 'Custom paginator last page link icon template.' + }, + { + name: 'empty', + description: 'Custom empty template.' + } +]; + +module.exports = { + datatable: { + name: 'DataTable', + description: 'DataTable displays data in tabular format.', + props: DataTableProps, + events: DataTableEvents, + slots: DataTableSlots + } +}; diff --git a/packages/primevue/scripts/components/dataview.js b/packages/primevue/scripts/components/dataview.js new file mode 100644 index 0000000000..1e18ac17d6 --- /dev/null +++ b/packages/primevue/scripts/components/dataview.js @@ -0,0 +1,180 @@ +const DataViewProps = [ + { + name: 'value', + type: 'array', + default: 'null', + description: 'An array of objects to display.' + }, + { + name: 'layout', + type: 'string', + default: 'list', + description: 'Layout of the items, valid values are "list" and "grid".' + }, + { + name: 'rows', + type: 'number', + default: '0', + description: 'Number of rows to display per page.' + }, + { + name: 'first', + type: 'number', + default: '0', + description: 'ndex of the first record to render.' + }, + { + name: 'totalRecords', + type: 'number', + default: 'null', + description: 'Number of total records, defaults to length of value when not defined.' + }, + { + name: 'paginator', + type: 'boolean', + default: 'false', + description: 'When specified as true, enables the pagination.' + }, + { + name: 'paginatorPosition', + type: 'string', + default: 'bottom', + description: 'Position of the paginator, options are "top","bottom" or "both".' + }, + { + name: 'alwaysShowPaginator', + type: 'boolean', + default: 'true', + description: 'Whether to show it even there is only one page.' + }, + { + name: 'paginatorTemplate', + type: 'string', + default: 'FirstPageLink PrevPageLink PageLinks NextPageLink LastPageLink RowsPerPageDropdown', + description: 'Template of the paginator.' + }, + { + name: 'pageLinkSize', + type: 'number', + default: '5', + description: 'Number of page links to display.' + }, + { + name: 'rowsPerPageOptions', + type: 'array', + default: 'null', + description: 'Array of integer values to display inside rows per page dropdown.' + }, + { + name: 'currentPageReportTemplate', + type: 'string', + default: '({currentPage} of {totalPages})', + description: 'Template of the current page report element.' + }, + { + name: 'sortField', + type: 'string', + default: 'null', + description: 'Property name or a getter function of data to use in sorting by default.' + }, + { + name: 'sortOrder', + type: 'number', + default: 'null', + description: 'Order to sort the data by default.' + }, + { + name: 'lazy', + type: 'boolean', + default: 'false', + description: 'Defines if data is loaded and interacted with in lazy manner.' + }, + { + name: 'dataKey', + type: 'string', + default: 'null', + description: 'Name of the data that uniquely identifies the a record in the data.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const DataViewEvents = [ + { + name: 'page', + description: 'Callback to invoke when page changes, the event object contains information about the new state.', + arguments: [ + { + name: 'event.page', + type: 'number', + description: 'New page number' + }, + { + name: 'event.first', + type: 'number', + description: 'Index of first record' + }, + { + name: 'event.rows', + type: 'number', + description: 'Number of rows to display in new page' + }, + { + name: 'event.pageCount', + type: 'number', + description: 'Total number of pages' + } + ] + } +]; + +const DataViewSlots = [ + { + name: 'header', + description: "Custom content for the component's header" + }, + { + name: 'paginatorstart', + description: "Custom content for the component paginator's left side" + }, + { + name: 'paginatorend', + description: "Custom content for the component paginator's right side" + }, + { + name: 'list', + description: 'Content for the list layout' + }, + { + name: 'grid', + description: 'Content for the grid layout' + }, + { + name: 'empty', + description: 'Custom content when there is no data to display' + }, + { + name: 'footer', + description: "Custom content for the component's footer" + } +]; + +module.exports = { + dataview: { + name: 'DataView', + description: 'DataView displays data in grid or list layout with pagination and sorting features.', + props: DataViewProps, + events: DataViewEvents, + slots: DataViewSlots + } +}; diff --git a/packages/primevue/scripts/components/datepicker.js b/packages/primevue/scripts/components/datepicker.js new file mode 100644 index 0000000000..92762462b1 --- /dev/null +++ b/packages/primevue/scripts/components/datepicker.js @@ -0,0 +1,512 @@ +const DatePickerProps = [ + { + name: 'modelValue', + type: 'any', + default: 'null', + description: 'Value of the component.' + }, + { + name: 'selectionMode', + type: 'string', + default: 'single', + description: 'Defines the quantity of the selection, valid values are "single", "multiple" and "range".' + }, + { + name: 'dateFormat', + type: 'string', + default: 'null', + description: 'Format of the date. Defaults to PrimeVue Locale configuration.' + }, + { + name: 'inline', + type: 'boolean', + default: 'false', + description: 'When enabled, displays the calendar as inline instead of an overlay.' + }, + { + name: 'showOtherMonths', + type: 'boolean', + default: 'true', + description: 'Whether to display dates in other months (non-selectable) at the start or end of the current month. To make these days selectable use the selectOtherMonths option.' + }, + { + name: 'selectOtherMonths', + type: 'boolean', + default: 'false', + description: 'Whether days in other months shown before or after the current month are selectable. This only applies if the showOtherMonths option is set to true.' + }, + { + name: 'showIcon', + type: 'boolean', + default: 'false', + description: 'When enabled, displays a button with icon next to input.' + }, + { + name: 'icon', + type: 'string', + default: 'null', + description: 'Icon of the calendar button.' + }, + { + name: 'previcon', + type: 'string', + default: 'null', + description: 'Icon to show in the previous button.' + }, + { + name: 'nextIcon', + type: 'string', + default: 'null', + description: 'Icon to show in the next button.' + }, + { + name: 'incrementIcon', + type: 'string', + default: 'null', + description: 'Icon to show in each of the increment buttons.' + }, + { + name: 'decrementIcon', + type: 'string', + default: 'null', + description: 'Icon to show in each of the decrement buttons.' + }, + { + name: 'numberOfMonths', + type: 'number', + default: '1', + description: 'Number of months to display.' + }, + { + name: 'view', + type: 'string', + default: 'date', + description: 'Type of view to display, valid valids are "date" for datepicker and "month" for month picker.' + }, + { + name: 'monthNavigator', + type: 'boolean', + default: 'false', + description: 'Whether the month should be rendered as a dropdown instead of text.' + }, + { + name: 'yearNavigator', + type: 'boolean', + default: 'false', + description: 'Whether the year should be rendered as a dropdown instead of text.' + }, + { + name: 'yearRange', + type: 'string', + default: 'null', + description: 'The range of years displayed in the year drop-down in (nnnn:nnnn) format such as (2000:2020).' + }, + { + name: 'panelClass', + type: 'string', + default: 'null', + description: 'Style class of the datetimepicker panel.' + }, + { + name: 'minDate', + type: 'Date', + default: 'null', + description: 'The minimum selectable date.' + }, + { + name: 'maxDate', + type: 'Date', + default: 'null', + description: 'The maximum selectable date.' + }, + { + name: 'disabledDates', + type: 'array', + default: 'null', + description: 'Array with dates to disable.' + }, + { + name: 'disabledDays', + type: 'array', + default: 'null', + description: 'Array with disabled weekday numbers.' + }, + { + name: 'maxDateCount', + type: 'number', + default: 'null', + description: 'Maximum number of selectable dates in multiple mode.' + }, + { + name: 'showOnFocus', + type: 'boolean', + default: 'true', + description: 'When disabled, datepicker will not be visible with input focus.' + }, + { + name: 'autoZIndex', + type: 'boolean', + default: 'true', + description: 'Whether to automatically manage layering.' + }, + { + name: 'baseZIndex', + type: 'number', + default: '0', + description: 'Base zIndex value to use in layering.' + }, + { + name: 'showButtonBar', + type: 'boolean', + default: 'false', + description: 'Whether to display today and clear buttons at the footer' + }, + { + name: 'shortYearCutoff', + type: 'string', + default: '+10', + description: 'The cutoff year for determining the century for a date.' + }, + { + name: 'showTime', + type: 'boolean', + default: 'false', + description: 'Whether to display timepicker.' + }, + { + name: 'timeOnly', + type: 'boolean', + default: 'false', + description: 'Whether to display timepicker only.' + }, + { + name: 'hourFormat', + type: 'string', + default: '24', + description: 'Specifies 12 or 24 hour format.' + }, + { + name: 'stepHour', + type: 'number', + default: '1', + description: 'Hours to change per step.' + }, + { + name: 'stepMinute', + type: 'number', + default: '1', + description: 'Minutes to change per step.' + }, + { + name: 'stepSeconds', + type: 'number', + default: '1', + description: 'Seconds to change per step.' + }, + { + name: 'showSeconds', + type: 'boolean', + default: 'false', + description: 'Whether to show the seconds in time picker.' + }, + { + name: 'hideOnDateTimeSelect', + type: 'boolean', + default: 'false', + description: 'Whether to hide the overlay on date selection when showTime is enabled.' + }, + { + name: 'hideOnRangeSelection', + type: 'boolean', + default: 'false', + description: 'Whether to hide the overlay on date selection is completed when selectionMode is range.' + }, + { + name: 'timeSeparator', + type: 'string', + default: ':', + description: 'Separator of time selector.' + }, + { + name: 'showWeek', + type: 'boolean', + default: 'false', + description: 'When enabled, calendar will show week numbers.' + }, + { + name: 'manualInput', + type: 'boolean', + default: 'true', + description: 'Whether to allow entering the date manually via typing.' + }, + { + name: 'appendTo', + type: 'string', + default: 'body', + description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached. Special keywords are "body" for document body and "self" for the element itself.' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the element should be disabled.' + }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'null', + description: 'Specifies the input variant of the component.' + }, + { + name: 'readonly', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that an input field is read-only.' + }, + { + name: 'placeholder', + type: 'string', + default: 'null', + description: 'Placeholder text for the input.' + }, + { + name: 'id', + type: 'string', + default: 'null', + description: 'Identifier of the element.' + }, + { + name: 'inputId', + type: 'string', + default: 'null', + description: 'Identifier of the underlying input element.' + }, + { + name: 'inputClass', + type: 'string | object', + default: 'null', + description: 'Style class of the input field.' + }, + { + name: 'inputStyle', + type: 'object', + default: 'null', + description: 'Inline style of the input field.' + }, + { + name: 'inputProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLInputElement to the focusable input element inside the component.' + }, + { + name: 'panelClass', + type: 'string | object', + default: 'null', + description: 'Style class of the overlay panel.' + }, + { + name: 'panelStyle', + type: 'object', + default: 'null', + description: 'Inline style of the overlay panel.' + }, + { + name: 'panelProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLDivElement to the overlay panel inside the component.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const DatePickerEvents = [ + { + name: 'input', + description: 'Callback to invoke when input field is being typed.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'New date' + } + ] + }, + { + name: 'date-select', + description: 'Callback to invoke when a date is selected.', + arguments: [ + { + name: 'value', + type: 'Date', + description: 'Selected value' + } + ] + }, + { + name: 'show', + description: 'Callback to invoke when datepicker panel is shown.' + }, + { + name: 'hide', + description: 'Callback to invoke when datepicker panel is hidden.' + }, + { + name: 'today-click', + description: 'Callback to invoke when today button is clicked.', + arguments: [ + { + name: 'date', + type: 'Date', + description: 'Today as a date instance' + } + ] + }, + { + name: 'clear-click', + description: 'Callback to invoke when clear button is clicked.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Click event' + } + ] + }, + { + name: 'month-change', + description: 'Callback to invoke when a month is changed using the navigators.', + arguments: [ + { + name: 'event.month', + type: 'number', + description: 'New month' + }, + { + name: 'event.year', + type: 'number', + description: 'New year' + } + ] + }, + { + name: 'year-change', + description: 'Callback to invoke when a year is changed using the navigators.', + arguments: [ + { + name: 'event.month', + type: 'number', + description: 'New month' + }, + { + name: 'event.year', + type: 'number', + description: 'New year' + } + ] + }, + { + name: 'focus', + description: 'Callback to invoke on focus of input field.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Focus event' + } + ] + }, + { + name: 'blur', + description: 'Callback to invoke on blur of input field.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.value', + type: 'string', + description: 'Input value' + } + ] + }, + { + name: 'keydown', + description: 'Callback to invoke when a key is pressed.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Keydown event' + } + ] + } +]; + +const DatePickerSlots = [ + { + name: 'header', + description: 'Custom content for the component header.' + }, + { + name: 'footer', + description: 'Custom content for the component footer.' + }, + { + name: 'date', + description: 'Custom content for the calendar cell.' + }, + { + name: 'decade', + description: 'Custom content for the calendar decade.' + }, + { + name: 'dropdownicon', + description: 'Custom dropdown icon template.' + }, + { + name: 'previcon', + description: 'Custom previous icon template.' + }, + { + name: 'nexticon', + description: 'Custom next icon template.' + }, + { + name: 'incrementicon', + description: 'Custom increment icon template.' + }, + { + name: 'decrementicon', + description: 'Custom decrement icon template.' + } +]; + +module.exports = { + calendar: { + name: 'DatePicker', + description: 'DatePicker is an input component to select a date.', + props: DatePickerProps, + events: DatePickerEvents, + slots: DatePickerSlots + } +}; diff --git a/packages/primevue/scripts/components/deferredcontent.js b/packages/primevue/scripts/components/deferredcontent.js new file mode 100644 index 0000000000..2870fb984d --- /dev/null +++ b/packages/primevue/scripts/components/deferredcontent.js @@ -0,0 +1,37 @@ +const DeferredContentProps = [ + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const DeferredContentEvents = [ + { + name: 'load', + description: 'Callback to invoke when deferred content is loaded..', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Event object' + } + ] + } +]; + +module.exports = { + deferredcontent: { + name: 'DeferredContent', + description: 'DeferredContent postpones the loading the content that is initially not in the viewport until it becomes visible on scroll.', + props: DeferredContentProps, + events: DeferredContentEvents + } +}; diff --git a/packages/primevue/scripts/components/dialog.js b/packages/primevue/scripts/components/dialog.js new file mode 100644 index 0000000000..e7e737c6b2 --- /dev/null +++ b/packages/primevue/scripts/components/dialog.js @@ -0,0 +1,227 @@ +const DialogProps = [ + { + name: 'header', + type: 'any', + default: 'null', + description: 'Title content of the dialog.' + }, + { + name: 'footer', + type: 'any', + default: 'null', + description: 'Footer content of the dialog.' + }, + { + name: 'visible', + type: 'boolean', + default: 'false', + description: 'Specifies the visibility of the dialog.' + }, + { + name: 'modal', + type: 'boolean', + default: 'null', + description: 'Defines if background should be blocked when dialog is displayed.' + }, + { + name: 'closeOnEscape', + type: 'boolean', + default: 'true', + description: 'Specifies if pressing escape key should hide the dialog.' + }, + { + name: 'dismissableMask', + type: 'boolean', + default: 'false', + description: 'Specifies if clicking the modal background should hide the dialog.' + }, + { + name: 'position', + type: 'string', + default: 'center', + description: 'Position of the dialog, options are "center", "top", "bottom", "left", "right", "topleft", "topright", "bottomleft" or "bottomright".' + }, + { + name: 'contentStyle', + type: 'object', + default: 'null', + description: 'Style of the content section.' + }, + { + name: 'contentClass', + type: 'string', + default: 'null', + description: 'Style class of the content section.' + }, + { + name: 'closable', + type: 'boolean', + default: 'true', + description: 'Adds a close icon to the header to hide the dialog.' + }, + { + name: 'showHeader', + type: 'boolean', + default: 'true', + description: 'Whether to show the header or not.' + }, + { + name: 'blockScroll', + type: 'boolean', + default: 'false', + description: 'Whether background scroll should be blocked when dialog is visible.' + }, + { + name: 'baseZIndex', + type: 'number', + default: '0', + description: 'Base zIndex value to use in layering.' + }, + { + name: 'autoZIndex', + type: 'boolean', + default: 'true', + description: 'Whether to automatically manage layering.' + }, + { + name: 'ariaCloseLabel', + type: 'string', + default: 'close', + description: 'Aria label of the close icon.' + }, + { + name: 'maximizable', + type: 'boolean', + default: 'false', + description: 'Whether the dialog can be displayed full screen.' + }, + { + name: 'breakpoints', + type: 'object', + default: 'null', + description: 'Object literal to define widths per screen size.' + }, + { + name: 'draggable', + type: 'boolean', + default: 'true', + description: 'Whether the dialog can be relocated by dragging.' + }, + { + name: 'minX', + type: 'number', + default: '0', + description: 'Minimum value for the left coordinate of dialog in dragging.' + }, + { + name: 'minY', + type: 'number', + default: '0', + description: 'Minimum value for the top coordinate of dialog in dragging.' + }, + { + name: 'keepInViewport', + type: 'boolean', + default: 'true', + description: 'Keeps dialog in the viewport when dragging.' + }, + { + name: 'appendTo', + type: 'string', + default: 'body', + description: 'A valid query selector or an HTMLElement to specify where the dialog gets attached. Special keywords are "body" for document body and "self" for the element itself.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const DialogEvents = [ + { + name: 'hide', + description: 'Callback to invoke when dialog is hidden.' + }, + { + name: 'after-hide', + description: 'Callback to invoke after dialog is hidden.' + }, + { + name: 'show', + description: 'Callback to invoke when dialog is showed.' + }, + { + name: 'maximize', + description: 'Fired when a dialog gets maximized.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Event Object' + } + ] + }, + { + name: 'unmaximize', + description: 'Fired when a dialog gets unmaximized.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Event Object' + } + ] + }, + { + name: 'dragend', + description: 'Fired when a dialog drag completes.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Event Object' + } + ] + } +]; + +const DialogSlots = [ + { + name: 'header', + description: "Custom content for the component's header" + }, + { + name: 'footer', + description: "Custom content for the component's footer" + }, + { + name: 'closeicon', + description: 'Custom close icon template.' + }, + { + name: 'maximizeicon', + description: 'Custom maximizeicon icon template of dialog.' + }, + { + name: 'container', + description: 'Custom container template.' + } +]; + +module.exports = { + dialog: { + name: 'Dialog', + description: 'Dialog is a container to display content in an overlay window.', + props: DialogProps, + events: DialogEvents, + slots: DialogSlots + } +}; diff --git a/packages/primevue/scripts/components/divider.js b/packages/primevue/scripts/components/divider.js new file mode 100644 index 0000000000..3a88946f95 --- /dev/null +++ b/packages/primevue/scripts/components/divider.js @@ -0,0 +1,40 @@ +const DividerProps = [ + { + name: 'align', + type: 'string', + default: 'null', + description: 'Alignment of the content, options are "left", "center", "right" for horizontal layout and "top", "center", "bottom" for vertical.' + }, + { + name: 'layout', + type: 'string', + default: 'horizontal', + description: 'Specifies the orientation, valid values are "horizontal" and "vertical".' + }, + { + name: 'type', + type: 'string', + default: 'solid', + description: 'Border style type, default is "solid" and other options are "dashed" and "dotted".' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +module.exports = { + divider: { + name: 'Divider', + description: 'Divider is used to separate contents.', + props: DividerProps + } +}; diff --git a/packages/primevue/scripts/components/dock.js b/packages/primevue/scripts/components/dock.js new file mode 100644 index 0000000000..9d4b79c9d6 --- /dev/null +++ b/packages/primevue/scripts/components/dock.js @@ -0,0 +1,64 @@ +const DockProps = [ + { + name: 'model', + type: 'object', + default: 'null', + description: 'MenuModel instance to define the action items.' + }, + { + name: 'position', + type: 'string', + default: 'bottom', + description: "Position of element. Valid values are 'bottom', 'top', 'left' and 'right'." + }, + { + name: 'class', + type: 'string', + default: 'null', + description: 'Style class of the element.' + }, + { + name: 'style', + type: 'object', + default: 'null', + description: 'Inline style of the element.' + }, + { + name: 'tooltipOptions', + type: 'object', + default: 'null', + description: "Whether to display the tooltip on items. The modifiers of tooltip can be used like an object in it. Valid keys are 'event' and 'position'." + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const DockSlots = [ + { + name: 'item', + description: 'Custom content for the item.' + }, + { + name: 'icon', + description: 'Custom content for the icon.' + } +]; + +module.exports = { + dock: { + name: 'Dock', + description: 'Dock is a navigation component consisting of menuitems.', + props: DockProps, + slots: DockSlots + } +}; diff --git a/packages/primevue/scripts/components/drawer.js b/packages/primevue/scripts/components/drawer.js new file mode 100644 index 0000000000..986e790dfc --- /dev/null +++ b/packages/primevue/scripts/components/drawer.js @@ -0,0 +1,114 @@ +const DrawerProps = [ + { + name: 'visible', + type: 'boolean', + default: 'false', + description: 'Specifies the visibility of the dialog.' + }, + { + name: 'position', + type: 'string', + default: 'left', + description: 'Specifies the position of the sidebar, valid values are "left", "right", "top", "bottom" and "full".' + }, + { + name: 'baseZIndex', + type: 'number', + default: '0', + description: 'Base zIndex value to use in layering.' + }, + { + name: 'autoZIndex', + type: 'boolean', + default: 'true', + description: 'Whether to automatically manage layering.' + }, + { + name: 'dismissable', + type: 'boolean', + default: 'true', + description: 'Whether clicking outside closes the panel.' + }, + { + name: 'showCloseIcon', + type: 'boolean', + default: 'true', + description: 'Whether to display a close icon inside the panel.' + }, + { + name: 'modal', + type: 'boolean', + default: 'true', + description: 'Whether to a modal layer behind the sidebar.' + }, + { + name: 'ariaCloseLabel', + type: 'string', + default: 'close', + description: 'Aria label of the close icon.' + }, + { + name: 'blockScroll', + type: 'boolean', + default: 'false', + description: 'Whether background scroll should be blocked when sidebar is visible.' + }, + { + name: 'closeIcon', + type: 'string', + default: 'undefined', + description: 'Icon to display in the sidebar close button.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const DrawerEvents = [ + { + name: 'hide', + description: 'Callback to invoke when sidebar gets hidden.' + }, + { + name: 'show', + description: 'Callback to invoke when sidebar gets shown.' + }, + { + name: 'closeicon', + description: 'Custom close icon template.' + } +]; + +const DrawerSlots = [ + { + name: 'header', + description: 'Custom content for the component header.' + }, + { + name: 'closeicon', + description: 'Custom close icon template.' + }, + { + name: 'container', + description: 'Custom container template.' + } +]; + +module.exports = { + sidebar: { + name: 'Drawer', + description: 'Drawer is a panel component displayed as an overlay at the edges of the screen.', + props: DrawerProps, + events: DrawerEvents, + slots: DrawerSlots + } +}; diff --git a/packages/primevue/scripts/components/dropdown.js b/packages/primevue/scripts/components/dropdown.js new file mode 100644 index 0000000000..a57c8011d8 --- /dev/null +++ b/packages/primevue/scripts/components/dropdown.js @@ -0,0 +1,432 @@ +const DropdownProps = [ + { + name: 'modelValue', + type: 'any', + default: 'null', + description: 'Value of the component.' + }, + { + name: 'options', + type: 'array', + default: 'null', + description: 'An array of selectitems to display as the available options.' + }, + { + name: 'optionLabel', + type: 'string | function', + default: 'null', + description: 'Property name or getter function to use as the label of an option.' + }, + { + name: 'optionValue', + type: 'string | function', + default: 'null', + description: 'Property name or getter function to use as the value of an option, defaults to the option itself when not defined.' + }, + { + name: 'optionDisabled', + type: 'boolean', + default: 'null', + description: 'Property name or getter function to use as the disabled flag of an option, defaults to false when not defined.' + }, + { + name: 'optionGroupLabel', + type: 'string | function', + default: 'null', + description: 'Property name or getter function to use as the label of an option group.' + }, + { + name: 'optionGroupChildren', + type: 'string | function', + default: 'null', + description: 'Property name or getter function that refers to the children options of option group.' + }, + { + name: 'scrollHeight', + type: 'string', + default: '200px', + description: 'Height of the viewport, a scrollbar is defined if height of list exceeds this value.' + }, + { + name: 'filter', + type: 'boolean', + default: 'false', + description: 'When specified, displays a filter input at header.' + }, + { + name: 'filterPlaceholder', + type: 'string', + default: 'null', + description: 'Placeholder text to show when filter input is empty.' + }, + { + name: 'filterLocale', + type: 'string', + default: 'undefined', + description: "Locale to use in filtering. The default locale is the host environment's current locale." + }, + { + name: 'filterMatchMode', + type: 'string', + default: 'contains', + description: 'Defines the filtering algorithm to use when searching the options. Valid values are "contains" (default), "startsWith" and "endsWith"' + }, + { + name: 'filterFields', + type: 'array', + default: 'null', + description: 'Fields used when filtering the options, defaults to optionLabel.' + }, + { + name: 'editable', + type: 'boolean', + default: 'false', + description: 'When present, custom value instead of predefined options can be entered using the editable input field.' + }, + { + name: 'placeholder', + type: 'string', + default: 'null', + description: 'Default text to display when no option is selected.' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should be disabled.' + }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'null', + description: 'Specifies the input variant of the component.' + }, + { + name: 'dataKey', + type: 'string', + default: 'null', + description: 'A property to uniquely identify an option.' + }, + { + name: 'showClear', + type: 'boolean', + default: 'false', + description: 'When enabled, a clear icon is displayed to clear the value.' + }, + { + name: 'inputId', + type: 'string', + default: 'null', + description: 'Identifier of the underlying input element.' + }, + { + name: 'inputStyle', + type: 'object', + default: 'null', + description: 'Inline style of the input field.' + }, + { + name: 'inputClass', + type: 'string | object', + default: 'null', + description: 'Style class of the input field.' + }, + { + name: 'inputProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLInputElement/HTMLSpanElement to the focusable input element inside the component.' + }, + { + name: 'panelStyle', + type: 'object', + default: 'null', + description: 'Inline style of the overlay panel.' + }, + { + name: 'panelClass', + type: 'string', + default: 'null', + description: 'Style class of the overlay panel.' + }, + { + name: 'panelProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLDivElement to the overlay panel inside the component.' + }, + { + name: 'filterInputProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLInputElement to the filter input inside the component.' + }, + { + name: 'clearIconProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLElement to the clear icon inside the component.' + }, + { + name: 'appendTo', + type: 'string', + default: 'body', + description: "A valid query selector or an HTMLElement to specify where the overlay gets attached. Special keywords are 'body' for document body and 'self' for the element itself." + }, + { + name: 'loading', + type: 'boolean', + default: 'false', + description: 'Whether the multiselect is in loading state.' + }, + { + name: 'loadingIcon', + type: 'string', + default: 'pi pi-spinner pi-spin', + description: 'Icon to display in loading state.' + }, + { + name: 'resetFilterOnHide', + type: 'boolean', + default: 'false', + description: 'Clears the filter value when hiding the dropdown.' + }, + { + name: 'resetFilterOnClear', + type: 'boolean', + default: 'false', + description: 'Clears the filter value when clicking on the clear icon.' + }, + { + name: 'virtualScrollerOptions', + type: 'object', + default: 'null', + description: 'Whether to use the virtualScroller feature. The properties of VirtualScroller component can be used like an object in it.' + }, + { + name: 'autoOptionFocus', + type: 'boolean', + default: 'false', + description: 'Whether to focus on the first visible or selected element when the overlay panel is shown.' + }, + { + name: 'autoFilterFocus', + type: 'boolean', + default: 'false', + description: 'Whether to focus on the filter element when the overlay panel is shown.' + }, + { + name: 'selectOnFocus', + type: 'boolean', + default: 'false', + description: 'When enabled, the focused option is selected.' + }, + { + name: 'filterMessage', + type: 'string', + default: '{0} results are available', + description: 'Text to be displayed in hidden accessible field when filtering returns any results. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'selectionMessage', + type: 'string', + default: '{0} items selected', + description: 'Text to be displayed in hidden accessible field when options are selected. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'emptySelectionMessage', + type: 'string', + default: 'No selected item', + description: 'Text to be displayed in hidden accessible field when any option is not selected. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'emptyFilterMessage', + type: 'string', + default: 'No results found', + description: 'Text to display when filtering does not return any results. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'emptyMessage', + type: 'string', + default: 'No results found', + description: 'Text to display when there are no options available. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'tabindex', + type: 'number', + default: '0', + description: 'Index of the element in tabbing order.' + }, + { + name: 'aria-label', + type: 'string', + default: 'null', + description: 'Defines a string value that labels an interactive element.' + }, + { + name: 'aria-labelledby', + type: 'string', + default: 'null', + description: 'Identifier of the underlying input element.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const DropdownEvents = [ + { + name: 'change', + description: 'Callback to invoke on value change.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.value', + type: 'string', + description: 'Selected option value' + } + ] + }, + { + name: 'focus', + description: 'Callback to invoke when component receives focus.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + }, + { + name: 'blur', + description: 'Callback to invoke when component loses focus.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + }, + { + name: 'before-show', + description: 'Callback to invoke before the overlay is shown.' + }, + { + name: 'before-hide', + description: 'Callback to invoke before the overlay is hidden.' + }, + { + name: 'show', + description: 'Callback to invoke when the overlay is shown.' + }, + { + name: 'hide', + description: 'Callback to invoke when the overlay is hidden.' + }, + { + name: 'filter', + description: 'Callback to invoke when the overlay is shown.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.value', + type: 'string', + description: 'Filter value' + } + ] + } +]; + +const DropdownSlots = [ + { + name: 'value', + description: "Custom content for the item's value" + }, + { + name: 'indicator', + description: 'Custom content for the dropdown indicator' + }, + { + name: 'header', + description: "Custom content for the component's header" + }, + { + name: 'footer', + description: "Custom content for the component's footer" + }, + { + name: 'option', + description: "Custom content for the item's option" + }, + { + name: 'optiongroup', + description: "Custom content for the item's optiongroup" + }, + { + name: 'emptyfilter', + description: 'Custom content when there is no filtered data to display' + }, + { + name: 'empty', + description: 'Custom content when there is no data to display' + }, + { + name: 'content', + description: 'Custom content for the virtual scroller' + }, + { + name: 'loader', + description: 'Custom content for the virtual scroller loader items' + }, + { + name: 'clearicon', + description: 'Custom clear icon template.' + }, + { + name: 'dropdownicon', + description: 'Custom dropdown icon template.' + }, + { + name: 'loadingicon', + description: 'Custom loading icon template.' + }, + { + name: 'filtericon', + description: 'Custom filter icon template.' + } +]; + +module.exports = { + dropdown: { + name: 'Dropdown', + description: 'Dropdown is used to select an item from a list of options.', + props: DropdownProps, + events: DropdownEvents, + slots: DropdownSlots + } +}; diff --git a/packages/primevue/scripts/components/dynamicdialog.js b/packages/primevue/scripts/components/dynamicdialog.js new file mode 100644 index 0000000000..9f2069dea4 --- /dev/null +++ b/packages/primevue/scripts/components/dynamicdialog.js @@ -0,0 +1,15 @@ +const DynamicDialogProps = []; + +const DynamicDialogEvents = []; + +const DynamicDialogSlots = []; + +module.exports = { + dynamicdialog: { + name: 'DynamicDialog', + description: 'Dialogs can be created dynamically with any component as the content using a DialogService.', + props: DynamicDialogProps, + events: DynamicDialogEvents, + slots: DynamicDialogSlots + } +}; diff --git a/packages/primevue/scripts/components/editor.js b/packages/primevue/scripts/components/editor.js new file mode 100644 index 0000000000..3b915ff965 --- /dev/null +++ b/packages/primevue/scripts/components/editor.js @@ -0,0 +1,148 @@ +const EditorProps = [ + { + name: 'modelValue', + type: 'string', + default: 'null', + description: 'Value of the content.' + }, + { + name: 'placeholder', + type: 'string', + default: 'null', + description: 'Placeholder text to show when editor is empty.' + }, + { + name: 'readonly', + type: 'boolean', + default: 'false', + description: 'Whether to instantiate the editor to readonly mode.' + }, + { + name: 'formats', + type: 'string[]', + default: 'null', + description: 'Whitelist of formats to display.' + }, + { + name: 'editorStyle', + type: 'any', + default: 'null', + description: 'Inline style of the container.' + }, + { + name: 'modules', + type: 'object', + default: 'null', + description: 'Modules configuration, see here for available options.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const EditorEvents = [ + { + name: 'text-change', + description: 'Callback to invoke when text of editor changes.', + arguments: [ + { + name: 'event.delta', + type: 'object', + description: 'Representation of the change.' + }, + { + name: 'event.source', + type: 'string', + description: 'Source of change. Will be either "user" or "api".' + }, + { + name: 'event.htmlValue', + type: 'string', + description: 'Current value as html.' + }, + { + name: 'event.textValue', + type: 'string', + description: 'Current value as text.' + }, + { + name: 'event.instance', + type: 'object', + description: 'Text editor instance.' + } + ] + }, + { + name: 'selection-change', + description: 'Callback to invoke when selection of the text changes.', + arguments: [ + { + name: 'event.range', + type: 'object', + description: 'Representation of the selection boundaries.' + }, + { + name: 'event.oldRange', + type: 'string', + description: 'Representation of the previous selection boundaries.' + }, + { + name: 'event.source', + type: 'string', + description: 'Source of change. Will be either "user" or "api".' + }, + { + name: 'event.htmlValue', + type: 'string', + description: 'Current value as html.' + }, + { + name: 'event.textValue', + type: 'string', + description: 'Current value as text.' + }, + { + name: 'event.instance', + type: 'object', + description: 'Text editor instance.' + } + ] + }, + { + name: 'load', + description: 'Callback to invoke when the quill modules are loaded.', + arguments: [ + { + name: 'event.instance', + type: 'any', + description: 'Quill instance' + } + ] + } +]; + +const EditorSlots = [ + { + name: 'toolbar', + description: "Custom content for the component's toolbar" + } +]; + +module.exports = { + editor: { + name: 'Editor', + description: 'Editor is rich text editor component based on Quill.', + props: EditorProps, + events: EditorEvents, + slots: EditorSlots + } +}; diff --git a/packages/primevue/scripts/components/fieldset.js b/packages/primevue/scripts/components/fieldset.js new file mode 100644 index 0000000000..a15a03b05e --- /dev/null +++ b/packages/primevue/scripts/components/fieldset.js @@ -0,0 +1,78 @@ +const FieldsetProps = [ + { + name: 'legend', + type: 'string', + default: 'null', + description: 'Header text of the fieldset.' + }, + { + name: 'toggleable', + type: 'boolean', + default: 'null', + description: 'When specified, content can toggled by clicking the legend.' + }, + { + name: 'collapsed', + type: 'boolean', + default: 'true', + description: 'Defines the default visibility state of the content.' + }, + { + name: 'toggleButtonProps', + type: 'string', + default: 'null', + description: 'Used to pass the custom value to read for the AnchorHTMLAttributes inside the component.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const FieldsetEvents = [ + { + name: 'toggle', + description: 'Callback to invoke when a tab gets expanded or collapsed.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.value', + type: 'boolean', + description: 'collapsed state as a boolean' + } + ] + } +]; + +const FieldsetSlots = [ + { + name: 'legend', + description: 'Custom legend template.' + }, + { + name: 'toggleicon', + description: 'Custom toggler icon template.' + } +]; + +module.exports = { + fieldset: { + name: 'Fieldset', + description: 'Fieldset is a grouping component with the optional content toggle feature.', + props: FieldsetProps, + events: FieldsetEvents, + slots: FieldsetSlots + } +}; diff --git a/packages/primevue/scripts/components/fileupload.js b/packages/primevue/scripts/components/fileupload.js new file mode 100644 index 0000000000..47b2385531 --- /dev/null +++ b/packages/primevue/scripts/components/fileupload.js @@ -0,0 +1,329 @@ +const FileUploadProps = [ + { + name: 'name', + type: 'string', + default: 'null', + description: 'Name of the request parameter to identify the files at backend.' + }, + { + name: 'url', + type: 'string', + default: 'null', + description: 'Remote url to upload the files.' + }, + { + name: 'mode', + type: 'string', + default: 'advanced', + description: 'Defines the UI of the component, possible values are "advanced" and "basic".' + }, + { + name: 'multiple', + type: 'boolean', + default: 'false', + description: 'Used to select multiple files at once from file dialog.' + }, + { + name: 'accept', + type: 'string', + default: 'null', + description: 'Pattern to restrict the allowed file types such as "image/*".' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'Disables the upload functionality.' + }, + { + name: 'auto', + type: 'boolean', + default: 'false', + description: 'When enabled, upload begins automatically after selection is completed.' + }, + { + name: 'maxFileSize', + type: 'number', + default: 'null', + description: 'Maximum file size allowed in bytes.' + }, + { + name: 'invalidFileSizeMessage', + type: 'string', + default: '"{0}: Invalid file size, file size should be smaller than {1}."', + description: 'Message of the invalid fize size.' + }, + { + name: 'invalidFileLimitMessage', + type: 'string', + default: 'Maximum number of files exceeded, limit is {0} at most.', + description: 'Message to display when number of files to be uploaded exceeeds the limit.' + }, + { + name: 'fileLimit', + type: 'number', + default: 'null', + description: 'Maximum number of files that can be uploaded.' + }, + { + name: 'withCredentials', + type: 'boolean', + default: 'false', + description: 'Cross-site Access-Control requests should be made using credentials such as cookies, authorization headers or TLS client certificates.' + }, + { + name: 'previewWidth', + type: 'number', + default: '50', + description: 'Width of the image thumbnail in pixels.' + }, + { + name: 'chooseLabel', + type: 'string', + default: 'null', + description: 'Label of the choose button. Defaults to PrimeVue Locale configuration.' + }, + { + name: 'uploadLabel', + type: 'string', + default: 'Upoad', + description: 'Label of the upload button. Defaults to PrimeVue Locale configuration.' + }, + { + name: 'cancelLabel', + type: 'string', + default: 'Cancel', + description: 'Label of the cancel button. Defaults to PrimeVue Locale configuration.' + }, + { + name: 'customUpload', + type: 'boolean', + default: 'false', + description: 'Whether to use the default upload or a manual implementation defined in uploadHandler callback.' + }, + { + name: 'showUploadButton', + type: 'boolean', + default: 'true', + description: 'Whether to show the upload button.' + }, + { + name: 'showCancelButton', + type: 'boolean', + default: 'true', + description: 'Whether to cancel the upload button.' + }, + { + name: 'chooseIcon', + type: 'string', + default: 'pi pi-plus', + description: 'Icon of the choose button.' + }, + { + name: 'uploadIcon', + type: 'string', + default: 'pi pi-upload', + description: 'Icon of the upload button.' + }, + { + name: 'cancelIcon', + type: 'string', + default: 'pi pi-times', + description: 'Icon of the cancel button.' + }, + { + name: 'style', + type: 'any', + default: 'null', + description: 'Inline style of the component.' + }, + { + name: 'class', + type: 'string', + default: 'null', + description: 'Style class of the component.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const FileUploadEvents = [ + { + name: 'before-upload', + description: 'Callback to invoke before file upload begins to customize the request such as post parameters before the files.', + arguments: [ + { + name: 'event.xhr', + type: 'object', + description: 'XmlHttpRequest instance.' + }, + { + name: 'event.formData', + type: 'object', + description: 'FormData object.' + } + ] + }, + { + name: 'before-send', + description: 'Callback to invoke before file send begins to customize the request such as adding headers.', + arguments: [ + { + name: 'event.xhr', + type: 'object', + description: 'XmlHttpRequest instance.' + }, + { + name: 'event.formData', + type: 'object', + description: 'FormData object.' + } + ] + }, + { + name: 'upload', + description: 'Callback to invoke when file upload is complete.', + arguments: [ + { + name: 'event.xhr', + type: 'object', + description: 'XmlHttpRequest instance.' + }, + { + name: 'event.files', + type: 'object', + description: 'Uploaded files.' + } + ] + }, + { + name: 'error', + description: 'Callback to invoke if file upload fails.', + arguments: [ + { + name: 'event.xhr', + type: 'object', + description: 'XmlHttpRequest instance.' + }, + { + name: 'event.files', + type: 'object', + description: 'Files that are not uploaded.' + } + ] + }, + { + name: 'clear', + description: 'Callback to invoke when files in queue are removed without uploading.' + }, + { + name: 'select', + description: 'Callback to invoke when file upload is complete.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Original browser event.' + }, + { + name: 'event.files', + type: 'object', + description: 'List of selected files.' + } + ] + }, + { + name: 'progress', + description: 'Callback to invoke when files are selected.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Original browser event.' + }, + { + name: 'event.progress', + type: 'number', + description: 'Calculated progress value.' + } + ] + }, + { + name: 'uploader', + description: 'Callback to invoke to implement a custom upload.', + arguments: [ + { + name: 'event.files', + type: 'object', + description: 'List of selected files.' + } + ] + }, + { + name: 'remove', + description: 'Callback to invoke when a singe file is removed from the list.', + arguments: [ + { + name: 'event.file', + type: 'object', + description: 'Removed file.' + }, + { + name: 'event.files', + type: 'object', + description: 'Remaining files to be uploaded.' + } + ] + } +]; + +const FileUploadSlots = [ + { + name: 'header', + description: 'Custom header template.' + }, + { + name: 'content', + description: 'Custom content template.' + }, + { + name: 'empty', + description: 'Custom content when there is no selected file' + }, + { + name: 'chooseicon', + description: 'Custom choose icon template.' + }, + { + name: 'uploadicon', + description: 'Custom upload icon template.' + }, + { + name: 'cancelicon', + description: 'Custom cancel icon template.' + }, + { + name: 'fileremoveicon', + description: 'Custom remove icon template for each file.' + } +]; + +module.exports = { + fileupload: { + name: 'FileUpload', + description: 'FileUpload is an advanced uploader with dragdrop support, multi file uploads, auto uploading, progress tracking and validations.', + props: FileUploadProps, + events: FileUploadEvents, + slots: FileUploadSlots + } +}; diff --git a/packages/primevue/scripts/components/galleria.js b/packages/primevue/scripts/components/galleria.js new file mode 100644 index 0000000000..0505c577ad --- /dev/null +++ b/packages/primevue/scripts/components/galleria.js @@ -0,0 +1,214 @@ +const GalleriaProps = [ + { + name: 'id', + type: 'string', + default: 'null', + description: 'Unique identifier of the element.' + }, + { + name: 'value', + type: 'array', + default: 'null', + description: 'An array of objects to display.' + }, + { + name: 'activeIndex', + type: 'number', + default: '0', + description: 'Index of the first item.' + }, + { + name: 'fullscreen', + type: 'boolean', + default: 'false', + description: 'Whether to display the component on fullscreen.' + }, + { + name: 'visible', + type: 'boolean', + default: 'false', + description: 'Specifies the visibility of the mask on fullscreen mode.' + }, + { + name: 'numVisible', + type: 'number', + default: '3', + description: 'Number of items per page.' + }, + { + name: 'responsiveOptions', + type: 'any', + default: 'null', + description: 'An array of options for responsive design.' + }, + { + name: 'showItemNavigators', + type: 'boolean', + default: 'false', + description: 'Whether to display navigation buttons in item section.' + }, + { + name: 'showThumbnailNavigators', + type: 'boolean', + default: 'true', + description: 'Whether to display navigation buttons in thumbnail container.' + }, + { + name: 'showItemNavigatorsOnHover', + type: 'boolean', + default: 'false', + description: 'Whether to display navigation buttons on item hover.' + }, + { + name: 'changeItemOnIndicatorHover', + type: 'boolean', + default: 'false', + description: 'When enabled, item is changed on indicator hover.' + }, + { + name: 'circular', + type: 'boolean', + default: 'false', + description: 'Defines if scrolling would be infinite.' + }, + { + name: 'autoPlay', + type: 'boolean', + default: 'false', + description: 'Items are displayed with a slideshow in autoPlay mode.' + }, + { + name: 'transitionInterval', + type: 'number', + default: '4000', + description: 'Time in milliseconds to scroll items.' + }, + { + name: 'showThumbnails', + type: 'boolean', + default: 'true', + description: 'Whether to display thumbnail container.' + }, + { + name: 'thumbnailsPosition', + type: 'string', + default: 'bottom', + description: 'Position of thumbnails. Valid values are "bottom", "top", "left" and "right".' + }, + { + name: 'verticalThumbnailViewPortHeight', + type: 'string', + default: '300px', + description: 'Height of the viewport in vertical thumbnail.' + }, + { + name: 'showIndicators', + type: 'boolean', + default: 'false', + description: 'Whether to display indicator container.' + }, + { + name: 'showIndicatorsOnItem', + type: 'boolean', + default: 'false', + description: 'When enabled, indicator container is displayed on item container.' + }, + { + name: 'indicatorsPosition', + type: 'string', + default: 'bottom', + description: 'Position of indicators. Valid values are "bottom", "top", "left" and "right".' + }, + { + name: 'baseZIndex', + type: 'number', + default: '0', + description: 'ase zIndex value to use in layering.' + }, + { + name: 'maskClass', + type: 'string', + default: 'null', + description: 'Style class of the mask on fullscreen mode.' + }, + { + name: 'containerStyle', + type: 'any', + default: 'null', + description: "Inline style of the component on fullscreen mode. Otherwise, the 'style' property can be used." + }, + { + name: 'containerClass', + type: 'any', + default: 'null', + description: "Style class of the component on fullscreen mode. Otherwise, the 'class' property can be used." + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const GalleriaSlots = [ + { + name: 'header', + description: "Custom content for the component's header." + }, + { + name: 'footer', + description: "Custom content for the component's footer." + }, + { + name: 'item', + description: 'Custom content for the item.' + }, + { + name: 'caption', + description: 'Custom caption content.' + }, + { + name: 'thumbnail', + description: 'Custom thumbnail content.' + }, + { + name: 'indicator', + description: 'Custom indicator content.' + }, + { + name: 'closeicon', + description: 'Custom close icon template.' + }, + { + name: 'previousitemicon', + description: 'Custom navigator previous item icon template.' + }, + { + name: 'nextitemicon', + description: 'Custom navigator next item icon template.' + }, + { + name: 'previousthumbnailicon', + description: 'Custom thumbnail previous icon template.' + }, + { + name: 'nextthumbnailicon', + description: 'Custom thumbnail next icon template.' + } +]; + +module.exports = { + galleria: { + name: 'Galleria', + description: 'Galleria is an advanced content gallery component.', + props: GalleriaProps, + slots: GalleriaSlots + } +}; diff --git a/packages/primevue/scripts/components/image.js b/packages/primevue/scripts/components/image.js new file mode 100644 index 0000000000..e723e96b8f --- /dev/null +++ b/packages/primevue/scripts/components/image.js @@ -0,0 +1,98 @@ +const ImageProps = [ + { + name: 'preview', + type: 'boolean', + default: 'false', + description: 'Controls the preview functionality.' + }, + { + name: 'indicatorIcon', + type: 'string', + default: 'pi pi-eye', + description: 'Custom indicator icon.' + }, + { + name: 'zoomInDisabled', + type: 'boolean', + default: 'false', + description: 'Disable the zoom-in button' + }, + { + name: 'zoomOutDisabled', + type: 'boolean', + default: 'false', + description: 'Disable the zoom-out button' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const ImageEvents = [ + { + name: 'show', + description: 'Triggered when the preview overlay is shown.' + }, + { + name: 'hide', + description: 'Triggered when the preview overlay is hidden.' + }, + { + name: 'error', + description: 'Triggered when an error occurs while loading an image file.' + } +]; + +const ImageSlots = [ + { + name: 'indicator', + description: 'Custom content for the preview indicator.' + }, + { + name: 'refresh', + description: 'Custom content for the component refresh.' + }, + { + name: 'undo', + description: 'Custom content for the component undo.' + }, + { + name: 'zoomout', + description: 'Custom content for the component zoomout.' + }, + { + name: 'zoomin', + description: 'Custom content for the component zoomin.' + }, + { + name: 'close', + description: 'Custom content for the component close.' + }, + { + name: 'image', + description: 'Custom content for the component image.' + }, + { + name: 'preview', + description: 'Custom content for the component preview.' + } +]; + +module.exports = { + image: { + name: 'Image', + description: 'Displays an image with preview and tranformation options.', + props: ImageProps, + events: ImageEvents, + slots: ImageSlots + } +}; diff --git a/packages/primevue/scripts/components/inlinemessage.js b/packages/primevue/scripts/components/inlinemessage.js new file mode 100644 index 0000000000..34fdd0c4b8 --- /dev/null +++ b/packages/primevue/scripts/components/inlinemessage.js @@ -0,0 +1,43 @@ +const InlineMessageProps = [ + { + name: 'severity', + type: 'string', + default: 'error', + description: 'Severity level of the message. Valid severities are "success", "info", "warn", "error", "secondary" and "contrast".' + }, + { + name: 'icon', + type: 'string', + default: 'undefined', + description: 'Display a custom icon for the message.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const MessageSlots = [ + { + name: 'icon', + description: 'Custom icon template.' + } +]; + +module.exports = { + inlinemessage: { + name: 'InlineMessage', + description: 'InlineMessage component is useful in cases where a single message needs to be displayed related to an element such as forms', + 'doc-url': 'message', + props: InlineMessageProps, + slots: MessageSlots + } +}; diff --git a/packages/primevue/scripts/components/inplace.js b/packages/primevue/scripts/components/inplace.js new file mode 100644 index 0000000000..07e8d3316b --- /dev/null +++ b/packages/primevue/scripts/components/inplace.js @@ -0,0 +1,72 @@ +const InplaceProps = [ + { + name: 'active', + type: 'boolean', + default: 'false', + description: 'Whether the content is displayed or not.' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the element should be disabled.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const InplaceEvents = [ + { + name: 'open', + description: 'Callback to invoke when inplace is opened.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + }, + { + name: 'close', + description: 'Callback to invoke when inplace is closed.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + } +]; + +const InplaceSlots = [ + { + name: 'display', + description: 'Custom display template.' + }, + { + name: 'content', + description: 'Custom content template.' + } +]; + +module.exports = { + inplace: { + name: 'Inplace', + description: 'Inplace provides an easy to do editing and display at the same time where clicking the output displays the actual content.', + props: InplaceProps, + events: InplaceEvents, + slots: InplaceSlots + } +}; diff --git a/packages/primevue/scripts/components/inputchips.js b/packages/primevue/scripts/components/inputchips.js new file mode 100644 index 0000000000..1602667fac --- /dev/null +++ b/packages/primevue/scripts/components/inputchips.js @@ -0,0 +1,148 @@ +const InputChipsProps = [ + { + name: 'modelValue', + type: 'array', + default: 'null', + description: 'Value of the component.' + }, + { + name: 'max', + type: 'number', + default: 'null', + description: 'Maximum number of entries allowed.' + }, + { + name: 'separator', + type: 'string', + default: 'null', + description: 'Separator char to add an item when pressed in addition to the enter key. Currently only possible value is ","' + }, + { + name: 'addOnBlur', + type: 'boolean', + default: 'false', + description: 'Whether to add an item when the input loses focus.' + }, + { + name: 'allowDuplicate', + type: 'boolean', + default: 'false', + description: 'Whether to allow duplicate values or not.' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the element should be disabled.' + }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'null', + description: 'Specifies the input variant of the component.' + }, + { + name: 'placeholder', + type: 'string', + default: 'null', + description: 'Placeholder text for the input.' + }, + { + name: 'inputId', + type: 'string', + default: 'null', + description: 'Identifier of the focus input to match a label defined for the chips.' + }, + { + name: 'inputClass', + type: 'string | object', + default: 'null', + description: 'Style class of the input field.' + }, + { + name: 'inputStyle', + type: 'object', + default: 'null', + description: 'Inline style of the input field.' + }, + { + name: 'inputProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLInputElement to the focusable input element inside the component.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const InputChipsEvents = [ + { + name: 'add', + description: 'Callback to invoke when a chip is added.', + arguments: [ + { + name: 'originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'value', + type: 'array', + description: 'Added item value' + } + ] + }, + { + name: 'remove', + description: 'Callback to invoke when a chip is removed.', + arguments: [ + { + name: 'originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'value', + type: 'array', + description: 'Removed item value' + } + ] + } +]; + +const InputChipsSlots = [ + { + name: 'chips', + description: 'Custom content for the chips' + }, + { + name: 'removetokenicon', + description: 'Custom remove token icon template.' + } +]; + +module.exports = { + chips: { + name: 'InputChips', + description: 'InputChips is used to enter multiple values on an input field.', + props: InputChipsProps, + events: InputChipsEvents, + slots: InputChipsSlots + } +}; diff --git a/packages/primevue/scripts/components/inputmask.js b/packages/primevue/scripts/components/inputmask.js new file mode 100644 index 0000000000..2c8087e099 --- /dev/null +++ b/packages/primevue/scripts/components/inputmask.js @@ -0,0 +1,64 @@ +const InputMaskProps = [ + { + name: 'modelValue', + type: 'any', + default: 'null', + description: 'Value of the component.' + }, + { + name: 'mask', + type: 'string', + default: 'null', + description: 'Mask pattern.' + }, + { + name: 'slotChar', + type: 'string', + default: '-', + description: 'Placeholder character in mask, default is underscore.' + }, + { + name: 'autoClear', + type: 'boolean', + default: 'true', + description: 'Clears the incomplete value on blur.' + }, + { + name: 'unmask', + type: 'boolean', + default: 'false', + description: 'Defines if model sets the raw unmasked value to bound value or the formatted mask value.' + }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'null', + description: 'Specifies the input variant of the component.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +module.exports = { + inputmask: { + name: 'InputMask', + description: 'InputMask component is used to enter input in a certain format such as numeric, date, currency, email and phone.', + props: InputMaskProps + } +}; diff --git a/packages/primevue/scripts/components/inputnumber.js b/packages/primevue/scripts/components/inputnumber.js new file mode 100644 index 0000000000..cab3dffe04 --- /dev/null +++ b/packages/primevue/scripts/components/inputnumber.js @@ -0,0 +1,277 @@ +const InputNumberProps = [ + { + name: 'modelValue', + type: 'number', + default: 'null', + description: 'Value of the component.' + }, + { + name: 'format', + type: 'boolean', + default: 'true', + description: 'Whether to format the value.' + }, + { + name: 'showButtons', + type: 'boolean', + default: 'false', + description: 'Displays spinner buttons.' + }, + { + name: 'buttonLayout', + type: 'string', + default: 'stacked', + description: 'Layout of the buttons, valid values are "stacked" (default), "horizontal" and "vertical".' + }, + { + name: 'incrementButtonClass', + type: 'string', + default: 'null', + description: 'Style class of the increment button.' + }, + { + name: 'decrementButtonClass', + type: 'string', + default: 'null', + description: 'Style class of the decrement button.' + }, + { + name: 'incrementButtonIcon', + type: 'string', + default: 'pi pi-angle-up', + description: 'Style class of the increment button.' + }, + { + name: 'decrementButtonIcon', + type: 'string', + default: 'pi pi-angle-down', + description: 'Style class of the decrement button.' + }, + { + name: 'locale', + type: 'string', + default: 'null', + description: 'Locale to be used in formatting.' + }, + { + name: 'localeMatcher', + type: 'string', + default: 'best fit', + description: 'The locale matching algorithm to use. Possible values are "lookup" and "best fit".' + }, + { + name: 'mode', + type: 'string', + default: 'decimal', + description: 'Defines the behavior of the component, valid values are "decimal" and "currency".' + }, + { + name: 'prefix', + type: 'string', + default: 'null', + description: 'Text to display before the value.' + }, + { + name: 'suffix', + type: 'string', + default: 'decimal', + description: 'Text to display after the value.' + }, + { + name: 'currency', + type: 'string', + default: 'null', + description: + 'The currency to use in currency formatting. Possible values are the ISO 4217 currency codes, such as "USD" for the US dollar, "EUR" for the euro, or "CNY" for the Chinese RMB. There is no default value; if the style is "currency", the currency property must be provided.' + }, + { + name: 'currencyDisplay', + type: 'string', + default: 'symbol', + description: + 'How to display the currency in currency formatting. Possible values are "symbol" to use a localized currency symbol such as €, "code" to use the ISO currency code, "name" to use a localized currency name such as "dollar"; the default is "symbol".' + }, + { + name: 'useGrouping', + type: 'boolean', + default: 'true', + description: 'Whether to use grouping separators, such as thousands separators or thousand/lakh/crore separators.' + }, + { + name: 'minFractionDigits', + type: 'number', + default: 'null', + description: + "The minimum number of fraction digits to use. Possible values are from 0 to 20; the default for plain number and percent formatting is 0; the default for currency formatting is the number of minor unit digits provided by the ISO 4217 currency code list (2 if the list doesn't provide that information)." + }, + { + name: 'maxFractionDigits', + type: 'number', + default: 'null', + description: + "The maximum number of fraction digits to use. Possible values are from 0 to 20; the default for plain number formatting is the larger of minimumFractionDigits and 3; the default for currency formatting is the larger of minimumFractionDigits and the number of minor unit digits provided by the ISO 4217 currency code list (2 if the list doesn't provide that information)." + }, + { + name: 'min', + type: 'number', + default: 'null', + description: 'Mininum boundary value.' + }, + { + name: 'max', + type: 'number', + default: 'null', + description: 'Maximum boundary value.' + }, + { + name: 'step', + type: 'number', + default: '1', + description: 'Step factor to increment/decrement the value.' + }, + { + name: 'allowEmpty', + type: 'boolean', + default: 'true', + description: 'Determines whether the input field is empty.' + }, + { + name: 'readonly', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that an input field is read-only.' + }, + { + name: 'placeholder', + type: 'string', + default: 'null', + description: 'Placeholder text for the input.' + }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'null', + description: 'Specifies the input variant of the component.' + }, + { + name: 'inputId', + type: 'string', + default: 'null', + description: 'Identifier of the underlying input element.' + }, + { + name: 'inputStyle', + type: 'object', + default: 'null', + description: 'Inline style of the input field.' + }, + { + name: 'inputClass', + type: 'string | object', + default: 'null', + description: 'Style class of the input field.' + }, + { + name: 'inputProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLInputElement to the focusable input element inside the component.' + }, + { + name: 'incrementButtonProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLButtonElement to increment button inside the component.' + }, + { + name: 'decrementButtonProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLButtonElement to decrement button inside the component.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const InputNumberEvents = [ + { + name: 'input', + description: 'Callback to invoke when the value is entered.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.value', + type: 'number', + description: 'New value' + } + ] + }, + { + name: 'focus', + description: 'Callback to invoke on focus of input field.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Focus event' + } + ] + }, + { + name: 'blur', + description: 'Callback to invoke on blur of input field.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.value', + type: 'string', + description: 'Input value' + } + ] + } +]; + +const InputNumberSlots = [ + { + name: 'incrementbuttonicon', + description: 'Custom increment button icon template.' + }, + { + name: 'decrementbuttonicon', + description: 'Custom decrement button icon template.' + } +]; + +module.exports = { + inputnumber: { + name: 'InputNumber', + description: 'InputNumber is an input component to provide numerical input.', + props: InputNumberProps, + events: InputNumberEvents, + slots: InputNumberSlots + } +}; diff --git a/packages/primevue/scripts/components/inputotp.js b/packages/primevue/scripts/components/inputotp.js new file mode 100644 index 0000000000..6c74db25d4 --- /dev/null +++ b/packages/primevue/scripts/components/inputotp.js @@ -0,0 +1,80 @@ +const InputOtpProps = [ + { + name: 'modelValue', + type: 'boolean', + default: 'null', + description: 'Specifies whether a inputOtp should be checked or not.' + }, + { + name: 'trueValue', + type: 'any', + default: 'null', + description: 'Value in checked state.' + }, + { + name: 'falseValue', + type: 'any', + default: 'null', + description: 'Value in unchecked state.' + }, + { + name: 'inputId', + type: 'string', + default: 'null', + description: 'Identifier of the underlying input element.' + }, + { + name: 'inputStyle', + type: 'object', + default: 'null', + description: 'Inline style of the input field.' + }, + { + name: 'inputClass', + type: 'string | object', + default: 'null', + description: 'Style class of the input field.' + }, + { + name: 'inputProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLInputElement to the focusable input element inside the component.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const InputOtpEvents = [ + { + name: 'click', + description: 'Callback to invoke on click.' + }, + { + name: 'change', + description: 'Callback to invoke on value change.' + }, + { + name: 'input', + description: 'Callback to invoke on value change.' + } +]; + +module.exports = { + inputotp: { + name: 'InputOtp', + description: 'InputOtp is used to enter one time passwords.', + props: InputOtpProps, + events: InputOtpEvents + } +}; diff --git a/packages/primevue/scripts/components/inputswitch.js b/packages/primevue/scripts/components/inputswitch.js new file mode 100644 index 0000000000..c4a86f705b --- /dev/null +++ b/packages/primevue/scripts/components/inputswitch.js @@ -0,0 +1,80 @@ +const InputSwitchProps = [ + { + name: 'modelValue', + type: 'boolean', + default: 'null', + description: 'Specifies whether a inputswitch should be checked or not.' + }, + { + name: 'trueValue', + type: 'any', + default: 'null', + description: 'Value in checked state.' + }, + { + name: 'falseValue', + type: 'any', + default: 'null', + description: 'Value in unchecked state.' + }, + { + name: 'inputId', + type: 'string', + default: 'null', + description: 'Identifier of the underlying input element.' + }, + { + name: 'inputStyle', + type: 'object', + default: 'null', + description: 'Inline style of the input field.' + }, + { + name: 'inputClass', + type: 'string | object', + default: 'null', + description: 'Style class of the input field.' + }, + { + name: 'inputProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLInputElement to the focusable input element inside the component.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const InputSwitchEvents = [ + { + name: 'click', + description: 'Callback to invoke on click.' + }, + { + name: 'change', + description: 'Callback to invoke on value change.' + }, + { + name: 'input', + description: 'Callback to invoke on value change.' + } +]; + +module.exports = { + inputswitch: { + name: 'InputSwitch', + description: 'InputSwitch is used to select a boolean value.', + props: InputSwitchProps, + events: InputSwitchEvents + } +}; diff --git a/packages/primevue/scripts/components/inputtext.js b/packages/primevue/scripts/components/inputtext.js new file mode 100644 index 0000000000..439213ce3b --- /dev/null +++ b/packages/primevue/scripts/components/inputtext.js @@ -0,0 +1,46 @@ +const InputTextProps = [ + { + name: 'modelValue', + type: 'any', + default: 'null', + description: 'Value of the component.' + }, + { + name: 'size', + type: 'string', + default: 'null', + description: 'Defines the size of the component, valid values are "small" and "large".' + }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'null', + description: 'Specifies the input variant of the component.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +module.exports = { + inputtext: { + name: 'InputText', + description: 'InputText renders a text field to enter data.', + props: InputTextProps + } +}; diff --git a/packages/primevue/scripts/components/knob.js b/packages/primevue/scripts/components/knob.js new file mode 100644 index 0000000000..7c33022929 --- /dev/null +++ b/packages/primevue/scripts/components/knob.js @@ -0,0 +1,133 @@ +const KnobProps = [ + { + name: 'modelValue', + type: 'number', + default: 'null', + description: 'Value of the component.' + }, + { + name: 'size', + type: 'number', + default: '100', + description: 'Size of the component in pixels.' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should be disabled.' + }, + { + name: 'readonly', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component value cannot be edited.' + }, + { + name: 'step', + type: 'number', + default: 'null', + description: 'Step factor to increment/decrement the value.' + }, + { + name: 'min', + type: 'number', + default: '0', + description: 'Mininum boundary value.' + }, + { + name: 'max', + type: 'number', + default: '100', + description: 'Maximum boundary value.' + }, + { + name: 'valueColor', + type: 'string', + default: 'null', + description: 'Background of the value.' + }, + { + name: 'rangeColor', + type: 'string', + default: 'null', + description: 'Background color of the range.' + }, + { + name: 'textColor', + type: 'string', + default: 'null', + description: 'Color of the value text.' + }, + { + name: 'strokeWidth', + type: 'number', + default: '14', + description: 'Width of the knob stroke.' + }, + { + name: 'showValue', + type: 'boolean', + default: 'true', + description: 'Whether the show the value inside the knob.' + }, + { + name: 'valueTemplate', + type: 'function | string', + default: '{value}', + description: 'Template of the value.' + }, + { + name: 'tabindex', + type: 'number', + default: 'null', + description: 'Index of the element in tabbing order.' + }, + { + name: 'aria-labelledby', + type: 'string', + default: 'null', + description: 'Establishes relationships between the component and label(s) where its value should be one or more element IDs.' + }, + { + name: 'aria-label', + type: 'string', + default: 'null', + description: 'Used to define a string that labels the element.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const KnobEvents = [ + { + name: 'change', + description: 'Callback to invoke when the value changes.', + arguments: [ + { + name: 'value', + type: 'number', + description: 'New value' + } + ] + } +]; + +module.exports = { + knob: { + name: 'Knob', + description: 'Knob is a form component to define number inputs with a dial.', + props: KnobProps, + events: KnobEvents + } +}; diff --git a/packages/primevue/scripts/components/listbox.js b/packages/primevue/scripts/components/listbox.js new file mode 100644 index 0000000000..006761e9c1 --- /dev/null +++ b/packages/primevue/scripts/components/listbox.js @@ -0,0 +1,301 @@ +const ListboxProps = [ + { + name: 'modelValue', + type: 'any', + default: 'null', + description: 'Value of the component.' + }, + { + name: 'options', + type: 'array', + default: 'null', + description: 'An array of selectitems to display as the available options.' + }, + { + name: 'optionLabel', + type: 'string | function', + default: 'null', + description: 'Property name or getter function to use as the label of an option.' + }, + { + name: 'optionValue', + type: 'string | function', + default: 'null', + description: 'Property name or getter function to use as the value of an option, defaults to the option itself when not defined.' + }, + { + name: 'optionDisabled', + type: 'boolean | function', + default: 'null', + description: 'Property name or getter function to use as the disabled flag of an option, defaults to false when not defined.' + }, + { + name: 'optionGroupLabel', + type: 'string | function', + default: 'null', + description: 'Property name or getter function to use as the label of an option group.' + }, + { + name: 'optionGroupChildren', + type: 'string | function', + default: 'null', + description: 'Property name or getter function that refers to the children options of option group.' + }, + { + name: 'listStyle', + type: 'string', + default: 'null', + description: 'Inline style of inner list element.' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'When specified, disables the component.' + }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'dataKey', + type: 'string', + default: 'null', + description: 'A property to uniquely identify an option.' + }, + { + name: 'multiple', + type: 'boolean', + default: 'false', + description: 'When specified, allows selecting multiple values.' + }, + { + name: 'metaKeySelection', + type: 'boolean', + default: 'true', + description: + 'Defines how multiple items can be selected, when true metaKey needs to be pressed to select or unselect an item and when set to false selection of each item can be toggled individually. On touch enabled devices, metaKeySelection is turned off automatically.' + }, + { + name: 'filter', + type: 'boolean', + default: 'false', + description: 'When specified, displays a filter input at header.' + }, + { + name: 'filterPlaceholder', + type: 'string', + default: 'null', + description: 'Placeholder text to show when filter input is empty.' + }, + { + name: 'filterLocale', + type: 'string', + default: 'undefined', + description: "Locale to use in filtering. The default locale is the host environment's current locale." + }, + { + name: 'filterMatchMode', + type: 'string', + default: 'contains', + description: 'Defines the filtering algorithm to use when searching the options. Valid values are "contains" (default), "startsWith" and "endsWith"' + }, + { + name: 'filterFields', + type: 'array', + default: 'null', + description: 'Fields used when filtering the options, defaults to optionLabel.' + }, + { + name: 'filterInputProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLInputElement to the filter input inside the component.' + }, + { + name: 'virtualScrollerOptions', + type: 'object', + default: 'null', + description: 'Whether to use the virtualScroller feature. The properties of VirtualScroller component can be used like an object in it.' + }, + { + name: 'autoOptionFocus', + type: 'boolean', + default: 'false', + description: 'Whether to focus on the first visible or selected element.' + }, + { + name: 'selectOnFocus', + type: 'boolean', + default: 'false', + description: 'When enabled, the focused option is selected.' + }, + { + name: 'filterMessage', + type: 'string', + default: '{0} results are available', + description: 'Text to be displayed in hidden accessible field when filtering returns any results. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'selectionMessage', + type: 'string', + default: '{0} items selected', + description: 'Text to be displayed in hidden accessible field when options are selected. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'emptySelectionMessage', + type: 'string', + default: 'No selected item', + description: 'Text to be displayed in hidden accessible field when any option is not selected. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'emptyFilterMessage', + type: 'string', + default: 'No results found', + description: 'Text to display when filtering does not return any results. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'emptyMessage', + type: 'string', + default: 'No results found', + description: 'Text to display when there are no options available. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'tabindex', + type: 'number', + default: '0', + description: 'Index of the element in tabbing order.' + }, + { + name: 'aria-label', + type: 'string', + default: 'null', + description: 'Defines a string value that labels an interactive element.' + }, + { + name: 'aria-labelledby', + type: 'string', + default: 'null', + description: 'Identifier of the underlying input element.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const ListboxEvents = [ + { + name: 'change', + description: 'Callback to invoke on value change.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.value', + type: 'object', + description: 'Selected option value' + } + ] + }, + { + name: 'focus', + description: 'Callback to invoke when component receives focus.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + }, + { + name: 'blur', + description: 'Callback to invoke when component loses focus.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + }, + { + name: 'filter', + description: 'Callback to invoke on filter input.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.value', + type: 'string', + description: 'Filter value' + } + ] + } +]; + +const ListboxSlots = [ + { + name: 'option', + description: "Custom content for the item's option." + }, + { + name: 'optiongroup', + description: "Custom content for the item's optiongroup." + }, + { + name: 'header', + description: "Custom content for the component's header." + }, + { + name: 'footer', + description: "Custom content for the component's footer." + }, + { + name: 'emptyfilter', + description: 'Custom content when there is no filtered data to display.' + }, + { + name: 'empty', + description: 'Custom content when there is no data to display.' + }, + { + name: 'content', + description: 'Custom content for the virtual scroller.' + }, + { + name: 'loader', + description: 'Custom content for the virtual scroller loader items.' + }, + { + name: 'filtericon', + description: 'Custom filter icon template.' + } +]; + +module.exports = { + listbox: { + name: 'Listbox', + description: 'Listbox is used to select one or more values from a list of items.', + props: ListboxProps, + events: ListboxEvents, + slots: ListboxSlots + } +}; diff --git a/packages/primevue/scripts/components/megamenu.js b/packages/primevue/scripts/components/megamenu.js new file mode 100644 index 0000000000..f65e140427 --- /dev/null +++ b/packages/primevue/scripts/components/megamenu.js @@ -0,0 +1,58 @@ +const MegaMenuProps = [ + { + name: 'modelValue', + type: 'array', + default: 'null', + description: 'An array of menuitems.' + }, + { + name: 'orientation', + type: 'string', + default: 'horizontal', + description: 'Defines the orientation, valid values are horizontal and vertical.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const MegaMenuSlots = [ + { + name: 'start', + description: 'Custom content before the content' + }, + { + name: 'end', + description: 'Custom content after the content' + }, + { + name: 'item', + description: 'Custom item template.' + }, + { + name: 'submenuicon', + description: 'Custom submenu icon template.' + }, + { + name: 'itemicon', + description: 'Custom item icon template.' + } +]; + +module.exports = { + megamenu: { + name: 'MegaMenu', + description: 'MegaMenu is navigation component that displays submenus together.', + props: MegaMenuProps, + slots: MegaMenuSlots + } +}; diff --git a/packages/primevue/scripts/components/menu.js b/packages/primevue/scripts/components/menu.js new file mode 100644 index 0000000000..d657acac3e --- /dev/null +++ b/packages/primevue/scripts/components/menu.js @@ -0,0 +1,88 @@ +const MenuProps = [ + { + name: 'modelValue', + type: 'array', + default: 'null', + description: 'An array of menuitems.' + }, + { + name: 'popup', + type: 'boolean', + default: 'false', + description: 'Defines if menu would displayed as a popup.' + }, + { + name: 'appendTo', + type: 'string', + default: 'body', + description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached.' + }, + { + name: 'baseZIndex', + type: 'number', + default: '0', + description: 'Base zIndex value to use in layering.' + }, + { + name: 'autoZIndex', + type: 'boolean', + default: 'true', + description: 'Whether to automatically manage layering.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const MenuEvents = [ + { + name: 'show', + description: 'Callback to invoke when the overlay is shown.' + }, + { + name: 'hide', + description: 'Callback to invoke when the overlay is hidden.' + } +]; + +const MenuSlots = [ + { + name: 'start', + description: 'Custom start content.' + }, + { + name: 'end', + description: 'Custom end content.' + }, + { + name: 'item', + description: 'Custom item template.' + }, + { + name: 'itemicon', + description: 'Custom item icon template.' + }, + { + name: 'submenuheader', + description: 'Custom submenu header template.' + } +]; + +module.exports = { + menu: { + name: 'Menu', + description: 'Menu is a navigation / command component that supports dynamic and static positioning.', + props: MenuProps, + events: MenuEvents, + slots: MenuSlots + } +}; diff --git a/packages/primevue/scripts/components/menubar.js b/packages/primevue/scripts/components/menubar.js new file mode 100644 index 0000000000..4467600982 --- /dev/null +++ b/packages/primevue/scripts/components/menubar.js @@ -0,0 +1,56 @@ +const MenubarProps = [ + { + name: 'modelValue', + type: 'array', + default: 'null', + description: 'An array of menuitems.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const MenubarSlots = [ + { + name: 'start', + description: 'Custom content before the content.' + }, + { + name: 'end', + description: 'Custom content after the content.' + }, + { + name: 'item', + description: 'Custom menuitem template.' + }, + { + name: 'baricon', + description: 'Custom bar icon template.' + }, + { + name: 'submenuicon', + description: 'Custom submenu icon template.' + }, + { + name: 'itemicon', + description: 'Custom item icon template.' + } +]; + +module.exports = { + menubar: { + name: 'Menubar', + description: 'Menubar is a horizontal menu component.', + props: MenubarProps, + slots: MenubarSlots + } +}; diff --git a/packages/primevue/scripts/components/message.js b/packages/primevue/scripts/components/message.js new file mode 100644 index 0000000000..3adab35feb --- /dev/null +++ b/packages/primevue/scripts/components/message.js @@ -0,0 +1,93 @@ +const MessageProps = [ + { + name: 'severity', + type: 'string', + default: 'info', + description: 'Severity level of the message. Valid severities are "success", "info", "warn", "error", "secondary" and "contrast".' + }, + { + name: 'closable', + type: 'boolean', + default: 'true', + description: 'Whether the message can be closed manually using the close icon.' + }, + { + name: 'sticky', + type: 'boolean', + default: 'null', + description: 'When enabled, message is not removed automatically.' + }, + { + name: 'life', + type: 'number', + default: '300', + description: 'Delay in milliseconds to close the message automatically.' + }, + { + name: 'icon', + type: 'string', + default: 'undefined', + description: 'Display a custom icon for the message.' + }, + { + name: 'closeIcon', + type: 'string', + default: 'undefined', + description: 'Display a custom close icon for the message.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const MessageSlots = [ + { + name: 'messageicon', + description: 'Custom message icon template.' + }, + { + name: 'closeicon', + description: 'Custom close icon template.' + }, + { + name: 'container', + description: 'Custom container template.' + } +]; + +const MessageEvents = [ + { + name: 'close', + description: 'Callback to invoke when a message is closed.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + }, + { + name: 'life-end', + description: "Callback to invoke when the message's timeout is over." + } +]; + +module.exports = { + message: { + name: 'Message', + description: 'Messages is used to display inline messages with various severities.', + props: MessageProps, + slots: MessageSlots, + events: MessageEvents + } +}; diff --git a/packages/primevue/scripts/components/multiselect.js b/packages/primevue/scripts/components/multiselect.js new file mode 100644 index 0000000000..35ef212302 --- /dev/null +++ b/packages/primevue/scripts/components/multiselect.js @@ -0,0 +1,500 @@ +const MultiSelectProps = [ + { + name: 'modelValue', + type: 'any', + default: 'null', + description: 'Value of the component.' + }, + { + name: 'options', + type: 'array', + default: 'null', + description: 'An array of selectitems to display as the available options.' + }, + { + name: 'optionLabel', + type: 'string', + default: 'null', + description: 'Property name or getter function to use as the label of an option.' + }, + { + name: 'optionValue', + type: 'string | function', + default: 'null', + description: 'Property name or getter function to use as the value of an option, defaults to the option itself when not defined.' + }, + { + name: 'optionDisabled', + type: 'boolean | function', + default: 'null', + description: 'Property name or getter function to use as the disabled flag of an option, defaults to false when not defined.' + }, + { + name: 'optionGroupLabel', + type: 'string | function', + default: 'null', + description: 'Property name or getter function to use as the label of an option group.' + }, + { + name: 'optionGroupChildren', + type: 'string | function', + default: 'null', + description: 'Property name or getter function that refers to the children options of option group.' + }, + { + name: 'scrollHeight', + type: 'string', + default: '200px', + description: 'Height of the viewport, a scrollbar is defined if height of list exceeds this value.' + }, + { + name: 'placeholder', + type: 'string', + default: 'null', + description: 'Label to display when there are no selections.' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should be disabled.' + }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'null', + description: 'Specifies the input variant of the component.' + }, + { + name: 'inputId', + type: 'string', + default: 'null', + description: 'Identifier of the underlying input element.' + }, + { + name: 'inputProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLInputElement to the focusable input element inside the component.' + }, + { + name: 'panelStyle', + type: 'object', + default: 'null', + description: 'Inline style of the overlay panel.' + }, + { + name: 'panelClass', + type: 'string', + default: 'null', + description: 'Style class of the overlay panel.' + }, + { + name: 'panelProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLDivElement to the overlay panel.' + }, + { + name: 'filterInputProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLInputElement to the filter input inside the overlay panel.' + }, + { + name: 'closeButtonProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLButtonElement to the close button inside the overlay panel.' + }, + { + name: 'dataKey', + type: 'string', + default: 'null', + description: 'A property to uniquely identify an option.' + }, + { + name: 'filter', + type: 'boolean', + default: 'false', + description: 'When specified, displays a filter input at header.' + }, + { + name: 'filterPlaceholder', + type: 'string', + default: 'null', + description: 'Placeholder text to show when filter input is empty.' + }, + { + name: 'filterLocale', + type: 'string', + default: 'undefined', + description: "Locale to use in filtering. The default locale is the host environment's current locale." + }, + { + name: 'filterMatchMode', + type: 'string', + default: 'contains', + description: 'Defines the filtering algorithm to use when searching the options. Valid values are "contains" (default), "startsWith" and "endsWith"' + }, + { + name: 'filterFields', + type: 'array', + default: 'null', + description: 'Fields used when filtering the options, defaults to optionLabel.' + }, + { + name: 'appendTo', + type: 'string', + default: 'body', + description: "A valid query selector or an HTMLElement to specify where the overlay gets attached. Special keywords are 'body' for document body and 'self' for the element itself." + }, + { + name: 'display', + type: 'string', + default: 'comma', + description: 'Defines how the selected items are displayed, valid values are "comma" and "chip".' + }, + { + name: 'selectedItemsLabel', + type: 'string', + default: '{0} items selected', + description: 'Label to display after exceeding max selected labels.' + }, + { + name: 'maxSelectedLabels', + type: 'number', + default: 'null', + description: 'Decides how many selected item labels to show at most.' + }, + { + name: 'selectionLimit', + type: 'number', + default: 'null', + description: 'Maximum number of selectable items.' + }, + { + name: 'showToggleAll', + type: 'boolean', + default: 'false', + description: 'Whether to show the header checkbox to toggle the selection of all items at once.' + }, + { + name: 'loading', + type: 'boolean', + default: 'false', + description: 'Whether the multiselect is in loading state.' + }, + { + name: 'loadingIcon', + type: 'string', + default: 'null', + description: 'Icon to display in loading state.' + }, + { + name: 'checkboxIcon', + type: 'string', + default: 'null', + description: 'Icon to display in the checkboxes.' + }, + { + name: 'closeIcon', + type: 'string', + default: 'null', + description: 'Icon to display in the dropdown close button.' + }, + { + name: 'dropdownIcon', + type: 'string', + default: 'null', + description: 'Icon to display in the dropdown.' + }, + { + name: 'filterIcon', + type: 'string', + default: 'null', + description: 'Icon to display in filter input.' + }, + { + name: 'removeTokenIcon', + type: 'string', + default: 'null', + description: 'Icon to display in chip remove action.' + }, + { + name: 'selectAll', + type: 'boolean', + default: 'false', + description: 'Whether all data is selected.' + }, + { + name: 'resetFilterOnHide', + type: 'boolean', + default: 'false', + description: 'Clears the filter value when hiding the dropdown.' + }, + { + name: 'virtualScrollerOptions', + type: 'object', + default: 'null', + description: 'Whether to use the virtualScroller feature. The properties of VirtualScroller component can be used like an object in it.' + }, + { + name: 'autoOptionFocus', + type: 'boolean', + default: 'false', + description: 'Whether to focus on the first visible or selected element when the overlay panel is shown.' + }, + { + name: 'autoFilterFocus', + type: 'boolean', + default: 'false', + description: 'Whether to focus on the filter element when the overlay panel is shown.' + }, + { + name: 'highlightOnSelect', + type: 'boolean', + default: 'false', + description: 'Highlights automatically the first item.' + }, + { + name: 'filterMessage', + type: 'string', + default: '{0} results are available', + description: 'Text to be displayed in hidden accessible field when filtering returns any results. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'selectionMessage', + type: 'string', + default: '{0} items selected', + description: 'Text to be displayed in hidden accessible field when options are selected. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'emptySelectionMessage', + type: 'string', + default: 'No selected item', + description: 'Text to be displayed in hidden accessible field when any option is not selected. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'emptyFilterMessage', + type: 'string', + default: 'No results found', + description: 'Text to display when filtering does not return any results. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'emptyMessage', + type: 'string', + default: 'No results found', + description: 'Text to display when there are no options available. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'tabindex', + type: 'number', + default: '0', + description: 'Index of the element in tabbing order.' + }, + { + name: 'aria-label', + type: 'string', + default: 'null', + description: 'Defines a string value that labels an interactive element.' + }, + { + name: 'aria-labelledby', + type: 'string', + default: 'null', + description: 'Identifier of the underlying input element.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const MultiSelectEvents = [ + { + name: 'change', + description: 'Callback to invoke on value change.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.value', + type: 'array', + description: 'Selected option value' + } + ] + }, + { + name: 'focus', + description: 'Callback to invoke when component receives focus.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + }, + { + name: 'blur', + description: 'Callback to invoke when component loses focus.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + }, + { + name: 'before-show', + description: 'Callback to invoke before the overlay is shown.' + }, + { + name: 'before-hide', + description: 'Callback to invoke before the overlay is hidden.' + }, + { + name: 'show', + description: 'Callback to invoke when the overlay is shown.' + }, + { + name: 'hide', + description: 'Callback to invoke when the overlay is hidden.' + }, + { + name: 'filter', + description: 'Callback to invoke on filter input.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.value', + type: 'string', + description: 'Filter value' + } + ] + }, + { + name: 'selectall-change', + description: 'Callback to invoke when all data is selected.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.checked', + type: 'boolean', + description: 'Whether all data is selected.' + } + ] + } +]; + +const MultiSelectSlots = [ + { + name: 'value', + description: 'Custom content for the item value.' + }, + { + name: 'chip', + description: 'Custom content for the chip display.' + }, + { + name: 'indicator', + description: 'Custom content for the dropdown indicator.' + }, + { + name: 'header', + description: "Custom content for the component's header." + }, + { + name: 'footer', + description: "Custom content for the component's footer." + }, + { + name: 'option', + description: "Custom content for the item's option." + }, + { + name: 'optiongroup', + description: "Custom content for the item's optiongroup." + }, + { + name: 'emptyfilter', + description: 'Custom content when there is no filtered data to display.' + }, + { + name: 'empty', + description: 'Custom content when there is no data to display.' + }, + { + name: 'content', + description: 'Custom content for the virtual scroller.' + }, + { + name: 'loader', + description: 'Custom content for the virtual scroller loader items.' + }, + { + name: 'removetokenicon', + description: 'Custom remove token icon template.' + }, + { + name: 'headercheckboxicon', + description: 'Custom header checkbox icon template.' + }, + { + name: 'filtericon', + description: 'Custom filter icon template.' + }, + { + name: 'closeicon', + description: 'Custom close icon template.' + }, + { + name: 'itemcheckboxicon', + description: 'Custom item checkbox icon template.' + }, + { + name: 'loadingicon', + description: 'Custom loading icon template.' + }, + { + name: 'dropdownicon', + description: 'Custom dropdown icon template.' + } +]; + +module.exports = { + multiselect: { + name: 'MultiSelect', + description: 'MultiSelect is used to multiple values from a list of options.', + props: MultiSelectProps, + events: MultiSelectEvents, + slots: MultiSelectSlots + } +}; diff --git a/packages/primevue/scripts/components/orderlist.js b/packages/primevue/scripts/components/orderlist.js new file mode 100644 index 0000000000..8814706447 --- /dev/null +++ b/packages/primevue/scripts/components/orderlist.js @@ -0,0 +1,154 @@ +const OrderListProps = [ + { + name: 'modelValue', + type: 'array', + default: 'null', + description: 'Value of the component.' + }, + { + name: 'selection', + type: 'any', + default: 'null', + description: 'Selected items in the list.' + }, + { + name: 'metaKeySelection', + type: 'boolean', + default: 'true', + description: + 'Defines whether metaKey is requred or not for the selection. When true metaKey needs to be pressed to select or unselect an item and when set to false selection of each item can be toggled individually. On touch enabled devices, metaKeySelection is turned off automatically.' + }, + { + name: 'autoOptionFocus', + type: 'boolean', + default: 'false', + description: 'Whether to focus on the first visible or selected element when the overlay panel is shown.' + }, + { + name: 'dataKey', + type: 'string', + default: 'null', + description: 'Name of the field that uniquely identifies the a record in the data.' + }, + { + name: 'listStyle', + type: 'object', + default: 'null', + description: 'Inline style of the the list element.' + }, + { + name: 'responsive', + type: 'boolean', + default: 'true', + description: 'Whether the list optimizes layout based on screen size.' + }, + { + name: 'breakpoint', + type: 'string', + default: '960px', + description: 'The breakpoint to define the maximum width boundary when responsiveness is enabled.' + }, + { + name: 'striped', + type: 'boolean', + default: 'false', + description: 'Whether to displays rows with alternating colors.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const OrderListEvents = [ + { + name: 'reorder', + description: 'Callback to invoke when the list is reordered.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.value', + type: 'array', + description: 'Ordered list' + }, + { + name: 'event.direction', + type: 'string', + description: 'Direction of the change; "up", "down", "bottom", "top"' + } + ] + }, + { + name: 'selection-change', + description: 'Callback to invoke when selection changes.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.value', + type: 'array', + description: 'Ordered list' + } + ] + } +]; + +const OrderListSlots = [ + { + name: 'header', + description: "Custom content for the component's header." + }, + { + name: 'item', + description: 'Custom content for the item.' + }, + { + name: 'controlsstart', + description: 'Custom content before the buttons.' + }, + { + name: 'controlsend', + description: 'Custom content after the buttons.' + }, + { + name: 'movetopicon', + description: 'Custom move top icon template.' + }, + { + name: 'moveupicon', + description: 'Custom move up icon template.' + }, + { + name: 'movedownicon', + description: 'Custom move down icon template.' + }, + { + name: 'movebottomicon', + description: 'Custom move bottom icon template.' + } +]; + +module.exports = { + orderlist: { + name: 'OrderList', + description: 'OrderList is used to managed the order of a collection.', + props: OrderListProps, + events: OrderListEvents, + slots: OrderListSlots + } +}; diff --git a/packages/primevue/scripts/components/organizationchart.js b/packages/primevue/scripts/components/organizationchart.js new file mode 100644 index 0000000000..6967128957 --- /dev/null +++ b/packages/primevue/scripts/components/organizationchart.js @@ -0,0 +1,108 @@ +const OrganizationChartProps = [ + { + name: 'value', + type: 'any', + default: 'null', + description: 'Value of the component.' + }, + { + name: 'selectionKeys', + type: 'object', + default: 'null', + description: 'A map instance of key-value pairs to represented the selected nodes.' + }, + { + name: 'selectionMode', + type: 'string', + default: 'null', + description: 'Type of the selection, valid values are "single" and "multiple".' + }, + { + name: 'collapsible', + type: 'boolean', + default: 'false', + description: 'Whether the nodes can be expanded or toggled.' + }, + { + name: 'collapsedKeys', + type: 'object', + default: 'null', + description: 'A map instance of key-value pairs to represented the collapsed nodes.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const OrganizationChartEvents = [ + { + name: 'node-select', + description: 'Callback to invoke when a node is selected.', + arguments: [ + { + name: 'node', + type: 'object', + description: 'Node instance' + } + ] + }, + { + name: 'node-unselect', + description: 'Callback to invoke when a node is unselected.', + arguments: [ + { + name: 'node', + type: 'object', + description: 'Node instance' + } + ] + }, + { + name: 'node-expand', + description: 'Callback to invoke when a node is expanded.', + arguments: [ + { + name: 'node', + type: 'object', + description: 'Node instance' + } + ] + }, + { + name: 'node-collapse', + description: 'Callback to invoke when a node is collapsed.', + arguments: [ + { + name: 'node', + type: 'object', + description: 'Node instance' + } + ] + } +]; + +const OrganizationChartSlots = [ + { + name: 'toggleicon', + description: 'Custom toggler icon template.' + } +]; + +module.exports = { + organizationchart: { + name: 'OrganizationChart', + description: 'OrganizationChart visualizes hierarchical organization data.', + props: OrganizationChartProps, + events: OrganizationChartEvents, + slots: OrganizationChartSlots + } +}; diff --git a/packages/primevue/scripts/components/overlaypanel.js b/packages/primevue/scripts/components/overlaypanel.js new file mode 100644 index 0000000000..f9b0af4d06 --- /dev/null +++ b/packages/primevue/scripts/components/overlaypanel.js @@ -0,0 +1,100 @@ +const OverlayPanelProps = [ + { + name: 'dismissable', + type: 'boolean', + default: 'true', + description: 'Enables to hide the overlay when outside is clicked.' + }, + { + name: 'showCloseIcon', + type: 'boolean', + default: 'false', + description: 'When enabled, displays a close icon at top right corner.' + }, + { + name: 'appendTo', + type: 'string', + default: 'body', + description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached.' + }, + { + name: 'baseZIndex', + type: 'number', + default: '0', + description: 'Base zIndex value to use in layering.' + }, + { + name: 'autoZIndex', + type: 'boolean', + default: 'true', + description: 'Whether to automatically manage layering.' + }, + { + name: 'ariaCloseLabel', + type: 'string', + default: 'close', + description: 'Aria label of the close icon.' + }, + { + name: 'breakpoints', + type: 'object', + default: 'null', + description: 'Object literal to define widths per screen size.' + }, + { + name: 'closeIcon', + type: 'string', + default: 'undefined', + description: 'Display a custom close icon for the message.' + }, + { + name: 'closeOnEscape', + type: 'boolean', + default: 'true', + description: 'Specifies if pressing escape key should hide the dialog.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const OverlayPanelSlots = [ + { + name: 'closeicon', + description: 'Custom close icon template.' + } +]; + +const OverlayPanelEvents = [ + { + name: 'show', + description: 'Callback to invoke before the overlay is shown.' + }, + { + name: 'hide', + description: 'Callback to invoke before the overlay is hidden.' + }, + { + name: 'container', + description: 'Custom container template.' + } +]; + +module.exports = { + overlaypanel: { + name: 'OverlayPanel', + description: 'OverlayPanel is a container component positioned as connected to its target.', + props: OverlayPanelProps, + slots: OverlayPanelSlots, + events: OverlayPanelEvents + } +}; diff --git a/packages/primevue/scripts/components/paginator.js b/packages/primevue/scripts/components/paginator.js new file mode 100644 index 0000000000..0cc4c1d235 --- /dev/null +++ b/packages/primevue/scripts/components/paginator.js @@ -0,0 +1,128 @@ +const PaginatorProps = [ + { + name: 'totalRecords', + type: 'number', + default: '0', + description: 'Number of total records.' + }, + { + name: 'rows', + type: 'number', + default: '0', + description: 'Data count to display per page.' + }, + { + name: 'first', + type: 'number', + default: '0', + description: 'Zero-relative number of the first row to be displayed.' + }, + { + name: 'pageLinkSize', + type: 'number', + default: '5', + description: 'Number of page links to display.' + }, + { + name: 'rowsPerPageOptions', + type: 'array', + default: 'null', + description: 'Array of integer values to display inside rows per page dropdown.' + }, + { + name: 'template', + type: 'string', + default: 'FirstPageLink PrevPageLink PageLinks NextPageLink LastPageLink RowsPerPageDropdown', + description: 'Template of the paginator.' + }, + { + name: 'currentPageReportTemplate', + type: 'string', + default: '({currentPage} of {totalPages})', + description: 'Template of the current page report element. Available placeholders are {currentPage},{totalPages},{rows},{first},{last} and {totalRecords}' + }, + { + name: 'alwaysShow', + type: 'boolean', + default: 'true', + description: 'Whether to show the paginator even there is only one page.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const PaginatorEvents = [ + { + name: 'page', + description: 'Callback to invoke when page changes, the event object contains information about the new state.', + arguments: [ + { + name: 'event.page', + type: 'number', + description: 'New page number' + }, + { + name: 'event.first', + type: 'number', + description: 'Index of first record' + }, + { + name: 'event.rows', + type: 'number', + description: 'Number of rows to display in new page' + }, + { + name: 'event.pageCount', + type: 'number', + description: 'Total number of pages' + } + ] + } +]; + +const PaginatorSlots = [ + { + name: 'start', + description: "Custom content for the component's left side." + }, + { + name: 'end', + description: "Custom content for the component's right side." + }, + { + name: 'firstpagelinkicon', + description: 'Custom first page link icon template.' + }, + { + name: 'prevpagelinkicon', + description: 'Custom previous page link icon template.' + }, + { + name: 'nextpagelinkicon', + description: 'Custom next page link icon template.' + }, + { + name: 'lastpagelinkicon', + description: 'Custom last page link icon template.' + } +]; + +module.exports = { + paginator: { + name: 'Paginator', + description: 'Paginator is a generic component to display content in paged format.', + props: PaginatorProps, + events: PaginatorEvents, + slots: PaginatorSlots + } +}; diff --git a/packages/primevue/scripts/components/panel.js b/packages/primevue/scripts/components/panel.js new file mode 100644 index 0000000000..f49cb01b40 --- /dev/null +++ b/packages/primevue/scripts/components/panel.js @@ -0,0 +1,86 @@ +const PanelProps = [ + { + name: 'header', + type: 'string', + default: 'null', + description: 'Header text of the panel.' + }, + { + name: 'toggleable', + type: 'boolean', + default: 'null', + description: 'Defines if content of panel can be expanded and collapsed.' + }, + { + name: 'collapsed', + type: 'boolean', + default: 'null', + description: 'Defines the initial state of panel content.' + }, + { + name: 'toggleButtonProps', + type: 'string', + default: 'null', + description: 'Used to pass the custom value to read for the anchor inside the component.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const PanelEvents = [ + { + name: 'toggle', + description: 'Callback to invoke when a tab toggle.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.value', + type: 'boolean', + description: 'collapsed state as a boolean' + } + ] + } +]; + +const PanelSlots = [ + { + name: 'header', + description: "Custom content for the component's header." + }, + { + name: 'icons', + description: "Custom content for the header's icon." + }, + { + name: 'toggleicon', + description: "Custom content for the component's toggler icon." + }, + { + name: 'footer', + description: "Custom content for the component's footer." + } +]; + +module.exports = { + panel: { + name: 'Panel', + description: 'Panel is a container with the optional content toggle feature.', + props: PanelProps, + events: PanelEvents, + slots: PanelSlots + } +}; diff --git a/packages/primevue/scripts/components/panelmenu.js b/packages/primevue/scripts/components/panelmenu.js new file mode 100644 index 0000000000..d1a2c88632 --- /dev/null +++ b/packages/primevue/scripts/components/panelmenu.js @@ -0,0 +1,54 @@ +const PanelMenuProps = [ + { + name: 'model', + type: 'array', + default: 'null', + description: 'An array of menuitems.' + }, + { + name: 'expandedKeys', + type: 'object', + default: 'null', + description: 'A map of keys to represent the expansion state in controlled mode.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const PanelMenuSlots = [ + { + name: 'item', + description: 'Custom item template.' + }, + { + name: 'submenuicon', + description: 'Custom submenu icon template.' + }, + { + name: 'headericon', + description: 'Custom header icon template.' + }, + { + name: 'itemicon', + description: 'Custom item icon template.' + } +]; + +module.exports = { + panelmenu: { + name: 'PanelMenu', + description: 'PanelMenu is a hybrid of Accordion and Tree components', + props: PanelMenuProps, + slots: PanelMenuSlots + } +}; diff --git a/packages/primevue/scripts/components/password.js b/packages/primevue/scripts/components/password.js new file mode 100644 index 0000000000..19011e585f --- /dev/null +++ b/packages/primevue/scripts/components/password.js @@ -0,0 +1,211 @@ +const PasswordProps = [ + { + name: 'modelValue', + type: 'any', + default: 'null', + description: 'Value of the component.' + }, + { + name: 'inputId', + type: 'string', + default: 'null', + description: 'Identifier of the underlying input element.' + }, + { + name: 'promptLabel', + type: 'string', + default: 'null', + description: 'Text to prompt password entry. Defaults to PrimeVue Locale configuration.' + }, + { + name: 'mediumRegex', + type: 'string', + default: '^(((?=.*[a-z])(?=.*[A-Z]))|((?=.*[a-z])(?=.*[0-9]))|((?=.*[A-Z])(?=.*[0-9])))(?=.{6,})', + description: 'Regex for a medium level password.' + }, + { + name: 'strongRegex', + type: 'string', + default: '^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.{8,})', + description: 'Regex for a strong level password.' + }, + { + name: 'weakLabel', + type: 'string', + default: 'null', + description: 'Text for a weak password. Defaults to PrimeVue Locale configuration.' + }, + { + name: 'mediumLabel', + type: 'string', + default: 'null', + description: 'Text for a medium password. Defaults to PrimeVue Locale configuration.' + }, + { + name: 'strongLabel', + type: 'string', + default: 'null', + description: 'Text for a strong password. Defaults to PrimeVue Locale configuration.' + }, + { + name: 'feedback', + type: 'boolean', + default: 'true', + description: 'Whether to show the strength indicator or not.' + }, + { + name: 'toogleMask', + type: 'boolean', + default: 'false', + description: 'Whether to show an icon to display the password as plain text.' + }, + { + name: 'appendTo', + type: 'string', + default: 'body', + description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached. Special keywords are "body" for document body and "self" for the element itself.' + }, + { + name: 'hideIcon', + type: 'string', + default: 'null', + description: 'Icon to hide displaying the password as plain text.' + }, + { + name: 'showIcon', + type: 'string', + default: 'null', + description: 'Icon to show displaying the password as plain text.' + }, + { + name: 'placeholder', + type: 'string', + default: 'null', + description: 'Placeholder text for the input.' + }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'null', + description: 'Specifies the input variant of the component.' + }, + { + name: 'required', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that an input field must be filled out before submitting the form.' + }, + { + name: 'inputId', + type: 'string', + default: 'null', + description: 'Identifier of the underlying input element.' + }, + { + name: 'inputStyle', + type: 'object', + default: 'null', + description: 'Inline style of the input field.' + }, + { + name: 'inputClass', + type: 'string | object', + default: 'null', + description: 'Style class of the input field.' + }, + { + name: 'inputProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLInputElement to the focusable input element inside the component.' + }, + { + name: 'panelId', + type: 'string', + default: 'null', + description: 'Identifier of the underlying overlay panel element.' + }, + { + name: 'panelClass', + type: 'string | object', + default: 'null', + description: 'Style class of the overlay panel.' + }, + { + name: 'panelStyle', + type: 'object', + default: 'null', + description: 'Inline style of the overlay panel.' + }, + { + name: 'panelProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLDivElement to the overlay panel inside the component.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const PasswordSlots = [ + { + name: 'header', + description: "Custom content for the component's header." + }, + { + name: 'content', + description: 'Custom content for the component.' + }, + { + name: 'footer', + description: "Custom content for the component's footer." + }, + { + name: 'hideicon', + description: 'Custom content for the hide icon.' + }, + { + name: 'showicon', + description: 'Custom content for the show icon.' + } +]; + +const PasswordEmits = [ + { + name: 'change', + description: 'Callback to invoke on value change.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + } +]; + +module.exports = { + password: { + name: 'Password', + description: 'Password displays strength indicator for password fields.', + props: PasswordProps, + slots: PasswordSlots, + events: PasswordEmits + } +}; diff --git a/packages/primevue/scripts/components/picklist.js b/packages/primevue/scripts/components/picklist.js new file mode 100644 index 0000000000..2638f17c56 --- /dev/null +++ b/packages/primevue/scripts/components/picklist.js @@ -0,0 +1,275 @@ +const PickListProps = [ + { + name: 'modelValue', + type: 'array', + default: 'null', + description: 'Value of the component as a multidimensional array.' + }, + { + name: 'selection', + type: 'array', + default: 'null', + description: 'Selected items in the list as a multidimensional array.' + }, + { + name: 'metaKeySelection', + type: 'boolean', + default: 'true', + description: + 'Defines whether metaKey is requred or not for the selection. When true metaKey needs to be pressed to select or unselect an item and when set to false selection of each item can be toggled individually. On touch enabled devices, metaKeySelection is turned off automatically.' + }, + { + name: 'autoOptionFocus', + type: 'boolean', + default: 'false', + description: 'Whether to focus on the first visible or selected element when the overlay panel is shown.' + }, + { + name: 'dataKey', + type: 'string', + default: 'null', + description: 'Name of the field that uniquely identifies the a record in the data.' + }, + { + name: 'listStyle', + type: 'object', + default: 'null', + description: 'Inline style of the the list element.' + }, + { + name: 'responsive', + type: 'boolean', + default: 'true', + description: 'Whether the list optimizes layout based on screen size.' + }, + { + name: 'breakpoint', + type: 'string', + default: '960px', + description: 'The breakpoint to define the maximum width boundary when responsiveness is enabled.' + }, + { + name: 'striped', + type: 'boolean', + default: 'false', + description: 'Whether to displays rows with alternating colors.' + }, + { + name: 'showSourceControls', + type: 'boolean', + default: 'true', + description: 'Whether to show buttons of source list.' + }, + { + name: 'showTargetControls', + type: 'boolean', + default: 'true', + description: 'Whether to show buttons of target list.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const PickListEvents = [ + { + name: 'reorder', + description: 'Callback to invoke when the list is reordered.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.value', + type: 'array', + description: 'Ordered list' + }, + { + name: 'event.direction', + type: 'string', + description: 'Direction of the change; "up", "down", "bottom", "top"' + }, + { + name: 'event.listIndex', + type: 'number', + description: 'Index of the list that is ordered, 0 represents the source and 1 represents the target list.' + } + ] + }, + { + name: 'move-to-target', + description: 'Callback to invoke when one or more items are moved to the target list.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.items', + type: 'object', + description: 'Moved items' + } + ] + }, + { + name: 'move-all-to-target', + description: 'Callback to invoke when all items are moved to the target list.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.items', + type: 'object', + description: 'Moved items' + } + ] + }, + { + name: 'move-to-source', + description: 'Callback to invoke when one or more items are moved to the source list.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.items', + type: 'object', + description: 'Moved items' + } + ] + }, + { + name: 'move-all-to-source', + description: 'Callback to invoke when all items are moved to the source list.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.items', + type: 'object', + description: 'Moved items' + } + ] + }, + { + name: 'selection-change', + description: 'Callback to invoke when one or more items are moved to the other list.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.value', + type: 'array', + description: 'Selected items' + } + ] + } +]; + +const PickListSlots = [ + { + name: 'header', + description: 'Custom header template.' + }, + { + name: 'sourceheader', + description: "Custom content for the component's source header." + }, + { + name: 'item', + description: 'Custom content for the item.' + }, + { + name: 'targetheader', + description: "Custom content for the component's target header." + }, + { + name: 'sourcecontrolsstart', + description: 'Custom content before source control buttons.' + }, + { + name: 'sourcecontrolsend', + description: 'Custom content after source control buttons.' + }, + { + name: 'movecontrolsstart', + description: 'Custom content before move buttons.' + }, + { + name: 'movecontrolsend', + description: 'Custom content after move buttons.' + }, + { + name: 'targetcontrolsstart', + description: 'Custom content before target control buttons.' + }, + { + name: 'targetcontrolsend', + description: 'Custom content after target control buttons.' + }, + { + name: 'moveupicon', + description: 'Custom move up icon template.' + }, + { + name: 'movetopicon', + description: 'Custom move top icon template.' + }, + { + name: 'movedownicon', + description: 'Custom move down icon template.' + }, + { + name: 'movebottomicon', + description: 'Custom move bottom icon template.' + }, + { + name: 'movetotargeticon', + description: 'Custom move to target icon template.' + }, + { + name: 'movealltotargeticon', + description: 'Custom move all to target icon template.' + }, + { + name: 'movetosourceicon', + description: 'Custom move to source icon template.' + }, + { + name: 'movealltosourceicon', + description: 'Custom move all to source icon template.' + } +]; + +module.exports = { + picklist: { + name: 'PickList', + description: 'PickList is used to reorder items between different lists.', + props: PickListProps, + events: PickListEvents, + slots: PickListSlots + } +}; diff --git a/packages/primevue/scripts/components/popover.js b/packages/primevue/scripts/components/popover.js new file mode 100644 index 0000000000..87cb7c5af2 --- /dev/null +++ b/packages/primevue/scripts/components/popover.js @@ -0,0 +1,100 @@ +const PopoverProps = [ + { + name: 'dismissable', + type: 'boolean', + default: 'true', + description: 'Enables to hide the overlay when outside is clicked.' + }, + { + name: 'showCloseIcon', + type: 'boolean', + default: 'false', + description: 'When enabled, displays a close icon at top right corner.' + }, + { + name: 'appendTo', + type: 'string', + default: 'body', + description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached.' + }, + { + name: 'baseZIndex', + type: 'number', + default: '0', + description: 'Base zIndex value to use in layering.' + }, + { + name: 'autoZIndex', + type: 'boolean', + default: 'true', + description: 'Whether to automatically manage layering.' + }, + { + name: 'ariaCloseLabel', + type: 'string', + default: 'close', + description: 'Aria label of the close icon.' + }, + { + name: 'breakpoints', + type: 'object', + default: 'null', + description: 'Object literal to define widths per screen size.' + }, + { + name: 'closeIcon', + type: 'string', + default: 'undefined', + description: 'Display a custom close icon for the message.' + }, + { + name: 'closeOnEscape', + type: 'boolean', + default: 'true', + description: 'Specifies if pressing escape key should hide the dialog.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const PopoverSlots = [ + { + name: 'closeicon', + description: 'Custom close icon template.' + } +]; + +const PopoverEvents = [ + { + name: 'show', + description: 'Callback to invoke before the overlay is shown.' + }, + { + name: 'hide', + description: 'Callback to invoke before the overlay is hidden.' + }, + { + name: 'container', + description: 'Custom container template.' + } +]; + +module.exports = { + overlaypanel: { + name: 'Popover', + description: 'Popover is a container component positioned as connected to its target.', + props: PopoverProps, + slots: PopoverSlots, + events: PopoverEvents + } +}; diff --git a/packages/primevue/scripts/components/portal.js b/packages/primevue/scripts/components/portal.js new file mode 100644 index 0000000000..f0dd3166ed --- /dev/null +++ b/packages/primevue/scripts/components/portal.js @@ -0,0 +1,28 @@ +const PortalProps = [ + { + name: 'appendTo', + type: 'string', + default: 'body', + description: 'A valid query selector or an HTMLElement to specify where the dialog gets attached. Special keywords are "body" for document body and "self" for the element itself.' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'If disabled, the Portal feature is eliminated and the content is displayed directly.' + } +]; + +const PortalEvents = []; + +const PortalSlots = []; + +module.exports = { + portal: { + name: 'Portal', + description: 'Portal moves its container to a specific location based on target elements. Basically it uses in the background.', + props: PortalProps, + events: PortalEvents, + slots: PortalSlots + } +}; diff --git a/packages/primevue/scripts/components/progressbar.js b/packages/primevue/scripts/components/progressbar.js new file mode 100644 index 0000000000..8ac15386b6 --- /dev/null +++ b/packages/primevue/scripts/components/progressbar.js @@ -0,0 +1,40 @@ +const ProgressbarProps = [ + { + name: 'value', + type: 'number', + default: 'null', + description: 'Current value of the progress.' + }, + { + name: 'mode', + type: 'string', + default: 'determinate', + description: 'Defines the mode of the progress, valid values are "determinate" and "indeterminate".' + }, + { + name: 'showValue', + type: 'boolean', + default: 'true', + description: 'Whether to display the progress bar value.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +module.exports = { + progressbar: { + name: 'ProgressBar', + description: 'ProgressBar is a process status indicator.', + props: ProgressbarProps + } +}; diff --git a/packages/primevue/scripts/components/progressspinner.js b/packages/primevue/scripts/components/progressspinner.js new file mode 100644 index 0000000000..4a492e057e --- /dev/null +++ b/packages/primevue/scripts/components/progressspinner.js @@ -0,0 +1,40 @@ +const ProgressSpinnerProps = [ + { + name: 'strokeWidth', + type: 'string', + default: '2', + description: 'Width of the circle stroke.' + }, + { + name: 'fill', + type: 'string', + default: 'null', + description: 'Color for the background of the circle.' + }, + { + name: 'animationDuration', + type: 'string', + default: '2s', + description: 'Duration of the rotate animation.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +module.exports = { + progressspinner: { + name: 'ProgressSpinner', + description: 'ProgressSpinner is a process status indicator', + props: ProgressSpinnerProps + } +}; diff --git a/packages/primevue/scripts/components/radiobutton.js b/packages/primevue/scripts/components/radiobutton.js new file mode 100644 index 0000000000..b843d753f4 --- /dev/null +++ b/packages/primevue/scripts/components/radiobutton.js @@ -0,0 +1,120 @@ +const RadioButtonProps = [ + { + name: 'value', + type: 'any', + default: 'null', + description: 'Value of the checkbox.' + }, + { + name: 'modelValue', + type: 'any', + default: 'null', + description: 'Value binding of the checkbox.' + }, + { + name: 'name', + type: 'string', + default: 'null', + description: 'Name of the input element.' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the element should be disabled.' + }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'null', + description: 'Specifies the input variant of the component.' + }, + { + name: 'inputId', + type: 'string', + default: 'null', + description: 'Identifier of the underlying input element.' + }, + { + name: 'inputClass', + type: 'string | object', + default: 'null', + description: 'Style class of the input field.' + }, + { + name: 'inputStyle', + type: 'object', + default: 'null', + description: 'Inline style of the input field.' + }, + { + name: 'inputProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLInputElement to the focusable input element inside the component.' + }, + { + name: 'aria-labelledby', + type: 'string', + default: 'null', + description: 'Establishes relationships between the component and label(s) where its value should be one or more element IDs.' + }, + { + name: 'aria-label', + type: 'string', + default: 'null', + description: 'Used to define a string that labels the element.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const RadioButtonEvents = [ + { + name: 'click', + description: 'Callback to invoke on radio button click.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + }, + { + name: 'change', + description: 'Callback to invoke on radio button value change.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + } +]; + +module.exports = { + radiobutton: { + name: 'RadioButton', + description: 'RadioButton is an extension to standard radio button element with theming.', + props: RadioButtonProps, + events: RadioButtonEvents + } +}; diff --git a/packages/primevue/scripts/components/rating.js b/packages/primevue/scripts/components/rating.js new file mode 100644 index 0000000000..92d845af96 --- /dev/null +++ b/packages/primevue/scripts/components/rating.js @@ -0,0 +1,90 @@ +const RatingProps = [ + { + name: 'modelValue', + type: 'number', + default: 'null', + description: 'Value of the rating.' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the element should be disabled.' + }, + { + name: 'readonly', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that component is read-only.' + }, + { + name: 'stars', + type: 'number', + default: '5', + description: 'Number of stars.' + }, + { + name: 'onIcon', + type: 'string', + default: 'null', + description: 'Icon for the on state.' + }, + { + name: 'offIcon', + type: 'string', + default: 'null', + description: 'Icon for the off state.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const RatingSlots = [ + { + name: 'onicon', + description: 'Custom on icon template.' + }, + { + name: 'officon', + description: 'Custom off icon template.' + } +]; + +const RatingEvents = [ + { + name: 'change', + description: 'Callback to invoke on value change.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.value', + type: 'number', + description: 'Selected option value' + } + ] + } +]; + +module.exports = { + rating: { + name: 'rating', + description: 'Rating component is a star based selection input.', + props: RatingProps, + slots: RatingSlots, + events: RatingEvents + } +}; diff --git a/packages/primevue/scripts/components/ripple.js b/packages/primevue/scripts/components/ripple.js new file mode 100644 index 0000000000..48b5a63391 --- /dev/null +++ b/packages/primevue/scripts/components/ripple.js @@ -0,0 +1,7 @@ +module.exports = { + ripple: { + name: 'Ripple', + description: 'Ripple directive adds ripple effect to the host element.', + 'vue-modifiers': [] + } +}; diff --git a/packages/primevue/scripts/components/row.js b/packages/primevue/scripts/components/row.js new file mode 100644 index 0000000000..7f0dbea33d --- /dev/null +++ b/packages/primevue/scripts/components/row.js @@ -0,0 +1,23 @@ +const RowProps = [ + { + name: 'type', + type: 'string', + default: 'null', + description: 'Defines the type of the group.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + } +]; + +module.exports = { + row: { + name: 'Row', + description: 'DataTable can be grouped by defining a Row component with nested columns', + 'doc-url': 'datatable', + props: RowProps + } +}; diff --git a/packages/primevue/scripts/components/scrollpanel.js b/packages/primevue/scripts/components/scrollpanel.js new file mode 100644 index 0000000000..fcaf7837f6 --- /dev/null +++ b/packages/primevue/scripts/components/scrollpanel.js @@ -0,0 +1,28 @@ +const ScrollPanelProps = [ + { + name: 'step', + type: 'number', + default: '5', + description: 'Step factor to scroll the content while pressing the arrow keys.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +module.exports = { + scrollpanel: { + name: 'ScrollPanel', + description: 'ScrollPanel is a cross browser, lightweight and themable alternative to native browser scrollbar.', + props: ScrollPanelProps + } +}; diff --git a/packages/primevue/scripts/components/scrolltop.js b/packages/primevue/scripts/components/scrolltop.js new file mode 100644 index 0000000000..9a86d471f6 --- /dev/null +++ b/packages/primevue/scripts/components/scrolltop.js @@ -0,0 +1,54 @@ +const ScrollTopProps = [ + { + name: 'target', + type: 'string', + default: 'window', + description: 'Target of the ScrollTop, valid values are "window" and "parent".' + }, + { + name: 'threshold', + type: 'number', + default: '400', + description: 'Defines the threshold value of the vertical scroll position of the target to toggle the visibility.' + }, + { + name: 'icon', + type: 'string', + default: 'undefined', + description: 'Icon to display.' + }, + { + name: 'behavior', + type: 'string', + default: 'smooth', + description: 'Defines the scrolling behavi, "smooth" adds an animation and "auto" scrolls with a jump.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const ScrollTopSlots = [ + { + name: 'icon', + description: 'Custom scrolltop icon template.' + } +]; + +module.exports = { + scrolltop: { + name: 'ScrollTop', + description: 'ScrollTop gets displayed after a certain scroll position and used to navigates to the top of the page quickly.', + props: ScrollTopProps, + slots: ScrollTopSlots + } +}; diff --git a/packages/primevue/scripts/components/select.js b/packages/primevue/scripts/components/select.js new file mode 100644 index 0000000000..3c76867557 --- /dev/null +++ b/packages/primevue/scripts/components/select.js @@ -0,0 +1,432 @@ +const SelectProps = [ + { + name: 'modelValue', + type: 'any', + default: 'null', + description: 'Value of the component.' + }, + { + name: 'options', + type: 'array', + default: 'null', + description: 'An array of selectitems to display as the available options.' + }, + { + name: 'optionLabel', + type: 'string | function', + default: 'null', + description: 'Property name or getter function to use as the label of an option.' + }, + { + name: 'optionValue', + type: 'string | function', + default: 'null', + description: 'Property name or getter function to use as the value of an option, defaults to the option itself when not defined.' + }, + { + name: 'optionDisabled', + type: 'boolean', + default: 'null', + description: 'Property name or getter function to use as the disabled flag of an option, defaults to false when not defined.' + }, + { + name: 'optionGroupLabel', + type: 'string | function', + default: 'null', + description: 'Property name or getter function to use as the label of an option group.' + }, + { + name: 'optionGroupChildren', + type: 'string | function', + default: 'null', + description: 'Property name or getter function that refers to the children options of option group.' + }, + { + name: 'scrollHeight', + type: 'string', + default: '200px', + description: 'Height of the viewport, a scrollbar is defined if height of list exceeds this value.' + }, + { + name: 'filter', + type: 'boolean', + default: 'false', + description: 'When specified, displays a filter input at header.' + }, + { + name: 'filterPlaceholder', + type: 'string', + default: 'null', + description: 'Placeholder text to show when filter input is empty.' + }, + { + name: 'filterLocale', + type: 'string', + default: 'undefined', + description: "Locale to use in filtering. The default locale is the host environment's current locale." + }, + { + name: 'filterMatchMode', + type: 'string', + default: 'contains', + description: 'Defines the filtering algorithm to use when searching the options. Valid values are "contains" (default), "startsWith" and "endsWith"' + }, + { + name: 'filterFields', + type: 'array', + default: 'null', + description: 'Fields used when filtering the options, defaults to optionLabel.' + }, + { + name: 'editable', + type: 'boolean', + default: 'false', + description: 'When present, custom value instead of predefined options can be entered using the editable input field.' + }, + { + name: 'placeholder', + type: 'string', + default: 'null', + description: 'Default text to display when no option is selected.' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should be disabled.' + }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'null', + description: 'Specifies the input variant of the component.' + }, + { + name: 'dataKey', + type: 'string', + default: 'null', + description: 'A property to uniquely identify an option.' + }, + { + name: 'showClear', + type: 'boolean', + default: 'false', + description: 'When enabled, a clear icon is displayed to clear the value.' + }, + { + name: 'inputId', + type: 'string', + default: 'null', + description: 'Identifier of the underlying input element.' + }, + { + name: 'inputStyle', + type: 'object', + default: 'null', + description: 'Inline style of the input field.' + }, + { + name: 'inputClass', + type: 'string | object', + default: 'null', + description: 'Style class of the input field.' + }, + { + name: 'inputProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLInputElement/HTMLSpanElement to the focusable input element inside the component.' + }, + { + name: 'panelStyle', + type: 'object', + default: 'null', + description: 'Inline style of the overlay panel.' + }, + { + name: 'panelClass', + type: 'string', + default: 'null', + description: 'Style class of the overlay panel.' + }, + { + name: 'panelProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLDivElement to the overlay panel inside the component.' + }, + { + name: 'filterInputProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLInputElement to the filter input inside the component.' + }, + { + name: 'clearIconProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLElement to the clear icon inside the component.' + }, + { + name: 'appendTo', + type: 'string', + default: 'body', + description: "A valid query selector or an HTMLElement to specify where the overlay gets attached. Special keywords are 'body' for document body and 'self' for the element itself." + }, + { + name: 'loading', + type: 'boolean', + default: 'false', + description: 'Whether the multiselect is in loading state.' + }, + { + name: 'loadingIcon', + type: 'string', + default: 'pi pi-spinner pi-spin', + description: 'Icon to display in loading state.' + }, + { + name: 'resetFilterOnHide', + type: 'boolean', + default: 'false', + description: 'Clears the filter value when hiding the dropdown.' + }, + { + name: 'resetFilterOnClear', + type: 'boolean', + default: 'false', + description: 'Clears the filter value when clicking on the clear icon.' + }, + { + name: 'virtualScrollerOptions', + type: 'object', + default: 'null', + description: 'Whether to use the virtualScroller feature. The properties of VirtualScroller component can be used like an object in it.' + }, + { + name: 'autoOptionFocus', + type: 'boolean', + default: 'false', + description: 'Whether to focus on the first visible or selected element when the overlay panel is shown.' + }, + { + name: 'autoFilterFocus', + type: 'boolean', + default: 'false', + description: 'Whether to focus on the filter element when the overlay panel is shown.' + }, + { + name: 'selectOnFocus', + type: 'boolean', + default: 'false', + description: 'When enabled, the focused option is selected.' + }, + { + name: 'filterMessage', + type: 'string', + default: '{0} results are available', + description: 'Text to be displayed in hidden accessible field when filtering returns any results. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'selectionMessage', + type: 'string', + default: '{0} items selected', + description: 'Text to be displayed in hidden accessible field when options are selected. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'emptySelectionMessage', + type: 'string', + default: 'No selected item', + description: 'Text to be displayed in hidden accessible field when any option is not selected. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'emptyFilterMessage', + type: 'string', + default: 'No results found', + description: 'Text to display when filtering does not return any results. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'emptyMessage', + type: 'string', + default: 'No results found', + description: 'Text to display when there are no options available. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'tabindex', + type: 'number', + default: '0', + description: 'Index of the element in tabbing order.' + }, + { + name: 'aria-label', + type: 'string', + default: 'null', + description: 'Defines a string value that labels an interactive element.' + }, + { + name: 'aria-labelledby', + type: 'string', + default: 'null', + description: 'Identifier of the underlying input element.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const SelectEvents = [ + { + name: 'change', + description: 'Callback to invoke on value change.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.value', + type: 'string', + description: 'Selected option value' + } + ] + }, + { + name: 'focus', + description: 'Callback to invoke when component receives focus.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + }, + { + name: 'blur', + description: 'Callback to invoke when component loses focus.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + }, + { + name: 'before-show', + description: 'Callback to invoke before the overlay is shown.' + }, + { + name: 'before-hide', + description: 'Callback to invoke before the overlay is hidden.' + }, + { + name: 'show', + description: 'Callback to invoke when the overlay is shown.' + }, + { + name: 'hide', + description: 'Callback to invoke when the overlay is hidden.' + }, + { + name: 'filter', + description: 'Callback to invoke when the overlay is shown.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.value', + type: 'string', + description: 'Filter value' + } + ] + } +]; + +const SelectSlots = [ + { + name: 'value', + description: "Custom content for the item's value" + }, + { + name: 'indicator', + description: 'Custom content for the dropdown indicator' + }, + { + name: 'header', + description: "Custom content for the component's header" + }, + { + name: 'footer', + description: "Custom content for the component's footer" + }, + { + name: 'option', + description: "Custom content for the item's option" + }, + { + name: 'optiongroup', + description: "Custom content for the item's optiongroup" + }, + { + name: 'emptyfilter', + description: 'Custom content when there is no filtered data to display' + }, + { + name: 'empty', + description: 'Custom content when there is no data to display' + }, + { + name: 'content', + description: 'Custom content for the virtual scroller' + }, + { + name: 'loader', + description: 'Custom content for the virtual scroller loader items' + }, + { + name: 'clearicon', + description: 'Custom clear icon template.' + }, + { + name: 'dropdownicon', + description: 'Custom dropdown icon template.' + }, + { + name: 'loadingicon', + description: 'Custom loading icon template.' + }, + { + name: 'filtericon', + description: 'Custom filter icon template.' + } +]; + +module.exports = { + dropdown: { + name: 'Select', + description: 'Select is used to select an item from a list of options.', + props: SelectProps, + events: SelectEvents, + slots: SelectSlots + } +}; diff --git a/packages/primevue/scripts/components/selectbutton.js b/packages/primevue/scripts/components/selectbutton.js new file mode 100644 index 0000000000..30659dd507 --- /dev/null +++ b/packages/primevue/scripts/components/selectbutton.js @@ -0,0 +1,144 @@ +const SelectButtonProps = [ + { + name: 'modelValue', + type: 'any', + default: 'null', + description: 'Value of the component.' + }, + { + name: 'options', + type: 'array', + default: 'null', + description: 'An array of selectitems to display as the available options.' + }, + { + name: 'optionLabel', + type: 'string', + default: 'null', + description: 'Property name or getter function to use as the label of an option.' + }, + { + name: 'optionValue', + type: 'string', + default: 'null', + description: 'Property name or getter function to use as the value of an option, defaults to the option itself when not defined.' + }, + { + name: 'optionDisabled', + type: 'boolean', + default: 'null', + description: 'Property name or getter function to use as the disabled flag of an option, defaults to false when not defined.' + }, + { + name: 'multiple', + type: 'boolean', + default: 'false', + description: 'When specified, allows selecting multiple values.' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the element should be disabled.' + }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'dataKey', + type: 'string', + default: 'null', + description: 'A property to uniquely identify an option.' + }, + { + name: 'unselectable', + type: 'boolean', + default: 'false', + description: 'Whether selection can not be cleared.' + }, + { + name: 'allowEmpty', + type: 'boolean', + default: 'true', + description: 'Whether selection can be cleared.' + }, + { + name: 'aria-labelledby', + type: 'string', + default: 'null', + description: 'Identifier of the underlying element.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const SelectButtonEvents = [ + { + name: 'change', + description: 'Callback to invoke on value change.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.value', + type: 'any', + description: 'Single value or an array of values that are selected.' + } + ] + }, + { + name: 'focus', + description: 'Callback to invoke on focus.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + }, + { + name: 'blur', + description: 'Callback to invoke on blur.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + } +]; + +const SelectButtonSlots = [ + { + name: 'option', + description: "Custom content for the item's option" + } +]; + +module.exports = { + selectbutton: { + name: 'SelectButton', + description: 'SelectButton is a form component to choose a value from a list of options using button elements.', + props: SelectButtonProps, + events: SelectButtonEvents, + slots: SelectButtonSlots + } +}; diff --git a/packages/primevue/scripts/components/sidebar.js b/packages/primevue/scripts/components/sidebar.js new file mode 100644 index 0000000000..d942aa12dd --- /dev/null +++ b/packages/primevue/scripts/components/sidebar.js @@ -0,0 +1,114 @@ +const SidebarProps = [ + { + name: 'visible', + type: 'boolean', + default: 'false', + description: 'Specifies the visibility of the dialog.' + }, + { + name: 'position', + type: 'string', + default: 'left', + description: 'Specifies the position of the sidebar, valid values are "left", "right", "top", "bottom" and "full".' + }, + { + name: 'baseZIndex', + type: 'number', + default: '0', + description: 'Base zIndex value to use in layering.' + }, + { + name: 'autoZIndex', + type: 'boolean', + default: 'true', + description: 'Whether to automatically manage layering.' + }, + { + name: 'dismissable', + type: 'boolean', + default: 'true', + description: 'Whether clicking outside closes the panel.' + }, + { + name: 'showCloseIcon', + type: 'boolean', + default: 'true', + description: 'Whether to display a close icon inside the panel.' + }, + { + name: 'modal', + type: 'boolean', + default: 'true', + description: 'Whether to a modal layer behind the sidebar.' + }, + { + name: 'ariaCloseLabel', + type: 'string', + default: 'close', + description: 'Aria label of the close icon.' + }, + { + name: 'blockScroll', + type: 'boolean', + default: 'false', + description: 'Whether background scroll should be blocked when sidebar is visible.' + }, + { + name: 'closeIcon', + type: 'string', + default: 'undefined', + description: 'Icon to display in the sidebar close button.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const SidebarEvents = [ + { + name: 'hide', + description: 'Callback to invoke when sidebar gets hidden.' + }, + { + name: 'show', + description: 'Callback to invoke when sidebar gets shown.' + }, + { + name: 'closeicon', + description: 'Custom close icon template.' + } +]; + +const SidebarSlots = [ + { + name: 'header', + description: 'Custom content for the component header.' + }, + { + name: 'closeicon', + description: 'Custom close icon template.' + }, + { + name: 'container', + description: 'Custom container template.' + } +]; + +module.exports = { + sidebar: { + name: 'Sidebar', + description: 'Sidebar is a panel component displayed as an overlay at the edges of the screen.', + props: SidebarProps, + events: SidebarEvents, + slots: SidebarSlots + } +}; diff --git a/packages/primevue/scripts/components/skeleton.js b/packages/primevue/scripts/components/skeleton.js new file mode 100644 index 0000000000..e7cd9a22ec --- /dev/null +++ b/packages/primevue/scripts/components/skeleton.js @@ -0,0 +1,58 @@ +const SkeletonProps = [ + { + name: 'shape', + type: 'string', + default: 'rectangle', + description: 'Shape of the element, options are "rectangle" and "circle".' + }, + { + name: 'size', + type: 'string', + default: 'null', + description: 'Size of the Circle or Square.' + }, + { + name: 'width', + type: 'string', + default: '100%', + description: 'Width of the element.' + }, + { + name: 'height', + type: 'string', + default: '1rem', + description: 'Height of the element.' + }, + { + name: 'borderRadius', + type: 'string', + default: 'null', + description: 'Border radius of the element, defaults to value from theme.' + }, + { + name: 'animation', + type: 'string', + default: 'wave', + description: 'Type of the animation, valid options are "wave" and "none".' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +module.exports = { + skeleton: { + name: 'Skeleton', + description: 'Skeleton is a placeholder to display instead of the actual content.', + props: SkeletonProps + } +}; diff --git a/packages/primevue/scripts/components/slider.js b/packages/primevue/scripts/components/slider.js new file mode 100644 index 0000000000..9c6286866d --- /dev/null +++ b/packages/primevue/scripts/components/slider.js @@ -0,0 +1,113 @@ +const SliderProps = [ + { + name: 'modelValue', + type: 'number', + default: '0', + description: 'Value of the component.' + }, + { + name: 'min', + type: 'number', + default: '0', + description: 'Mininum boundary value.' + }, + { + name: 'max', + type: 'number', + default: '100', + description: 'Maximum boundary value.' + }, + { + name: 'orientation', + type: 'string', + default: 'horizontal', + description: 'Orientation of the slider, valid values are horizontal and vertical.' + }, + { + name: 'step', + type: 'number', + default: '1', + description: 'Step factor to increment/decrement the value.' + }, + { + name: 'range', + type: 'boolean', + default: 'false', + description: 'When speficed, allows two boundary values to be picked.' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should be disabled.' + }, + { + name: 'tabindex', + type: 'number', + default: 'null', + description: 'Index of the element in tabbing order.' + }, + { + name: 'aria-labelledby', + type: 'string', + default: 'null', + description: 'Establishes relationships between the component and label(s) where its value should be one or more element IDs.' + }, + { + name: 'aria-label', + type: 'string', + default: 'null', + description: 'Used to define a string that labels the element.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const SliderEvents = [ + { + name: 'change', + description: 'Callback to invoke on value change.', + arguments: [ + { + name: 'value', + type: 'number', + description: 'Selected option value' + } + ] + }, + { + name: 'slideend', + description: 'Callback to invoke when slide ends.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.value', + type: 'number', + description: 'New value.' + } + ] + } +]; + +module.exports = { + slider: { + name: 'Slider', + description: 'Slider is an input component to provide a numerical input', + props: SliderProps, + events: SliderEvents + } +}; diff --git a/packages/primevue/scripts/components/speeddial.js b/packages/primevue/scripts/components/speeddial.js new file mode 100644 index 0000000000..ace4968153 --- /dev/null +++ b/packages/primevue/scripts/components/speeddial.js @@ -0,0 +1,169 @@ +const SpeedDialProps = [ + { + name: 'model', + type: 'object', + default: 'any', + description: 'MenuModel instance to define the action items.' + }, + { + name: 'visible', + type: 'boolean', + default: 'false', + description: 'Specifies the visibility of the overlay.' + }, + { + name: 'direction', + type: 'string', + default: 'up', + description: "Specifies the opening direction of actions. Valid values are 'up', 'down', 'left', 'right', 'up-left', 'up-right', 'down-left' and 'down-right'" + }, + { + name: 'transitionDelay', + type: 'number', + default: '30', + description: 'Transition delay step for each action item.' + }, + { + name: 'type', + type: 'string', + default: 'linear', + description: 'Specifies the opening type of actions.' + }, + { + name: 'radius', + type: 'number', + default: '0', + description: 'Radius for *circle types.' + }, + { + name: 'mask', + type: 'boolean', + default: 'false', + description: 'Whether to show a mask element behind the speeddial' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'Whether the component is disabled.' + }, + { + name: 'hideOnClickOutside', + type: 'boolean', + default: 'true', + description: 'Whether the actions close when clicked outside.' + }, + { + name: 'buttonClass', + type: 'string', + default: 'null', + description: 'Style class of the button element.' + }, + { + name: 'maskClass', + type: 'string', + default: 'null', + description: 'Style class of the mask element.' + }, + { + name: 'maskStyle', + type: 'object', + default: 'null', + description: 'Inline style of the mask element.' + }, + { + name: 'showIcon', + type: 'string', + default: 'pi pi-plus', + description: 'Show icon of the button element.' + }, + { + name: 'hideIcon', + type: 'string', + default: 'null', + description: ' Hide icon of the button element.' + }, + { + name: 'rotateAnimation', + type: 'boolean', + default: 'true', + description: 'Defined to rotate showIcon when hideIcon is not present.' + }, + { + name: 'class', + type: 'object', + default: 'null', + description: 'Style class of the element.' + }, + { + name: 'style', + type: 'any', + default: 'null', + description: 'Style class of the element.' + }, + { + name: 'tooltipOptions', + type: 'object', + default: 'null', + description: "Whether to display the tooltip on items. The modifiers of tooltip can be used like an object in it. Valid keys are 'event' and 'position'." + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const SpeedDialEvents = [ + { + name: 'click', + description: 'Fired when the button element clicked.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + }, + { + name: 'show', + description: 'Fired when the actions are visible.' + }, + { + name: 'hide', + description: 'Fired when the actions are hidden.' + } +]; + +const SpeedDialSlots = [ + { + name: 'item', + description: 'Custom content for the item' + }, + { + name: 'button', + description: 'Custom button template.' + }, + { + name: 'icon', + description: 'Custom icon template.' + } +]; + +module.exports = { + speeddial: { + name: 'SpeedDial', + description: 'When pressed, a floating action button can display multiple primary actions that can be performed on a page.', + props: SpeedDialProps, + events: SpeedDialEvents, + slots: SpeedDialSlots + } +}; diff --git a/packages/primevue/scripts/components/splitbutton.js b/packages/primevue/scripts/components/splitbutton.js new file mode 100644 index 0000000000..78f9333e5a --- /dev/null +++ b/packages/primevue/scripts/components/splitbutton.js @@ -0,0 +1,155 @@ +const SplitButtonProps = [ + { + name: 'label', + type: 'string', + default: 'null', + description: 'Text of the button.' + }, + { + name: 'icon', + type: 'string', + default: 'null', + description: 'Name of the icon.' + }, + { + name: 'model', + type: 'object', + default: 'null', + description: 'MenuModel instance to define the overlay items.' + }, + { + name: 'autoZIndex', + type: 'boolean', + default: 'true', + description: 'Whether to automatically manage layering.' + }, + { + name: 'baseZIndex', + type: 'number', + default: '0', + description: 'Base zIndex value to use in layering.' + }, + { + name: 'appendTo', + type: 'string', + default: 'body', + description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached.' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the element should be disabled.' + }, + { + name: 'class', + type: 'string', + default: 'null', + description: 'Style class of the component.' + }, + { + name: 'style', + type: 'any', + default: 'null', + description: 'Inline of the component.' + }, + { + name: 'menuButtonIcon', + type: 'string', + default: 'null', + description: 'Name of the menu button icon.' + }, + { + name: 'severity', + type: 'string', + default: 'null', + description: 'Defines the style of the button, valid values are "secondary", "success", "info", "warn", "help", "danger", "contrast".' + }, + { + name: 'raised', + type: 'boolean', + default: 'false', + description: 'Add a shadow to indicate elevation.' + }, + { + name: 'rounded', + type: 'boolean', + default: 'false', + description: 'Add a circular border radius to the button.' + }, + { + name: 'text', + type: 'boolean', + default: 'false', + description: 'Add a textual class to the button without a background initially.' + }, + { + name: 'outlined', + type: 'boolean', + default: 'false', + description: 'Add a border class without a background initially.' + }, + { + name: 'size', + type: 'string', + default: 'null', + description: 'Defines the size of the button, valid values are "small" and "large".' + }, + { + name: 'plain', + type: 'boolean', + default: 'false', + description: 'Add a plain textual class to the button without a background initially.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const SplitButtonEvents = [ + { + name: 'click', + description: 'Callback to invoke when main button is clicked.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + } +]; + +const SplitButtonSlots = [ + { + name: 'icon', + description: 'Custom icon template.' + }, + { + name: 'menubuttonicon', + description: 'Custom menu button icon template.' + }, + { + name: 'menuitemicon', + description: 'Custom menu item icon template.' + } +]; + +module.exports = { + splitbutton: { + name: 'SplitButton', + description: 'SplitButton groups a set of commands in an overlay with a default command.', + props: SplitButtonProps, + events: SplitButtonEvents, + slots: SplitButtonSlots + } +}; diff --git a/packages/primevue/scripts/components/splitter.js b/packages/primevue/scripts/components/splitter.js new file mode 100644 index 0000000000..445f929e84 --- /dev/null +++ b/packages/primevue/scripts/components/splitter.js @@ -0,0 +1,72 @@ +const SplitterProps = [ + { + name: 'layout', + type: 'string', + default: 'horizontal', + description: 'Orientation of the panels, valid values are "horizontal" and "vertical".' + }, + { + name: 'gutterSize', + type: 'number', + default: '4', + description: 'Size of the divider in pixels.' + }, + { + name: 'stateKey', + type: 'string', + default: 'null', + description: 'Storage identifier of a stateful Splitter.' + }, + { + name: 'stateStorage', + type: 'string', + default: 'storage', + description: 'Defines where a stateful splitter keeps its state, valid values are "session" for sessionStorage and "local" for localStorage.' + }, + { + name: 'step', + type: 'number', + default: '5', + description: 'Step factor to increment/decrement the size of the panels while pressing the arrow keys.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const SplitterEvents = [ + { + name: 'resizened', + description: 'Callback to invoke when resize ends.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Browser event' + }, + { + name: 'event.sizes', + type: 'array', + description: 'Sizes of the panels as an array' + } + ] + } +]; + +module.exports = { + splitter: { + name: 'Splitter', + description: 'Splitter is utilized to separate and resize panels', + props: SplitterProps, + events: SplitterEvents + } +}; diff --git a/packages/primevue/scripts/components/splitterpanel.js b/packages/primevue/scripts/components/splitterpanel.js new file mode 100644 index 0000000000..f60231fa91 --- /dev/null +++ b/packages/primevue/scripts/components/splitterpanel.js @@ -0,0 +1,29 @@ +const SplitterPanelProps = [ + { + name: 'size', + type: 'number', + default: 'null', + description: 'Size of the element relative to 100%.' + }, + { + name: 'minSize', + type: 'number', + default: 'null', + description: 'Minimum size of the element relative to 100%.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + } +]; + +module.exports = { + splitterpanel: { + name: 'SplitterPanel', + description: 'Splitter requires two SplitterPanel components to wrap.', + 'doc-url': 'splitter', + props: SplitterPanelProps + } +}; diff --git a/packages/primevue/scripts/components/steps.js b/packages/primevue/scripts/components/steps.js new file mode 100644 index 0000000000..f1db203053 --- /dev/null +++ b/packages/primevue/scripts/components/steps.js @@ -0,0 +1,54 @@ +const StepsProps = [ + { + name: 'id', + type: 'string', + default: 'null', + description: 'Unique identifier of the element.' + }, + { + name: 'model', + type: 'array', + default: 'null', + description: 'An array of menuitems.' + }, + { + name: 'activeStep', + type: 'number', + default: '0', + description: 'Active step index of menuitem.' + }, + { + name: 'readonly', + type: 'boolean', + default: 'true', + description: 'Whether the items are clickable or not.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const StepsSlots = [ + { + name: 'item', + description: 'Template of a menuitem.' + } +]; + +module.exports = { + steps: { + name: 'steps', + description: 'Steps components is an indicator for the steps in a wizard workflow.', + props: StepsProps, + slots: StepsSlots + } +}; diff --git a/packages/primevue/scripts/components/styleclass.js b/packages/primevue/scripts/components/styleclass.js new file mode 100644 index 0000000000..f0e2e8dcc0 --- /dev/null +++ b/packages/primevue/scripts/components/styleclass.js @@ -0,0 +1,7 @@ +module.exports = { + styleclass: { + name: 'StyleClass', + description: 'StyleClass manages css classes declaratively to during enter/leave animations or just to toggle classes on an element.', + 'vue-modifiers': [] + } +}; diff --git a/packages/primevue/scripts/components/tabmenu.js b/packages/primevue/scripts/components/tabmenu.js new file mode 100644 index 0000000000..8a114e519a --- /dev/null +++ b/packages/primevue/scripts/components/tabmenu.js @@ -0,0 +1,66 @@ +const TabMenuProps = [ + { + name: 'model', + type: 'array', + default: 'null', + description: 'An array of menuitems.' + }, + { + name: 'activeIndex', + type: 'number', + default: '0', + description: 'Active index of menuitem.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const TabMenuEvents = [ + { + name: 'tab-change', + description: 'Callback to invoke when an active tab is changed.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Original event' + }, + { + name: 'event.index', + type: 'number', + description: 'Index of the selected tab' + } + ] + } +]; + +const TabMenuSlots = [ + { + name: 'item', + description: 'Template of a menuitem.' + }, + { + name: 'itemicon', + description: 'Custom item icon template.' + } +]; + +module.exports = { + tabmenu: { + name: 'TabMenu', + description: 'TabMenu is a navigation component that displays items as tab headers.', + props: TabMenuProps, + events: TabMenuEvents, + slots: TabMenuSlots + } +}; diff --git a/packages/primevue/scripts/components/tabpanel.js b/packages/primevue/scripts/components/tabpanel.js new file mode 100644 index 0000000000..182d9fe209 --- /dev/null +++ b/packages/primevue/scripts/components/tabpanel.js @@ -0,0 +1,107 @@ +const TabPanelProps = [ + { + name: 'header', + type: 'string', + default: 'null', + description: 'Orientation of tab headers.' + }, + { + name: 'headerStyle', + type: 'any', + default: 'null', + description: 'Inline style of the tab header.' + }, + { + name: 'headerClass', + type: 'any', + default: 'null', + description: 'Style class of the tab header.' + }, + { + name: 'headerProps', + type: 'any', + default: 'null', + description: 'Used to pass all properties of the HTMLLiElement to the tab header.' + }, + { + name: 'headerActionProps', + type: 'any', + default: 'null', + description: 'Used to pass all properties of the HTMLAnchorElement to the focusable anchor element inside the tab header.' + }, + { + name: 'contentStyle', + type: 'any', + default: 'null', + description: 'Inline style of the tab content.' + }, + { + name: 'contentClass', + type: 'any', + default: 'null', + description: 'Style class of the tab content.' + }, + { + name: 'contentProps', + type: 'any', + default: 'null', + description: 'Used to pass all properties of the HTMLDivElement to the tab content.' + }, + { + name: 'disabled', + type: 'boolean', + default: 'null', + description: 'Whether the tab is disabled.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + } +]; + +const TabPanelEvents = [ + { + name: 'tab-change', + description: 'Callback to invoke when an active tab is changed.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Original event' + }, + { + name: 'event.index', + type: 'number', + description: 'Index of the selected tab' + } + ] + }, + { + name: 'tab-click', + description: 'Callback to invoke when an active tab is clicked.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Original event' + }, + { + name: 'event.index', + type: 'number', + description: 'Index of the selected tab' + } + ] + } +]; + +module.exports = { + tabpanel: { + name: 'TabPanel', + description: 'TabView element consists of one or more TabPanel elements.', + 'doc-url': 'tabview', + props: TabPanelProps, + events: TabPanelEvents + } +}; diff --git a/packages/primevue/scripts/components/tabview.js b/packages/primevue/scripts/components/tabview.js new file mode 100644 index 0000000000..ce8196f48f --- /dev/null +++ b/packages/primevue/scripts/components/tabview.js @@ -0,0 +1,128 @@ +const TabViewProps = [ + { + name: 'activeIndex', + type: 'number', + default: '0', + description: 'Index of the active tab.' + }, + { + name: 'lazy', + type: 'boolean', + default: 'false', + description: 'When enabled, hidden tabs are not rendered at all. Defaults to false that hides tabs with css.' + }, + { + name: 'scrollable', + type: 'boolean', + default: 'false', + description: 'When enabled displays buttons at each side of the tab headers to scroll the tab list.' + }, + { + name: 'tabindex', + type: 'number', + default: '0', + description: 'Index of the element in tabbing order.' + }, + { + name: 'selectOnFocus', + type: 'boolean', + default: 'false', + description: 'When enabled, the focused tab is activated.' + }, + { + name: 'prevButtonProps', + type: 'any', + default: 'null', + description: 'Used to pass all properties of the HTMLButtonElement to the previous button.' + }, + { + name: 'nextButtonProps', + type: 'any', + default: 'null', + description: 'Used to pass all properties of the HTMLButtonElement to the next button.' + }, + { + name: 'prevIcon', + type: 'string', + default: 'null', + description: 'Prev icon of the scrollable tabview.' + }, + { + name: 'nextIcon', + type: 'string', + default: 'null', + description: 'Next icon of the scrollable tabview.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const TabViewEvents = [ + { + name: 'tab-change', + description: 'Callback to invoke when an active tab is changed.', + arguments: [ + { + name: 'originalEvent', + type: 'object', + description: 'Original event' + }, + { + name: 'index', + type: 'number', + description: 'Index of the selected tab' + } + ] + }, + { + name: 'tab-click', + description: 'Callback to invoke when an active tab is clicked.', + arguments: [ + { + name: 'originalEvent', + type: 'object', + description: 'Original event' + }, + { + name: 'index', + type: 'number', + description: 'Index of the clicked tab' + } + ] + } +]; + +const TabViewSlots = [ + { + name: 'default', + description: 'Default slot to detect TabPanel components.' + }, + { + name: 'previcon', + description: 'Previous button icon template for the scrollable component.' + }, + { + name: 'nexticon', + description: 'Next button icon template for the scrollable component.' + } +]; + +module.exports = { + tabview: { + name: 'TabView', + description: 'TabView is a container component to group content with tabs.', + props: TabViewProps, + event: TabViewEvents, + slots: TabViewSlots + } +}; diff --git a/packages/primevue/scripts/components/tag.js b/packages/primevue/scripts/components/tag.js new file mode 100644 index 0000000000..9487a9b2c0 --- /dev/null +++ b/packages/primevue/scripts/components/tag.js @@ -0,0 +1,54 @@ +const TagProps = [ + { + name: 'value', + type: 'any', + default: 'null', + description: 'Value to display inside the tag.' + }, + { + name: 'severity', + type: 'string', + default: 'null', + description: 'Severity type of the tag. Valid severities are "secondary", "success", "info", "warn", "danger" and "contrast".' + }, + { + name: 'rounded', + type: 'boolean', + default: 'false', + description: 'Whether the corners of the tag are rounded.' + }, + { + name: 'icon', + type: 'string', + default: 'null', + description: 'Icon of the tag to display next to the value.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const TagSlots = [ + { + name: 'icon', + description: 'custom icon template.' + } +]; + +module.exports = { + tag: { + name: 'Tag', + description: 'Tag component is used to categorize content.', + props: TagProps, + slots: TagSlots + } +}; diff --git a/packages/primevue/scripts/components/terminal.js b/packages/primevue/scripts/components/terminal.js new file mode 100644 index 0000000000..8f5878a850 --- /dev/null +++ b/packages/primevue/scripts/components/terminal.js @@ -0,0 +1,34 @@ +const TerminalProps = [ + { + name: 'welcomeMessage', + type: 'string', + default: 'null', + description: 'Initial text to display on terminal.' + }, + { + name: 'prompt', + type: 'string', + default: 'null', + description: 'Prompt text for each command.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +module.exports = { + terminal: { + name: 'Terminal', + description: 'Terminal is a text based user interface.', + props: TerminalProps + } +}; diff --git a/packages/primevue/scripts/components/textarea.js b/packages/primevue/scripts/components/textarea.js new file mode 100644 index 0000000000..e8f06aad37 --- /dev/null +++ b/packages/primevue/scripts/components/textarea.js @@ -0,0 +1,46 @@ +const TextareaProps = [ + { + name: 'modelValue', + type: 'any', + default: 'null', + description: 'Value of the component.' + }, + { + name: 'autoResize', + type: 'boolean', + default: 'false', + description: 'When present, height of textarea changes as being typed.' + }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'null', + description: 'Specifies the input variant of the component.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +module.exports = { + textarea: { + name: 'Textarea', + description: 'Textarea is a multi-line text input element.', + props: TextareaProps + } +}; diff --git a/packages/primevue/scripts/components/tieredmenu.js b/packages/primevue/scripts/components/tieredmenu.js new file mode 100644 index 0000000000..3aced9452c --- /dev/null +++ b/packages/primevue/scripts/components/tieredmenu.js @@ -0,0 +1,76 @@ +const TieredMenuProps = [ + { + name: 'model', + type: 'array', + default: 'null', + description: 'An array of menuitems.' + }, + { + name: 'popup', + type: 'boolean', + default: 'false', + description: 'Defines if menu would displayed as a popup.' + }, + { + name: 'appendTo', + type: 'string', + default: 'body', + description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached.' + }, + { + name: 'baseZIndex', + type: 'number', + default: '0', + description: 'Base zIndex value to use in layering.' + }, + { + name: 'autoZIndex', + type: 'boolean', + default: 'true', + description: 'Whether to automatically manage layering.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const TieredMenuSlots = [ + { + name: 'start', + description: 'Custom start content.' + }, + { + name: 'end', + description: 'Custom end content.' + }, + { + name: 'item', + description: 'Template of a menuitem.' + }, + { + name: 'submenuicon', + description: 'Custom submenu icon template.' + }, + { + name: 'itemicon', + description: 'Custom item icon template.' + } +]; + +module.exports = { + tieredmenu: { + name: 'TieredMenu', + description: 'TieredMenu displays submenus in nested overlays.', + props: TieredMenuProps, + slots: TieredMenuSlots + } +}; diff --git a/packages/primevue/scripts/components/timeline.js b/packages/primevue/scripts/components/timeline.js new file mode 100644 index 0000000000..639bb9268c --- /dev/null +++ b/packages/primevue/scripts/components/timeline.js @@ -0,0 +1,66 @@ +const TimelineProps = [ + { + name: 'value', + type: 'array', + default: 'null', + description: 'An array of events to display.' + }, + { + name: 'align', + type: 'string', + default: 'left', + description: 'Position of the timeline bar relative to the content. Valid values are "left", "right" and "alternate" for vertical layout and "top", "bottom" for horizontal layout.' + }, + { + name: 'layout', + type: 'string', + default: 'vertical', + description: 'Orientation of the timeline, valid values are "vertical" and "horizontal".' + }, + { + name: 'dataKey', + type: 'string', + default: 'null', + description: 'Name of the field that uniquely identifies the a record in the data.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const TimelineSlots = [ + { + name: 'opposite', + description: 'Custom content for the content to be placed at the other side of the bar' + }, + { + name: 'marker', + description: 'Custom content for the marker' + }, + { + name: 'content', + description: 'Custom content' + }, + { + name: 'connector', + description: 'Connector element' + } +]; + +module.exports = { + timeline: { + name: 'Timeline', + description: 'Timeline visualizes a series of chained events.', + props: TimelineProps, + slots: TimelineSlots + } +}; diff --git a/packages/primevue/scripts/components/toast.js b/packages/primevue/scripts/components/toast.js new file mode 100644 index 0000000000..679266540e --- /dev/null +++ b/packages/primevue/scripts/components/toast.js @@ -0,0 +1,98 @@ +const ToastProps = [ + { + name: 'group', + type: 'string', + default: 'null', + description: 'Unique identifier of a message group.' + }, + { + name: 'position', + type: 'string', + default: 'top-right', + description: 'Position of the toast in viewport. Other valid values are "top-left", "top-center", "bottom-left", "bottom-center", "bottom-right" and "center".' + }, + { + name: 'autoZIndex', + type: 'boolean', + default: 'true', + description: 'Whether to automatically manage layering.' + }, + { + name: 'baseZIndex', + type: 'number', + default: '0', + description: 'Base zIndex value to use in layering.' + }, + { + name: 'breakpoints', + type: 'object', + default: 'null', + description: 'Object literal to define widths per screen size.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const ToastEvents = [ + { + name: 'close', + description: 'Callback to invoke when the toast is closed.', + arguments: [ + { + name: 'message', + type: 'any', + description: 'Message of toast.' + } + ] + }, + { + name: 'life-end', + description: 'Callback to invoke when the toast timeout is over.', + arguments: [ + { + name: 'message', + type: 'any', + description: 'Message of toast.' + } + ] + } +]; + +const ToastSlots = [ + { + name: 'message', + description: 'Custom content for the toast message' + }, + { + name: 'icon', + description: 'Custom icon template.' + }, + { + name: 'closeicon', + description: 'Custom close icon template.' + }, + { + name: 'container', + description: 'Custom container template.' + } +]; + +module.exports = { + toast: { + name: 'Toast', + description: 'Toast is used to display messages in an overlay.', + props: ToastProps, + events: ToastEvents, + slots: ToastSlots + } +}; diff --git a/packages/primevue/scripts/components/togglebutton.js b/packages/primevue/scripts/components/togglebutton.js new file mode 100644 index 0000000000..1f4d6a3ef5 --- /dev/null +++ b/packages/primevue/scripts/components/togglebutton.js @@ -0,0 +1,145 @@ +const ToggleButtonProps = [ + { + name: 'modelValue', + type: 'any', + default: 'null', + description: 'Value of the component.' + }, + { + name: 'onIcon', + type: 'string', + default: 'null', + description: 'Icon for the on state.' + }, + { + name: 'offIcon', + type: 'string', + default: 'null', + description: 'Icon for the off state.' + }, + { + name: 'onLabel', + type: 'string', + default: 'yes', + description: 'Label for the on state.' + }, + { + name: 'offLabel', + type: 'string', + default: 'no', + description: 'Label for the off state.' + }, + { + name: 'iconPos', + type: 'string', + default: 'left', + description: 'Position of the icon, valid values are "left" and "right".' + }, + { + name: 'tabindex', + type: 'number', + default: 'null', + description: 'Index of the element in tabbing order.' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the element should be disabled.' + }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'inputId', + type: 'string', + default: 'null', + description: 'Identifier of the focus input to match a label defined for the chips.' + }, + { + name: 'inputClass', + type: 'string | object', + default: 'null', + description: 'Style class of the input field.' + }, + { + name: 'inputStyle', + type: 'object', + default: 'null', + description: 'Inline style of the input field.' + }, + { + name: 'inputProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLInputElement to the focusable input element inside the component.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const ToggleButtonEvents = [ + { + name: 'change', + description: 'Callback to invoke on value change.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + }, + { + name: 'focus', + description: 'Callback to invoke when the component receives focus.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + }, + { + name: 'blur', + description: 'Callback to invoke when the component loses focus.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Browser event' + } + ] + } +]; + +const ToggleButtonSlots = [ + { + name: 'icon', + description: 'custom icon template.' + } +]; + +module.exports = { + togglebutton: { + name: 'ToggleButton', + description: 'ToggleButton is used to select a boolean value using a button.', + props: ToggleButtonProps, + slots: ToggleButtonSlots, + events: ToggleButtonEvents + } +}; diff --git a/packages/primevue/scripts/components/toggleswitch.js b/packages/primevue/scripts/components/toggleswitch.js new file mode 100644 index 0000000000..490d939927 --- /dev/null +++ b/packages/primevue/scripts/components/toggleswitch.js @@ -0,0 +1,80 @@ +const ToggleSwitchProps = [ + { + name: 'modelValue', + type: 'boolean', + default: 'null', + description: 'Specifies whether a inputswitch should be checked or not.' + }, + { + name: 'trueValue', + type: 'any', + default: 'null', + description: 'Value in checked state.' + }, + { + name: 'falseValue', + type: 'any', + default: 'null', + description: 'Value in unchecked state.' + }, + { + name: 'inputId', + type: 'string', + default: 'null', + description: 'Identifier of the underlying input element.' + }, + { + name: 'inputStyle', + type: 'object', + default: 'null', + description: 'Inline style of the input field.' + }, + { + name: 'inputClass', + type: 'string | object', + default: 'null', + description: 'Style class of the input field.' + }, + { + name: 'inputProps', + type: 'object', + default: 'null', + description: 'Used to pass all properties of the HTMLInputElement to the focusable input element inside the component.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const ToggleSwitchEvents = [ + { + name: 'click', + description: 'Callback to invoke on click.' + }, + { + name: 'change', + description: 'Callback to invoke on value change.' + }, + { + name: 'input', + description: 'Callback to invoke on value change.' + } +]; + +module.exports = { + inputswitch: { + name: 'ToggleSwitch', + description: 'ToggleSwitch is used to select a boolean value.', + props: ToggleSwitchProps, + events: ToggleSwitchEvents + } +}; diff --git a/packages/primevue/scripts/components/toolbar.js b/packages/primevue/scripts/components/toolbar.js new file mode 100644 index 0000000000..18fbf7ab81 --- /dev/null +++ b/packages/primevue/scripts/components/toolbar.js @@ -0,0 +1,44 @@ +const ToolbarProps = [ + { + name: 'aria-labelledby', + type: 'string', + default: 'null', + description: 'Defines a string value that labels an interactive element.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const ToolbarSlots = [ + { + name: 'start', + description: "Custom content for the component's left side" + }, + { + name: 'end', + description: "Custom content for the component's right side" + }, + { + name: 'center', + description: "Custom content for the component's center" + } +]; + +module.exports = { + toolbar: { + name: 'Toolbar', + description: 'Toolbar is a grouping component for buttons and other content.', + props: ToolbarProps, + slots: ToolbarSlots + } +}; diff --git a/packages/primevue/scripts/components/tooltip.js b/packages/primevue/scripts/components/tooltip.js new file mode 100644 index 0000000000..519b9fc074 --- /dev/null +++ b/packages/primevue/scripts/components/tooltip.js @@ -0,0 +1,34 @@ +const TooltipModifiers = [ + { + name: 'right', + description: 'Positions the tooltip on the right of the trigger element (default)' + }, + { + name: 'top', + description: 'Positions the tooltip on the top of the trigger element' + }, + { + name: 'bottom', + description: 'Positions the tooltip on the bottom of the trigger element' + }, + { + name: 'left', + description: 'Positions the tooltip on the left of the trigger element' + }, + { + name: 'focus', + description: 'Focus on the trigger element' + }, + { + name: 'blur', + description: 'Blur the trigger element' + } +]; + +module.exports = { + tooltip: { + name: 'Tooltip', + description: 'Tooltip directive provides advisory information for a component.', + 'vue-modifiers': TooltipModifiers + } +}; diff --git a/packages/primevue/scripts/components/tree.js b/packages/primevue/scripts/components/tree.js new file mode 100644 index 0000000000..f0cba052cf --- /dev/null +++ b/packages/primevue/scripts/components/tree.js @@ -0,0 +1,175 @@ +const TreeProps = [ + { + name: 'value', + type: 'any', + default: 'null', + description: 'An array of treenodes.' + }, + { + name: 'expandedKeys', + type: 'array', + default: 'null', + description: 'A map of keys to represent the expansion state in controlled mode.' + }, + { + name: 'selectionMode', + type: 'string', + default: 'null', + description: 'Defines the selection mode, valid values "single", "multiple", and "checkbox".' + }, + { + name: 'selectionKeys', + type: 'any', + default: 'null', + description: 'A map of keys to control the selection state.' + }, + { + name: 'metaKeySelection', + type: 'boolean', + default: 'true', + description: + 'Defines how multiple items can be selected, when true metaKey needs to be pressed to select or unselect an item and when set to false selection of each item can be toggled individually. On touch enabled devices, metaKeySelection is turned off automatically.' + }, + { + name: 'loading', + type: 'boolean', + default: 'false', + description: 'Whether to display loading indicator.' + }, + { + name: 'loadingIcon', + type: 'string', + default: 'pi pi-spin', + description: 'Icon to display when tree is loading.' + }, + { + name: 'filter', + type: 'boolean', + default: 'false', + description: 'When specified, displays an input field to filter the items.' + }, + { + name: 'filterBy', + type: 'string', + default: 'label', + description: 'When filtering is enabled, filterBy decides which field or fields (comma separated) to search against.' + }, + { + name: 'filterMode', + type: 'string', + default: 'lenient', + description: 'Mode for filtering valid values are "lenient" and "strict". Default is lenient.' + }, + { + name: 'filterPlaceholder', + type: 'string', + default: 'null', + description: 'Placeholder text to show when filter input is empty.' + }, + { + name: 'filterLocale', + type: 'string', + default: 'undefined', + description: "Locale to use in filtering. The default locale is the host environment's current locale." + }, + { + name: 'highlightOnSelect', + type: 'boolean', + default: 'false', + description: 'Highlights automatically the first item.' + }, + { + name: 'scrollHeight', + type: 'string', + default: 'null', + description: 'Height of the scroll viewport in fixed units or the "flex" keyword for a dynamic size.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const TreeEvents = [ + { + name: 'node-select', + description: 'Callback to invoke when a node is selected.', + arguments: [ + { + name: 'node', + type: 'object', + description: 'Node instance' + } + ] + }, + { + name: 'node-unselect', + description: 'Callback to invoke when a node is unselected.', + arguments: [ + { + name: 'node', + type: 'object', + description: 'Node instance' + } + ] + }, + { + name: 'node-expand', + description: 'Callback to invoke when a node is expanded.', + arguments: [ + { + name: 'node', + type: 'object', + description: 'Node instance' + } + ] + }, + { + name: 'node-collapse', + description: 'Callback to invoke when a node is collapsed.', + arguments: [ + { + name: 'node', + type: 'object', + description: 'Node instance' + } + ] + } +]; + +const TreeSlots = [ + { + name: 'loadingicon', + description: 'Custom loading icon template.' + }, + { + name: 'searchicon', + description: 'Custom search icon template.' + }, + { + name: 'toggleicon', + description: 'Custom toggler icon template.' + }, + { + name: 'checkboxicon', + description: 'Custom checkbox icon template.' + } +]; + +module.exports = { + tree: { + name: 'Tree', + description: 'Tree is used to display hierarchical data.', + props: TreeProps, + events: TreeEvents, + slots: TreeSlots + } +}; diff --git a/packages/primevue/scripts/components/treeselect.js b/packages/primevue/scripts/components/treeselect.js new file mode 100644 index 0000000000..3a210341b1 --- /dev/null +++ b/packages/primevue/scripts/components/treeselect.js @@ -0,0 +1,244 @@ +const TreeSelectProps = [ + { + name: 'modelValue', + type: 'any', + default: 'null', + description: 'Value of the component.' + }, + { + name: 'options', + type: 'array', + default: 'null', + description: 'An array of treenodes.' + }, + { + name: 'scrollHeight', + type: 'string', + default: '200px', + description: 'Height of the viewport, a scrollbar is defined if height of list exceeds this value.' + }, + { + name: 'placeholder', + type: 'string', + default: 'null', + description: 'Label to display when there are no selections.' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should be disabled.' + }, + { + name: 'invalid', + type: 'boolean', + default: 'false', + description: 'When present, it specifies that the component should have invalid state style.' + }, + { + name: 'variant', + type: 'string', + default: 'null', + description: 'Specifies the input variant of the component.' + }, + { + name: 'tabindex', + type: 'string', + default: 'null', + description: 'Index of the element in tabbing order.' + }, + { + name: 'inputId', + type: 'string', + default: 'null', + description: 'Identifier of the underlying input element.' + }, + { + name: 'inputStyle', + type: 'object', + default: 'null', + description: 'Inline style of the input field.' + }, + { + name: 'inputClass', + type: 'string | object', + default: 'null', + description: 'Style class of the input field.' + }, + { + name: 'selectionMode', + type: 'string', + default: 'null', + description: 'Defines the selection mode, valid values "single", "multiple", and "checkbox".' + }, + { + name: 'panelClass', + type: 'string | object', + default: 'null', + description: 'Style class of the overlay panel.' + }, + { + name: 'appendTo', + type: 'string', + default: 'body', + description: 'A valid query selector or an HTMLElement to specify where the overlay gets attached. Special keywords are "body" for document body and "self" for the element itself.' + }, + { + name: 'emptyMessage', + type: 'string', + default: 'No results found', + description: 'Text to display when there are no options available. Defaults to value from PrimeVue locale configuration.' + }, + { + name: 'display', + type: 'string', + default: 'comma', + description: 'Defines how the selected items are displayed, valid values are "comma" and "chip".' + }, + { + name: 'metaKeySelection', + type: 'boolean', + default: 'true', + description: + 'Defines how multiple items can be selected, when true metaKey needs to be pressed to select or unselect an item and when set to false selection of each item can be toggled individually. On touch enabled devices, metaKeySelection is turned off automatically.' + }, + { + name: 'aria-labelledby', + type: 'string', + default: 'null', + description: 'Establishes relationships between the component and label(s) where its value should be one or more element IDs.' + }, + { + name: 'aria-label', + type: 'string', + default: 'null', + description: 'Used to define a string that labels the element.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const TreeSelectEvents = [ + { + name: 'change', + description: 'Callback to invoke on value change.', + arguments: [ + { + name: 'event', + type: 'object', + description: 'Selected node keys' + } + ] + }, + { + name: 'before-show', + description: 'Callback to invoke before the overlay is shown.' + }, + { + name: 'before-hide', + description: 'Callback to invoke before the overlay is hidden.' + }, + { + name: 'show', + description: 'Callback to invoke when the overlay is shown.' + }, + { + name: 'hide', + description: 'Callback to invoke when the overlay is hidden.' + }, + { + name: 'node-select', + description: 'Callback to invoke when a node is selected.', + arguments: [ + { + name: 'node', + type: 'object', + description: 'Node instance' + } + ] + }, + { + name: 'node-unselect', + description: 'Callback to invoke when a node is unselected.', + arguments: [ + { + name: 'node', + type: 'object', + description: 'Node instance' + } + ] + }, + { + name: 'node-expand', + description: 'Callback to invoke when a node is expanded.', + arguments: [ + { + name: 'node', + type: 'object', + description: 'Node instance' + } + ] + }, + { + name: 'node-collapse', + description: 'Callback to invoke when a node is collapsed.', + arguments: [ + { + name: 'node', + type: 'object', + description: 'Node instance' + } + ] + } +]; + +const TreeSelectSlots = [ + { + name: 'value', + description: "Custom content for the item's value" + }, + { + name: 'header', + description: "Custom content for the component's header" + }, + { + name: 'footer', + description: "Custom content for the component's footer" + }, + { + name: 'empty', + description: 'Custom content when there is no data to display' + }, + { + name: 'triggericon', + description: 'Custom content for the dropdown indicator' + }, + { + name: 'itemtoggleicon', + description: 'Custom item toggler icon template.' + }, + { + name: 'itemcheckboxicon', + description: 'Custom item checkbox icon template.' + } +]; + +module.exports = { + treeselect: { + name: 'TreeSelect', + description: 'TreeSelect is a form component to choose from hierarchical data.', + props: TreeSelectProps, + events: TreeSelectEvents, + slots: TreeSelectSlots + } +}; diff --git a/packages/primevue/scripts/components/treetable.js b/packages/primevue/scripts/components/treetable.js new file mode 100644 index 0000000000..0f1c6d42be --- /dev/null +++ b/packages/primevue/scripts/components/treetable.js @@ -0,0 +1,518 @@ +const TreeTableProps = [ + { + name: 'value', + type: 'array', + default: 'null', + description: 'An array of treenodes.' + }, + { + name: 'dataKey', + type: 'string|function', + default: 'null', + description: 'Name of the field that uniquely identifies the a record in the data.' + }, + { + name: 'expandedKeys', + type: 'array', + default: 'null', + description: 'A map of keys to represent the state of the tree expansion state in controlled mode.' + }, + { + name: 'selectionKeys', + type: 'any', + default: 'null', + description: 'A map of keys to control the selection state.' + }, + { + name: 'selectionMode', + type: 'string', + default: 'null', + description: 'Defines the selection mode, valid values "single", "multiple", and "checkbox".' + }, + { + name: 'metaKeySelection', + type: 'boolean', + default: 'true', + description: + 'Defines how multiple items can be selected, when true metaKey needs to be pressed to select or unselect an item and when set to false selection of each item can be toggled individually. On touch enabled devices, metaKeySelection is turned off automatically.' + }, + { + name: 'rows', + type: 'number', + default: 'null', + description: 'Number of rows to display per page.' + }, + { + name: 'first', + type: 'number', + default: '0', + description: 'Index of the first row to be displayed.' + }, + { + name: 'totalRecords', + type: 'number', + default: 'null', + description: 'Number of total records, defaults to length of value when not defined.' + }, + { + name: 'paginator', + type: 'boolean', + default: 'false', + description: 'When specified as true, enables the pagination.' + }, + { + name: 'paginatorPosition', + type: 'string', + default: 'bottom', + description: 'Position of the paginator, options are "top", "bottom" or "both".' + }, + { + name: 'alwaysShowPaginator', + type: 'boolean', + default: 'true', + description: 'Whether to show it even there is only one page.' + }, + { + name: 'paginatorTemplate', + type: 'string', + default: 'FirstPageLink PrevPageLink PageLinks NextPageLink LastPageLink RowsPerPageDropdown', + description: 'Template of the paginator.' + }, + { + name: 'pageLinkSize', + type: 'number', + default: '5', + description: 'Number of page links to display.' + }, + { + name: 'rowsPerPageOptions', + type: 'array', + default: 'null', + description: 'Array of integer values to display inside rows per page dropdown.' + }, + { + name: 'currentPageReportTemplate', + type: 'string', + default: '({currentPage} of {totalPages})', + description: 'Template of the current page report element.' + }, + { + name: 'lazy', + type: 'boolean', + default: 'false', + description: 'Defines if data is loaded and interacted with in lazy manner.' + }, + { + name: 'loading', + type: 'boolean', + default: 'false', + description: 'Displays a loader to indicate data load is in progress.' + }, + { + name: 'loadingIcon', + type: 'string', + default: 'pi pi-spinner', + description: 'The icon to show while indicating data load is in progress.' + }, + { + name: 'rowHover', + type: 'boolean', + default: 'false', + description: 'When enabled, background of the rows change on hover.' + }, + { + name: 'autoLayout', + type: 'boolean', + default: 'false', + description: 'Whether the cell widths scale according to their content or not.' + }, + { + name: 'sortField', + type: 'string', + default: 'null', + description: 'Property name or a getter function of a row data used for sorting by default.' + }, + { + name: 'sortOrder', + type: 'number', + default: 'null', + description: 'Order to sort the data by default.' + }, + { + name: 'defaultSortOrder', + type: 'number', + default: '1', + description: 'Default sort order of an unsorted column.' + }, + { + name: 'multiSortMeta', + type: 'array', + default: 'null', + description: 'An array of SortMeta objects to sort the data by default in multiple sort mode.' + }, + { + name: 'sortMode', + type: 'string', + default: 'single', + description: 'Defines whether sorting works on single column or on multiple columns.' + }, + { + name: 'removableSort', + type: 'boolean', + default: 'false', + description: 'When enabled, columns can have an un-sorted state.' + }, + { + name: 'filters', + type: 'object', + default: 'null', + description: 'Filters object with key-value pairs to define the filters.' + }, + { + name: 'filterMode', + type: 'string', + default: 'lenient', + description: 'Mode for filtering valid values are "lenient" and "strict". Default is lenient.' + }, + { + name: 'filterLocale', + type: 'string', + default: 'undefined', + description: "Locale to use in filtering. The default locale is the host environment's current locale." + }, + { + name: 'resizableColumns', + type: 'boolean', + default: 'false', + description: 'When enabled, columns can be resized using drag and drop.' + }, + { + name: 'columnResizeMode', + type: 'string', + default: 'fit', + description: 'Defines whether the overall table width should change on column resize, valid values are "fit" and "expand".' + }, + { + name: 'indentation', + type: 'number', + default: '1', + description: 'Indentation factor as rem value for children nodes. Defaults to 1rem.' + }, + { + name: 'showGridlines', + type: 'boolean', + default: 'false', + description: 'Whether to show grid lines between cells.' + }, + { + name: 'scrollable', + type: 'boolean', + default: 'false', + description: 'When specified, enables horizontal and/or vertical scrolling.' + }, + { + name: 'scrollHeight', + type: 'string', + default: 'null', + description: 'Height of the scroll viewport in fixed units or the "flex" keyword for a dynamic size.' + }, + { + name: 'size', + type: 'string', + default: 'null', + description: 'Defines the size of the table.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + }, + { + name: 'unstyled', + type: 'boolean', + default: 'false', + description: 'When enabled, it removes component related styles in the core.' + } +]; + +const TreeTableEvents = [ + { + name: 'page', + description: 'Callback to invoke on pagination. Sort and Filter information is also available for lazy loading implementation.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Original event' + }, + { + name: 'event.page', + type: 'number', + description: 'New page number' + }, + { + name: 'event.pageCount', + type: 'number', + description: 'Total page count' + }, + { + name: 'event.first', + type: 'number', + description: 'Index of first record' + }, + { + name: 'event.rows', + type: 'number', + description: 'Number of rows to display in new page' + }, + { + name: 'event.sortField', + type: 'object', + description: 'Field to sort against' + }, + { + name: 'event.sortOrder', + type: 'number', + description: 'Sort order as integer' + }, + { + name: 'event.multiSortMeta', + type: 'object', + description: 'MultiSort metadata' + }, + { + name: 'event.filters', + type: 'object', + description: 'Collection of active filters' + }, + { + name: 'event.filterMatchModes', + type: 'object', + description: 'Match modes per field' + } + ] + }, + { + name: 'sort', + description: 'Callback to invoke on sort. Page and Filter information is also available for lazy loading implementation.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Original event' + }, + { + name: 'event.first', + type: 'number', + description: 'Index of first record' + }, + { + name: 'event.rows', + type: 'number', + description: 'Number of rows to display in new page' + }, + { + name: 'event.sortField', + type: 'object', + description: 'Field to sort against' + }, + { + name: 'event.sortOrder', + type: 'number', + description: 'Sort order as integer' + }, + { + name: 'event.multiSortMeta', + type: 'object', + description: 'MultiSort metadata' + }, + { + name: 'event.filters', + type: 'object', + description: 'Collection of active filters' + }, + { + name: 'event.filterMatchModes', + type: 'object', + description: 'Match modes per field' + } + ] + }, + { + name: 'filter', + description: 'Event to emit after filtering, not triggered in lazy mode.', + arguments: [ + { + name: 'event.originalEvent', + type: 'object', + description: 'Original event' + }, + { + name: 'event.first', + type: 'number', + description: 'Index of first record' + }, + { + name: 'event.rows', + type: 'number', + description: 'Number of rows to display in new page' + }, + { + name: 'event.sortField', + type: 'object', + description: 'Field to sort against' + }, + { + name: 'event.sortOrder', + type: 'number', + description: 'Sort order as integer' + }, + { + name: 'event.multiSortMeta', + type: 'object', + description: 'MultiSort metadata' + }, + { + name: 'event.filters', + type: 'object', + description: 'Collection of active filters' + }, + { + name: 'event.filteredValue', + type: 'string', + description: 'Filtered collection' + }, + { + name: 'event.filterMatchModes', + type: 'object', + description: 'Match modes per field' + } + ] + }, + { + name: 'node-select', + description: 'Callback to invoke when a node is selected.', + arguments: [ + { + name: 'node', + type: 'object', + description: 'Node instance' + } + ] + }, + { + name: 'node-unselect', + description: 'Callback to invoke when a node is unselected.', + arguments: [ + { + name: 'node', + type: 'object', + description: 'Node instance' + } + ] + }, + { + name: 'node-expand', + description: 'Callback to invoke when a node is expanded.', + arguments: [ + { + name: 'node', + type: 'object', + description: 'Node instance' + } + ] + }, + { + name: 'node-collapse', + description: 'Callback to invoke when a node is collapsed.', + arguments: [ + { + name: 'node', + type: 'object', + description: 'Node instance' + } + ] + }, + { + name: 'column-resize-end', + description: 'Callback to invoke when a column is resized.', + arguments: [ + { + name: 'event.element', + type: 'object', + description: 'DOM element of the resized column.' + }, + { + name: 'event.delta', + type: 'number', + description: 'Change in column width' + } + ] + } +]; + +const TreeTableSlots = [ + { + name: 'header', + description: "Custom content for the component's header." + }, + { + name: 'paginatorstart', + description: "Custom content for the component paginator's left side." + }, + { + name: 'paginatorend', + description: "Custom content for the component paginator's right side." + }, + { + name: 'empty', + description: 'Custom content when there is no data to display.' + }, + { + name: 'footer', + description: "Custom content for the component's footer." + }, + { + name: 'loadingicon', + description: 'Custom loading icon template.' + }, + { + name: 'toggleicon', + description: 'Custom toggler icon template.' + }, + { + name: 'checkboxicon', + description: 'Custom checkbox icon template.' + }, + { + name: 'sorticon', + description: 'Custom sort icon template.' + }, + { + name: 'paginatorfirstpagelinkicon', + description: 'Custom paginator first page link icon template.' + }, + { + name: 'paginatorprevpagelinkicon', + description: 'Custom paginator prev page link icon template.' + }, + { + name: 'paginatornextpagelinkicon', + description: 'Custom paginator next page link icon template.' + }, + { + name: 'paginatorlastpagelinkicon', + description: 'Custom paginator last page link icon template.' + } +]; + +module.exports = { + treetable: { + name: 'TreeTable', + description: 'TreeTable is used to display hierarchical data in tabular format.', + props: TreeTableProps, + events: TreeTableEvents, + slots: TreeTableSlots + } +}; diff --git a/packages/primevue/scripts/components/virtualscroller.js b/packages/primevue/scripts/components/virtualscroller.js new file mode 100644 index 0000000000..a0a7b72fca --- /dev/null +++ b/packages/primevue/scripts/components/virtualscroller.js @@ -0,0 +1,186 @@ +const VirtualScrollerProps = [ + { + name: 'id', + type: 'string', + default: 'null', + description: 'Unique identifier of the element.' + }, + { + name: 'style', + type: 'any', + default: 'null', + description: 'Inline style of the component.' + }, + { + name: 'class', + type: 'string', + default: 'null', + description: 'Style class of the component.' + }, + { + name: 'items', + type: 'array', + default: 'null', + description: 'An array of objects to display.' + }, + { + name: 'itemSize', + type: 'number|array', + default: 'null', + description: 'The height/width of item according to orientation.' + }, + { + name: 'scrollHeight', + type: 'string', + default: 'null', + description: 'Height of the scroll viewport.' + }, + { + name: 'scrollWidth', + type: 'string', + default: 'null', + description: 'Width of the scroll viewport.' + }, + { + name: 'orientation', + type: 'string', + default: 'vertical', + description: "The orientation of scrollbar, valid values are 'vertical', 'horizontal' and 'both'." + }, + { + name: 'numToleratedItems', + type: 'number', + default: 'null', + description: + 'Determines how many additional elements to add to the DOM outside of the view. According to the scrolls made up and down, extra items are added in a certain algorithm in the form of multiples of this number. Default value is half the number of items shown in the view.' + }, + { + name: 'delay', + type: 'number', + default: '0', + description: 'Delay in scroll before new data is loaded.' + }, + { + name: 'lazy', + type: 'boolean', + default: 'false', + description: 'Defines if data is loaded and interacted with in lazy manner.' + }, + { + name: 'disabled', + type: 'boolean', + default: 'false', + description: 'If disabled, the VirtualScroller feature is eliminated and the content is displayed directly.' + }, + { + name: 'loaderDisabled', + type: 'boolean', + default: 'false', + description: 'Used to implement a custom loader instead of using the loader feature in the VirtualScroller.' + }, + { + name: 'loading', + type: 'boolean', + default: 'false', + description: 'Whether the data is loaded.' + }, + { + name: 'showSpacer', + type: 'boolean', + default: 'true', + description: 'Used to implement a custom spacer instead of using the spacer feature in the VirtualScroller.' + }, + { + name: 'showLoader', + type: 'boolean', + default: 'false', + description: 'Whether to show loader.' + }, + { + name: 'tabindex', + type: 'number|string', + default: '0', + description: 'Index of the element in tabbing order.' + }, + { + name: 'pt', + type: 'any', + default: 'null', + description: 'Used to pass attributes to DOM elements inside the component.' + } +]; + +const VirtualScrollerEvents = [ + { + name: 'scroll', + description: 'Callback to invoke when scroll position changes.', + arguments: [ + { + name: 'event', + type: 'any', + description: 'Browser event.' + } + ] + }, + { + name: 'scroll-index-change', + description: "Callback to invoke when scroll position and item's range in view changes.", + arguments: [ + { + name: 'event.first', + type: 'number', + description: 'First index of the new data range to be loaded.' + }, + { + name: 'event.last', + type: 'number', + description: 'Last index of the new data range to be loaded.' + } + ] + }, + { + name: 'lazy-load', + description: 'Callback to invoke in lazy mode to load new data.', + arguments: [ + { + name: 'event.first', + type: 'number', + description: 'First index of the new data range to be loaded.' + }, + { + name: 'event.last', + type: 'number', + description: 'Last index of the new data range to be loaded.' + } + ] + } +]; + +const VirtualScrollerSlots = [ + { + name: 'item', + description: 'Content for the item.' + }, + { + name: 'content', + description: 'Custom content for the component.' + }, + { + name: 'loader', + description: 'Custom content for the loader items.' + }, + { + name: 'loadingicon', + description: 'Custom loading icon template.' + } +]; + +module.exports = { + virtualscroller: { + name: 'VirtualScroller', + description: 'VirtualScroller is a performant approach to handle huge data efficiently.', + props: VirtualScrollerProps, + events: VirtualScrollerEvents, + slots: VirtualScrollerSlots + } +}; diff --git a/packages/primevue/scripts/postbuild.mjs b/packages/primevue/scripts/postbuild.mjs new file mode 100644 index 0000000000..6ba5621517 --- /dev/null +++ b/packages/primevue/scripts/postbuild.mjs @@ -0,0 +1,14 @@ +import fs from 'fs-extra'; +import path from 'path'; +import { clearPackageJson, copyDependencies, renameDTSFile, resolvePath } from '../../../scripts/build-helper.mjs'; + +const { __dirname, __workspace, INPUT_DIR, OUTPUT_DIR } = resolvePath(import.meta.url); + +copyDependencies(INPUT_DIR, OUTPUT_DIR, '/style'); +renameDTSFile(OUTPUT_DIR, 'index'); + +fs.copySync(path.resolve(__dirname, '../package.json'), `${OUTPUT_DIR}/package.json`); +fs.copySync(path.resolve(__dirname, '../README.md'), `${OUTPUT_DIR}/README.md`); +fs.copySync(path.resolve(__workspace, './LICENSE.md'), `${OUTPUT_DIR}/LICENSE.md`); + +clearPackageJson(path.resolve(__dirname, `../${OUTPUT_DIR}/package.json`)); diff --git a/packages/primevue/scripts/prebuild.mjs b/packages/primevue/scripts/prebuild.mjs new file mode 100644 index 0000000000..268f521e33 --- /dev/null +++ b/packages/primevue/scripts/prebuild.mjs @@ -0,0 +1,35 @@ +import fs from 'fs-extra'; +import path from 'path'; +import { removeBuild, resolvePath, updatePackageJson } from '../../../scripts/build-helper.mjs'; + +removeBuild(import.meta.url); + +const { __dirname, INPUT_DIR } = resolvePath(import.meta.url); +const __root = path.resolve(__dirname, '../'); +const pkg = path.resolve(__root, './package.json'); + +updatePackageJson(pkg); + +// update package.json > "exports" for local +let exports = {}; + +fs.readdirSync(path.resolve(__root, INPUT_DIR), { withFileTypes: true }) + .filter((dir) => dir.isDirectory()) + .forEach(({ name: folderName }) => { + fs.readdirSync(path.resolve(__root, INPUT_DIR + folderName)).forEach((file) => { + let fileName = file.split(/(.vue)$|(.js)$/)[0]; + let name = fileName.toLowerCase(); + + if (name === folderName) { + exports[`./${folderName}`] = `./${INPUT_DIR}${folderName}/${file}`; + exports[`./${folderName}/style`] = `./${INPUT_DIR}${folderName}/style/${fileName}Style.js`; + } + }); + }); +exports['./*'] = './*'; + +const pkgJson = JSON.parse(fs.readFileSync(pkg, { encoding: 'utf8', flag: 'r' })); + +pkgJson.exports = exports; + +fs.writeFileSync(pkg, JSON.stringify(pkgJson, null, 4)); diff --git a/components/lib/accordion/Accordion.d.ts b/packages/primevue/src/accordion/Accordion.d.ts similarity index 99% rename from components/lib/accordion/Accordion.d.ts rename to packages/primevue/src/accordion/Accordion.d.ts index 47f47dc20e..25481fb8c7 100755 --- a/components/lib/accordion/Accordion.d.ts +++ b/packages/primevue/src/accordion/Accordion.d.ts @@ -8,7 +8,7 @@ * */ import { VNode } from 'vue'; -import { ComponentHooks } from '../basecomponent'; +import { ComponentHooks } from '../../../core/src/basecomponent'; import { PassThroughOptions } from '../passthrough'; import { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '../ts-helpers'; diff --git a/components/lib/accordion/Accordion.spec.js b/packages/primevue/src/accordion/Accordion.spec.js similarity index 100% rename from components/lib/accordion/Accordion.spec.js rename to packages/primevue/src/accordion/Accordion.spec.js diff --git a/components/lib/accordion/Accordion.vue b/packages/primevue/src/accordion/Accordion.vue similarity index 97% rename from components/lib/accordion/Accordion.vue rename to packages/primevue/src/accordion/Accordion.vue index c1821be689..45499f0a48 100755 --- a/components/lib/accordion/Accordion.vue +++ b/packages/primevue/src/accordion/Accordion.vue @@ -28,12 +28,12 @@ diff --git a/components/lib/datatable/BodyRow.vue b/packages/primevue/src/datatable/BodyRow.vue similarity index 98% rename from components/lib/datatable/BodyRow.vue rename to packages/primevue/src/datatable/BodyRow.vue index e82e272a62..18d37ab994 100644 --- a/components/lib/datatable/BodyRow.vue +++ b/packages/primevue/src/datatable/BodyRow.vue @@ -93,10 +93,10 @@ diff --git a/packages/primevue/src/datatable/HeaderCell.vue b/packages/primevue/src/datatable/HeaderCell.vue new file mode 100644 index 0000000000..67eaea3679 --- /dev/null +++ b/packages/primevue/src/datatable/HeaderCell.vue @@ -0,0 +1,377 @@ + + + diff --git a/components/lib/datatable/HeaderCheckbox.vue b/packages/primevue/src/datatable/HeaderCheckbox.vue similarity index 95% rename from components/lib/datatable/HeaderCheckbox.vue rename to packages/primevue/src/datatable/HeaderCheckbox.vue index 240adb3fb1..6efe4c6153 100755 --- a/components/lib/datatable/HeaderCheckbox.vue +++ b/packages/primevue/src/datatable/HeaderCheckbox.vue @@ -8,9 +8,9 @@ diff --git a/packages/primevue/src/treetable/FooterCell.vue b/packages/primevue/src/treetable/FooterCell.vue new file mode 100644 index 0000000000..bf77bb51e5 --- /dev/null +++ b/packages/primevue/src/treetable/FooterCell.vue @@ -0,0 +1,104 @@ + + + diff --git a/packages/primevue/src/treetable/HeaderCell.vue b/packages/primevue/src/treetable/HeaderCell.vue new file mode 100644 index 0000000000..d8fe4019e5 --- /dev/null +++ b/packages/primevue/src/treetable/HeaderCell.vue @@ -0,0 +1,242 @@ + + + diff --git a/components/lib/treetable/TreeTable.d.ts b/packages/primevue/src/treetable/TreeTable.d.ts similarity index 99% rename from components/lib/treetable/TreeTable.d.ts rename to packages/primevue/src/treetable/TreeTable.d.ts index b9481b12b1..edb504b53a 100755 --- a/components/lib/treetable/TreeTable.d.ts +++ b/packages/primevue/src/treetable/TreeTable.d.ts @@ -8,7 +8,7 @@ * */ import { VNode } from 'vue'; -import { ComponentHooks } from '../basecomponent'; +import { ComponentHooks } from '../../../core/src/basecomponent'; import { ColumnPassThroughOptionType } from '../column'; import { PaginatorPassThroughOptionType } from '../paginator'; import { PassThroughOptions } from '../passthrough'; diff --git a/components/lib/treetable/TreeTable.vue b/packages/primevue/src/treetable/TreeTable.vue similarity index 99% rename from components/lib/treetable/TreeTable.vue rename to packages/primevue/src/treetable/TreeTable.vue index 215b7cdcb6..1a5057d93c 100755 --- a/components/lib/treetable/TreeTable.vue +++ b/packages/primevue/src/treetable/TreeTable.vue @@ -168,10 +168,10 @@