Skip to content

Commit

Permalink
Merge branch 'release/2.0.0-RC4'
Browse files Browse the repository at this point in the history
  • Loading branch information
vegegoku committed Nov 9, 2023
2 parents 06571b9 + aad7096 commit 41d8cc6
Show file tree
Hide file tree
Showing 903 changed files with 49,768 additions and 26,054 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © ${year} Dominokit
# Copyright © 2019 Dominokit
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
![logoimage](https://raw.githubusercontent.com/DominoKit/DominoKit.github.io/master/logo/128.png)

<a title="Gitter" href="https://gitter.im/DominoKit/domino"><img src="https://badges.gitter.im/Join%20Chat.svg"></a>
<a title="Element" href="https://matrix.to/#/!togTvnNghqSNrVUADf:gitter.im/$7O8oKWAuTu2r0KolsY73ee6SrV-fu8uxzudbz_aG95w?via=gitter.im&via=matrix.org&via=t2bot.io"><img src="https://badges.gitter.im/Join%20Chat.svg"></a>
[![Development Build Status](https://github.com/DominoKit/domino-ui/actions/workflows/deploy.yaml/badge.svg?branch=development)](https://github.com/DominoKit/domino-ui/actions/workflows/deploy.yaml/badge.svg?branch=development)
![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.dominokit/domino-ui/badge.svg)
![Sonatype Nexus (Snapshots)](https://img.shields.io/badge/Snapshot-HEAD--SNAPSHOT-orange)
![GWT3/J2CL compatible](https://img.shields.io/badge/GWT3/J2CL-compatible-brightgreen.svg)

# Domino-ui
A type safe material design with bootstrap builder for java developer with GWT without dependencies on external JavaScript.
type safe and feature rich UI components library for java developer utilizing fluent API and does not depend on external JavaScript.

Checkout our [getting started guide](https://github.com/DominoKit/domino-ui/wiki/Getting-started)

and checkout our [demo app](https://demo.dominokit.org/home)
Check the [introduction](https://dominokit.com/solutions/domino-ui/v2)
Checkout the [getting started guide](https://dominokit.com/solutions/domino-ui/v2/docs/getting-started)
Checkout our [demo app](https://dominokit.com/domino-ui/demo/v2/home)

### Quick insight

Expand Down
2 changes: 1 addition & 1 deletion domino-ui-shared/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>domino-ui-parent</artifactId>
<groupId>org.dominokit</groupId>
<version>2.0.0-RC3</version>
<version>2.0.0-RC4</version>
</parent>
<packaging>jar</packaging>
<modelVersion>4.0.0</modelVersion>
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,18 @@

import elemental2.dom.Element;

/** IsElement interface. */
/**
* The {@code IsElement} interface represents an element that can be associated with an underlying
* DOM element.
*
* @param <E> The type of the underlying DOM element.
*/
public interface IsElement<E extends Element> {

/**
* element.
* Gets the underlying DOM element associated with this element.
*
* @return a E object.
* @return The underlying DOM element.
*/
E element();
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

import java.lang.annotation.*;

/** MdiIconsFactory class. */
@Retention(RetentionPolicy.SOURCE)
@Target(ElementType.PACKAGE)
@Documented
Expand Down
Loading

0 comments on commit 41d8cc6

Please sign in to comment.