Skip to content

Commit

Permalink
Merge branch 'master' into 10258-ajax-minimum-load-animation-duration
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Jan 8, 2024
2 parents 0ac5906 + 80303f7 commit 8dca999
Show file tree
Hide file tree
Showing 50 changed files with 731 additions and 227 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on: [push, pull_request, workflow_dispatch]
env:
MAVEN_OPTS: >-
-Dmaven.wagon.httpconnectionManager.ttlSeconds=120
SCREENSHOT_DIRECTORY: '/tmp/pf_it/'

jobs:
build:
Expand Down Expand Up @@ -54,6 +55,13 @@ jobs:
run: mvn clean install -pl -primefaces-integration-tests-jakarta -T1C -DskipTests -Dcheckstyle.skip -Djsdoc.skip.typedoc=true -Dmaven.javadoc.skip=true --batch-mode --show-version
- name: Integration Tests
run: mvn -B -V clean install -fprimefaces-integration-tests/pom.xml -Pintegration-tests,parallel-execution,headless,chrome,theme-saga,csp,${{ matrix.facesimpl }}
- name: Upload failure-screenshots
uses: actions/upload-artifact@v4
if: always()
with:
name: failed_tests_screenshots_java${{ matrix.java }}_${{ matrix.facesimpl }}
if-no-files-found: ignore
path: /tmp/pf_it/


integration-tests-40:
Expand All @@ -77,3 +85,10 @@ jobs:
run: mvn clean install -T1C -DskipTests -Dcheckstyle.skip -Djsdoc.skip.typedoc=true -Dmaven.javadoc.skip=true --batch-mode --show-version
- name: Integration Tests
run: mvn -B -V clean install -fprimefaces-integration-tests-jakarta/pom.xml -Pintegration-tests,parallel-execution,headless,chrome,theme-saga,csp,${{ matrix.facesimpl }}
- name: Upload failure-screenshots
uses: actions/upload-artifact@v4
if: always()
with:
name: failed_tests_screenshots_java${{ matrix.java }}_${{ matrix.facesimpl }}_jakarta
if-no-files-found: ignore
path: /tmp/pf_it/
10 changes: 10 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
schedule:
- cron: '0 6 * * *'

env:
SCREENSHOT_DIRECTORY: '/tmp/pf_it/'

permissions:
contents: read

Expand Down Expand Up @@ -33,3 +36,10 @@ jobs:
run: mvn clean install -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 --batch-mode --show-version
- name: Integration Tests
run: mvn -B -V clean install -fprimefaces-integration-tests/pom.xml -Pintegration-tests,headless,${{ matrix.profile }}
- name: Upload failure-screenshots
uses: actions/upload-artifact@v4
if: always()
with:
name: failed_tests_screenshots_java${{ matrix.java }}_${{ matrix.facesimpl }}
if-no-files-found: ignore
path: /tmp/pf_it/
1 change: 1 addition & 0 deletions docs/10_0_0/components/confirm.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Confirm is a behavior element used to integrate with global confirm dialog/popup
| icon | null | String | Icon to display next to message.
| disabled | false | Boolean | Disables confirm behavior when true.
| escape | true | Boolean | Whether to escape the message.
| beforeShow | null | String | Callback to execute before displaying confirmation dialog. Return false to prevent dialog from appearing.

## Getting started with Confirm
See global confirm dialog/popup topic in next section for details.
1 change: 1 addition & 0 deletions docs/10_0_0/components/selectcheckboxmenu.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ labelSeparator | , | String | Separator for joining item lables if updateLabel i
emptyLabel | null | String | Label to be shown in updateLabel mode when no item is selected. If not set the label is shown.
filterPlaceholder | null | String | Placeholder text to show when filter input is empty.
hideNoSelectionOption | false | boolean | Flag indicating that, if this component is activated by the user, The "no selection option", if any, must be hidden.
collectionType | null | String | Optional attribute that is a literal string that is the fully qualified class name of a concrete class that implements `java.util.Collection` or an EL expression that evaluates to either 1. such a String, or 2. the `Class` object itself.


## Getting started with SelectCheckboxMenu
Expand Down
1 change: 1 addition & 0 deletions docs/11_0_0/components/confirm.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Confirm is a behavior element used to integrate with global confirm dialog/popup
| icon | null | String | Icon to display next to message.
| disabled | false | Boolean | Disables confirm behavior when true.
| escape | true | Boolean | Whether to escape the message.
| beforeShow | null | String | Callback to execute before displaying confirmation dialog. Return false to prevent dialog from appearing.

## Getting started with Confirm
See global confirm dialog/popup topic in next section for details.
1 change: 1 addition & 0 deletions docs/11_0_0/components/selectcheckboxmenu.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ labelSeparator | , | String | Separator for joining item lables if updateLabel i
emptyLabel | null | String | Label to be shown in updateLabel mode when no item is selected. If not set the label is shown.
filterPlaceholder | null | String | Placeholder text to show when filter input is empty.
hideNoSelectionOption | false | boolean | Flag indicating that, if this component is activated by the user, The "no selection option", if any, must be hidden.
collectionType | null | String | Optional attribute that is a literal string that is the fully qualified class name of a concrete class that implements `java.util.Collection` or an EL expression that evaluates to either 1. such a String, or 2. the `Class` object itself.


## Getting started with SelectCheckboxMenu
Expand Down
1 change: 1 addition & 0 deletions docs/12_0_0/components/confirm.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Confirm is a behavior element used to integrate with global confirm dialog/popup
| icon | null | String | Icon to display next to message.
| disabled | false | Boolean | Disables confirm behavior when true.
| escape | true | Boolean | Whether to escape the message.
| beforeShow | null | String | Callback to execute before displaying confirmation dialog. Return false to prevent dialog from appearing.

## Getting started with Confirm
See global confirm dialog/popup topic in next section for details.
1 change: 1 addition & 0 deletions docs/12_0_0/components/selectcheckboxmenu.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ labelSeparator | , | String | Separator for joining item lables if updateLabel i
emptyLabel | null | String | Label to be shown in updateLabel mode when no item is selected. If not set the label is shown.
filterPlaceholder | null | String | Placeholder text to show when filter input is empty.
hideNoSelectionOption | false | boolean | Flag indicating that, if this component is activated by the user, The "no selection option", if any, must be hidden.
collectionType | null | String | Optional attribute that is a literal string that is the fully qualified class name of a concrete class that implements `java.util.Collection` or an EL expression that evaluates to either 1. such a String, or 2. the `Class` object itself.


## Getting started with SelectCheckboxMenu
Expand Down
1 change: 1 addition & 0 deletions docs/13_0_0/components/confirm.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Confirm is a behavior element used to integrate with global confirm dialog/popup
| icon | null | String | Icon to display next to message.
| disabled | false | Boolean | Disables confirm behavior when true.
| escape | true | Boolean | Whether to escape the message.
| beforeShow | null | String | Callback to execute before displaying confirmation dialog. Return false to prevent dialog from appearing.

## Getting started with Confirm
See global confirm dialog/popup topic in next section for details.
1 change: 1 addition & 0 deletions docs/13_0_0/components/selectcheckboxmenu.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ emptyLabel | null | String | Label to be shown in updateLabel mode when no item
filterPlaceholder | null | String | Placeholder text to show when filter input is empty.
hideNoSelectionOption | false | boolean | Flag indicating that, if this component is activated by the user, The "no selection option", if any, must be hidden.
var | null | String | Name of iterator to be used in custom content display.
collectionType | null | String | Optional attribute that is a literal string that is the fully qualified class name of a concrete class that implements `java.util.Collection` or an EL expression that evaluates to either 1. such a String, or 2. the `Class` object itself.

## Getting started with SelectCheckboxMenu
SelectCheckboxMenu usage is same as the standard selectManyCheckbox or PrimeFaces
Expand Down
2 changes: 1 addition & 1 deletion docs/14_0_0/components/columntoggler.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ For this to contain meaningful ids your columns should define an id attribute ot

| Event | Listener Parameter | Fired |
| --- | --- | --- |
| toggle | org.primefaces.event.ToggleEvent | On item selection/unselection. |
| toggle | org.primefaces.event.ColumnToggleEvent | On item selection/unselection. |
| close | org.primefaces.event.ToggleCloseEvent | On closing of toggler popup. |

## Client Side API
Expand Down
1 change: 1 addition & 0 deletions docs/14_0_0/components/confirm.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Confirm is a behavior element used to integrate with global confirm dialog/popup
| icon | null | String | Icon to display next to message.
| disabled | false | Boolean | Disables confirm behavior when true.
| escape | true | Boolean | Whether to escape the message.
| beforeShow | null | String | Callback to execute before displaying confirmation dialog. Return false to prevent dialog from appearing.

## Getting started with Confirm
See global confirm dialog/popup topic in next section for details.
1 change: 1 addition & 0 deletions docs/14_0_0/components/selectcheckboxmenu.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ selectedLabel | null | String | Label to be shown in updateLabel mode when one o
filterPlaceholder | null | String | Placeholder text to show when filter input is empty.
hideNoSelectionOption | false | boolean | Flag indicating that, if this component is activated by the user, The "no selection option", if any, must be hidden.
var | null | String | Name of iterator to be used in custom content display.
collectionType | null | String | Optional attribute that is a literal string that is the fully qualified class name of a concrete class that implements `java.util.Collection` or an EL expression that evaluates to either 1. such a String, or 2. the `Class` object itself.

## Getting started with SelectCheckboxMenu
SelectCheckboxMenu usage is same as the standard selectManyCheckbox or PrimeFaces
Expand Down
Loading

0 comments on commit 8dca999

Please sign in to comment.