Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ROU-11479: Update Virtual Select provider to v1.0.47 #1008

Merged
merged 2 commits into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# OutSystems UI · v2.21.1
# OutSystems UI · v2.22.0

![GitHub License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg) ![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)

Expand Down
2 changes: 1 addition & 1 deletion gulp/ProjectSpecs/DefaultSpecs.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const constants = {

// Store the default project specifications
const specs = {
"version": "2.21.1",
"version": "2.22.0",
"name": "OutSystems UI",
"description": "",
"url": "Website:\n • https://www.outsystems.com/outsystems-ui",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "outsystems-ui",
"version": "2.21.1",
"version": "2.22.0",
"description": "OutSystems UI Framework",
"license": "BSD-3-Clause",
"scripts": {
Expand Down Expand Up @@ -67,6 +67,6 @@
"typedoc-plugin-merge-modules": "^4.0.1",
"typedoc-umlclass": "^0.7.0",
"typescript": "^4.5.0",
"virtual-select-plugin": "^1.0.46"
"virtual-select-plugin": "^1.0.47"
}
}
2 changes: 1 addition & 1 deletion src/scripts/OSFramework/OSUI/Constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ namespace OSFramework.OSUI.Constants {
export const OSPlatform = '<->platformType<->';

/* OSUI Version */
export const OSUIVersion = '2.21.1';
export const OSUIVersion = '2.22.0';

/* Constant to be used across project as the zero value*/
export const ZeroValue = 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace Providers.OSUI.Dropdown.VirtualSelect.Enum {
*/
export enum ProviderInfo {
Name = 'VirtualSelect',
Version = '1.0.46',
Version = '1.0.47',
}

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# VirtualSelect · ![virtualselect version](https://img.shields.io/badge/version-v1.0.46-informational)
# VirtualSelect · ![virtualselect version](https://img.shields.io/badge/version-v1.0.47-informational)

All info about this Provider <a href="https://sa-si-dev.github.io/virtual-select/#/">here</a>.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Virtual Select v1.0.46
* Virtual Select v1.0.47
* https://sa-si-dev.github.io/virtual-select
* Licensed under MIT (https://github.com/sa-si-dev/virtual-select/blob/master/LICENSE)
*/
Expand Down
Loading