bump version, update dependencies
This commit is contained in:
parent
897ee9cbb9
commit
7ab07f6ca3
33 changed files with 23 additions and 168 deletions
17
build.gradle
17
build.gradle
|
@ -35,7 +35,7 @@ apply plugin: 'propdeps'
|
|||
apply plugin: 'propdeps-idea'
|
||||
|
||||
group 'com.faendir'
|
||||
version = '0.1.0-SNAPSHOT'
|
||||
version = '0.2.0-SNAPSHOT'
|
||||
sourceCompatibility = 1.8
|
||||
targetCompatibility = 1.8
|
||||
|
||||
|
@ -63,21 +63,16 @@ dependencies {
|
|||
compile 'mysql:mysql-connector-java'
|
||||
compile 'org.springframework.boot:spring-boot-starter-security'
|
||||
compile 'org.springframework:spring-orm'
|
||||
optional "org.springframework.boot:spring-boot-configuration-processor"
|
||||
//vaadin
|
||||
compile('com.vaadin:vaadin-spring-boot-starter') {
|
||||
//exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
|
||||
//exclude group: 'org.hibernate.validator'
|
||||
}
|
||||
optional 'org.springframework.boot:spring-boot-configuration-processor'
|
||||
providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
|
||||
//vaadin
|
||||
compile 'com.vaadin:vaadin-spring-boot-starter'
|
||||
compile 'com.vaadin:vaadin-push'
|
||||
compile 'org.vaadin.addons:popupbutton:3.0.0'
|
||||
compile('org.vaadin.addon:jfreechartwrapper:4.0.0') {
|
||||
exclude group: 'javax.servlet', module: 'servlet-api'
|
||||
exclude group: 'jfree'
|
||||
}
|
||||
compile('org.jfree:jfreechart:1.0.19') {
|
||||
exclude group: 'javax.servlet', module: 'servlet-api'
|
||||
}
|
||||
compile 'org.jfree:jfreechart:1.5.0'
|
||||
compile 'javax.servlet:javax.servlet-api:3.1.0'
|
||||
compile 'org.vaadin.addons:stepper:2.4.0'
|
||||
//utility
|
||||
|
|
|
@ -2,8 +2,8 @@ package com.faendir.acra.ui;
|
|||
|
||||
import com.faendir.acra.security.SecurityUtils;
|
||||
import com.faendir.acra.ui.view.ErrorView;
|
||||
import com.faendir.acra.ui.view.annotation.RequiresAppPermission;
|
||||
import com.faendir.acra.ui.view.annotation.RequiresRole;
|
||||
import com.faendir.acra.ui.annotation.RequiresAppPermission;
|
||||
import com.faendir.acra.ui.annotation.RequiresRole;
|
||||
import com.faendir.acra.ui.view.base.NamedView;
|
||||
import com.faendir.acra.ui.view.base.ParametrizedNamedView;
|
||||
import com.faendir.acra.util.MyNavigator;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package com.faendir.acra.ui.view.annotation;
|
||||
package com.faendir.acra.ui.annotation;
|
||||
|
||||
import com.faendir.acra.sql.model.Permission;
|
||||
import org.springframework.lang.NonNull;
|
|
@ -1,4 +1,4 @@
|
|||
package com.faendir.acra.ui.view.annotation;
|
||||
package com.faendir.acra.ui.annotation;
|
||||
|
||||
import org.springframework.lang.NonNull;
|
||||
|
|
@ -3,7 +3,7 @@ package com.faendir.acra.ui.view;
|
|||
import com.faendir.acra.sql.data.AppRepository;
|
||||
import com.faendir.acra.sql.model.App;
|
||||
import com.faendir.acra.sql.model.Permission;
|
||||
import com.faendir.acra.ui.view.annotation.RequiresAppPermission;
|
||||
import com.faendir.acra.ui.annotation.RequiresAppPermission;
|
||||
import com.faendir.acra.ui.view.base.MyTabSheet;
|
||||
import com.faendir.acra.ui.view.base.ParametrizedNamedView;
|
||||
import com.faendir.acra.ui.view.tabs.BugTab;
|
||||
|
|
|
@ -9,7 +9,7 @@ import com.faendir.acra.sql.model.Attachment;
|
|||
import com.faendir.acra.sql.model.Permission;
|
||||
import com.faendir.acra.sql.model.ProguardMapping;
|
||||
import com.faendir.acra.sql.model.Report;
|
||||
import com.faendir.acra.ui.view.annotation.RequiresAppPermission;
|
||||
import com.faendir.acra.ui.annotation.RequiresAppPermission;
|
||||
import com.faendir.acra.ui.view.base.ParametrizedNamedView;
|
||||
import com.faendir.acra.util.Style;
|
||||
import com.faendir.acra.util.Utils;
|
||||
|
|
|
@ -3,7 +3,7 @@ package com.faendir.acra.ui.view.base;
|
|||
import com.faendir.acra.security.SecurityUtils;
|
||||
import com.faendir.acra.sql.model.App;
|
||||
import com.faendir.acra.ui.NavigationManager;
|
||||
import com.faendir.acra.ui.view.annotation.RequiresAppPermission;
|
||||
import com.faendir.acra.ui.annotation.RequiresAppPermission;
|
||||
import com.vaadin.ui.Component;
|
||||
import com.vaadin.ui.CustomComponent;
|
||||
import com.vaadin.ui.TabSheet;
|
||||
|
|
|
@ -23,11 +23,11 @@ import org.jfree.chart.plot.PlotOrientation;
|
|||
import org.jfree.chart.plot.XYPlot;
|
||||
import org.jfree.chart.renderer.xy.StandardXYBarPainter;
|
||||
import org.jfree.chart.renderer.xy.XYBarRenderer;
|
||||
import org.jfree.chart.util.SortOrder;
|
||||
import org.jfree.data.general.DefaultPieDataset;
|
||||
import org.jfree.data.time.Day;
|
||||
import org.jfree.data.time.TimeSeries;
|
||||
import org.jfree.data.time.TimeSeriesCollection;
|
||||
import org.jfree.util.SortOrder;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.lang.NonNull;
|
||||
import org.vaadin.addon.JFreeChartWrapper;
|
||||
|
|
|
@ -7,7 +7,7 @@ import com.faendir.acra.sql.model.Permission;
|
|||
import com.faendir.acra.sql.model.User;
|
||||
import com.faendir.acra.sql.user.UserManager;
|
||||
import com.faendir.acra.sql.user.UserRepository;
|
||||
import com.faendir.acra.ui.view.annotation.RequiresRole;
|
||||
import com.faendir.acra.ui.annotation.RequiresRole;
|
||||
import com.faendir.acra.ui.view.base.MyCheckBox;
|
||||
import com.faendir.acra.ui.view.base.MyGrid;
|
||||
import com.faendir.acra.ui.view.base.NamedView;
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
<!-- WS Compiler: manually edited -->
|
||||
<module>
|
||||
<inherits name="com.vaadin.DefaultWidgetSet" />
|
||||
<inherits name="org.vaadin.hene.popupbutton.widgetset.PopupbuttonWidgetset" />
|
||||
<inherits name="org.vaadin.risto.stepper.StepperWidgetset" />
|
||||
<set-configuration-property name="devModeRedirectEnabled" value="true" />
|
||||
<set-property name="user.agent" value="gecko1_8,safari,ie10" />
|
||||
|
|
File diff suppressed because one or more lines are too long
Binary file not shown.
|
@ -1,4 +1,4 @@
|
|||
function AppWidgetset(){var O='bootstrap',P='begin',Q='gwt.codesvr.AppWidgetset=',R='gwt.codesvr=',S='AppWidgetset',T='startup',U='DUMMY',V=0,W=1,X='iframe',Y='position:absolute; width:0; height:0; border:none; left: -1000px;',Z=' top: -1000px;',$='CSS1Compat',_='<!doctype html>',ab='',bb='<html><head><\/head><body><\/body><\/html>',cb='undefined',db='readystatechange',eb=10,fb='Chrome',gb='eval("',hb='");',ib='script',jb='javascript',kb='moduleStartup',lb='moduleRequested',mb='Failed to load ',nb='head',ob='meta',pb='name',qb='AppWidgetset::',rb='::',sb='gwt:property',tb='content',ub='=',vb='gwt:onPropertyErrorFn',wb='Bad handler "',xb='" for "gwt:onPropertyErrorFn"',yb='gwt:onLoadErrorFn',zb='" for "gwt:onLoadErrorFn"',Ab='#',Bb='?',Cb='/',Db='img',Eb='clear.cache.gif',Fb='baseUrl',Gb='AppWidgetset.nocache.js',Hb='base',Ib='//',Jb='modernie',Kb='MSIE',Lb='Trident',Mb='yes',Nb='none',Ob='user.agent',Pb='webkit',Qb='safari',Rb='msie',Sb=11,Tb='ie10',Ub=9,Vb='ie9',Wb=8,Xb='ie8',Yb='gecko',Zb='gecko1_8',$b=2,_b=3,ac=4,bc='selectingPermutation',cc='AppWidgetset.devmode.js',dc='46AAADBE0BD320C3556181BB162B7AC5',ec=':1',fc=':2',gc=':3',hc=':',ic='.cache.js',jc='link',kc='rel',lc='stylesheet',mc='href',nc='loadExternalRefs',oc='popupbutton/popupbutton.css',pc='end',qc='http:',rc='file:',sc='_gwt_dummy_',tc='__gwtDevModeHook:AppWidgetset',uc='Ignoring non-whitelisted Dev Mode URL: ',vc=':moduleBase';var o=window;var p=document;r(O,P);function q(){var a=o.location.search;return a.indexOf(Q)!=-1||a.indexOf(R)!=-1}
|
||||
function AppWidgetset(){var O='bootstrap',P='begin',Q='gwt.codesvr.AppWidgetset=',R='gwt.codesvr=',S='AppWidgetset',T='startup',U='DUMMY',V=0,W=1,X='iframe',Y='position:absolute; width:0; height:0; border:none; left: -1000px;',Z=' top: -1000px;',$='CSS1Compat',_='<!doctype html>',ab='',bb='<html><head><\/head><body><\/body><\/html>',cb='undefined',db='readystatechange',eb=10,fb='Chrome',gb='eval("',hb='");',ib='script',jb='javascript',kb='moduleStartup',lb='moduleRequested',mb='Failed to load ',nb='head',ob='meta',pb='name',qb='AppWidgetset::',rb='::',sb='gwt:property',tb='content',ub='=',vb='gwt:onPropertyErrorFn',wb='Bad handler "',xb='" for "gwt:onPropertyErrorFn"',yb='gwt:onLoadErrorFn',zb='" for "gwt:onLoadErrorFn"',Ab='#',Bb='?',Cb='/',Db='img',Eb='clear.cache.gif',Fb='baseUrl',Gb='AppWidgetset.nocache.js',Hb='base',Ib='//',Jb='modernie',Kb='MSIE',Lb='Trident',Mb='yes',Nb='none',Ob='user.agent',Pb='webkit',Qb='safari',Rb='msie',Sb=11,Tb='ie10',Ub=9,Vb='ie9',Wb=8,Xb='ie8',Yb='gecko',Zb='gecko1_8',$b=2,_b=3,ac=4,bc='selectingPermutation',cc='AppWidgetset.devmode.js',dc='3B55CC72799652B52B0DA7E069444ACC',ec=':1',fc=':2',gc=':3',hc=':',ic='.cache.js',jc='loadExternalRefs',kc='end',lc='http:',mc='file:',nc='_gwt_dummy_',oc='__gwtDevModeHook:AppWidgetset',pc='Ignoring non-whitelisted Dev Mode URL: ',qc=':moduleBase';var o=window;var p=document;r(O,P);function q(){var a=o.location.search;return a.indexOf(Q)!=-1||a.indexOf(R)!=-1}
|
||||
function r(a,b){if(o.__gwtStatsEvent){o.__gwtStatsEvent({moduleName:S,sessionId:o.__gwtStatsSessionId,subSystem:T,evtGroup:a,millis:(new Date).getTime(),type:b})}}
|
||||
AppWidgetset.__sendStats=r;AppWidgetset.__moduleName=S;AppWidgetset.__errFn=null;AppWidgetset.__moduleBase=U;AppWidgetset.__softPermutationId=V;AppWidgetset.__computePropValue=null;AppWidgetset.__getPropMap=null;AppWidgetset.__installRunAsyncCode=function(){};AppWidgetset.__gwtStartLoadingFragment=function(){return null};AppWidgetset.__gwt_isKnownPropertyValue=function(){return false};AppWidgetset.__gwt_getMetaProperty=function(){return null};var s=null;var t=o.__gwt_activeModules=o.__gwt_activeModules||{};t[S]={moduleName:S};AppWidgetset.__moduleStartupDone=function(e){var f=t[S].bindings;t[S].bindings=function(){var a=f?f():{};var b=e[AppWidgetset.__softPermutationId];for(var c=V;c<b.length;c++){var d=b[c];a[d[V]]=d[W]}return a}};var u;function v(){w();return u}
|
||||
function w(){if(u){return}var a=p.createElement(X);a.id=S;a.style.cssText=Y+Z;a.tabIndex=-1;p.body.appendChild(a);u=a.contentWindow.document;u.open();var b=document.compatMode==$?_:ab;u.write(b+bb);u.close()}
|
||||
|
@ -20,8 +20,7 @@ function D(a){if(a.match(/^\//)){return a}if(a.match(/^[a-zA-Z]+:\/\//)){return
|
|||
function F(){var f=[];var g=V;function h(a,b){var c=f;for(var d=V,e=a.length-W;d<e;++d){c=c[a[d]]||(c[a[d]]=[])}c[a[e]]=b}
|
||||
var i=[];var j=[];function k(a){var b=j[a](),c=i[a];if(b in c){return b}var d=[];for(var e in c){d[c[e]]=e}if(s){s(a,d,b)}throw null}
|
||||
j[Jb]=function(){{var a=o.navigator.userAgent;if(a.indexOf(Kb)==-1&&a.indexOf(Lb)!=-1){return Mb}return Nb}};i[Jb]={'none':V,'yes':W};j[Ob]=function(){var a=navigator.userAgent.toLowerCase();var b=p.documentMode;if(function(){return a.indexOf(Pb)!=-1}())return Qb;if(function(){return a.indexOf(Rb)!=-1&&(b>=eb&&b<Sb)}())return Tb;if(function(){return a.indexOf(Rb)!=-1&&(b>=Ub&&b<Sb)}())return Vb;if(function(){return a.indexOf(Rb)!=-1&&(b>=Wb&&b<Sb)}())return Xb;if(function(){return a.indexOf(Yb)!=-1||b>=Sb}())return Zb;return Qb};i[Ob]={'gecko1_8':V,'ie10':W,'ie8':$b,'ie9':_b,'safari':ac};__gwt_isKnownPropertyValue=function(a,b){return b in i[a]};AppWidgetset.__getPropMap=function(){var a={};for(var b in i){if(i.hasOwnProperty(b)){a[b]=k(b)}}return a};AppWidgetset.__computePropValue=k;o.__gwt_activeModules[S].bindings=AppWidgetset.__getPropMap;r(O,bc);if(q()){return D(cc)}var l;try{h([Nb,Zb],dc);h([Mb,Zb],dc+ec);h([Nb,Tb],dc+fc);h([Nb,Qb],dc+gc);l=f[k(Jb)][k(Ob)];var m=l.indexOf(hc);if(m!=-1){g=parseInt(l.substring(m+W),eb);l=l.substring(V,m)}}catch(a){}AppWidgetset.__softPermutationId=g;return D(l+ic)}
|
||||
function G(){if(!o.__gwt_stylesLoaded){o.__gwt_stylesLoaded={}}function c(a){if(!__gwt_stylesLoaded[a]){var b=p.createElement(jc);b.setAttribute(kc,lc);b.setAttribute(mc,D(a));p.getElementsByTagName(nb)[V].appendChild(b);__gwt_stylesLoaded[a]=true}}
|
||||
r(nc,P);c(oc);r(nc,pc)}
|
||||
B();AppWidgetset.__moduleBase=C();t[S].moduleBase=AppWidgetset.__moduleBase;var H=F();if(o){var I=!!(o.location.protocol==qc||o.location.protocol==rc);o.__gwt_activeModules[S].canRedirect=I;function J(){var b=sc;try{o.sessionStorage.setItem(b,b);o.sessionStorage.removeItem(b);return true}catch(a){return false}}
|
||||
if(I&&J()){var K=tc;var L=o.sessionStorage[K];if(!/^http:\/\/(localhost|127\.0\.0\.1)(:\d+)?\/.*$/.test(L)){if(L&&(window.console&&console.log)){console.log(uc+L)}L=ab}if(L&&!o[K]){o[K]=true;o[K+vc]=C();var M=p.createElement(ib);M.src=L;var N=p.getElementsByTagName(nb)[V];N.insertBefore(M,N.firstElementChild||N.children[V]);return false}}}G();r(O,pc);A(H);return true}
|
||||
function G(){if(!o.__gwt_stylesLoaded){o.__gwt_stylesLoaded={}}r(jc,P);r(jc,kc)}
|
||||
B();AppWidgetset.__moduleBase=C();t[S].moduleBase=AppWidgetset.__moduleBase;var H=F();if(o){var I=!!(o.location.protocol==lc||o.location.protocol==mc);o.__gwt_activeModules[S].canRedirect=I;function J(){var b=nc;try{o.sessionStorage.setItem(b,b);o.sessionStorage.removeItem(b);return true}catch(a){return false}}
|
||||
if(I&&J()){var K=oc;var L=o.sessionStorage[K];if(!/^http:\/\/(localhost|127\.0\.0\.1)(:\d+)?\/.*$/.test(L)){if(L&&(window.console&&console.log)){console.log(pc+L)}L=ab}if(L&&!o[K]){o[K]=true;o[K+qc]=C();var M=p.createElement(ib);M.src=L;var N=p.getElementsByTagName(nb)[V];N.insertBefore(M,N.firstElementChild||N.children[V]);return false}}}G();r(O,kc);A(H);return true}
|
||||
AppWidgetset.succeeded=AppWidgetset();
|
Binary file not shown.
|
@ -1,4 +1,4 @@
|
|||
46AAADBE0BD320C3556181BB162B7AC5.cache.js
|
||||
3B55CC72799652B52B0DA7E069444ACC.cache.js
|
||||
ClientBundle.enableInlining true
|
||||
audioElementSupport maybe
|
||||
canvasElementSupport maybe
|
||||
|
@ -41,7 +41,7 @@ vaadin.profiler false
|
|||
videoElementSupport maybe
|
||||
webApiUsage modern
|
||||
|
||||
46AAADBE0BD320C3556181BB162B7AC5.cache.js
|
||||
3B55CC72799652B52B0DA7E069444ACC.cache.js
|
||||
ClientBundle.enableInlining true
|
||||
audioElementSupport maybe
|
||||
canvasElementSupport maybe
|
||||
|
@ -84,7 +84,7 @@ vaadin.profiler false
|
|||
videoElementSupport maybe
|
||||
webApiUsage modern
|
||||
|
||||
46AAADBE0BD320C3556181BB162B7AC5.cache.js
|
||||
3B55CC72799652B52B0DA7E069444ACC.cache.js
|
||||
ClientBundle.enableInlining true
|
||||
audioElementSupport maybe
|
||||
canvasElementSupport maybe
|
||||
|
@ -127,7 +127,7 @@ vaadin.profiler false
|
|||
videoElementSupport maybe
|
||||
webApiUsage modern
|
||||
|
||||
46AAADBE0BD320C3556181BB162B7AC5.cache.js
|
||||
3B55CC72799652B52B0DA7E069444ACC.cache.js
|
||||
ClientBundle.enableInlining true
|
||||
audioElementSupport maybe
|
||||
canvasElementSupport maybe
|
||||
|
|
File diff suppressed because one or more lines are too long
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
$wnd.AppWidgetset.runAsyncCallback2('B$b(1888,1,{226:1,1:1});_.kjb=function ude(){this.ljb(this.b)};_.ljb=function vde(a){this.mjb(a)};_.mjb=function wde(a){};_.gf=function yde(){this.kjb();Qyd().Q6(this.a.nc())};J_g(np)(2);\n//# sourceURL=AppWidgetset-2.js\n')
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
$wnd.AppWidgetset.runAsyncCallback3("B$b(1890,1,{226:1,1:1});_.pjb=function Gde(){this.b.Wkb(HQb,qPb);this.b.Wkb(OQb,HQb);this.b.Kkb('com.vaadin.ui.ColorPicker',YGb);this.b.Lkb(YGb,new Nde(this));this.b.Lkb(OQb,new Rde(this));this.b.Ukb(YGb,'getWidget',new che(WDb));this.b.Ukb(YGb,'getState',new che(OQb));this.b.Nkb(WDb,'setColor',new Vde(this));this.b.Nkb(WDb,'setOpen',new Zde(this));this.qjb(this.b);this.b.Skb(HQb,'color',new che(wVb));this.b.Skb(HQb,'popupVisible',new che(QUb));this.b.Skb(HQb,'showDefaultCaption',new che(QUb));this.b.Mkb(OQb,'color','setColor');this.b.Mkb(OQb,'popupVisible','setOpen');this.b.Ikb(YGb,new Hge(VBb,'handleContextClickListenerChange',z3(k3(wVb,1),{3:1,1:1,5:1,15:1},2,6,['registeredEventListeners'])))};_.qjb=function Hde(a){this.rjb(a)};_.rjb=function Ide(c){var d={setter:function(a,b){a.a=b},getter:function(a){return a.a}};c.Rkb(HQb,'color',d);var d={setter:function(a,b){a.b=Rpg(b)},getter:function(a){return $pg(a.b)}};c.Rkb(HQb,'popupVisible',d);var d={setter:function(a,b){a.c=Rpg(b)},getter:function(a){return $pg(a.c)}};c.Rkb(HQb,'showDefaultCaption',d)};_.gf=function Kde(){this.pjb();Qyd().Q6(this.a.nc())};function Lde(){Lde=D$b;S()}\nfunction Nde(a){Lde();this.a=a;Z.call(this);this.sjb()}\nB$b(1891,1,{6:1,1:1},Nde);_.sjb=function Mde(){};_.o7=function Ode(a,b){return new e3e};var GAb=grg('com.vaadin.client.metadata','ConnectorBundleLoaderImpl/3/1/1',1891,nVb);function Pde(){Pde=D$b;S()}\nfunction Rde(a){Pde();this.a=a;Z.call(this);this.tjb()}\nB$b(1892,1,{6:1,1:1},Rde);_.tjb=function Qde(){};_.o7=function Sde(a,b){return new Xag};var HAb=grg('com.vaadin.client.metadata','ConnectorBundleLoaderImpl/3/1/2',1892,nVb);function Tde(){Tde=D$b;S()}\nfunction Vde(a){Tde();this.a=a;Z.call(this);this.ujb()}\nB$b(1893,1,{6:1,1:1},Vde);_.ujb=function Ude(){};_.o7=function Wde(a,b){$4(a,434).Nj(e5(b[0]));return null};var IAb=grg('com.vaadin.client.metadata','ConnectorBundleLoaderImpl/3/1/3',1893,nVb);function Xde(){Xde=D$b;S()}\nfunction Zde(a){Xde();this.a=a;Z.call(this);this.vjb()}\nB$b(1894,1,{6:1,1:1},Zde);_.vjb=function Yde(){};_.o7=function $de(a,b){$4(a,434).Jsb(Rpg(b5(b[0])));return null};var JAb=grg('com.vaadin.client.metadata','ConnectorBundleLoaderImpl/3/1/4',1894,nVb);B$b(197,64,{40:1,78:1,65:1,47:1,43:1,7:1,17:1,64:1,51:1,55:1,11:1,8:1,197:1,1:1});_.tA=function oze(a){uu(this.i,a)};function rAe(){rAe=D$b;bze()}\nfunction tAe(){rAe();dze.call(this);this.Hsb()}\nB$b(434,197,{40:1,78:1,65:1,47:1,43:1,7:1,17:1,64:1,51:1,55:1,11:1,8:1,197:1,434:1,1:1},tAe);_.Hsb=function sAe(){this.a=null;this.c=false};_.fP=function uAe(){return this.c};_.Hm=function vAe(a){E$b(197).Hm.call(this,a);this.Jsb(!this.c)};_.Isb=function wAe(){if(A5(this.a,null)){if(y5(this.b)){this.b=new Skc;this.b.vx('v-colorpicker-button-color');it(this.D,this.b.fx(),this.i)}pC(Zt(this.b.fx()),'background',this.a)}};_.Nj=function xAe(a){this.a=a};_.Jsb=function yAe(a){this.c=a};_.c=false;var WDb=grg('com.vaadin.client.ui','VColorPicker',434,MDb);function c3e(){c3e=D$b;G2e()}\nfunction e3e(){c3e();I2e.call(this);this.fGb()}\nB$b(2407,511,{40:1,7:1,14:1,21:1,24:1,13:1,16:1,31:1,22:1,3:1,1:1},e3e);_.fGb=function d3e(){this.a=$4(W0c(NQb,this),2628)};_.iK=function g3e(){return this.gGb()};_.jK=function h3e(){return this.gGb()};_.aGb=function i3e(){return this.gGb()};_.Vy=function k3e(){return this.hGb()};_.sW=function f3e(){return $4(new tAe,8)};_.gGb=function j3e(){return $4(E$b(511).aGb.call(this),709)};_.hGb=function l3e(){return $4(E$b(13).Vy.call(this),434)};_.Hm=function m3e(a){this.a.Ydb(this.hGb().fP())};_.Isb=function n3e(){this.hGb().Isb()};_.dAb=function o3e(a){if(this.gGb().A){this.hGb().tA(a)}else{this.hGb().Ij(a)}};var YGb=grg('com.vaadin.client.ui.colorpicker','ColorPickerConnector',2407,WGb);function Vag(){Vag=D$b;Gag()}\nfunction Xag(){Vag();Iag.call(this);this.I7b()}\nB$b(709,363,{32:1,59:1,25:1,67:1,363:1,709:1,3:1,1:1},Xag);_.I7b=function Wag(){};var OQb=grg('com.vaadin.shared.ui.colorpicker','ColorPickerState',709,HQb);J_g(np)(3);\n//# sourceURL=AppWidgetset-3.js\n")
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
$wnd.AppWidgetset.runAsyncCallback4("B$b(1896,1,{226:1,1:1});_.yjb=function gee(){this.b.Wkb(HQb,qPb);this.b.Wkb(IQb,HQb);this.b.Kkb('com.vaadin.ui.ColorPickerArea',XGb);this.b.Lkb(XGb,new nee(this));this.b.Lkb(IQb,new ree(this));this.b.Ukb(XGb,'getWidget',new che(VDb));this.b.Ukb(XGb,'getState',new che(IQb));this.b.Nkb(VDb,'setColor',new vee(this));this.b.Nkb(VDb,'setOpen',new zee(this));this.zjb(this.b);this.b.Skb(HQb,'color',new che(wVb));this.b.Skb(HQb,'popupVisible',new che(QUb));this.b.Skb(HQb,'showDefaultCaption',new che(QUb));this.b.Mkb(IQb,'color','setColor');this.b.Mkb(IQb,'popupVisible','setOpen');this.b.Ikb(XGb,new Hge(VBb,'handleContextClickListenerChange',z3(k3(wVb,1),{3:1,1:1,5:1,15:1},2,6,['registeredEventListeners'])))};_.zjb=function hee(a){this.Ajb(a)};_.Ajb=function iee(c){var d={setter:function(a,b){a.a=b},getter:function(a){return a.a}};c.Rkb(HQb,'color',d);var d={setter:function(a,b){a.b=Rpg(b)},getter:function(a){return $pg(a.b)}};c.Rkb(HQb,'popupVisible',d);var d={setter:function(a,b){a.c=Rpg(b)},getter:function(a){return $pg(a.c)}};c.Rkb(HQb,'showDefaultCaption',d)};_.gf=function kee(){this.yjb();Qyd().Q6(this.a.nc())};function lee(){lee=D$b;S()}\nfunction nee(a){lee();this.a=a;Z.call(this);this.Bjb()}\nB$b(1897,1,{6:1,1:1},nee);_.Bjb=function mee(){};_.o7=function oee(a,b){return new T2e};var MAb=grg('com.vaadin.client.metadata','ConnectorBundleLoaderImpl/4/1/1',1897,nVb);function pee(){pee=D$b;S()}\nfunction ree(a){pee();this.a=a;Z.call(this);this.Cjb()}\nB$b(1898,1,{6:1,1:1},ree);_.Cjb=function qee(){};_.o7=function see(a,b){return new Lag};var NAb=grg('com.vaadin.client.metadata','ConnectorBundleLoaderImpl/4/1/2',1898,nVb);function tee(){tee=D$b;S()}\nfunction vee(a){tee();this.a=a;Z.call(this);this.Djb()}\nB$b(1899,1,{6:1,1:1},vee);_.Djb=function uee(){};_.o7=function wee(a,b){$4(a,435).Nj(e5(b[0]));return null};var OAb=grg('com.vaadin.client.metadata','ConnectorBundleLoaderImpl/4/1/3',1899,nVb);function xee(){xee=D$b;S()}\nfunction zee(a){xee();this.a=a;Z.call(this);this.Ejb()}\nB$b(1900,1,{6:1,1:1},zee);_.Ejb=function yee(){};_.o7=function Aee(a,b){$4(a,435).Jsb(Rpg(b5(b[0])));return null};var PAb=grg('com.vaadin.client.metadata','ConnectorBundleLoaderImpl/4/1/4',1900,nVb);function zAe(){zAe=D$b;gbc()}\nfunction BAe(){zAe();ibc.call(this);this.Ksb();this.qx(U3b());this.tx('v-colorpicker');this.b=new Skc;this.b.ex('v-caption');this.b.Ej('');this.a=new Skc;this.a.vx(this.ix()+'-area');Ts(this.fx(),this.b.fx());Ts(this.fx(),this.a.fx());this.Wm(this)}\nB$b(435,8,{40:1,47:1,7:1,17:1,11:1,8:1,435:1,1:1},BAe);_.Ksb=function AAe(){this.c=null};_.Wm=function CAe(a){return this.Bx(a,JO())};_.fP=function DAe(){return this.d};_.Tv=function EAe(a){var b;b=u4b(a);switch(b){case 1:if(N4b(this.a.fx(),s4b(a))){E$b(8).Tv.call(this,a)}break;default:E$b(8).Tv.call(this,a);}};_.Hm=function FAe(a){this.Jsb(!this.d)};_.Isb=function GAe(){if(A5(this.c,null)){pC(Zt(this.a.fx()),'background',this.c)}};_.Nj=function HAe(a){this.c=a};_.uy=function IAe(a){this.b.uy(a)};_.Dj=function JAe(a){this.a.Dj(a)};_.Jsb=function KAe(a){this.d=a};_.vx=function LAe(a){E$b(11).vx.call(this,a);this.a.vx(this.ix()+'-area')};_.Ij=function MAe(a){this.b.Ij(a)};_.Ej=function NAe(a){this.a.Ej(a)};function R2e(){R2e=D$b;G2e()}\nfunction T2e(){R2e();I2e.call(this);this.cGb()}\nB$b(2408,511,{40:1,7:1,14:1,21:1,24:1,13:1,16:1,31:1,22:1,3:1,1:1},T2e);_.cGb=function S2e(){this.a=$4(W0c(NQb,this),2628)};_.iK=function V2e(){return this.dGb()};_.jK=function W2e(){return this.dGb()};_.aGb=function X2e(){return this.dGb()};_.Vy=function Z2e(){return this.eGb()};_.sW=function U2e(){return $4(new BAe,8)};_.dGb=function Y2e(){return $4(E$b(511).aGb.call(this),710)};_.eGb=function $2e(){return $4(E$b(13).Vy.call(this),435)};_.Hm=function _2e(a){this.a.Ydb(this.eGb().fP())};_.Isb=function a3e(){this.eGb().Isb()};_.dAb=function b3e(a){qQc(this.eGb(),this.dGb())};var XGb=grg('com.vaadin.client.ui.colorpicker','ColorPickerAreaConnector',2408,WGb);function Jag(){Jag=D$b;Gag()}\nfunction Lag(){Jag();Iag.call(this);this.F7b()}\nB$b(710,363,{32:1,59:1,25:1,67:1,363:1,710:1,3:1,1:1},Lag);_.F7b=function Kag(){};var IQb=grg('com.vaadin.shared.ui.colorpicker','ColorPickerAreaState',710,HQb);J_g(np)(4);\n//# sourceURL=AppWidgetset-4.js\n")
|
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
|
@ -1,72 +0,0 @@
|
|||
.popupbutton-legacy .v-button-wrap * {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.v-popupbutton .v-popup-indicator {
|
||||
display: inline-block;
|
||||
cursor: pointer;
|
||||
width: 13px;
|
||||
height: 11px;
|
||||
}
|
||||
|
||||
.popupbutton-legacy .v-popup-indicator {
|
||||
background: transparent url(../../../themes/base/common/img/sprites.png) no-repeat -5px -10px;
|
||||
}
|
||||
|
||||
.v-popupbutton .v-popup-indicator:before {
|
||||
font-size: 0.7em;
|
||||
font-family: FontAwesome;
|
||||
content: '\f078';
|
||||
vertical-align: 0.15em;
|
||||
margin: 0 -0.2em 0 0.5em;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.popupbutton-legacy .v-popup-indicator:before {
|
||||
content: ' ';
|
||||
}
|
||||
|
||||
.v-popupbutton.v-disabled .v-popup-indicator {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.v-ie6 .v-popupbutton .v-popup-indicator {
|
||||
display: inline;
|
||||
zoom: 1;
|
||||
}
|
||||
.v-ie7 .v-popupbutton .v-popup-indicator {
|
||||
display: inline;
|
||||
zoom: 1;
|
||||
position: relative;
|
||||
top: -4px;
|
||||
}
|
||||
|
||||
.v-popupbutton-popup {
|
||||
background: #f8f8f9;
|
||||
border: none;
|
||||
border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
-o-border-radius: 3px;
|
||||
}
|
||||
|
||||
.v-popupbutton-popup-popupbutton-legacy {
|
||||
font-family: Arial, Helvetica, Tahoma, Verdana, sans-serif;
|
||||
font-size: 12px;
|
||||
line-height: normal;
|
||||
color: #222;
|
||||
}
|
||||
|
||||
.v-popupbutton-popup > .popupContent > .v-captionwrapper > .v-caption {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.v-popupbutton-popup.fixed {
|
||||
position: fixed !important;
|
||||
z-index: 20001 !important;
|
||||
}
|
||||
|
||||
.v-shadow-fixed {
|
||||
position: fixed !important;
|
||||
z-index: 20000 !important;
|
||||
}
|
Binary file not shown.
Loading…
Reference in a new issue