🔖 Bump and release **alpha** version 21.18.0-alpha

Signed-off-by: palexdev <alessandro.parisi406@gmail.com>
This commit is contained in:
palexdev 2025-02-27 12:35:06 +01:00
parent 75d507e20c
commit 4cb62db297
4 changed files with 18 additions and 9 deletions

View File

@ -2,7 +2,7 @@
# Versions #
#--------------------------------------#
jdk=21
materialfx=21.18.0
materialfx=21.18.0-alpha
# Plugins
jfxPlugin=0.1.0
@ -14,7 +14,7 @@ shadowJarPlugin=9.0.0-beta4
jfx=23.0.1
mfxcore=11.11.4
mfxresources=11.12.2
vfx=21.7.8
vfx=21.7.9
cssfx=11+
ikonli=12.3.1

View File

@ -68,4 +68,13 @@ shadowJar {
mavenPublishing {
publishToMavenCentral(SonatypeHost.S01)
signAllPublications()
}
configurations {
// Remove vanniktech non-sense
gradle.taskGraph.whenReady { graph ->
if (graph.hasTask(plainJavadocJar)) {
plainJavadocJar.enabled = false
}
}
}

View File

@ -1,6 +1,6 @@
GROUP=io.github.palexdev
POM_ARTIFACT_ID=materialfx
VERSION_NAME=21.18.0
VERSION_NAME=21.18.0-alpha
POM_NAME=materialfx
POM_DESCRIPTION=Material Desgin components for JavaFX

View File

@ -77,12 +77,12 @@
*In addition to the properties inherited by MFXComboBox:*
| Property | Description | Type |
| ------------------ | ---------------------------------------------------------------------------------------------------------------------------------------- | -----------------:|
| searchText | Specifies the text used to filter the items list.  By default this text is bound bidirectionally with the text-field's used in the popup | String |
| filterList | This is the list on which filtering and sorting are made. The original list remains untouched! | TransformableList |
| filterFunction | Specifies the function used to build a Predicate from the search text, the predicate is then used to filter the list | Function |
| resetOnPopupHidden | Specifies whether to reset the filter state, such as the searchText when the popup is closed | Boolean |
| Property | Description | Type |
|--------------------|------------------------------------------------------------------------------------------------------------------------------------------|------------------:|
| searchText | Specifies the text used to filter the items list.  By default this text is bound bidirectionally with the text-field's used in the popup | String |
| refineList | This is the list on which filtering and sorting are made. The original list remains untouched! | TransformableList |
| filterFunction | Specifies the function used to build a Predicate from the search text, the predicate is then used to filter the list | Function |
| resetOnPopupHidden | Specifies whether to reset the filter state, such as the searchText when the popup is closed | Boolean |
### Styleable Properties