parent
02dfc6d2b3
commit
c01c6404af
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "showcase",
|
||||
"version": "4.0.7",
|
||||
"version": "4.1.0",
|
||||
"author": "PrimeTek Informatics",
|
||||
"description": "",
|
||||
"homepage": "https://primevue.org/",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@primevue/auto-import-resolver",
|
||||
"version": "4.0.7",
|
||||
"version": "4.1.0",
|
||||
"author": "PrimeTek Informatics",
|
||||
"description": "",
|
||||
"homepage": "https://primevue.org/",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@primevue/core",
|
||||
"version": "4.0.7",
|
||||
"version": "4.1.0",
|
||||
"author": "PrimeTek Informatics",
|
||||
"description": "",
|
||||
"homepage": "https://primevue.org/",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@primevue/icons",
|
||||
"version": "4.0.7",
|
||||
"version": "4.1.0",
|
||||
"author": "PrimeTek Informatics",
|
||||
"description": "",
|
||||
"homepage": "https://primevue.org/",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@primevue/metadata",
|
||||
"version": "4.0.7",
|
||||
"version": "4.1.0",
|
||||
"author": "PrimeTek Informatics",
|
||||
"description": "",
|
||||
"homepage": "https://primevue.org/",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@primevue/nuxt-module",
|
||||
"version": "4.0.7",
|
||||
"version": "4.1.0",
|
||||
"author": "PrimeTek Informatics",
|
||||
"description": "Nuxt module for PrimeVue",
|
||||
"homepage": "https://primevue.org/",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "primevue",
|
||||
"version": "4.0.7",
|
||||
"version": "4.1.0",
|
||||
"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/",
|
||||
|
@ -142,6 +142,8 @@
|
|||
"./iftalabel/style": "./src/iftalabel/style/IftaLabelStyle.js",
|
||||
"./image": "./src/image/Image.vue",
|
||||
"./image/style": "./src/image/style/ImageStyle.js",
|
||||
"./imagecompare": "./src/imagecompare/ImageCompare.vue",
|
||||
"./imagecompare/style": "./src/imagecompare/style/ImageCompareStyle.js",
|
||||
"./inlinemessage": "./src/inlinemessage/InlineMessage.vue",
|
||||
"./inlinemessage/style": "./src/inlinemessage/style/InlineMessageStyle.js",
|
||||
"./inplace": "./src/inplace/Inplace.vue",
|
||||
|
@ -164,6 +166,8 @@
|
|||
"./inputswitch/style": "./src/inputswitch/style/InputSwitchStyle.js",
|
||||
"./inputtext": "./src/inputtext/InputText.vue",
|
||||
"./inputtext/style": "./src/inputtext/style/InputTextStyle.js",
|
||||
"./keyfilter": "./src/keyfilter/KeyFilter.js",
|
||||
"./keyfilter/style": "./src/keyfilter/style/KeyFilterStyle.js",
|
||||
"./knob": "./src/knob/Knob.vue",
|
||||
"./knob/style": "./src/knob/style/KnobStyle.js",
|
||||
"./listbox": "./src/listbox/Listbox.vue",
|
||||
|
|
|
@ -322,12 +322,24 @@ export { default as IconField } from './iconfield/IconField.vue';
|
|||
export * from './iconfield/style/IconFieldStyle.js';
|
||||
export { default as IconFieldStyle } from './iconfield/style/IconFieldStyle.js';
|
||||
|
||||
// IftaLabel
|
||||
export * from './iftalabel/IftaLabel.vue';
|
||||
export { default as IftaLabel } from './iftalabel/IftaLabel.vue';
|
||||
export * from './iftalabel/style/IftaLabelStyle.js';
|
||||
export { default as IftaLabelStyle } from './iftalabel/style/IftaLabelStyle.js';
|
||||
|
||||
// Image
|
||||
export * from './image/Image.vue';
|
||||
export { default as Image } from './image/Image.vue';
|
||||
export * from './image/style/ImageStyle.js';
|
||||
export { default as ImageStyle } from './image/style/ImageStyle.js';
|
||||
|
||||
// ImageCompare
|
||||
export * from './imagecompare/ImageCompare.vue';
|
||||
export { default as ImageCompare } from './imagecompare/ImageCompare.vue';
|
||||
export * from './imagecompare/style/ImageCompareStyle.js';
|
||||
export { default as ImageCompareStyle } from './imagecompare/style/ImageCompareStyle.js';
|
||||
|
||||
// InlineMessage
|
||||
export * from './inlinemessage/InlineMessage.vue';
|
||||
export { default as InlineMessage } from './inlinemessage/InlineMessage.vue';
|
||||
|
@ -394,6 +406,12 @@ export { default as InputText } from './inputtext/InputText.vue';
|
|||
export * from './inputtext/style/InputTextStyle.js';
|
||||
export { default as InputTextStyle } from './inputtext/style/InputTextStyle.js';
|
||||
|
||||
// KeyFilter
|
||||
export * from './keyfilter/KeyFilter.js';
|
||||
export { default as KeyFilter } from './keyfilter/KeyFilter.js';
|
||||
export * from './keyfilter/style/KeyFilterStyle.js';
|
||||
export { default as KeyFilterStyle } from './keyfilter/style/KeyFilterStyle.js';
|
||||
|
||||
// Knob
|
||||
export * from './knob/Knob.vue';
|
||||
export { default as Knob } from './knob/Knob.vue';
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@primevue/themes",
|
||||
"version": "4.0.7",
|
||||
"version": "4.1.0",
|
||||
"author": "PrimeTek Informatics",
|
||||
"description": "",
|
||||
"homepage": "https://primevue.org/",
|
||||
|
|
|
@ -2,31 +2,31 @@
|
|||
"publishedPackages": [
|
||||
{
|
||||
"name": "@primevue/core",
|
||||
"version": "4.0.7"
|
||||
"version": "4.1.0"
|
||||
},
|
||||
{
|
||||
"name": "@primevue/metadata",
|
||||
"version": "4.0.7"
|
||||
"version": "4.1.0"
|
||||
},
|
||||
{
|
||||
"name": "@primevue/themes",
|
||||
"version": "4.0.7"
|
||||
"version": "4.1.0"
|
||||
},
|
||||
{
|
||||
"name": "@primevue/auto-import-resolver",
|
||||
"version": "4.0.7"
|
||||
"version": "4.1.0"
|
||||
},
|
||||
{
|
||||
"name": "@primevue/icons",
|
||||
"version": "4.0.7"
|
||||
"version": "4.1.0"
|
||||
},
|
||||
{
|
||||
"name": "primevue",
|
||||
"version": "4.0.7"
|
||||
"version": "4.1.0"
|
||||
},
|
||||
{
|
||||
"name": "@primevue/nuxt-module",
|
||||
"version": "4.0.7"
|
||||
"version": "4.1.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue