Skip to content

Commit

Permalink
Version 4.1.0 released
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Oct 7, 2024
1 parent 02dfc6d commit c01c640
Show file tree
Hide file tree
Showing 10 changed files with 42 additions and 20 deletions.
2 changes: 1 addition & 1 deletion apps/showcase/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "showcase",
"version": "4.0.7",
"version": "4.1.0",
"author": "PrimeTek Informatics",
"description": "",
"homepage": "https://primevue.org/",
Expand Down
2 changes: 1 addition & 1 deletion packages/auto-import-resolver/package.json
Original file line number Diff line number Diff line change
@@ -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/",
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@primevue/core",
"version": "4.0.7",
"version": "4.1.0",
"author": "PrimeTek Informatics",
"description": "",
"homepage": "https://primevue.org/",
Expand Down Expand Up @@ -61,4 +61,4 @@
"engines": {
"node": ">=12.11.0"
}
}
}
4 changes: 2 additions & 2 deletions packages/icons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@primevue/icons",
"version": "4.0.7",
"version": "4.1.0",
"author": "PrimeTek Informatics",
"description": "",
"homepage": "https://primevue.org/",
Expand Down Expand Up @@ -45,4 +45,4 @@
"engines": {
"node": ">=12.11.0"
}
}
}
2 changes: 1 addition & 1 deletion packages/metadata/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@primevue/metadata",
"version": "4.0.7",
"version": "4.1.0",
"author": "PrimeTek Informatics",
"description": "",
"homepage": "https://primevue.org/",
Expand Down
4 changes: 2 additions & 2 deletions packages/nuxt-module/package.json
Original file line number Diff line number Diff line change
@@ -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/",
Expand Down Expand Up @@ -92,4 +92,4 @@
"engines": {
"node": ">=12.11.0"
}
}
}
8 changes: 6 additions & 2 deletions packages/primevue/package.json
Original file line number Diff line number Diff line change
@@ -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/",
Expand Down Expand Up @@ -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",
Expand All @@ -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",
Expand Down Expand Up @@ -339,4 +343,4 @@
"engines": {
"node": ">=12.11.0"
}
}
}
18 changes: 18 additions & 0 deletions packages/primevue/src/primevue.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -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';
Expand Down
4 changes: 2 additions & 2 deletions packages/themes/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@primevue/themes",
"version": "4.0.7",
"version": "4.1.0",
"author": "PrimeTek Informatics",
"description": "",
"homepage": "https://primevue.org/",
Expand Down Expand Up @@ -87,4 +87,4 @@
"engines": {
"node": ">=12.11.0"
}
}
}
14 changes: 7 additions & 7 deletions pnpm-publish-summary.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
]
}

0 comments on commit c01c640

Please sign in to comment.