File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed
src/main/java/gwt/material/design/addins/client/inputmask Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 55 <parent >
66 <artifactId >gwt-material-parent</artifactId >
77 <groupId >com.github.gwtmaterialdesign</groupId >
8- <version >2.6.0-rc1 </version >
8+ <version >2.6.0-SNAPSHOT </version >
99 </parent >
1010
1111 <artifactId >gwt-material-addins</artifactId >
2424 <
connection >scm:git:
[email protected] :GwtMaterialDesign/gwt-material-addins.git</
connection >
2525 <
developerConnection >scm:git:
[email protected] :GwtMaterialDesign/gwt-material-addins.git</
developerConnection >
2626 <url >http://github.com/GwtMaterialDesign/gwt-material-addins</url >
27- <tag >v2.6.0-rc1 </tag >
27+ <tag >v2.6.0-SNAPSHOT </tag >
2828 </scm >
2929
3030 <licenses >
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ public class AbstractInputMask<T> extends MaterialValueBox<T>
7676 }
7777
7878 private String mask ;
79- private JsInputMaskOptions options = new JsInputMaskOptions ();
79+ protected JsInputMaskOptions options = new JsInputMaskOptions ();
8080
8181 public AbstractInputMask () {
8282 super ((ValueBoxBase <T >) new TextBox ());
Original file line number Diff line number Diff line change 2020package gwt .material .design .addins .client .inputmask ;
2121
2222import gwt .material .design .client .base .NumberBox ;
23+ import gwt .material .design .client .ui .MaterialDoubleBox ;
2324import gwt .material .design .client .ui .MaterialLongBox ;
25+ import gwt .material .design .client .ui .MaterialToast ;
26+
27+ import static gwt .material .design .addins .client .inputmask .js .JsInputMask .$ ;
2428
2529public class MaterialDoubleInputMask extends AbstractInputMask <Double > {
2630
2731 public MaterialDoubleInputMask () {
28- super (new NumberBox <>(new NumberBox .NumberHandler <>(new MaterialLongBox ())));
32+ super (new NumberBox <>(new NumberBox .NumberHandler <>(new MaterialDoubleBox ())));
2933 }
3034
3135 @ Override
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ public class JsInputMask extends JQueryElement {
4646 public native JQueryElement mask (String mask );
4747
4848 @ JsMethod
49- public native JQueryElement masked (String masked );
49+ public native String masked (String masked );
5050
5151 @ JsMethod
5252 public native JQueryElement mask (String mask , JsInputMaskOptions options );
You can’t perform that action at this time.
0 commit comments