parent
87b1ff6c90
commit
44ade4f891
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@primevue/auto-import-resolver",
|
"name": "@primevue/auto-import-resolver",
|
||||||
"version": "4.0.1",
|
"version": "4.0.2",
|
||||||
"author": "PrimeTek Informatics",
|
"author": "PrimeTek Informatics",
|
||||||
"description": "",
|
"description": "",
|
||||||
"homepage": "https://primevue.org/",
|
"homepage": "https://primevue.org/",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@primevue/core",
|
"name": "@primevue/core",
|
||||||
"version": "4.0.1",
|
"version": "4.0.2",
|
||||||
"author": "PrimeTek Informatics",
|
"author": "PrimeTek Informatics",
|
||||||
"description": "",
|
"description": "",
|
||||||
"homepage": "https://primevue.org/",
|
"homepage": "https://primevue.org/",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@primevue/icons",
|
"name": "@primevue/icons",
|
||||||
"version": "4.0.1",
|
"version": "4.0.2",
|
||||||
"author": "PrimeTek Informatics",
|
"author": "PrimeTek Informatics",
|
||||||
"description": "",
|
"description": "",
|
||||||
"homepage": "https://primevue.org/",
|
"homepage": "https://primevue.org/",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@primevue/metadata",
|
"name": "@primevue/metadata",
|
||||||
"version": "4.0.1",
|
"version": "4.0.2",
|
||||||
"author": "PrimeTek Informatics",
|
"author": "PrimeTek Informatics",
|
||||||
"description": "",
|
"description": "",
|
||||||
"homepage": "https://primevue.org/",
|
"homepage": "https://primevue.org/",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@primevue/nuxt-module",
|
"name": "@primevue/nuxt-module",
|
||||||
"version": "4.0.1",
|
"version": "4.0.2",
|
||||||
"author": "PrimeTek Informatics",
|
"author": "PrimeTek Informatics",
|
||||||
"description": "Nuxt module for PrimeVue",
|
"description": "Nuxt module for PrimeVue",
|
||||||
"homepage": "https://primevue.org/",
|
"homepage": "https://primevue.org/",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "primevue",
|
"name": "primevue",
|
||||||
"version": "4.0.1",
|
"version": "4.0.2",
|
||||||
"author": "PrimeTek Informatics",
|
"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.",
|
"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/",
|
"homepage": "https://primevue.org/",
|
||||||
|
@ -130,6 +130,8 @@
|
||||||
"./fileupload/style": "./src/fileupload/style/FileUploadStyle.js",
|
"./fileupload/style": "./src/fileupload/style/FileUploadStyle.js",
|
||||||
"./floatlabel": "./src/floatlabel/FloatLabel.vue",
|
"./floatlabel": "./src/floatlabel/FloatLabel.vue",
|
||||||
"./floatlabel/style": "./src/floatlabel/style/FloatLabelStyle.js",
|
"./floatlabel/style": "./src/floatlabel/style/FloatLabelStyle.js",
|
||||||
|
"./fluid": "./src/fluid/Fluid.vue",
|
||||||
|
"./fluid/style": "./src/fluid/style/FluidStyle.js",
|
||||||
"./focustrap": "./src/focustrap/FocusTrap.js",
|
"./focustrap": "./src/focustrap/FocusTrap.js",
|
||||||
"./focustrap/style": "./src/focustrap/style/FocusTrapStyle.js",
|
"./focustrap/style": "./src/focustrap/style/FocusTrapStyle.js",
|
||||||
"./galleria": "./src/galleria/Galleria.vue",
|
"./galleria": "./src/galleria/Galleria.vue",
|
||||||
|
|
|
@ -298,6 +298,12 @@ export { default as FloatLabel } from './floatlabel/FloatLabel.vue';
|
||||||
export * from './floatlabel/style/FloatLabelStyle.js';
|
export * from './floatlabel/style/FloatLabelStyle.js';
|
||||||
export { default as FloatLabelStyle } from './floatlabel/style/FloatLabelStyle.js';
|
export { default as FloatLabelStyle } from './floatlabel/style/FloatLabelStyle.js';
|
||||||
|
|
||||||
|
// Fluid
|
||||||
|
export * from './fluid/Fluid.vue';
|
||||||
|
export { default as Fluid } from './fluid/Fluid.vue';
|
||||||
|
export * from './fluid/style/FluidStyle.js';
|
||||||
|
export { default as FluidStyle } from './fluid/style/FluidStyle.js';
|
||||||
|
|
||||||
// FocusTrap
|
// FocusTrap
|
||||||
export * from './focustrap/FocusTrap.js';
|
export * from './focustrap/FocusTrap.js';
|
||||||
export { default as FocusTrap } from './focustrap/FocusTrap.js';
|
export { default as FocusTrap } from './focustrap/FocusTrap.js';
|
||||||
|
|
|
@ -2,31 +2,31 @@
|
||||||
"publishedPackages": [
|
"publishedPackages": [
|
||||||
{
|
{
|
||||||
"name": "@primevue/core",
|
"name": "@primevue/core",
|
||||||
"version": "4.0.1"
|
"version": "4.0.2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "@primevue/metadata",
|
"name": "@primevue/metadata",
|
||||||
"version": "4.0.1"
|
"version": "4.0.2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "@primevue/themes",
|
"name": "@primevue/themes",
|
||||||
"version": "4.0.1"
|
"version": "4.0.2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "@primevue/auto-import-resolver",
|
"name": "@primevue/auto-import-resolver",
|
||||||
"version": "4.0.1"
|
"version": "4.0.2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "@primevue/icons",
|
"name": "@primevue/icons",
|
||||||
"version": "4.0.1"
|
"version": "4.0.2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "primevue",
|
"name": "primevue",
|
||||||
"version": "4.0.1"
|
"version": "4.0.2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "@primevue/nuxt-module",
|
"name": "@primevue/nuxt-module",
|
||||||
"version": "4.0.1"
|
"version": "4.0.2"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue