├── .gitattributes ├── .github ├── FUNDING.yml ├── dependabot.yml ├── release.yml └── workflows │ └── maven.yml ├── .gitignore ├── .mvn └── wrapper │ └── maven-wrapper.properties ├── Dockerfile.koyeb ├── LICENSE ├── README.md ├── lombok.config ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── docker │ ├── Dockerfile.jvm │ └── Dockerfile.native ├── java │ └── org │ │ └── primefaces │ │ └── showcase │ │ ├── convert │ │ ├── CountryConverter.java │ │ ├── LocaleConverter.java │ │ ├── OrderConverter.java │ │ └── ThemeConverter.java │ │ ├── domain │ │ ├── Booking.java │ │ ├── Country.java │ │ ├── Customer.java │ │ ├── CustomerStatus.java │ │ ├── Document.java │ │ ├── Event.java │ │ ├── InventoryStatus.java │ │ ├── Mail.java │ │ ├── Movie.java │ │ ├── Order.java │ │ ├── Photo.java │ │ ├── Place.java │ │ ├── Player.java │ │ ├── Product.java │ │ ├── Representative.java │ │ ├── RoomCategory.java │ │ ├── Sale.java │ │ ├── Stats.java │ │ ├── Team.java │ │ ├── Theme.java │ │ └── User.java │ │ ├── menu │ │ ├── AppMenu.java │ │ ├── MenuCategory.java │ │ └── MenuItem.java │ │ ├── rest │ │ ├── CountryRestService.java │ │ └── ShowCaseServices.java │ │ ├── service │ │ ├── CountryService.java │ │ ├── CustomerService.java │ │ ├── DocumentService.java │ │ ├── ExtenderService.java │ │ ├── PhotoService.java │ │ ├── ProductService.java │ │ └── ThemeService.java │ │ ├── util │ │ ├── CaffeineCacheProvider.java │ │ ├── FileContent.java │ │ ├── FileContentMarkerUtil.java │ │ ├── FileContentSettings.java │ │ ├── Marker.java │ │ ├── MonacoEditorSettings.java │ │ ├── MultiPageMessagesSupport.java │ │ ├── ReflectionConfig.java │ │ ├── ShowcaseCacheProvider.java │ │ ├── ShowcaseSystemEventListener.java │ │ ├── ShowcaseUtil.java │ │ └── VirtualMachine.java │ │ └── view │ │ ├── ajax │ │ ├── BasicView.java │ │ ├── CounterView.java │ │ ├── DropdownView.java │ │ ├── FragmentView.java │ │ ├── LifecycleView.java │ │ ├── ListenerView.java │ │ ├── ObserverView.java │ │ ├── PollView.java │ │ ├── ProcessView.java │ │ ├── RemoteCommandView.java │ │ ├── RemoteValidationView.java │ │ ├── SearchView.java │ │ ├── SelectorView.java │ │ ├── UserView.java │ │ └── WebSocketView.java │ │ ├── app │ │ ├── App.java │ │ ├── TagLibrary.java │ │ └── TechnicalInfo.java │ │ ├── button │ │ ├── BasicView.java │ │ ├── ButtonView.java │ │ ├── ProductDetailView.java │ │ └── SpeedDialView.java │ │ ├── chartjs │ │ └── ChartView.java │ │ ├── colors │ │ └── ColorsView.java │ │ ├── csv │ │ ├── BeanValidationView.java │ │ ├── ComplexValidationView.java │ │ ├── CustomValidationView.java │ │ ├── Email.java │ │ ├── EmailClientValidationConstraint.java │ │ ├── EmailConstraintValidator.java │ │ ├── EmailValidator.java │ │ └── ValidationView.java │ │ ├── data │ │ ├── CarouselView.java │ │ ├── ChronolineView.java │ │ ├── DataGridView.java │ │ ├── DataScrollerView.java │ │ ├── MindmapView.java │ │ ├── OrderListView.java │ │ ├── OrganigramView.java │ │ ├── PickListView.java │ │ ├── ScheduleJava8View.java │ │ ├── TagCloudView.java │ │ ├── dataexporter │ │ │ ├── CustomizedDocumentsView.java │ │ │ ├── DataExporterView.java │ │ │ ├── LazyView.java │ │ │ └── TextExporter.java │ │ ├── datalist │ │ │ └── DataListView.java │ │ ├── datatable │ │ │ ├── AddRowView.java │ │ │ ├── BasicView.java │ │ │ ├── ColumnsView.java │ │ │ ├── ContextMenuView.java │ │ │ ├── CrudView.java │ │ │ ├── EditView.java │ │ │ ├── FilterView.java │ │ │ ├── GroupView.java │ │ │ ├── LazyCustomerDataModel.java │ │ │ ├── LazySorter.java │ │ │ ├── LazyView.java │ │ │ ├── MultiViewStateView.java │ │ │ ├── PaginatorView.java │ │ │ ├── ReorderView.java │ │ │ ├── ResizableColumnsView.java │ │ │ ├── RowGroupView.java │ │ │ ├── ScrollView.java │ │ │ ├── SelectionView.java │ │ │ ├── SortView.java │ │ │ ├── StickyView.java │ │ │ ├── SubTableView.java │ │ │ └── SummaryRowView.java │ │ ├── diagram │ │ │ ├── BasicView.java │ │ │ ├── EditableView.java │ │ │ ├── FlowChartView.java │ │ │ ├── HierarchicalView.java │ │ │ └── StateMachineView.java │ │ ├── gmap │ │ │ ├── AddMarkersView.java │ │ │ ├── CirclesView.java │ │ │ ├── DraggableMarkersView.java │ │ │ ├── EventView.java │ │ │ ├── GeocodeView.java │ │ │ ├── InfoWindowView.java │ │ │ ├── MarkerSelectionView.java │ │ │ ├── MarkersView.java │ │ │ ├── PolygonsView.java │ │ │ ├── PolylinesView.java │ │ │ └── RectanglesView.java │ │ ├── timeline │ │ │ ├── AllEventsTimelineView.java │ │ │ ├── BasicTimelineView.java │ │ │ ├── CustomTimelineView.java │ │ │ ├── DndTimelineView.java │ │ │ ├── EditServerTimelineView.java │ │ │ ├── GroupingTimelineView.java │ │ │ ├── LazyTimelineView.java │ │ │ ├── LimitTimelineRangeView.java │ │ │ ├── LinkedTimelinesView.java │ │ │ └── NestedGroupingTimelineView.java │ │ ├── tree │ │ │ ├── BasicView.java │ │ │ ├── ContextMenuView.java │ │ │ ├── DragDropView.java │ │ │ ├── EventsView.java │ │ │ ├── FileInfo.java │ │ │ ├── IconView.java │ │ │ ├── LazyLoadingView.java │ │ │ └── SelectionView.java │ │ └── treetable │ │ │ ├── BasicView.java │ │ │ ├── ColumnsView.java │ │ │ ├── ContextMenuView.java │ │ │ ├── EditView.java │ │ │ ├── EventsView.java │ │ │ ├── MultiViewStateView.java │ │ │ ├── PaginatorView.java │ │ │ ├── ScrollableView.java │ │ │ └── SelectionView.java │ │ ├── df │ │ ├── DFLevel1View.java │ │ ├── DFLevel2View.java │ │ ├── DFLevel3View.java │ │ ├── DFProductsView.java │ │ ├── DFResponsiveView.java │ │ ├── DFRootView.java │ │ └── DFView.java │ │ ├── dnd │ │ ├── ColumnManagerView.java │ │ └── DNDProductsView.java │ │ ├── file │ │ ├── FileDownloadView.java │ │ └── FileUploadView.java │ │ ├── input │ │ ├── AutoCompleteView.java │ │ ├── CalendarJava8View.java │ │ ├── CalendarView.java │ │ ├── CascadeSelectView.java │ │ ├── CheckboxView.java │ │ ├── ClockPickerView.java │ │ ├── ColorView.java │ │ ├── DatePickerMetadataView.java │ │ ├── EditorView.java │ │ ├── InplaceView.java │ │ ├── InputNumberView.java │ │ ├── InputOtpView.java │ │ ├── InputPhoneView.java │ │ ├── InputTextView.java │ │ ├── InputTextareaView.java │ │ ├── KeyboardView.java │ │ ├── KnobView.java │ │ ├── MaskView.java │ │ ├── MonacoEditorView.java │ │ ├── MultiSelectView.java │ │ ├── PasswordView.java │ │ ├── RadioView.java │ │ ├── RatingView.java │ │ ├── SelectBooleanView.java │ │ ├── SelectManyButtonView.java │ │ ├── SelectManyView.java │ │ ├── SelectOneButtonView.java │ │ ├── SelectOneMenuView.java │ │ ├── SelectOneView.java │ │ ├── SignatureView.java │ │ ├── SliderView.java │ │ ├── SpinnerView.java │ │ └── TriStateCheckboxView.java │ │ ├── menu │ │ ├── MegaMenuView.java │ │ ├── MenuBadgeView.java │ │ └── MenuView.java │ │ ├── message │ │ ├── GrowlView.java │ │ └── MessagesView.java │ │ ├── misc │ │ ├── AccessiblityView.java │ │ ├── AutoUpdateView.java │ │ ├── BlockUIView.java │ │ ├── CaptchaView.java │ │ ├── ChipView.java │ │ ├── ClockView.java │ │ ├── CspView.java │ │ ├── DefaultCommandView.java │ │ ├── EffectView.java │ │ ├── ExceptionHandlerView.java │ │ ├── FaceletView.java │ │ ├── FocusView.java │ │ ├── HotkeyView.java │ │ ├── IdleMonitorView.java │ │ ├── MockosxView.java │ │ ├── OutputLabelView.java │ │ ├── PrimeIconsView.java │ │ ├── ProgressBarView.java │ │ ├── RequestContextView.java │ │ ├── ResetInputView.java │ │ ├── ResizableView.java │ │ ├── SkeletonView.java │ │ ├── SpotlightView.java │ │ ├── ThemeSwitcherView.java │ │ └── terminal │ │ │ ├── BasicView.java │ │ │ └── TerminalAutoCompleteView.java │ │ ├── multimedia │ │ ├── CropUploaderBean.java │ │ ├── CropperView.java │ │ ├── DynamicCropper.java │ │ ├── DynamicGalleriaView.java │ │ ├── GalleriaView.java │ │ ├── GraphicImageView.java │ │ ├── ImagesView.java │ │ └── PhotoCamView.java │ │ ├── overlay │ │ ├── ConfirmView.java │ │ ├── DialogView.java │ │ ├── ImageSwitchView.java │ │ ├── MovieView.java │ │ └── UserLoginView.java │ │ ├── panel │ │ ├── DashboardView.java │ │ ├── FieldsetView.java │ │ ├── FlexGridView.java │ │ ├── MailboxView.java │ │ ├── OutputPanelView.java │ │ ├── PanelView.java │ │ ├── TabbedView.java │ │ ├── ToolbarView.java │ │ └── UserWizard.java │ │ └── primeflex │ │ └── ElevationView.java └── resources │ ├── META-INF │ ├── faces-config.xml │ ├── resources │ │ ├── error.xhtml │ │ ├── favicon.ico │ │ ├── icons.xhtml │ │ ├── index.xhtml │ │ ├── pfe-localized │ │ │ └── footer │ │ │ │ └── content │ │ ├── primeflex │ │ │ └── setup.xhtml │ │ ├── resources │ │ │ ├── composite │ │ │ │ ├── inputTextWrapper.xhtml │ │ │ │ └── inputTextWrapperWrapper.xhtml │ │ │ ├── demo │ │ │ │ ├── images │ │ │ │ │ ├── antalya │ │ │ │ │ │ ├── ataturkparki.png │ │ │ │ │ │ ├── kaleici.png │ │ │ │ │ │ ├── karaalioglu.png │ │ │ │ │ │ └── konyaalti.png │ │ │ │ │ ├── avatar │ │ │ │ │ │ ├── amyelsner.png │ │ │ │ │ │ ├── annafali.png │ │ │ │ │ │ ├── asiyajavayant.png │ │ │ │ │ │ ├── bernardodominic.png │ │ │ │ │ │ ├── elwinsharvill.png │ │ │ │ │ │ ├── ionibowcher.png │ │ │ │ │ │ ├── ivanmagalhaes.png │ │ │ │ │ │ ├── onyamalimba.png │ │ │ │ │ │ ├── stephenshaw.png │ │ │ │ │ │ └── xuxuefeng.png │ │ │ │ │ ├── boromir.jpg │ │ │ │ │ ├── compare │ │ │ │ │ │ ├── lara-ps3.png │ │ │ │ │ │ └── lara-ps4.png │ │ │ │ │ ├── computer-icon.png │ │ │ │ │ ├── crop │ │ │ │ │ │ └── placeholder.txt │ │ │ │ │ ├── dashboard │ │ │ │ │ │ ├── full.png │ │ │ │ │ │ ├── onehalf.png │ │ │ │ │ │ ├── onethird.png │ │ │ │ │ │ └── twothirds.png │ │ │ │ │ ├── dock │ │ │ │ │ │ ├── blank.gif │ │ │ │ │ │ ├── calendar.png │ │ │ │ │ │ ├── email.png │ │ │ │ │ │ ├── history.png │ │ │ │ │ │ ├── home.png │ │ │ │ │ │ ├── link.png │ │ │ │ │ │ ├── music.png │ │ │ │ │ │ ├── portfolio.png │ │ │ │ │ │ ├── rss.png │ │ │ │ │ │ ├── rss2.png │ │ │ │ │ │ ├── stack.png │ │ │ │ │ │ └── video.png │ │ │ │ │ ├── galleria │ │ │ │ │ │ ├── galleria1.jpg │ │ │ │ │ │ ├── galleria10.jpg │ │ │ │ │ │ ├── galleria10s.jpg │ │ │ │ │ │ ├── galleria11.jpg │ │ │ │ │ │ ├── galleria11s.jpg │ │ │ │ │ │ ├── galleria12.jpg │ │ │ │ │ │ ├── galleria12s.jpg │ │ │ │ │ │ ├── galleria13.jpg │ │ │ │ │ │ ├── galleria13s.jpg │ │ │ │ │ │ ├── galleria14.jpg │ │ │ │ │ │ ├── galleria14s.jpg │ │ │ │ │ │ ├── galleria15.jpg │ │ │ │ │ │ ├── galleria15s.jpg │ │ │ │ │ │ ├── galleria1s.jpg │ │ │ │ │ │ ├── galleria2.jpg │ │ │ │ │ │ ├── galleria2s.jpg │ │ │ │ │ │ ├── galleria3.jpg │ │ │ │ │ │ ├── galleria3s.jpg │ │ │ │ │ │ ├── galleria4.jpg │ │ │ │ │ │ ├── galleria4s.jpg │ │ │ │ │ │ ├── galleria5.jpg │ │ │ │ │ │ ├── galleria5s.jpg │ │ │ │ │ │ ├── galleria6.jpg │ │ │ │ │ │ ├── galleria6s.jpg │ │ │ │ │ │ ├── galleria7.jpg │ │ │ │ │ │ ├── galleria7s.jpg │ │ │ │ │ │ ├── galleria8.jpg │ │ │ │ │ │ ├── galleria8s.jpg │ │ │ │ │ │ ├── galleria9.jpg │ │ │ │ │ │ └── galleria9s.jpg │ │ │ │ │ ├── misc │ │ │ │ │ │ └── kobe.png │ │ │ │ │ ├── nature │ │ │ │ │ │ ├── nature1.jpg │ │ │ │ │ │ ├── nature10.jpg │ │ │ │ │ │ ├── nature11.jpg │ │ │ │ │ │ ├── nature12.jpg │ │ │ │ │ │ ├── nature2.jpg │ │ │ │ │ │ ├── nature3.jpg │ │ │ │ │ │ ├── nature4.jpg │ │ │ │ │ │ ├── nature5.jpg │ │ │ │ │ │ ├── nature6.jpg │ │ │ │ │ │ ├── nature7.jpg │ │ │ │ │ │ ├── nature8.jpg │ │ │ │ │ │ └── nature9.jpg │ │ │ │ │ ├── organization │ │ │ │ │ │ ├── jesse.jpg │ │ │ │ │ │ ├── mike.jpg │ │ │ │ │ │ ├── saul.jpg │ │ │ │ │ │ └── walter.jpg │ │ │ │ │ ├── photocam │ │ │ │ │ │ └── placeholder.txt │ │ │ │ │ ├── photoshare │ │ │ │ │ │ └── placeholder.txt │ │ │ │ │ ├── prime_logo.png │ │ │ │ │ ├── product │ │ │ │ │ │ ├── bamboo-watch.jpg │ │ │ │ │ │ ├── black-watch.jpg │ │ │ │ │ │ ├── blue-band.jpg │ │ │ │ │ │ ├── blue-t-shirt.jpg │ │ │ │ │ │ ├── bracelet.jpg │ │ │ │ │ │ ├── brown-purse.jpg │ │ │ │ │ │ ├── chakra-bracelet.jpg │ │ │ │ │ │ ├── galaxy-earrings.jpg │ │ │ │ │ │ ├── game-controller.jpg │ │ │ │ │ │ ├── gaming-set.jpg │ │ │ │ │ │ ├── gold-phone-case.jpg │ │ │ │ │ │ ├── green-earbuds.jpg │ │ │ │ │ │ ├── green-t-shirt.jpg │ │ │ │ │ │ ├── grey-t-shirt.jpg │ │ │ │ │ │ ├── headphones.jpg │ │ │ │ │ │ ├── light-green-t-shirt.jpg │ │ │ │ │ │ ├── lime-band.jpg │ │ │ │ │ │ ├── mini-speakers.jpg │ │ │ │ │ │ ├── painted-phone-case.jpg │ │ │ │ │ │ ├── pink-band.jpg │ │ │ │ │ │ ├── pink-purse.jpg │ │ │ │ │ │ ├── product-placeholder.svg │ │ │ │ │ │ ├── purple-band.jpg │ │ │ │ │ │ ├── purple-gemstone-necklace.jpg │ │ │ │ │ │ ├── purple-t-shirt.jpg │ │ │ │ │ │ ├── shoes.jpg │ │ │ │ │ │ ├── sneakers.jpg │ │ │ │ │ │ ├── teal-t-shirt.jpg │ │ │ │ │ │ ├── yellow-earbuds.jpg │ │ │ │ │ │ ├── yoga-mat.jpg │ │ │ │ │ │ └── yoga-set.jpg │ │ │ │ │ ├── server-icon.png │ │ │ │ │ ├── timeline │ │ │ │ │ │ ├── box.png │ │ │ │ │ │ ├── callback.png │ │ │ │ │ │ ├── homework.png │ │ │ │ │ │ ├── location.png │ │ │ │ │ │ ├── mail.png │ │ │ │ │ │ ├── memo.png │ │ │ │ │ │ ├── report.png │ │ │ │ │ │ └── truck.png │ │ │ │ │ ├── uikit │ │ │ │ │ │ ├── logo-figma-dark.svg │ │ │ │ │ │ ├── logo-figma-light.svg │ │ │ │ │ │ ├── primeone-cover-light.jpeg │ │ │ │ │ │ ├── primeone-cover-light.jpg │ │ │ │ │ │ ├── uikit-figma.png │ │ │ │ │ │ ├── uikit-system.png │ │ │ │ │ │ └── uikit-themes.png │ │ │ │ │ └── usercard.png │ │ │ │ └── media │ │ │ │ │ ├── guide.pdf │ │ │ │ │ ├── sample-ogg.ogg │ │ │ │ │ └── sample-webm.webm │ │ │ └── showcase │ │ │ │ ├── css │ │ │ │ ├── flags │ │ │ │ │ ├── flags.css │ │ │ │ │ └── flags_responsive.png │ │ │ │ └── layout │ │ │ │ │ ├── _animation.scss │ │ │ │ │ ├── _config.scss │ │ │ │ │ ├── _content.scss │ │ │ │ │ ├── _core.scss │ │ │ │ │ ├── _demo.scss │ │ │ │ │ ├── _designer.scss │ │ │ │ │ ├── _error.scss │ │ │ │ │ ├── _footer.scss │ │ │ │ │ ├── _home.scss │ │ │ │ │ ├── _menu.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _news.scss │ │ │ │ │ ├── _responsive.scss │ │ │ │ │ ├── _syntax.scss │ │ │ │ │ ├── _topbar.scss │ │ │ │ │ ├── layout.css │ │ │ │ │ └── layout.scss │ │ │ │ ├── images │ │ │ │ ├── architecture.jpg │ │ │ │ ├── asset-404.svg │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── home │ │ │ │ │ ├── intro-bg-dark.jpg │ │ │ │ │ ├── intro-bg.jpg │ │ │ │ │ ├── intro-devices.png │ │ │ │ │ ├── jsf-accesibility.png │ │ │ │ │ ├── jsf-community.png │ │ │ │ │ ├── jsf-components.png │ │ │ │ │ ├── jsf-mobile.png │ │ │ │ │ ├── jsf-opensource.png │ │ │ │ │ ├── jsf-pro.png │ │ │ │ │ ├── jsf-productivity.png │ │ │ │ │ ├── jsf-templates.png │ │ │ │ │ ├── jsf-themes.png │ │ │ │ │ ├── quarkus_banner.png │ │ │ │ │ └── quarkus_logo.svg │ │ │ │ ├── layouts │ │ │ │ │ ├── apollo-logo.png │ │ │ │ │ ├── apollo.jpg │ │ │ │ │ ├── atlantis-logo.png │ │ │ │ │ ├── atlantis.jpg │ │ │ │ │ ├── avalon-logo.png │ │ │ │ │ ├── avalon.jpg │ │ │ │ │ ├── babylon-logo.png │ │ │ │ │ ├── babylon.jpg │ │ │ │ │ ├── barcelona-logo.png │ │ │ │ │ ├── barcelona.jpg │ │ │ │ │ ├── california-logo.png │ │ │ │ │ ├── california.jpg │ │ │ │ │ ├── diamond-logo.png │ │ │ │ │ ├── diamond.jpg │ │ │ │ │ ├── ecuador-logo.png │ │ │ │ │ ├── ecuador.jpg │ │ │ │ │ ├── freya-logo.png │ │ │ │ │ ├── freya.jpg │ │ │ │ │ ├── harmony-logo.png │ │ │ │ │ ├── harmony.jpg │ │ │ │ │ ├── icarus-logo.png │ │ │ │ │ ├── icarus.jpg │ │ │ │ │ ├── manhattan-logo.png │ │ │ │ │ ├── manhattan.jpg │ │ │ │ │ ├── mirage-logo.png │ │ │ │ │ ├── mirage.jpg │ │ │ │ │ ├── morpheus-logo.png │ │ │ │ │ ├── morpheus.jpg │ │ │ │ │ ├── olympia-logo.png │ │ │ │ │ ├── olympia.jpg │ │ │ │ │ ├── omega-logo.png │ │ │ │ │ ├── omega.jpg │ │ │ │ │ ├── pandora-logo.png │ │ │ │ │ ├── pandora.jpg │ │ │ │ │ ├── paradise-logo.png │ │ │ │ │ ├── paradise.jpg │ │ │ │ │ ├── poseidon-logo.png │ │ │ │ │ ├── poseidon-logo.svg │ │ │ │ │ ├── poseidon.jpg │ │ │ │ │ ├── prestige-logo.png │ │ │ │ │ ├── prestige.jpg │ │ │ │ │ ├── rain-logo.svg │ │ │ │ │ ├── rain.jpg │ │ │ │ │ ├── roma.jpg │ │ │ │ │ ├── sapphire-logo.png │ │ │ │ │ ├── sapphire.jpg │ │ │ │ │ ├── serenity-logo.png │ │ │ │ │ ├── serenity.jpg │ │ │ │ │ ├── siberia-logo.png │ │ │ │ │ ├── siberia.jpg │ │ │ │ │ ├── themeswitcher-roma.jpg │ │ │ │ │ ├── ultima-logo.png │ │ │ │ │ ├── ultima.jpg │ │ │ │ │ ├── verona-logo.png │ │ │ │ │ └── verona.jpg │ │ │ │ ├── prime-designer.jpg │ │ │ │ ├── primefaces-logo.png │ │ │ │ ├── primefaces-logo.svg │ │ │ │ ├── pro.png │ │ │ │ └── themes │ │ │ │ │ ├── arya-blue.png │ │ │ │ │ ├── luna-amber.png │ │ │ │ │ ├── luna-blue.png │ │ │ │ │ ├── luna-green.png │ │ │ │ │ ├── luna-pink.png │ │ │ │ │ ├── nova-accent.png │ │ │ │ │ ├── nova-alt.png │ │ │ │ │ ├── nova.png │ │ │ │ │ ├── saga-blue.png │ │ │ │ │ └── vela-blue.png │ │ │ │ └── script │ │ │ │ └── layout.js │ │ ├── schedule-extender-examples.properties │ │ ├── tags │ │ │ └── tabscode.xhtml │ │ ├── template │ │ │ ├── config.xhtml │ │ │ ├── footer.xhtml │ │ │ ├── menu.xhtml │ │ │ ├── template.xhtml │ │ │ └── topbar.xhtml │ │ ├── ui │ │ │ ├── ajax │ │ │ │ ├── basic.xhtml │ │ │ │ ├── dropdown.xhtml │ │ │ │ ├── fragment.xhtml │ │ │ │ ├── lifecycle.xhtml │ │ │ │ ├── observer.xhtml │ │ │ │ ├── partialSubmit.xhtml │ │ │ │ ├── poll.xhtml │ │ │ │ ├── process.xhtml │ │ │ │ ├── remoteCommand.xhtml │ │ │ │ ├── search.xhtml │ │ │ │ ├── selector.xhtml │ │ │ │ ├── status.xhtml │ │ │ │ ├── validation.xhtml │ │ │ │ └── websocket.xhtml │ │ │ ├── button │ │ │ │ ├── button.xhtml │ │ │ │ ├── commandButton.xhtml │ │ │ │ ├── commandLink.xhtml │ │ │ │ ├── link.xhtml │ │ │ │ ├── linkButton.xhtml │ │ │ │ ├── productDetail.xhtml │ │ │ │ ├── speedDial.xhtml │ │ │ │ └── splitButton.xhtml │ │ │ ├── chart │ │ │ │ ├── bar.xhtml │ │ │ │ ├── bubble.xhtml │ │ │ │ ├── custom.xhtml │ │ │ │ ├── doughnut.xhtml │ │ │ │ ├── export.xhtml │ │ │ │ ├── facet.xhtml │ │ │ │ ├── line.xhtml │ │ │ │ ├── mixed.xhtml │ │ │ │ ├── pie.xhtml │ │ │ │ ├── polararea.xhtml │ │ │ │ ├── radar.xhtml │ │ │ │ └── scatter.xhtml │ │ │ ├── csv │ │ │ │ ├── basic.xhtml │ │ │ │ ├── bean.xhtml │ │ │ │ ├── complex.xhtml │ │ │ │ ├── custom.xhtml │ │ │ │ ├── event.xhtml │ │ │ │ └── immediate.xhtml │ │ │ ├── data │ │ │ │ ├── carousel.xhtml │ │ │ │ ├── chronoline.xhtml │ │ │ │ ├── dataexporter │ │ │ │ │ ├── basic.xhtml │ │ │ │ │ ├── customizedDocuments.xhtml │ │ │ │ │ ├── excludeColumns.xhtml │ │ │ │ │ ├── lazy.xhtml │ │ │ │ │ └── treetable.xhtml │ │ │ │ ├── datagrid │ │ │ │ │ ├── basic.xhtml │ │ │ │ │ ├── multiViewState.xhtml │ │ │ │ │ └── responsive.xhtml │ │ │ │ ├── datalist │ │ │ │ │ ├── basic.xhtml │ │ │ │ │ ├── lazy.xhtml │ │ │ │ │ ├── multiViewState.xhtml │ │ │ │ │ └── paginator.xhtml │ │ │ │ ├── datascroller │ │ │ │ │ ├── basic.xhtml │ │ │ │ │ ├── inline.xhtml │ │ │ │ │ ├── loader.xhtml │ │ │ │ │ └── loading.xhtml │ │ │ │ ├── datatable │ │ │ │ │ ├── addRow.xhtml │ │ │ │ │ ├── basic.xhtml │ │ │ │ │ ├── columnResize.xhtml │ │ │ │ │ ├── columnToggler.xhtml │ │ │ │ │ ├── columns.xhtml │ │ │ │ │ ├── contextMenu.xhtml │ │ │ │ │ ├── crud.xhtml │ │ │ │ │ ├── displayPriority.xhtml │ │ │ │ │ ├── edit.xhtml │ │ │ │ │ ├── expansion.xhtml │ │ │ │ │ ├── facets.xhtml │ │ │ │ │ ├── field.xhtml │ │ │ │ │ ├── filter.xhtml │ │ │ │ │ ├── gridlines.xhtml │ │ │ │ │ ├── group.xhtml │ │ │ │ │ ├── lazy.xhtml │ │ │ │ │ ├── multiViewState.xhtml │ │ │ │ │ ├── paginator.xhtml │ │ │ │ │ ├── reorder.xhtml │ │ │ │ │ ├── responsive.xhtml │ │ │ │ │ ├── rowColor.xhtml │ │ │ │ │ ├── rowGroup.xhtml │ │ │ │ │ ├── rowTitle.xhtml │ │ │ │ │ ├── rtl.xhtml │ │ │ │ │ ├── scroll.xhtml │ │ │ │ │ ├── selection.xhtml │ │ │ │ │ ├── size.xhtml │ │ │ │ │ ├── sort.xhtml │ │ │ │ │ ├── sticky.xhtml │ │ │ │ │ ├── striped.xhtml │ │ │ │ │ └── subtable.xhtml │ │ │ │ ├── dataview │ │ │ │ │ ├── basic.xhtml │ │ │ │ │ ├── lazy.xhtml │ │ │ │ │ ├── multiViewState.xhtml │ │ │ │ │ └── responsive.xhtml │ │ │ │ ├── diagram │ │ │ │ │ ├── basic.xhtml │ │ │ │ │ ├── editable.xhtml │ │ │ │ │ ├── flowchart.xhtml │ │ │ │ │ ├── hierarchical.xhtml │ │ │ │ │ └── statemachine.xhtml │ │ │ │ ├── gmap │ │ │ │ │ ├── addMarkers.xhtml │ │ │ │ │ ├── basic.xhtml │ │ │ │ │ ├── circles.xhtml │ │ │ │ │ ├── controls.xhtml │ │ │ │ │ ├── draggableMarkers.xhtml │ │ │ │ │ ├── event.xhtml │ │ │ │ │ ├── geocode.xhtml │ │ │ │ │ ├── infoWindow.xhtml │ │ │ │ │ ├── mapDialog.xhtml │ │ │ │ │ ├── markerSelection.xhtml │ │ │ │ │ ├── markers.xhtml │ │ │ │ │ ├── polygons.xhtml │ │ │ │ │ ├── polylines.xhtml │ │ │ │ │ ├── rectangles.xhtml │ │ │ │ │ └── street.xhtml │ │ │ │ ├── htree │ │ │ │ │ ├── basic.xhtml │ │ │ │ │ ├── contextMenu.xhtml │ │ │ │ │ ├── events.xhtml │ │ │ │ │ ├── icon.xhtml │ │ │ │ │ └── selection.xhtml │ │ │ │ ├── mindmap.xhtml │ │ │ │ ├── orderList.xhtml │ │ │ │ ├── organigram.xhtml │ │ │ │ ├── pickList.xhtml │ │ │ │ ├── schedule │ │ │ │ │ ├── basic.xhtml │ │ │ │ │ ├── configuration.xhtml │ │ │ │ │ ├── extender.xhtml │ │ │ │ │ ├── lazy.xhtml │ │ │ │ │ └── localization.xhtml │ │ │ │ ├── tagCloud.xhtml │ │ │ │ ├── timeline │ │ │ │ │ ├── allEvents.xhtml │ │ │ │ │ ├── basic.xhtml │ │ │ │ │ ├── custom.xhtml │ │ │ │ │ ├── dragdrop.xhtml │ │ │ │ │ ├── editServer.xhtml │ │ │ │ │ ├── grouping.xhtml │ │ │ │ │ ├── lazy.xhtml │ │ │ │ │ ├── limitRange.xhtml │ │ │ │ │ ├── linked.xhtml │ │ │ │ │ └── nestedGrouping.xhtml │ │ │ │ ├── tree │ │ │ │ │ ├── animate.xhtml │ │ │ │ │ ├── basic.xhtml │ │ │ │ │ ├── contextMenu.xhtml │ │ │ │ │ ├── dragdrop.xhtml │ │ │ │ │ ├── events.xhtml │ │ │ │ │ ├── filter.xhtml │ │ │ │ │ ├── icon.xhtml │ │ │ │ │ ├── lazyloading.xhtml │ │ │ │ │ ├── rtl.xhtml │ │ │ │ │ └── selection.xhtml │ │ │ │ └── treetable │ │ │ │ │ ├── basic.xhtml │ │ │ │ │ ├── columns.xhtml │ │ │ │ │ ├── contextMenu.xhtml │ │ │ │ │ ├── displayPriority.xhtml │ │ │ │ │ ├── edit.xhtml │ │ │ │ │ ├── events.xhtml │ │ │ │ │ ├── filter.xhtml │ │ │ │ │ ├── gridlines.xhtml │ │ │ │ │ ├── multiViewState.xhtml │ │ │ │ │ ├── paginator.xhtml │ │ │ │ │ ├── resize.xhtml │ │ │ │ │ ├── responsive.xhtml │ │ │ │ │ ├── scroll.xhtml │ │ │ │ │ ├── selection.xhtml │ │ │ │ │ ├── size.xhtml │ │ │ │ │ └── sort.xhtml │ │ │ ├── df │ │ │ │ ├── basic.xhtml │ │ │ │ ├── data.xhtml │ │ │ │ ├── level1.xhtml │ │ │ │ ├── level2.xhtml │ │ │ │ ├── level3.xhtml │ │ │ │ ├── message.xhtml │ │ │ │ ├── nested.xhtml │ │ │ │ ├── selectProduct.xhtml │ │ │ │ ├── viewProducts.xhtml │ │ │ │ ├── viewProductsLargerThanViewport.xhtml │ │ │ │ └── viewResponsive.xhtml │ │ │ ├── dnd │ │ │ │ ├── custom.xhtml │ │ │ │ ├── dataTable.xhtml │ │ │ │ ├── dataView.xhtml │ │ │ │ └── draggable.xhtml │ │ │ ├── file │ │ │ │ ├── download.xhtml │ │ │ │ └── upload │ │ │ │ │ ├── advanced.xhtml │ │ │ │ │ └── simple.xhtml │ │ │ ├── input │ │ │ │ ├── autoComplete.xhtml │ │ │ │ ├── booleanButton.xhtml │ │ │ │ ├── booleanCheckbox.xhtml │ │ │ │ ├── calendar │ │ │ │ │ ├── calendar.xhtml │ │ │ │ │ └── calendarJava8.xhtml │ │ │ │ ├── cascadeSelect.xhtml │ │ │ │ ├── checkboxMenu.xhtml │ │ │ │ ├── chips.xhtml │ │ │ │ ├── clockPicker.xhtml │ │ │ │ ├── colorPicker.xhtml │ │ │ │ ├── colorPickerInline.xhtml │ │ │ │ ├── datepicker │ │ │ │ │ ├── datePicker.xhtml │ │ │ │ │ ├── datePickerJava8.xhtml │ │ │ │ │ └── metadata.xhtml │ │ │ │ ├── formLayout.xhtml │ │ │ │ ├── inplace.xhtml │ │ │ │ ├── inputGroup.xhtml │ │ │ │ ├── inputMask.xhtml │ │ │ │ ├── inputNumber.xhtml │ │ │ │ ├── inputOtp.xhtml │ │ │ │ ├── inputPhone.xhtml │ │ │ │ ├── inputSwitch.xhtml │ │ │ │ ├── inputText.xhtml │ │ │ │ ├── inputTextarea.xhtml │ │ │ │ ├── keyFilter.xhtml │ │ │ │ ├── keyboard.xhtml │ │ │ │ ├── knob.xhtml │ │ │ │ ├── listbox.xhtml │ │ │ │ ├── manyButton.xhtml │ │ │ │ ├── manyCheckbox.xhtml │ │ │ │ ├── manyMenu.xhtml │ │ │ │ ├── monacoEditor.xhtml │ │ │ │ ├── multiSelectListbox.xhtml │ │ │ │ ├── oneButton.xhtml │ │ │ │ ├── oneMenu.xhtml │ │ │ │ ├── oneRadio.xhtml │ │ │ │ ├── password.xhtml │ │ │ │ ├── rating.xhtml │ │ │ │ ├── signature.xhtml │ │ │ │ ├── slider.xhtml │ │ │ │ ├── spinner.xhtml │ │ │ │ ├── textEditor.xhtml │ │ │ │ ├── toggleSwitch.xhtml │ │ │ │ └── triStateCheckbox.xhtml │ │ │ ├── menu │ │ │ │ ├── breadcrumb.xhtml │ │ │ │ ├── contextmenu │ │ │ │ │ ├── basic.xhtml │ │ │ │ │ ├── target.xhtml │ │ │ │ │ └── tiered.xhtml │ │ │ │ ├── dock.xhtml │ │ │ │ ├── megaMenu.xhtml │ │ │ │ ├── menu.xhtml │ │ │ │ ├── menuButton.xhtml │ │ │ │ ├── menubar.xhtml │ │ │ │ ├── panelMenu.xhtml │ │ │ │ ├── slideMenu.xhtml │ │ │ │ ├── stack.xhtml │ │ │ │ ├── steps.xhtml │ │ │ │ ├── tabMenu.xhtml │ │ │ │ └── tieredMenu.xhtml │ │ │ ├── message │ │ │ │ ├── growl.xhtml │ │ │ │ ├── messages.xhtml │ │ │ │ └── staticMessage.xhtml │ │ │ ├── misc │ │ │ │ ├── autoUpdate.xhtml │ │ │ │ ├── avatar.xhtml │ │ │ │ ├── badge.xhtml │ │ │ │ ├── blockUI.xhtml │ │ │ │ ├── cache.xhtml │ │ │ │ ├── captcha.xhtml │ │ │ │ ├── chip.xhtml │ │ │ │ ├── clock.xhtml │ │ │ │ ├── collector.xhtml │ │ │ │ ├── context.xhtml │ │ │ │ ├── csp.xhtml │ │ │ │ ├── defaultcommand │ │ │ │ │ ├── basic.xhtml │ │ │ │ │ └── multiple.xhtml │ │ │ │ ├── effect.xhtml │ │ │ │ ├── exceptionHandler.xhtml │ │ │ │ ├── fa.xhtml │ │ │ │ ├── feedReader.xhtml │ │ │ │ ├── floatLabel.xhtml │ │ │ │ ├── focus.xhtml │ │ │ │ ├── hotkey.xhtml │ │ │ │ ├── idleMonitor.xhtml │ │ │ │ ├── importConstants.xhtml │ │ │ │ ├── importEnum.xhtml │ │ │ │ ├── lifecycle.xhtml │ │ │ │ ├── log.xhtml │ │ │ │ ├── outputLabel.xhtml │ │ │ │ ├── printer.xhtml │ │ │ │ ├── progressBar.xhtml │ │ │ │ ├── resetInput.xhtml │ │ │ │ ├── resizable.xhtml │ │ │ │ ├── responsive.xhtml │ │ │ │ ├── scrollTop.xhtml │ │ │ │ ├── separator.xhtml │ │ │ │ ├── skeleton.xhtml │ │ │ │ ├── spacer.xhtml │ │ │ │ ├── spotlight.xhtml │ │ │ │ ├── sticky.xhtml │ │ │ │ ├── tag.xhtml │ │ │ │ ├── terminal │ │ │ │ │ ├── autocomplete.xhtml │ │ │ │ │ └── basic.xhtml │ │ │ │ └── themeSwitcher.xhtml │ │ │ ├── multimedia │ │ │ │ ├── audio.xhtml │ │ │ │ ├── barcode.xhtml │ │ │ │ ├── compare.xhtml │ │ │ │ ├── cropper │ │ │ │ │ ├── cropper.xhtml │ │ │ │ │ ├── dynamic.xhtml │ │ │ │ │ └── fileupload.xhtml │ │ │ │ ├── galleria │ │ │ │ │ ├── autoplay.xhtml │ │ │ │ │ ├── basic.xhtml │ │ │ │ │ ├── caption.xhtml │ │ │ │ │ ├── dynamic.xhtml │ │ │ │ │ ├── fullscreen.xhtml │ │ │ │ │ ├── indicator.xhtml │ │ │ │ │ ├── navigator.xhtml │ │ │ │ │ ├── programmatic.xhtml │ │ │ │ │ ├── responsive.xhtml │ │ │ │ │ └── thumbnail.xhtml │ │ │ │ ├── graphicImage.xhtml │ │ │ │ ├── media.xhtml │ │ │ │ ├── photocam │ │ │ │ │ ├── deviceSelection.xhtml │ │ │ │ │ └── photoCam.xhtml │ │ │ │ ├── qrcode.xhtml │ │ │ │ ├── switch.xhtml │ │ │ │ └── video.xhtml │ │ │ ├── overlay │ │ │ │ ├── confirmDialog.xhtml │ │ │ │ ├── confirmPopup.xhtml │ │ │ │ ├── dialog.xhtml │ │ │ │ ├── overlayPanel.xhtml │ │ │ │ ├── sidebar.xhtml │ │ │ │ └── tooltip │ │ │ │ │ ├── tooltipGlobal.xhtml │ │ │ │ │ └── tooltipOptions.xhtml │ │ │ └── panel │ │ │ │ ├── accordionPanel.xhtml │ │ │ │ ├── card.xhtml │ │ │ │ ├── dashboard.xhtml │ │ │ │ ├── divider.xhtml │ │ │ │ ├── fieldset.xhtml │ │ │ │ ├── flexGrid.xhtml │ │ │ │ ├── grid.xhtml │ │ │ │ ├── notificationBar.xhtml │ │ │ │ ├── outputPanel.xhtml │ │ │ │ ├── panel.xhtml │ │ │ │ ├── panelGrid.xhtml │ │ │ │ ├── scrollPanel.xhtml │ │ │ │ ├── splitter.xhtml │ │ │ │ ├── tabView.xhtml │ │ │ │ ├── toolbar.xhtml │ │ │ │ └── wizard.xhtml │ │ └── viewExpired.xhtml │ ├── showcase.taglib.xml │ └── web.xml │ ├── application.properties │ ├── build.properties │ ├── monaco-examples.properties │ └── translate.properties └── site ├── QuarkusFaces.svg └── quarkus_logo.svg /.gitattributes: -------------------------------------------------------------------------------- 1 | # Set the default behavior, in case people don't have core.autocrlf set. 2 | * text=auto 3 | 4 | # Explicitly declare text files you want to always be normalized and converted 5 | # to native line endings on checkout. 6 | *.c text 7 | *.h text 8 | *.java text 9 | *.css text 10 | *.js text 11 | *.xml text 12 | *.dtd text 13 | *.xsl text 14 | *.properties text 15 | *.txt text 16 | *.svg text 17 | *.yml text 18 | *.md text 19 | 20 | # Declare files that will always have CRLF line endings on checkout. 21 | *.sln text eol=crlf 22 | 23 | # Denote all files that are truly binary and should not be modified. 24 | *.png binary 25 | *.gif binary 26 | *.jpg binary 27 | *.jpeg binary 28 | *.eot binary 29 | *.ttf binary 30 | *.woff binary 31 | *.woff2 binary -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [melloware] 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "maven" 4 | directory: "/" 5 | target-branch: "main" 6 | schedule: 7 | interval: "daily" 8 | - package-ecosystem: "github-actions" 9 | directory: "/" 10 | schedule: 11 | interval: "daily" 12 | -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- 1 | # .github/release.yml 2 | 3 | changelog: 4 | categories: 5 | - title: 🏕 Features 6 | labels: 7 | - '*' 8 | exclude: 9 | labels: 10 | - dependencies 11 | - title: 👒 Dependencies 12 | labels: 13 | - dependencies 14 | -------------------------------------------------------------------------------- /.github/workflows/maven.yml: -------------------------------------------------------------------------------- 1 | # This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time 2 | # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven 3 | 4 | name: Java CI with Maven 5 | 6 | on: 7 | push: 8 | branches: [ "main" ] 9 | pull_request: 10 | branches: [ "main" ] 11 | 12 | defaults: 13 | run: 14 | shell: bash 15 | 16 | jobs: 17 | build: 18 | name: Build on ${{ matrix.os }} 19 | strategy: 20 | fail-fast: false 21 | matrix: 22 | os: [windows-latest, ubuntu-latest] 23 | runs-on: ${{ matrix.os }} 24 | steps: 25 | - uses: actions/checkout@v4 26 | - name: Set up JDK 21 27 | uses: graalvm/setup-graalvm@v1 28 | with: 29 | distribution: 'graalvm' 30 | java-version: '21' 31 | github-token: ${{ secrets.GITHUB_TOKEN }} 32 | cache: 'maven' 33 | 34 | - name: Build with Maven 35 | run: mvn -B clean verify -Dno-format 36 | 37 | - name: Build with Maven (Native) 38 | run: mvn -B verify -Dnative -Dnative.surefire.skip 39 | if: ${{ startsWith(matrix.os, 'windows') == false}} 40 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled class file 2 | *.class 3 | 4 | # Log file 5 | *.log 6 | 7 | # IDE Files 8 | *.ctxt 9 | .idea 10 | .classpath 11 | .settings 12 | .project 13 | .checkstyle 14 | .tern-project 15 | *.?ar 16 | *.iml 17 | *.ipr 18 | *.iws 19 | *.NavData 20 | *.navData 21 | /nbproject/ 22 | 23 | # OSX 24 | *.DS_Store 25 | 26 | # Package Files # 27 | *.jar 28 | *.war 29 | *.nar 30 | *.ear 31 | *.zip 32 | *.tar.gz 33 | *.rar 34 | 35 | # Selenium Drivers 36 | *.exe 37 | 38 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 39 | hs_err_pid* 40 | target/ 41 | /dynamichart 42 | -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one 2 | # or more contributor license agreements. See the NOTICE file 3 | # distributed with this work for additional information 4 | # regarding copyright ownership. The ASF licenses this file 5 | # to you under the Apache License, Version 2.0 (the 6 | # "License"); you may not use this file except in compliance 7 | # with the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, 12 | # software distributed under the License is distributed on an 13 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | # KIND, either express or implied. See the License for the 15 | # specific language governing permissions and limitations 16 | # under the License. 17 | wrapperVersion=3.3.2 18 | distributionType=only-script 19 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip 20 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Melloware 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /lombok.config: -------------------------------------------------------------------------------- 1 | lombok.addLombokGeneratedAnnotation = true -------------------------------------------------------------------------------- /src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- 1 | #### 2 | # This Dockerfile is used in order to build a container that runs the Quarkus application in native (no JVM) mode. 3 | # 4 | # Before building the container image run: 5 | # 6 | # ./mvnw package -Pnative 7 | # 8 | # Then, build the image with: 9 | # 10 | # docker build -f src/main/docker/Dockerfile.native -t melloware/quarkus-faces . 11 | # 12 | # Then run the container using: 13 | # 14 | # docker run -i --rm -p 8000:8000 melloware/quarkus-faces 15 | # 16 | ### 17 | FROM registry.access.redhat.com/ubi9/ubi-minimal:9.5 18 | 19 | ######################### Set up environment for POI ########################## 20 | RUN microdnf update -y && microdnf install -y freetype fontconfig && microdnf clean all 21 | ######################### Set up environment for POI ########################## 22 | 23 | WORKDIR /work/ 24 | RUN chown 1001 /work \ 25 | && chmod "g+rwX" /work \ 26 | && chown 1001:root /work 27 | # Shared objects to be dynamically loaded at runtime as needed, 28 | COPY --chown=1001:root target/*.properties target/*.so /work/ 29 | COPY --chown=1001:root target/*-runner /work/application 30 | # Permissions fix for Windows 31 | RUN chmod "ugo+x" /work/application 32 | EXPOSE 8000 33 | USER 1001 34 | 35 | CMD ["./application", "-Dquarkus.http.host=0.0.0.0"] 36 | -------------------------------------------------------------------------------- /src/main/java/org/primefaces/showcase/rest/ShowCaseServices.java: -------------------------------------------------------------------------------- 1 | /* 2 | * The MIT License 3 | * 4 | * Copyright (c) 2009-2021 PrimeTek 5 | * 6 | * Permission is hereby granted, free of charge, to any person obtaining a copy 7 | * of this software and associated documentation files (the "Software"), to deal 8 | * in the Software without restriction, including without limitation the rights 9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | * copies of the Software, and to permit persons to whom the Software is 11 | * furnished to do so, subject to the following conditions: 12 | * 13 | * The above copyright notice and this permission notice shall be included in 14 | * all copies or substantial portions of the Software. 15 | * 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 | * THE SOFTWARE. 23 | */ 24 | package org.primefaces.showcase.rest; 25 | 26 | import jakarta.ws.rs.ApplicationPath; 27 | import jakarta.ws.rs.core.Application; 28 | 29 | @ApplicationPath("/rest") 30 | public class ShowCaseServices extends Application { 31 | 32 | } 33 | -------------------------------------------------------------------------------- /src/main/java/org/primefaces/showcase/util/ReflectionConfig.java: -------------------------------------------------------------------------------- 1 | package org.primefaces.showcase.util; 2 | 3 | import io.quarkus.runtime.annotations.RegisterForReflection; 4 | 5 | @RegisterForReflection(targets = {org.primefaces.util.FacetUtils.class}) 6 | public class ReflectionConfig { 7 | } -------------------------------------------------------------------------------- /src/main/java/org/primefaces/showcase/view/ajax/CounterView.java: -------------------------------------------------------------------------------- 1 | /* 2 | * The MIT License 3 | * 4 | * Copyright (c) 2009-2021 PrimeTek 5 | * 6 | * Permission is hereby granted, free of charge, to any person obtaining a copy 7 | * of this software and associated documentation files (the "Software"), to deal 8 | * in the Software without restriction, including without limitation the rights 9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | * copies of the Software, and to permit persons to whom the Software is 11 | * furnished to do so, subject to the following conditions: 12 | * 13 | * The above copyright notice and this permission notice shall be included in 14 | * all copies or substantial portions of the Software. 15 | * 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 | * THE SOFTWARE. 23 | */ 24 | package org.primefaces.showcase.view.ajax; 25 | 26 | import jakarta.faces.view.ViewScoped; 27 | import jakarta.inject.Named; 28 | import java.io.Serializable; 29 | 30 | import io.quarkus.runtime.annotations.RegisterForReflection; 31 | 32 | @Named 33 | @ViewScoped 34 | @RegisterForReflection(serialization = true) 35 | public class CounterView implements Serializable { 36 | 37 | 38 | } -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/error.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 |
10 | 11 |

Page Not Found

12 |
We couldn't find what you were looking for.
13 |

Please contact the owner of the site that linked you to the original URL and let them know their link is broken.

14 | 15 |
16 |
17 | 18 |
19 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/favicon.ico -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/pfe-localized/footer/content: -------------------------------------------------------------------------------- 1 | PrimeFaces by [PrimeTek](https://www.primetek.com.tr) at #{now} -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/composite/inputTextWrapper.xhtml: -------------------------------------------------------------------------------- 1 | 3 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/composite/inputTextWrapperWrapper.xhtml: -------------------------------------------------------------------------------- 1 | 3 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/antalya/ataturkparki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/antalya/ataturkparki.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/antalya/kaleici.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/antalya/kaleici.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/antalya/karaalioglu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/antalya/karaalioglu.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/antalya/konyaalti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/antalya/konyaalti.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/avatar/amyelsner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/avatar/amyelsner.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/avatar/annafali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/avatar/annafali.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/avatar/asiyajavayant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/avatar/asiyajavayant.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/avatar/bernardodominic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/avatar/bernardodominic.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/avatar/elwinsharvill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/avatar/elwinsharvill.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/avatar/ionibowcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/avatar/ionibowcher.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/avatar/ivanmagalhaes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/avatar/ivanmagalhaes.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/avatar/onyamalimba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/avatar/onyamalimba.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/avatar/stephenshaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/avatar/stephenshaw.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/avatar/xuxuefeng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/avatar/xuxuefeng.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/boromir.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/boromir.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/compare/lara-ps3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/compare/lara-ps3.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/compare/lara-ps4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/compare/lara-ps4.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/computer-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/computer-icon.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/crop/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/crop/placeholder.txt -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/dashboard/full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/dashboard/full.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/dashboard/onehalf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/dashboard/onehalf.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/dashboard/onethird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/dashboard/onethird.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/dashboard/twothirds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/dashboard/twothirds.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/dock/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/dock/blank.gif -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/dock/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/dock/calendar.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/dock/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/dock/email.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/dock/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/dock/history.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/dock/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/dock/home.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/dock/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/dock/link.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/dock/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/dock/music.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/dock/portfolio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/dock/portfolio.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/dock/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/dock/rss.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/dock/rss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/dock/rss2.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/dock/stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/dock/stack.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/dock/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/dock/video.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria1.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria10.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria10s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria10s.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria11.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria11s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria11s.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria12.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria12s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria12s.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria13.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria13s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria13s.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria14.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria14s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria14s.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria15.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria15s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria15s.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria1s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria1s.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria2.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria2s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria2s.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria3.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria3s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria3s.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria4.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria4s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria4s.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria5.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria5s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria5s.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria6.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria6s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria6s.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria7.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria7s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria7s.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria8.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria8s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria8s.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria9.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria9s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/galleria/galleria9s.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/misc/kobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/misc/kobe.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/nature/nature1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/nature/nature1.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/nature/nature10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/nature/nature10.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/nature/nature11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/nature/nature11.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/nature/nature12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/nature/nature12.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/nature/nature2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/nature/nature2.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/nature/nature3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/nature/nature3.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/nature/nature4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/nature/nature4.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/nature/nature5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/nature/nature5.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/nature/nature6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/nature/nature6.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/nature/nature7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/nature/nature7.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/nature/nature8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/nature/nature8.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/nature/nature9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/nature/nature9.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/organization/jesse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/organization/jesse.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/organization/mike.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/organization/mike.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/organization/saul.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/organization/saul.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/organization/walter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/organization/walter.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/photocam/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/photocam/placeholder.txt -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/photoshare/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/photoshare/placeholder.txt -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/prime_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/prime_logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/bamboo-watch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/bamboo-watch.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/black-watch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/black-watch.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/blue-band.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/blue-band.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/blue-t-shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/blue-t-shirt.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/bracelet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/bracelet.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/brown-purse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/brown-purse.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/chakra-bracelet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/chakra-bracelet.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/galaxy-earrings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/galaxy-earrings.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/game-controller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/game-controller.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/gaming-set.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/gaming-set.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/gold-phone-case.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/gold-phone-case.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/green-earbuds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/green-earbuds.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/green-t-shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/green-t-shirt.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/grey-t-shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/grey-t-shirt.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/headphones.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/headphones.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/light-green-t-shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/light-green-t-shirt.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/lime-band.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/lime-band.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/mini-speakers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/mini-speakers.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/painted-phone-case.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/painted-phone-case.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/pink-band.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/pink-band.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/pink-purse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/pink-purse.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/product-placeholder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/purple-band.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/purple-band.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/purple-gemstone-necklace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/purple-gemstone-necklace.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/purple-t-shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/purple-t-shirt.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/shoes.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/sneakers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/sneakers.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/teal-t-shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/teal-t-shirt.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/yellow-earbuds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/yellow-earbuds.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/yoga-mat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/yoga-mat.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/product/yoga-set.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/product/yoga-set.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/server-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/server-icon.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/timeline/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/timeline/box.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/timeline/callback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/timeline/callback.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/timeline/homework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/timeline/homework.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/timeline/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/timeline/location.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/timeline/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/timeline/mail.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/timeline/memo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/timeline/memo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/timeline/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/timeline/report.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/timeline/truck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/timeline/truck.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/uikit/logo-figma-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/uikit/logo-figma-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/uikit/primeone-cover-light.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/uikit/primeone-cover-light.jpeg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/uikit/primeone-cover-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/uikit/primeone-cover-light.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/uikit/uikit-figma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/uikit/uikit-figma.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/uikit/uikit-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/uikit/uikit-system.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/uikit/uikit-themes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/uikit/uikit-themes.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/images/usercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/images/usercard.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/media/guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/media/guide.pdf -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/media/sample-ogg.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/media/sample-ogg.ogg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/demo/media/sample-webm.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/demo/media/sample-webm.webm -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/css/flags/flags_responsive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/css/flags/flags_responsive.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/css/layout/_animation.scss: -------------------------------------------------------------------------------- 1 | .p-connected-overlay { 2 | opacity: 0; 3 | transform: scaleY(0.8); 4 | transition: transform .12s cubic-bezier(0, 0, 0.2, 1), opacity .12s cubic-bezier(0, 0, 0.2, 1); 5 | } 6 | 7 | .p-connected-overlay-visible { 8 | opacity: 1; 9 | transform: scaleY(1); 10 | } 11 | 12 | .p-connected-overlay-hidden { 13 | opacity: 0; 14 | transform: scaleY(1); 15 | transition: opacity .1s linear; 16 | } 17 | 18 | @-webkit-keyframes connected-overlay-in { 19 | from { 20 | opacity: 0; 21 | -webkit-transform: scaleY(0.8); 22 | transform: scaleY(0.8); 23 | } 24 | 25 | to { 26 | opacity: 1; 27 | -webkit-transform: none; 28 | transform: none; 29 | } 30 | } 31 | 32 | @keyframes connected-overlay-in { 33 | from { 34 | opacity: 0; 35 | transform: scaleY(0.8); 36 | } 37 | 38 | to { 39 | opacity: 1; 40 | transform: none; 41 | } 42 | } 43 | 44 | @-webkit-keyframes connected-overlay-out { 45 | from { 46 | opacity: 1; 47 | } 48 | 49 | to { 50 | opacity: 0; 51 | } 52 | } 53 | 54 | @keyframes fade-out-down { 55 | from { 56 | opacity: 1; 57 | } 58 | 59 | to { 60 | opacity: 0; 61 | } 62 | } 63 | 64 | .connected-overlay-in { 65 | -webkit-animation-name: connected-overlay-in; 66 | animation-name: connected-overlay-in; 67 | } 68 | 69 | .connected-overlay-out { 70 | -webkit-animation-name: connected-overlay-out; 71 | animation-name: connected-overlay-out; 72 | } -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/css/layout/_designer.scss: -------------------------------------------------------------------------------- 1 | /* DESIGNER */ 2 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/css/layout/_error.scss: -------------------------------------------------------------------------------- 1 | .layout-error + .layout-footer { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/css/layout/_footer.scss: -------------------------------------------------------------------------------- 1 | .layout-footer { 2 | font-size: 1rem; 3 | padding: 2rem; 4 | background-color: var(--surface-a); 5 | display: flex; 6 | align-items: center; 7 | justify-content: space-between; 8 | 9 | a { 10 | color: var(--text-color); 11 | font-weight: 600; 12 | } 13 | 14 | .layout-footer-right { 15 | a { 16 | i { 17 | color: var(--text-secondary-color); 18 | font-size: 1.5rem; 19 | } 20 | } 21 | } 22 | } -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/css/layout/_mixins.scss: -------------------------------------------------------------------------------- 1 | @use "core"; 2 | 3 | @mixin navlink { 4 | text-decoration: none; 5 | color: core.$linkColor; 6 | font-weight: 600; 7 | 8 | &:hover { 9 | text-decoration: underline; 10 | } 11 | } 12 | 13 | @mixin flex() { 14 | display: -ms-flexbox; 15 | display: flex; 16 | } 17 | 18 | @mixin flex-wrap($value) { 19 | -ms-flex-wrap: $value; 20 | flex-wrap: $value; 21 | } 22 | 23 | @mixin flex-direction-row() { 24 | -ms-flex-direction: row; 25 | flex-direction: row; 26 | } 27 | 28 | @mixin flex-direction-column() { 29 | -ms-flex-direction: column; 30 | flex-direction: column; 31 | } 32 | 33 | @mixin flex-justify-center() { 34 | -ms-flex-pack: center; 35 | justify-content: center; 36 | } 37 | 38 | @mixin flex-justify-between() { 39 | -ms-flex-pack: justify; 40 | justify-content: space-between; 41 | } 42 | 43 | @mixin flex-align-center() { 44 | -ms-flex-align: center; 45 | align-items: center; 46 | } 47 | 48 | @mixin flex-align-start() { 49 | -ms-flex-align: start; 50 | align-items: flex-start; 51 | } 52 | 53 | @mixin flex-align-end() { 54 | -ms-flex-align: end; 55 | align-items: flex-end; 56 | } 57 | 58 | @mixin flex-justify-start() { 59 | -ms-flex-pack: start; 60 | justify-content: flex-start; 61 | } 62 | 63 | @mixin flex-justify-end() { 64 | -ms-flex-pack: end; 65 | justify-content: flex-end; 66 | } -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/css/layout/_news.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/css/layout/_news.scss -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/css/layout/layout.scss: -------------------------------------------------------------------------------- 1 | @use '_mixins'; 2 | @use '_core'; 3 | @use '_animation'; 4 | @use '_topbar'; 5 | @use '_menu'; 6 | @use '_content'; 7 | @use '_syntax'; 8 | @use '_news'; 9 | @use '_footer'; 10 | @use '_config'; 11 | @use '_error'; 12 | @use '_designer'; 13 | @use '_home'; 14 | @use '_responsive'; 15 | @use '_demo'; -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/architecture.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/favicon-16x16.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/favicon-32x32.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/favicon.ico -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/home/intro-bg-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/home/intro-bg-dark.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/home/intro-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/home/intro-bg.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/home/intro-devices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/home/intro-devices.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/home/jsf-accesibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/home/jsf-accesibility.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/home/jsf-community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/home/jsf-community.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/home/jsf-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/home/jsf-components.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/home/jsf-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/home/jsf-mobile.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/home/jsf-opensource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/home/jsf-opensource.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/home/jsf-pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/home/jsf-pro.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/home/jsf-productivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/home/jsf-productivity.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/home/jsf-templates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/home/jsf-templates.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/home/jsf-themes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/home/jsf-themes.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/home/quarkus_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/home/quarkus_banner.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/apollo-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/apollo-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/apollo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/apollo.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/atlantis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/atlantis-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/atlantis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/atlantis.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/avalon-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/avalon-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/avalon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/avalon.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/babylon-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/babylon-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/babylon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/babylon.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/barcelona-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/barcelona-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/barcelona.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/barcelona.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/california-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/california-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/california.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/california.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/diamond-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/diamond-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/diamond.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/diamond.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/ecuador-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/ecuador-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/ecuador.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/ecuador.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/freya-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/freya-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/freya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/freya.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/harmony-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/harmony-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/harmony.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/harmony.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/icarus-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/icarus-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/icarus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/icarus.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/manhattan-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/manhattan-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/manhattan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/manhattan.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/mirage-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/mirage-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/mirage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/mirage.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/morpheus-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/morpheus-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/morpheus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/morpheus.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/olympia-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/olympia-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/olympia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/olympia.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/omega-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/omega-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/omega.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/omega.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/pandora-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/pandora-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/pandora.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/pandora.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/paradise-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/paradise-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/paradise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/paradise.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/poseidon-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/poseidon-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/poseidon-logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/poseidon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/poseidon.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/prestige-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/prestige-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/prestige.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/prestige.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/rain-logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/rain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/rain.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/roma.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/roma.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/sapphire-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/sapphire-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/sapphire.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/sapphire.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/serenity-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/serenity-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/serenity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/serenity.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/siberia-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/siberia-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/siberia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/siberia.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/themeswitcher-roma.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/themeswitcher-roma.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/ultima-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/ultima-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/ultima.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/ultima.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/verona-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/verona-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/layouts/verona.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/layouts/verona.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/prime-designer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/prime-designer.jpg -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/primefaces-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/primefaces-logo.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/pro.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/themes/arya-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/themes/arya-blue.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/themes/luna-amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/themes/luna-amber.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/themes/luna-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/themes/luna-blue.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/themes/luna-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/themes/luna-green.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/themes/luna-pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/themes/luna-pink.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/themes/nova-accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/themes/nova-accent.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/themes/nova-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/themes/nova-alt.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/themes/nova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/themes/nova.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/themes/saga-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/themes/saga-blue.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/resources/showcase/images/themes/vela-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melloware/quarkus-faces/07f54a53a39634fc79c653551204dce87a12770b/src/main/resources/META-INF/resources/resources/showcase/images/themes/vela-blue.png -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/tags/tabscode.xhtml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 10 | 12 |

13 | #{entry.value}
14 | 
15 |
16 |
17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 |
-------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/template/footer.xhtml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 22 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/ajax/poll.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | Ajax Framework Poll 10 | 11 | 12 | 13 | Poll component makes remote calls periodically. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |

23 | 24 |

25 | 26 | 27 |
28 |
29 |
30 | 31 |
32 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/button/link.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | Link 10 | 11 | 12 | 13 | Button is a navigation component based on GET requests targeting bookmarkable URLs. 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 |
24 |
25 | 26 |
27 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/button/productDetail.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | Button 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 |

You've been redirected to this bookmarkable page with button. 19 | ViewParameter you've passed is "#{productDetailView.productId}" 20 |

21 |
22 |
23 | 24 |
25 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/chart/bubble.xhtml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | Charts Bubble 8 | 9 | 10 | 11 | BubbleChart is created with raw JSON or using an XDEV model. 13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 |
22 |
23 | 24 |
-------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/chart/doughnut.xhtml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | Charts Doughnut 8 | 9 | 10 | 11 | DoughnutChart is created with raw JSON or using an XDEV model. 13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 |
21 |
22 | 23 |
24 |
25 |
26 |
27 | 28 |
-------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/chart/line.xhtml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | Charts Line 8 | 9 | 10 | 11 | LineChart is created with raw JSON or using an XDEV model. 13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 |
22 | 23 |
24 | 25 |
26 |
27 | 28 |
-------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/chart/mixed.xhtml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | Charts Mixed 9 | 10 | 11 | 12 | MixedChart demonstrates a chart that consists of a BarChart and a LineChart using XDEV model. When a dataset data is clicked, information can be passed to a backing bean using itemSelect ajax behavior. 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 |
Mixed
24 | 25 | 26 | 27 |
28 | 29 |
30 |
31 | 32 |
33 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/chart/polararea.xhtml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | Charts Polar Area 8 | 9 | 10 | 11 | PolarAreaChart is created with raw JSON or using an XDEV model. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 |
22 |
23 | 24 |
25 |
26 |
27 |
28 | 29 |
-------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/chart/radar.xhtml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 16 | 17 | 18 | 19 | Charts Radar 20 | 21 | 22 | 23 | RadarChart is created with raw JSON or using an XDEV model. 25 | 26 | 27 | 28 | 29 | 30 | 31 |
32 |
33 |
34 | 35 |
36 |
37 |
38 |
39 | 40 |
-------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/chart/scatter.xhtml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 12 | 13 | 14 | 15 | Charts Scatter 16 | 17 | 18 | 19 | Scatter charts are based on basic line charts with the x axis changed to a linear axis. To use a scatter chart, data must be passed as objects containing X and Y properties. 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 |
30 | 31 |
-------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/data/datatable/basic.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | DataTable Basic 10 | 11 | 12 | 13 | DataTable displays data in tabular format. 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 |
40 |
41 |
42 | 43 |
44 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/data/datatable/field.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | DataTable Field 10 | 11 | 12 | 13 | Field property is a shorthand to define sort, filter and display properties of a column. 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 |
30 |
31 | 32 |
33 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/data/datatable/rtl.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | DataTable RTL 10 | 11 | 12 | 13 | DataTable has built-in support for RTL languages.. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 |
39 |
40 | 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/data/diagram/basic.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 18 | 19 | 20 | 21 | Diagram Basic 22 | 23 | 24 | 25 | Diagram is generic component to create visual elements and connect them on a web page. SVG is used on modern browsers and VML on IE 8 and below. Component 26 | is highly flexible in terms of api, events and theming. 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 |
35 | 36 |
37 | 38 |
39 | 40 |
41 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/data/gmap/basic.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | GMap Basic 14 | 15 | 16 | 17 | Center, zoom and type attributes are required to create a map. 18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 |
27 |
28 | 29 |
30 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/data/gmap/circles.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | GMap Circles 14 | 15 | 16 | 17 | Any number of circles can be displayed on map. Circles can also respond to selection by via overlaySelect behavior. 18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 30 | 31 | 32 | 33 |
34 |
35 | 36 |
37 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/data/gmap/controls.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | GMap Controls 14 | 15 | 16 | 17 | Controls on map can be customized via attributes like navigationControl and mapTypeControl. Alternatively setting disableDefaultUI to true will remove all controls at once. 18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 27 |
28 |
29 | 30 |
31 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/data/gmap/event.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | GMap Event 14 | 15 | 16 | 17 | Map can respond to various events such as click, zoom change and overlay select. 18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 |
34 |
35 | 36 |
37 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/data/gmap/mapDialog.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | GMap Map in Dialog 14 | 15 | 16 | 17 | This sample demonstrates using map inside a dialog. 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 |
28 | 29 | 30 | 31 | 32 | 33 |
34 | 35 |
36 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/data/gmap/markerSelection.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | GMap Marker Selection 14 | 15 | 16 | 17 | Overlays can be selected via ajax behaviors. 18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 30 | 31 | 32 | 33 |
34 |
35 | 36 |
37 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/data/gmap/markers.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | GMap Markers 14 | 15 | 16 | 17 | MapModel API is used to add markers to the map. Marker class has various configuration options like custom icons, dragging, title text and more. 18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 27 |
28 |
29 | 30 |
31 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/data/gmap/polygons.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | GMap Polygons 14 | 15 | 16 | 17 | Any number of polygons can be displayed on map. Polygons can also respond to selection by via overlaySelect behavior. 18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 30 | 31 | 32 | 33 |
34 |
35 | 36 |
37 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/data/gmap/polylines.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | GMap Polylines 14 | 15 | 16 | 17 | Any number of polylines can be displayed on map. Polylines can also respond to selection by via overlaySelect behavior. 18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 30 | 31 | 32 | 33 |
34 |
35 | 36 |
37 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/data/gmap/rectangles.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | GMap Rectangles 14 | 15 | 16 | 17 | Any number of rectangles can be displayed on map. Rectangles can also respond to selection by via overlaySelect behavior. 18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 30 | 31 | 32 | 33 |
34 |
35 | 36 |
37 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/data/gmap/street.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | GMap Street View 14 | 15 | 16 | 17 | StreetView control is enabled by simply setting streetView to true. Drop the pegman marker to display Street View. 18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 27 |
28 |
29 | 30 |
31 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/data/mindmap.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | Mindmap 10 | 11 | 12 | 13 | Mindmap is an interactive mindmapping tool featuring lazy loading, callbacks, animations and more. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 26 | 27 | 28 | 30 | 31 | 32 | 33 |
34 |
35 | 36 |
37 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/data/schedule/lazy.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | Schedule Lazy 10 | 11 | 12 | 13 | Schedule assumes whole set of events are eagerly provided in ScheduleModel, if you have a huge data set of events, lazy loading features would help to improve performance.
14 | In lazy loading mode, only the events that belong to the displayed time frame are fetched whereas in default eager more all events need to be loaded. 15 |
16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 27 | 28 |
29 |
30 | 31 |
32 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/data/tagCloud.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | TagCloud 10 | 11 | 12 | 13 | TagCloud displays a collection of tags with different strengths. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 |
29 | 30 |
31 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/data/tree/animate.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | Tree Animate 10 | 11 | 12 | 13 | Node expand and collapse events can be animated. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 |
30 | 31 |
32 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/data/tree/filter.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | Tree Filter 10 | 11 | 12 | 13 | Filtering updates the node based on the constraints. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |
Basic
23 | 24 | 25 | 26 | 27 | 28 | 29 |
Custom
30 | 31 | 32 | 33 | 34 | 35 |
36 |
37 |
38 | 39 |
40 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/data/tree/lazyloading.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | Tree Lazy Loading 10 | 11 | 12 | 13 | This example shows how to implement lazy loading of child nodes - which is essential for big models. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 |
31 | 32 |
33 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/data/treetable/gridlines.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | TreeTable GridLines 10 | 11 | 12 | 13 | Gridlines are used to display borders between cells. Note: Legacy themes always display gridlines for backward compatibility. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 |
35 |
36 | 37 |
38 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/data/treetable/paginator.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | TreeTable Paginator 10 | 11 | 12 | 13 | TreeTable provides a highly customizable ajax paginator. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 |
35 |
36 | 37 |
38 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/df/data.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | Dialog Framework Data 10 | 11 | 12 | 13 | Dialog Framework provides APIs to pass and retrieve data between the source page and the dialog. 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 |
29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 |
37 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/df/level1.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | Level 1 10 | 11 | 16 | 17 | 18 | 19 |
20 | 21 | 22 |

You are at Level 1.

23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 |
32 |
33 |
34 | 35 | 36 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/df/level2.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | Level 2 9 | 14 | 15 | 16 | 17 |
18 | 19 |

You are at Level 1.

20 | 21 | 23 | 24 | 25 |
26 |
27 |
28 | 29 | 30 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/df/level3.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | Level 3 8 | 13 | 14 | 15 |
16 | 17 |

18 | Welcome to Level 3, enter value and click send to transfer data from level 3 back to level 2. 19 |

20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 |
29 |
30 | 31 | 32 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/df/message.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | DialogFramework Message 10 | 11 | 12 | 13 | A facesmessage can be displayed in a dynamically generated dialog on runtime. 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 |
24 |
25 | 26 |
27 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/df/selectProduct.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | Products 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/df/viewProducts.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | Products 9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/df/viewProductsLargerThanViewport.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | Products 9 | 14 | 15 | 16 | 17 |
18 | Larger than viewport-dialog... Just a div with 1500px height. 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 |
39 | 40 | 41 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/input/booleanButton.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | SelectBooleanButton 10 | 11 | 12 | 13 | SelectBooleanButton is used to select a boolean value using a button. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 |
Basic
25 | 26 | 27 |
With Icon
28 | 30 | 31 |
Icon Only
32 | 33 |
34 |
35 |
36 | 37 |
38 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/input/booleanCheckbox.xhtml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | SelectBooleanCheckbox 9 | 10 | 11 | 12 | SelectBooleanCheckbox is used to select a boolean value. 13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 |
Basic
24 | 25 | 26 |
Remote
27 | 28 | 29 | 30 |
31 |
32 |
33 | 34 |
35 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/input/chips.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | Chips 10 | 11 | 12 | 13 | Chips is used to enter multiple values on an inputfield. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 |
Basic
22 | 23 | 24 |
Unique
25 | 26 | 27 |
Paste (Comma separated)
28 | 29 |
30 |
31 | 32 |
33 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/input/colorPickerInline.xhtml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | Color Picker 10 | 11 | 12 | 13 | ColorPicker has an inline mode but it can only be used globally and popup and inline mode cannot be used on the same page. 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 |
Inline
27 | 28 | 30 | 31 | 32 | 33 | 34 |
35 |
36 |
37 | 38 |
39 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/input/inputSwitch.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | InputSwitch 10 | 11 | 12 | 13 | InputSwitch is used to select a boolean value. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 |
Basic
25 | 26 | 27 |
Remote
28 | 29 | 30 | 31 |
32 |
33 |
34 | 35 |
36 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/input/keyFilter.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | KeyFilter 10 | 11 | 12 | 13 | KeyFilter can be used to filter keyboard input on specified input components. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |
Number
23 | 24 | 25 | 26 | 27 |
Regex
28 | 29 | 30 | 31 | 32 |
AutoComplete with TestFunction
33 | 35 | 36 | 37 |
38 |
39 |
40 | 41 |
42 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/input/manyButton.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | SelectManyButton 10 | 11 | 12 | 13 | SelectManyButton is used to choose multiple items from a list using buttons. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 |
30 | 31 |
32 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/input/multiSelectListbox.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | MultiSelectListbox 10 | 11 | 12 | 13 | MultiSelectListbox is used to select an item from a collection of listboxes that are in parent-child relationship. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 23 | 24 | 25 |
26 |
27 | 28 |
29 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/input/oneButton.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | SelectOneButton 10 | 11 | 12 | 13 | SelectOneButton is used to choose a single item from a list using buttons. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 |
30 | 31 |
32 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/input/toggleSwitch.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | ToggleSwitch 10 | 11 | 12 | 13 | ToggleSwitch is used to select a boolean value. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 |
Basic
25 | 26 | 27 |
Icon
28 | 29 | 30 |
Remote
31 | 32 | 33 | 34 |
35 |
36 |
37 | 38 |
39 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/input/triStateCheckbox.xhtml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | TriStateCheckbox 9 | 10 | 11 | 12 | TriStateCheckbox add a new state to a checkbox value. 13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 |
Basic
24 | 25 | 26 |
Remote
27 | 28 | 29 | 30 | 31 |
Custom Icons and Label
32 | 34 |
35 |
36 |
37 | 38 |
-------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/menu/breadcrumb.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | Breadcrumb 10 | 11 | 12 | 13 | Breadcrumb provides contextual information about the page hierarchy. 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
32 | 33 |
34 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/menu/contextmenu/basic.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | ContextMenu Basic 10 | 11 | 12 | 13 | ContextMenu is an overlay menu display mainly displayed using right-click. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | Right click to view the menu options. 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 |
34 |
35 | 36 |
37 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/menu/dock.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | Dock 10 | 11 | 12 | 13 | Dock is a navigation component consisting of menuitems. 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/menu/steps.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | Steps Steps 10 | 11 | 12 | 13 | Steps components is an indicator for the steps in a workflow. Layout of steps component is optimized for responsive design. 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 |
28 | 29 |
30 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/misc/autoUpdate.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | AutoUpdate 10 | 11 | 12 | 13 | AutoUpdate is a utility tag, which registers the attached/parent component to be updated automatically on each ajax request. 14 | All ajaxified components (includes p:ajax) provides an attribute, to mark the current request to ignore all autoUpdates. 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | Time: #{autoUpdateView.time} 26 | 27 | 28 | 29 | 30 | 31 |
32 |
33 | 34 |
35 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/misc/clock.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 14 | 15 | 16 | 17 | Clock 18 | 19 | 20 | 21 | Clock displays server or client datetime live. AutoSync feature in server mode can sync the 22 | clock with server periodically. 23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Client
32 | 33 | 34 |
Server
35 | 36 | 37 |
Custom
38 | 39 | 40 |
Analog
41 | 42 |
43 |
44 |
45 | 46 |
47 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/misc/feedReader.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | FeedReader 10 | 11 | 12 | 13 | FeedReader retrieves and displays content from an RSS, Atom, or Itunes Podcast feed. 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 |
22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 |
31 |
32 |
33 | 34 |
-------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/misc/idleMonitor.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | IdleMonitor 10 | 11 | 12 | 13 | IdleMonitor tracks user actions and invokes corresponding events when user goes idle after a specified time and becomes active again. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | Stay idle on this page for 5 seconds to view the demo. 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 |
32 |
33 | 34 |
35 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/misc/importConstants.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | ImportConstants 10 | 11 | 12 | 13 | In older EL versions (< 3.0), it's not possible to use constants or any other static fields/methods in an EL expression, 14 | as it is not really a good practive to create beans with getter/setter for each constants class, we provide an utils tag which allows to import constant fields in a page. 15 | The constants can be accessed via the name of the class (default setting) or via a custom name (var attribute). 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 |
Library
25 | 26 | 27 |
DOWNLOAD_COOKIE
28 | 29 |
30 |
31 | 32 |
33 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/misc/lifecycle.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | Lifecycle 10 | 11 | 12 | 13 | Lifecycle is a utility component which displays the execution time of each JSF phase.
14 | It also synchronizes automatically after each AJAX request. 15 |
16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 |
24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
32 |
33 |
34 | 35 |
36 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/misc/printer.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | Printer 10 | 11 | 12 | 13 | Printer is used to print a certain component instead of the whole page. 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 |
32 |
33 | 34 |
35 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/misc/separator.xhtml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | Separator 8 | 9 | 10 | 11 | Separator displays a horizantal line that can be styled with css. 12 | 13 | 14 | 15 | 16 | 17 | 18 | 20 | 21 |
22 |
Basic
23 | 24 | 25 |
Custom
26 | 27 |
28 |
29 | 30 |
-------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/misc/spacer.xhtml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | Spacer 8 | 9 | 10 | 11 | Spacer is used to create spaces in a layout. 12 | 13 | 14 | 15 | 16 | 17 | 20 | 21 |
22 | This text is separated from this text. 24 |
25 |
26 | 27 |
-------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/misc/terminal/basic.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | Terminal Basic 10 | 11 | 12 | 13 | Terminal commands are handled by a server side listener. "greet {text}" and "date" are sample commands. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 26 | 27 | 28 | 29 |
30 |
31 | 32 |
33 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/multimedia/compare.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | ImageCompare 10 | 11 | 12 | 13 | ImageCompare provides a graphical interface to compare to similar images. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 24 |
25 |
26 | 27 |
28 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/multimedia/galleria/autoplay.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | Galleria AutoPlay 10 | 11 | 12 | 13 | AutoPlay mode is used to implement slideshows. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 23 | 24 | 25 | 26 | 27 | 28 |
29 |
30 | 31 |
32 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/multimedia/galleria/basic.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | Galleria 10 | 11 | 12 | 13 | Galleria is a content gallery component. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 |
29 | 30 |
31 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/multimedia/galleria/caption.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | Galleria Caption 10 | 11 | 12 | 13 | Caption displays a description for an item. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 23 | 24 | 25 |

#{photo.title}

26 |

#{photo.alt}

27 |
28 | 29 | 30 | 31 |
32 |
33 |
34 | 35 |
36 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/multimedia/galleria/responsive.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | Galleria Responsive 10 | 11 | 12 | 13 | Galleria responsiveness is defined with the responsiveOptions property. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 |
29 | 30 |
31 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/multimedia/graphicImage.xhtml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | GraphicImage 8 | 9 | 10 | 11 | GraphicImage is capable of presenting images that are created programatically at runtime or images stored in a database. 12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 |
Static Image
20 | 21 |
22 | 23 |
24 |
GraphicText
25 | 26 |
27 | 28 |
29 | 30 |
-------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/multimedia/media.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | Media 10 | 11 | 12 | 13 | Media component is a cross browser generic player to embed multimedia content in JSF pages. 14 | Various formats such as flash, quicktime, windows media, realplayer and pdf are supported. 15 | Suitable player is discovered using the source extension type and a player can be specified explicitly as well. 16 | Media component can also play binary media using the StreamedContent API. 17 | 18 | 19 | 20 | 21 | 22 |
23 |
PDF
24 | 25 | Your browser can't display pdf, click to download pdf instead. 27 | 28 |
29 | 30 |
31 | 32 |
33 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/multimedia/photocam/photoCam.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | PhotoCam 10 | 11 | 12 | 13 | PhotoCam is an input component to take photos with the webcam and send them to the backend model. 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 28 | 29 | 30 | 31 |
32 |
33 | 34 |
35 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/ui/multimedia/qrcode.xhtml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | Barcode 9 | 10 | 11 | 12 | QR code (quick-response code) is a type of two-dimensional matrix barcode and can be generated using the 13 | Okapi library. 14 | 15 |

16 |             <dependency>
17 |                <groupId>uk.org.okapibarcode</groupId>
18 |                <artifactId>okapibarcode</artifactId>
19 |                <version>0.4.9</version>
20 |             </dependency>
21 |             
22 |
23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 | 31 | 32 |
33 |
34 | 35 |
-------------------------------------------------------------------------------- /src/main/resources/META-INF/resources/viewExpired.xhtml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 14 | 15 | 16 | 17 | Error View Expired 18 | 19 | 20 | 21 | Message: #{pfExceptionHandler.message} 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/showcase.taglib.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | primefaces.showcase 8 | 9 | 10 | getFilesContent 11 | org.primefaces.showcase.util.ShowcaseUtil 12 | java.util.List getFilesContent(java.lang.String,java.lang.Boolean)) 13 | 14 | 15 | 16 | tabscode 17 | resources/tags/tabscode.xhtml 18 | 19 | 20 | 21 | convertOrder 22 | 23 | org.primefaces.showcase.converter.OrderConverter 24 | 25 | 26 | events 27 | true 28 | java.util.List 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | # must include web.xml and faces-config.xml to be parsed. 2 | quarkus.native.resources.includes=META-INF/*.xml,*.properties,*.png 3 | # default bean validation locale 4 | quarkus.default-locale=en 5 | # Include all available locales in native mode 6 | quarkus.locales=ar,ca,cs,de,en,en_US,es,fr,it,ja,mt,nl,pl,pt,pt_BR,ru,sk,uk,zh_CN,zh_HK,zh_TW 7 | # port 8000 for Koyeb as it can't serve 8080 8 | quarkus.http.port=8000 9 | quarkus.http.compressors=deflate,gzip,br 10 | quarkus.http.access-log.enabled=false 11 | quarkus.http.enable-compression=true 12 | quarkus.servlet.direct-buffers=true 13 | quarkus.servlet.buffer-size=640000 14 | # improve hot reloading performance 15 | %dev.quarkus.live-reload.instrumentation=true 16 | # uber jar creation to create a single executable jar 17 | #quarkus.package.jar.type=uber-jar -------------------------------------------------------------------------------- /src/main/resources/build.properties: -------------------------------------------------------------------------------- 1 | jsfVersion=${jsfVersion} 2 | primefacesVersion=${primefacesVersion} -------------------------------------------------------------------------------- /src/main/resources/translate.properties: -------------------------------------------------------------------------------- 1 | translate.url = ${translate.url} --------------------------------------------------------------------------------