@wcardinal/wcardinal-ui 0.289.0 → 0.291.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. package/dist/types/wcardinal/ui/d-chart-axis-bar.d.ts +5 -0
  2. package/dist/types/wcardinal/ui/d-chart-axis-base-options-parser.d.ts +23 -12
  3. package/dist/types/wcardinal/ui/d-chart-axis-base-options.d.ts +12 -4
  4. package/dist/types/wcardinal/ui/d-chart-axis-base-tick-container.d.ts +13 -4
  5. package/dist/types/wcardinal/ui/d-chart-axis-base.d.ts +5 -4
  6. package/dist/types/wcardinal/ui/d-chart-axis-tick-container.d.ts +5 -0
  7. package/dist/types/wcardinal/ui/d-chart-axis-tick-major.d.ts +4 -0
  8. package/dist/types/wcardinal/ui/d-chart-axis-tick-minor.d.ts +4 -0
  9. package/dist/types/wcardinal/ui/d-chart-coordinate-base.d.ts +52 -0
  10. package/dist/types/wcardinal/ui/d-chart-coordinate-linear.d.ts +4 -46
  11. package/dist/types/wcardinal/ui/d-chart-coordinate-log.d.ts +4 -42
  12. package/dist/types/wcardinal/ui/d-table-body.d.ts +7 -0
  13. package/dist/types/wcardinal/ui/index.d.ts +11 -0
  14. package/dist/types/wcardinal/ui/theme/dark/d-theme-dark-chart-axis-base.d.ts +7 -0
  15. package/dist/types/wcardinal/ui/theme/white/d-theme-white-chart-axis-base.d.ts +7 -0
  16. package/dist/wcardinal/ui/d-chart-axis-bar.js.map +1 -1
  17. package/dist/wcardinal/ui/d-chart-axis-base-options-parser.js +123 -23
  18. package/dist/wcardinal/ui/d-chart-axis-base-options-parser.js.map +1 -1
  19. package/dist/wcardinal/ui/d-chart-axis-base-options.js.map +1 -1
  20. package/dist/wcardinal/ui/d-chart-axis-base-tick-container.js +65 -44
  21. package/dist/wcardinal/ui/d-chart-axis-base-tick-container.js.map +1 -1
  22. package/dist/wcardinal/ui/d-chart-axis-base-tick-minor.js +1 -0
  23. package/dist/wcardinal/ui/d-chart-axis-base-tick-minor.js.map +1 -1
  24. package/dist/wcardinal/ui/d-chart-axis-base.js +17 -3
  25. package/dist/wcardinal/ui/d-chart-axis-base.js.map +1 -1
  26. package/dist/wcardinal/ui/d-chart-axis-tick-container.js.map +1 -1
  27. package/dist/wcardinal/ui/d-chart-axis-tick-major.js.map +1 -1
  28. package/dist/wcardinal/ui/d-chart-axis-tick-minor.js.map +1 -1
  29. package/dist/wcardinal/ui/d-chart-coordinate-base.js +186 -0
  30. package/dist/wcardinal/ui/d-chart-coordinate-base.js.map +1 -0
  31. package/dist/wcardinal/ui/d-chart-coordinate-linear-tick.js +2 -1
  32. package/dist/wcardinal/ui/d-chart-coordinate-linear-tick.js.map +1 -1
  33. package/dist/wcardinal/ui/d-chart-coordinate-linear.js +9 -165
  34. package/dist/wcardinal/ui/d-chart-coordinate-linear.js.map +1 -1
  35. package/dist/wcardinal/ui/d-chart-coordinate-log-tick.js +2 -1
  36. package/dist/wcardinal/ui/d-chart-coordinate-log-tick.js.map +1 -1
  37. package/dist/wcardinal/ui/d-chart-coordinate-log.js +9 -153
  38. package/dist/wcardinal/ui/d-chart-coordinate-log.js.map +1 -1
  39. package/dist/wcardinal/ui/d-chart-series-line-of-any.js +4 -2
  40. package/dist/wcardinal/ui/d-chart-series-line-of-any.js.map +1 -1
  41. package/dist/wcardinal/ui/d-scroll-bar-vertical.js +1 -0
  42. package/dist/wcardinal/ui/d-scroll-bar-vertical.js.map +1 -1
  43. package/dist/wcardinal/ui/d-table-body.js +39 -0
  44. package/dist/wcardinal/ui/d-table-body.js.map +1 -1
  45. package/dist/wcardinal/ui/d-table.js +3 -3
  46. package/dist/wcardinal/ui/d-table.js.map +1 -1
  47. package/dist/wcardinal/ui/index.js +11 -0
  48. package/dist/wcardinal/ui/index.js.map +1 -1
  49. package/dist/wcardinal/ui/theme/dark/d-theme-dark-chart-axis-base.js +21 -0
  50. package/dist/wcardinal/ui/theme/dark/d-theme-dark-chart-axis-base.js.map +1 -1
  51. package/dist/wcardinal/ui/theme/white/d-theme-white-chart-axis-base.js +21 -0
  52. package/dist/wcardinal/ui/theme/white/d-theme-white-chart-axis-base.js.map +1 -1
  53. package/dist/wcardinal-ui-theme-dark.js +22 -1
  54. package/dist/wcardinal-ui-theme-dark.min.js +2 -2
  55. package/dist/wcardinal-ui-theme-dark.min.js.map +1 -1
  56. package/dist/wcardinal-ui-theme-white.js +22 -1
  57. package/dist/wcardinal-ui-theme-white.min.js +2 -2
  58. package/dist/wcardinal-ui-theme-white.min.js.map +1 -1
  59. package/dist/wcardinal-ui.cjs.js +754 -641
  60. package/dist/wcardinal-ui.js +712 -641
  61. package/dist/wcardinal-ui.min.js +2 -2
  62. package/dist/wcardinal-ui.min.js.map +1 -1
  63. package/package.json +1 -1
@@ -1,10 +1,10 @@
1
1
  /*
2
- Winter Cardinal UI v0.289.0
2
+ Winter Cardinal UI v0.291.0
3
3
  Copyright (C) 2019 Toshiba Corporation
4
4
  SPDX-License-Identifier: Apache-2.0
5
5
 
6
6
  Material Design icons by Google
7
7
  Apache license version 2.0.
8
8
  */
9
- !function(){"use strict";const n=wcardinal.ui.DThemes;var t=new(0,wcardinal.ui.UtilSvgAtlasBuilder)(256,1,3),r=function(){function n(){this.t={}}return n.prototype.get=function(t){var r=this.t[t];if(null!=r)return r;var e=n.u[t];if(null!=e)return this.t[t]=new e;throw new Error("No theme for the type '".concat(t,"'"))},n.prototype.set=function(n,t){return this.t[n]=t,this},n.prototype.getClass=function(t){var r=n.u[t];if(null!=r)return r;throw new Error("No theme for the type '".concat(t,"'"))},n.prototype.setClass=function(t,r){return n.u[t]=r,this},n.prototype.getAtlas=function(){return t},n.set=function(n,t){this.u[n]=t},n.u={},n}(),e=function(){n.setDefaultThemeClass(r)},u=function(n,t){return(u=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,t){n.__proto__=t}||function(n,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(n[r]=t[r])})(n,t)};function i(n,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=n}u(n,t),n.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}const o=wcardinal.ui.DBaseInteractive,c=wcardinal.ui.DBorderMask,f=wcardinal.ui.DCornerMask,l=wcardinal.ui.DLayoutClearType,h=wcardinal.ui.DShadowImpl,a=wcardinal.ui.UtilRgb;var s=function(){function n(){}return n.COLOR=4473924,n.ACTIVE_COLOR=16777215,n.BORDER_COLOR=15066597,n.BACKGROUND_COLOR=15921906,n.BACKGROUND_COLOR_ON_BOARD=16777215,n.HIGHLIGHT_COLOR=3381759,n.HIGHLIGHT_ALPHA=.2,n.HIGHLIGHT_BLENDED=a.blend(n.BACKGROUND_COLOR,n.HIGHLIGHT_COLOR,n.HIGHLIGHT_ALPHA),n.HIGHLIGHT_BLENDED_ON_BOARD=a.blend(n.BACKGROUND_COLOR_ON_BOARD,n.HIGHLIGHT_COLOR,n.HIGHLIGHT_ALPHA),n.WEAK_HIGHLIGHT_COLOR=13421772,n.WEAK_HIGHLIGHT_ALPHA=.2,n.WEAK_HIGHLIGHT_BLENDED=a.blend(n.BACKGROUND_COLOR,n.WEAK_HIGHLIGHT_COLOR,n.WEAK_HIGHLIGHT_ALPHA),n.WEAK_HIGHLIGHT_BLENDED_ON_BOARD=a.blend(n.BACKGROUND_COLOR_ON_BOARD,n.WEAK_HIGHLIGHT_COLOR,n.WEAK_HIGHLIGHT_ALPHA),n.INVALID_COLOR=16755370,n.INVALID_ALPHA=.2,n.INVALID_BLENDED=a.blend(n.BACKGROUND_COLOR,n.INVALID_COLOR,n.INVALID_ALPHA),n.INVALID_BLENDED_ON_BOARD=a.blend(n.BACKGROUND_COLOR_ON_BOARD,n.INVALID_COLOR,n.INVALID_ALPHA),n}(),d=function(){function n(){}return n.prototype.getFontFamilly=function(){return'ProximaNova,-apple-system,Meiryo,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif'},n.prototype.getFontSize=function(){return 14},n.prototype.getColor=function(n){return s.COLOR},n.prototype.getFontWeight=function(){return"normal"},n.prototype.getFontStyle=function(){return"normal"},n.prototype.getFontVariant=function(){return"normal"},n.prototype.getAlpha=function(n){return n.inDisabled?.5:1},n.prototype.getLineHeight=function(){return 30},n}(),m=function(n,r,e){var u=2*r;t.add(n,u,u,"<g><defs>"+'<radialGradient id="'.concat(n,'_filter">')+'<stop offset="0%" stop-color="black" stop-opacity="'.concat(e,'" />')+'<stop offset="20%" stop-color="black" stop-opacity="'.concat(e,'" />')+'<stop offset="40%" stop-color="black" stop-opacity="'.concat(.368*e,'" />')+'<stop offset="60%" stop-color="black" stop-opacity="'.concat(.135*e,'" />')+'<stop offset="80%" stop-color="black" stop-opacity="'.concat(.05*e,'" />')+'<stop offset="100%" stop-color="black" stop-opacity="0" /></radialGradient></defs>'+'<rect x="0" y="0" width="'.concat(u,'" height="').concat(u,'" fill="url(#').concat(n,'_filter)"/>')+"</g>")};m("shadow_weak",12,.15),m("shadow",24,.15),t.add("background",16,16,'<g><defs><radialGradient id="234sfdhjfpijsrnsedsd435jseflkm"><stop offset="25%" stop-color="white" stop-opacity="1" /><stop offset="75%" stop-color="white" stop-opacity="0.25" /></radialGradient></defs><rect x="0" y="0" width="16" height="16" fill="url(#234sfdhjfpijsrnsedsd435jseflkm)"/></g>');var D=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getX=function(){return 0},r.prototype.getY=function(){return 0},r.prototype.getHeight=function(){return 100},r.prototype.getWidth=function(){return 100},r.prototype.getBackgroundColor=function(n){return null},r.prototype.getBackgroundAlpha=function(n){return 1},r.prototype.getBackgroundTexture=function(){return t.mappings.background},r.prototype.getBorderColor=function(n){return null},r.prototype.getBorderAlpha=function(n){return 1},r.prototype.getBorderWidth=function(n){return 1},r.prototype.getBorderAlign=function(n){return 0},r.prototype.getBorderMask=function(n){return c.NONE},r.prototype.getBorderTexture=function(){return t.mappings.background},r.prototype.getPaddingLeft=function(){return 0},r.prototype.getPaddingRight=function(){return 0},r.prototype.getPaddingTop=function(){return 0},r.prototype.getPaddingBottom=function(){return 0},r.prototype.getCornerRadius=function(){return 3},r.prototype.getCornerMask=function(){return f.NONE},r.prototype.getOutlineColor=function(n){return s.HIGHLIGHT_COLOR},r.prototype.getOutlineAlpha=function(n){return n.isFocused?1:0},r.prototype.getOutlineWidth=function(n){return 1},r.prototype.getOutlineOffset=function(n){return 0},r.prototype.getOutlineAlign=function(n){return 0},r.prototype.getOutlineMask=function(n){return c.NONE},r.prototype.getClearType=function(){return l.NONE},r.prototype.getShadow=function(){return null},r.prototype.getInteractive=function(){return o.SELF},r.prototype.newState=function(n){},r.prototype.getTitle=function(){return""},r.prototype.getWeight=function(){return-1},r.prototype.newShadow=function(){return new h(t.mappings.shadow,24,24,0,9.6)},r.prototype.newShadowWeak=function(){return new h(t.mappings.shadow_weak,12,12,0,4.8)},r.prototype.getCursor=function(n){return""},r}(d),T=function(){r.set("DBase",D)},p=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(){return s.BACKGROUND_COLOR},t.prototype.getBorderColor=function(n){return null},t.prototype.getCornerMask=function(){return f.ALL},t.prototype.getPaddingLeft=function(){return 16},t.prototype.getPaddingTop=function(){return 16},t.prototype.getPaddingRight=function(){return 16},t.prototype.getPaddingBottom=function(){return 16},t.prototype.getInteractive=function(){return o.BOTH},t}(D),g=function(){r.set("DBoard",p)};const W=wcardinal.ui.DAlignHorizontal,w=wcardinal.ui.DButtonBaseWhen,k=wcardinal.ui.DAlignVertical,b=wcardinal.ui.DAlignWith,y=wcardinal.ui.DDynamicTextStyleWordWrap,I=wcardinal.ui.toString;var v=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextAlignVertical=function(){return k.MIDDLE},t.prototype.getTextAlignHorizontal=function(){return W.LEFT},t.prototype.isOverflowMaskEnabled=function(){return!1},t.prototype.getTextStyleClipping=function(){return!0},t.prototype.getTextStyleWordWrap=function(){return y.NONE},t.prototype.getTextFormatter=function(){return I},t.prototype.getTextValue=function(n){},t.prototype.newTextValue=function(){},t}(D),x=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getImageAlignHorizontal=function(){return W.LEFT},t.prototype.getImageAlignVertical=function(){return k.MIDDLE},t.prototype.getImageAlignWith=function(){return b.TEXT},t.prototype.getImageMarginHorizontal=function(){return 5},t.prototype.getImageMarginVertial=function(){return 5},t.prototype.getImageTintColor=function(n){return this.getColor(n)},t.prototype.getImageTintAlpha=function(n){return this.getAlpha(n)},t.prototype.getImageSource=function(n){return null},t.prototype.getSecondaryImageAlignHorizontal=function(){return this.getImageAlignHorizontal()},t.prototype.getSecondaryImageAlignVertical=function(){return this.getImageAlignVertical()},t.prototype.getSecondaryImageAlignWith=function(){return this.getImageAlignWith()},t.prototype.getSecondaryImageMarginHorizontal=function(){return this.getImageMarginHorizontal()},t.prototype.getSecondaryImageMarginVertial=function(){return this.getImageMarginVertial()},t.prototype.getSecondaryImageTintColor=function(n){return this.getImageTintColor(n)},t.prototype.getSecondaryImageTintAlpha=function(n){return this.getImageTintAlpha(n)},t.prototype.getTertiaryImageAlignHorizontal=function(){return this.getImageAlignHorizontal()},t.prototype.getTertiaryImageAlignVertical=function(){return this.getImageAlignVertical()},t.prototype.getTertiaryImageAlignWith=function(){return this.getImageAlignWith()},t.prototype.getTertiaryImageMarginHorizontal=function(){return this.getImageMarginHorizontal()},t.prototype.getTertiaryImageMarginVertial=function(){return this.getImageMarginVertial()},t.prototype.getTertiaryImageTintColor=function(n){return this.getImageTintColor(n)},t.prototype.getTertiaryImageTintAlpha=function(n){return this.getImageTintAlpha(n)},t}(v),C=function(n){function t(t,r,e){void 0===t&&(t=16777215),void 0===r&&(r=.017),void 0===e&&(e=.034);var u=n.call(this)||this;return u.BACKGROUND_COLOR=t,u.BACKGROUND_COLOR_HOVERED=a.darken(t,r),u.BACKGROUND_COLOR_PRESSED=a.darken(t,e),u.OUTLINE_COLOR=a.brighten(t,.75),u}return i(t,n),t.prototype.getBackgroundColor=function(n){return n.inDisabled?null:n.isActive?s.HIGHLIGHT_COLOR:n.isPressed?this.BACKGROUND_COLOR_PRESSED:n.isHovered?this.BACKGROUND_COLOR_HOVERED:this.BACKGROUND_COLOR},t.prototype.getColor=function(t){return t.inDisabled||!t.isActive?n.prototype.getColor.call(this,t):s.ACTIVE_COLOR},t.prototype.getBorderColor=function(n){return n.inDisabled||!n.isActive?s.BORDER_COLOR:null},t.prototype.getOutlineColor=function(n){return n.isActive?this.getOutlineColorActive(n):this.getOutlineColorNonActive(n)},t.prototype.getOutlineColorActive=function(n){return this.OUTLINE_COLOR},t.prototype.getOutlineColorNonActive=function(t){return n.prototype.getOutlineColor.call(this,t)},t.prototype.getOutlineOffset=function(n){return n.isActive?this.getOutlineOffsetActive(n):this.getOutlineOffsetNonActive(n)},t.prototype.getOutlineOffsetActive=function(n){return-1.5},t.prototype.getOutlineOffsetNonActive=function(t){return n.prototype.getOutlineOffset.call(this,t)},t.prototype.getHeight=function(){return 30},t.prototype.getWidth=function(){return 100},t.prototype.getTextAlignHorizontal=function(){return W.CENTER},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t.prototype.isToggle=function(){return!1},t.prototype.getWhen=function(){return w.CLICKED},t.prototype.getCursor=function(n){return n.isActionable?"pointer":""},t}(x),B=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(C),S=function(){r.set("DButton",B)},M=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return n.isActive?s.HIGHLIGHT_COLOR:s.WEAK_HIGHLIGHT_COLOR},t.prototype.getBackgroundAlpha=function(n){if(n.inEnabled){if(n.isActive)return 1;if(n.isPressed)return 2*s.WEAK_HIGHLIGHT_ALPHA;if(n.isHovered)return s.WEAK_HIGHLIGHT_ALPHA}return 0},t.prototype.getBorderColor=function(n){return null},t}(C),_=function(){r.set("DButtonAmbient",M)};t.add("button_check_mark_on",21,21,'<g transform="scale(0.875,0.875)"><path d="M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-9 14l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" fill="#fff" /></g>'),t.add("button_check_mark_off",21,21,'<g transform="scale(0.875,0.875)"><path d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" fill="#fff" /></g>');var L=function(){function n(){}return n.getImageTintColor=function(n){return n.inDisabled||n.inReadOnly||!n.isActive?s.WEAK_HIGHLIGHT_COLOR:s.HIGHLIGHT_COLOR},n.getImageSource=function(n){return n.isActive?t.mappings.button_check_mark_on:t.mappings.button_check_mark_off},n}();t.add("button_check_mark_on",21,21,'<g transform="scale(0.875,0.875)"><path d="M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-9 14l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" fill="#fff" /></g>'),t.add("button_check_mark_off",21,21,'<g transform="scale(0.875,0.875)"><path d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" fill="#fff" /></g>');var E=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return s.WEAK_HIGHLIGHT_COLOR},t.prototype.getColor=function(n){return s.COLOR},t.prototype.getBackgroundAlpha=function(n){return n.inEnabled&&n.isHovered?s.WEAK_HIGHLIGHT_ALPHA:0},t.prototype.getOutlineColor=function(n){return this.getOutlineColorNonActive(n)},t.prototype.getOutlineOffset=function(n){return this.getOutlineOffsetNonActive(n)},t.prototype.getImageTintColor=function(n){return L.getImageTintColor(n)},t.prototype.isToggle=function(){return!0},t.prototype.getImageSource=function(n){return L.getImageSource(n)},t}(M),P=function(){r.set("DButtonCheck",E)},F=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getImageAlignWith=function(){return b.PADDING},t.prototype.getImageAlignHorizontal=function(){return W.RIGHT},t.prototype.getImageMarginHorizontal=function(){return 0},t.prototype.getTextAlignHorizontal=function(){return W.LEFT},t}(E),N=function(){r.set("DButtonCheckRight",F)};t.add("button_color_sample",21,21,'<g transform="scale(0.875,0.875)"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" fill="#fff"/></g>');var A=function(n){return"#".concat(a.toCode(n.color)," A").concat(n.alpha.toFixed(2))},H=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getImageTintColor=function(n){return null},r.prototype.getImageSource=function(n){return t.mappings.button_color_sample},r.prototype.getTextFormatter=function(){return A},r.prototype.newTextValue=function(){return{color:16777215,alpha:1}},r}(B);const R=wcardinal.ui.DAnimationFadeIn,z=wcardinal.ui.DDialogAlign,G=wcardinal.ui.DDialogCloseOn,V=wcardinal.ui.DDialogGestureMode,O=wcardinal.ui.DDialogMode,j=wcardinal.ui.DDialogState;var Y=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getMode=function(){return O.MODAL},t.prototype.closeOn=function(n){switch(n){case O.MODAL:case O.MENU:return G.ESC|G.CLICK_OUTSIDE;case O.MODELESS:return G.NONE}},t.prototype.isSticky=function(n){return!1},t.prototype.isGestureEnabled=function(n){switch(n){case O.MODAL:case O.MODELESS:return!0;case O.MENU:return!1}},t.prototype.getGestureMode=function(n){return V.DIRTY},t.prototype.getOffsetX=function(n){return 5},t.prototype.getOffsetY=function(n){return 5},t.prototype.getAlign=function(n){return z.BOTTOM},t.prototype.newAnimation=function(n){switch(n){case O.MODAL:return new R;case O.MODELESS:case O.MENU:return null}},t.prototype.getBackgroundColor=function(n){return n.is(j.MENU)?s.BACKGROUND_COLOR_ON_BOARD:s.BACKGROUND_COLOR},t.prototype.getBorderColor=function(n){return n.is(j.MENU)?null:16448250},t.prototype.getOutlineColor=function(n){return null},t.prototype.getPaddingLeft=function(){return 0},t.prototype.getPaddingTop=function(){return 0},t.prototype.getPaddingRight=function(){return 0},t.prototype.getPaddingBottom=function(){return 0},t.prototype.getX=function(){return 0},t.prototype.getY=function(){return 0},t.prototype.getWidth=function(){return 400},t.prototype.getHeight=function(){return"auto"},t.prototype.getShadow=function(){return this.newShadow()},t.prototype.getInteractive=function(){return o.BOTH},t}(D),X=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getLayout=function(){},t.prototype.getHeader=function(){return null},t.prototype.getContent=function(){},t.prototype.getFooter=function(){},t}(Y),K=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return"auto"},t}(X),U=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(K),J=function(n,t){for(var r="<g>",e=0;e<t;++e)for(var u=0;u<n;++u){var i=(u+e)%2==0?"#bfbfbf":"#a5a5a5";r+='<rect x="'.concat(9*u,'" y="').concat(9*e,'" width="9" height="9" fill="').concat(i,'" />')}return r+"</g>"};t.add("picker_color_main",234,156,'<g><linearGradient id="fs7w3iusfdnb" x1="0%" y1="0%" x2="100%" y2="0%"><stop stop-color="#FFFFFF" stop-opacity="0" offset="0"/><stop stop-color="#FFFFFF" stop-opacity="1" offset="1"/></linearGradient><linearGradient id="2rfcfe9874bw" x1="0%" y1="0%" x2="0%" y2="100%"><stop stop-color="#000000" stop-opacity="0" offset="0"/><stop stop-color="#000000" stop-opacity="1" offset="1"/></linearGradient><rect x="0" y="0" width="234" height="156" fill="url(#fs7w3iusfdnb)" /><rect x="0" y="0" width="234" height="156" fill="url(#2rfcfe9874bw)" /></g>'),t.add("picker_color_alpha_checkerboard",234,18,J(26,2)),t.add("picker_color_alpha",234,18,'<g><linearGradient id="s48afbuh44" x1="0%" y1="0%" x2="100%" y2="0%"><stop stop-color="#FFFFFF" stop-opacity="0" offset="0"/><stop stop-color="#FFFFFF" stop-opacity="1" offset="1"/></linearGradient><rect x="0" y="0" width="234" height="18" fill="url(#s48afbuh44)" /></g>'),t.add("picker_color_base",234,18,'<g><linearGradient id="ni2rbisdf3" x1="0%" y1="0%" x2="100%" y2="0%"><stop stop-color="#FF0000" offset="0"/><stop stop-color="#FFFF00" offset="0.167"/><stop stop-color="#00FF00" offset="0.333"/><stop stop-color="#00FFFF" offset="0.5"/><stop stop-color="#0000FF" offset="0.667"/><stop stop-color="#FF00FF" offset="0.833"/><stop stop-color="#FF0000" offset="1"/></linearGradient><rect x="0" y="0" width="234" height="18" fill="url(#ni2rbisdf3)" /></g>'),t.add("picker_color_base_pointer",16.2,31.8,'<rect x="4.5" y="4.5" width="7.2" height="22.8" stroke="#5f5f5f" stroke-width="2.4" fill="none" />'),t.add("picker_color_pointer",25.8,25.8,'<circle cx="12.9" cy="12.9" r="4.8" stroke="#5f5f5f" stroke-width="2.4" fill="none" /><circle cx="12.9" cy="12.9" r="7.2" stroke="#ffffff" stroke-width="2.4" fill="none" />'),t.add("picker_color_recent_checkerboard",18,18,J(2,2)),t.add("picker_color_recent_null",18,18,'<g><rect x="1.2" y="1.2" width="15.6" height="15.6" stroke="#fff" stroke-width="0.8" fill="none" /><line x1="16.8" y1="1.2" x2="1.2" y2="16.8" stroke="#fff" stroke-width="0.8" stroke-linecap="round" /><line x1="1.2" y1="1.2" x2="16.8" y2="16.8" stroke="#fff" stroke-width="0.8" stroke-linecap="round" /></g>'),t.add("picker_color_sample_checkerboard",45,63,J(5,7)),t.add("picker_color_sample_null",54,54,'<g><rect x="3.6" y="3.6" width="46.8" height="46.8" stroke="#fff" stroke-width="2.4" fill="none" /><line x1="50.4" y1="3.6" x2="3.6" y2="50.4" stroke="#fff" stroke-width="2.4" stroke-linecap="round" /><line x1="3.6" y1="3.6" x2="50.4" y2="50.4" stroke="#fff" stroke-width="2.4" stroke-linecap="round" /></g>'),t.add("picker_color_anchor_outlined",25.8,25.8,'<circle cx="12.9" cy="12.9" r="8.4" stroke="none" fill="#ffffff" /><circle cx="12.9" cy="12.9" r="9.6" stroke="#5f5f5f" stroke-width="2.4" fill="none" />'),t.add("picker_color_anchor",28.2,28.2,'<circle cx="14.1" cy="14.1" r="6" stroke="none" fill="#ffffff" /><circle cx="14.1" cy="14.1" r="7.2" stroke="#5f5f5f" stroke-width="2.4" fill="none" />'),t.add("picker_color_direction",12,30,'<path d="M0.6 25.8 L 12.0375 5.9895" stroke="#5f5f5f" stroke-width="1.2" fill="none" /><path d="M8.5125 25.8 A 8.475 8.475 0 0 0 4.275 18.4605" stroke="#5f5f5f" stroke-width="1.2" fill="none" /><rect x="0.6" y="24.6" width="11.4375" height="1.2" rx="0.6" ry="0.6" stroke="none" fill="#5f5f5f" />');var q=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getMainWidth=function(){return 234},r.prototype.getMainHeight=function(){return 156},r.prototype.getMainTexture=function(){return t.mappings.picker_color_main},r.prototype.getMainPointerTexture=function(){return t.mappings.picker_color_pointer},r.prototype.getMainPointerColor=function(){return 16777215},r.prototype.getMainPointerAlpha=function(){return 1},r.prototype.getBaseHeight=function(){return 18},r.prototype.getBaseMargin=function(){return 6},r.prototype.getBaseTexture=function(){return t.mappings.picker_color_base},r.prototype.getBasePointerTexture=function(){return t.mappings.picker_color_base_pointer},r.prototype.getBasePointerColor=function(){return 16777215},r.prototype.getBasePointerAlpha=function(){return this.getMainPointerAlpha()},r.prototype.getAlphaHeight=function(){return this.getBaseHeight()},r.prototype.getAlphaMargin=function(){return this.getBaseMargin()},r.prototype.getAlphaTexture=function(){return t.mappings.picker_color_alpha},r.prototype.getAlphaCheckerboardTexture=function(){return t.mappings.picker_color_alpha_checkerboard},r.prototype.getAlphaPointerTexture=function(){return this.getBasePointerTexture()},r.prototype.getAlphaPointerColor=function(){return this.getBasePointerColor()},r.prototype.getAlphaPointerAlpha=function(){return this.getMainPointerAlpha()},r.prototype.getRecentMargin=function(){return this.getBaseMargin()},r.prototype.getRecentColorWidth=function(){return this.getBaseHeight()},r.prototype.getRecentColorHeight=function(){return this.getRecentColorWidth()},r.prototype.getRecentColorMargin=function(){return this.getRecentMargin()},r.prototype.getRecentColorCount=function(){return 10},r.prototype.getRecentCheckerboardTexture=function(){return t.mappings.picker_color_recent_checkerboard},r.prototype.getRecentNullTexture=function(){return t.mappings.picker_color_recent_null},r.prototype.getRecents=function(){return[]},r.prototype.getInputMargin=function(){return this.getBaseMargin()},r.prototype.getInputLabelWidth=function(){return 15},r.prototype.getSampleCheckerboardTexture=function(){return t.mappings.picker_color_sample_checkerboard},r.prototype.getSampleNullTexture=function(){return t.mappings.picker_color_sample_null},r.prototype.getBackgroundColor=function(n){return null},r.prototype.getBorderColor=function(n){return null},r.prototype.getInteractive=function(){return o.CHILDREN},r.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},r}(D),Q=function(){r.set("DPickerColor",q)},Z=function(){r.set("DDialogColor",U),Q()},$=function(){r.set("DButtonColor",H),Z()};const nn=wcardinal.ui.DColorGradientObservable;t.add("button_color_gradient_sample",21,21,'<g transform="scale(0.875,0.875)"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" fill="#fff"/></g>');var tn=function(){return""},rn=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getViewBaseTexture=function(){return t.mappings.button_color_gradient_sample},r.prototype.getTextFormatter=function(){return tn},r.prototype.newTextValue=function(){return new nn},r.prototype.getCheckerColors=function(){return[.75,.65]},r}(B),en=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(K),un=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getGradientPointsWidth=function(){return 30},r.prototype.getGradientPointsMargin=function(){return 24},r.prototype.getGradientAnchorTexture=function(){return t.mappings.picker_color_anchor},r.prototype.getGradientAnchorOutlinedTexture=function(){return t.mappings.picker_color_anchor_outlined},r.prototype.getGradientAnchorOutlineTexture=function(){return t.mappings.picker_color_anchor_outline},r.prototype.getGradientDirectionMargin=function(){return 5},r.prototype.getGradientDirectionTexture=function(){return t.mappings.picker_color_direction},r.prototype.getGradientRecentColumn=function(){return 4},r.prototype.getGradientRecentWidth=function(){return 30},r.prototype.getGradientRecentMargin=function(){return 5},r.prototype.getGradientRecentCount=function(){return 16},r.prototype.getGradientRecents=function(){return[]},r.prototype.getGradientCheckerColors=function(){return[.75,.65]},r.prototype.getBackgroundColor=function(n){return null},r.prototype.getBorderColor=function(n){return null},r.prototype.getInteractive=function(){return o.CHILDREN},r.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},r}(D),on=function(){r.set("DPickerColorGradient",un),Q()},cn=function(){r.set("DDialogColorGradient",en),on()},fn=function(){r.set("DButtonColorGradient",rn),cn()},ln=function(n){function t(){return n.call(this,16733542,.1,.2)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return n.inDisabled?null:n.isPressed||n.isActive?this.BACKGROUND_COLOR_PRESSED:n.isHovered?this.BACKGROUND_COLOR_HOVERED:this.BACKGROUND_COLOR},t.prototype.getBorderColor=function(n){return n.inDisabled?s.BORDER_COLOR:null},t.prototype.getOutlineColor=function(n){return this.getOutlineColorActive(n)},t.prototype.getOutlineOffset=function(n){return this.getOutlineOffsetActive(n)},t.prototype.getColor=function(t){return t.inDisabled?n.prototype.getColor.call(this,t):s.ACTIVE_COLOR},t}(C),hn=function(){r.set("DButtonDanger",ln)};const an=wcardinal.ui.DPickerDates;var sn=function(n){return an.format(n)},dn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextFormatter=function(){return sn},t.prototype.newTextValue=function(){return new Date},t}(B),mn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(K);const Dn=wcardinal.ui.DPickerDatetimeMask;var Tn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return null},t.prototype.getInteractive=function(){return o.CHILDREN},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t.prototype.getMargin=function(){return 8},t.prototype.getHoursOptions=function(){return{width:100,title:"Hours"}},t.prototype.getMinutesOptions=function(){return{width:100,title:"Minutes"}},t.prototype.getSecondsOptions=function(){return{width:100,title:"Seconds"}},t.prototype.getMask=function(){return Dn.HOURS|Dn.MINUTES},t.prototype.getWidth=function(){return"auto"},t.prototype.getHeight=function(){return"auto"},t.prototype.getLowerBound=function(){return null},t.prototype.isLowerBoundInclusive=function(){return!1},t.prototype.getUpperBound=function(){return null},t.prototype.isUpperBoundInclusive=function(){return!1},t}(D),pn=["January","February","March","April","May","June","July","August","September","October","November","December"],gn=["Su","Mo","Tu","We","Th","Fr","Sa"],Wn=function(n){return"".concat(pn[n.getMonth()]," ").concat(n.getFullYear())},wn=function(){},kn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getDayLabels=function(){return gn},t.prototype.getDayStart=function(){return 0},t.prototype.getLabelFormatter=function(){return Wn},t.prototype.getDateDecorator=function(){return wn},t.prototype.getBackButtonOptions=function(){return{title:"Previous"}},t.prototype.getNextButtonOptions=function(){return{title:"Next"}},t.prototype.getMask=function(){return Dn.DATE|n.prototype.getMask.call(this)},t}(Tn),bn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getMask=function(){return Dn.DATE},t}(kn);t.add("picker_date_back",24,24,'<g><path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z" fill="#fff" /></g>');var yn=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getWidth=function(){return"auto"},r.prototype.getImageAlignWith=function(){return b.PADDING},r.prototype.getImageMarginHorizontal=function(){return 0},r.prototype.getImageAlignHorizontal=function(){return W.LEFT},r.prototype.getImageSource=function(n){return t.mappings.picker_date_back},r.prototype.getAlpha=function(t){return.9*n.prototype.getAlpha.call(this,t)},r}(M),In=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextAlignHorizontal=function(){return W.CENTER},t.prototype.getTextStyleClipping=function(){return!1},t.prototype.getWidth=function(){return 30},t.prototype.getHeight=function(){return 30},t.prototype.isToggle=function(){return!0},t}(M);t.add("picker_date_next",24,24,'<g><path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z" fill="#fff" /></g>');var vn=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getWidth=function(){return"auto"},r.prototype.getImageAlignWith=function(){return b.PADDING},r.prototype.getImageMarginHorizontal=function(){return 0},r.prototype.getImageAlignHorizontal=function(){return W.LEFT},r.prototype.getImageSource=function(n){return t.mappings.picker_date_next},r.prototype.getAlpha=function(t){return.9*n.prototype.getAlpha.call(this,t)},r}(M),xn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getHeight=function(){return this.getLineHeight()},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(v),Cn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return 30},t.prototype.getHeight=function(){return 30},t.prototype.getTextStyleClipping=function(){return!1},t.prototype.getTextAlignHorizontal=function(){return W.CENTER},t.prototype.getAlpha=function(t){return.9*n.prototype.getAlpha.call(this,t)},t.prototype.getFontWeight=function(){return"bold"},t.prototype.getFontSize=function(){return Math.round(1.25*n.prototype.getFontSize.call(this))},t.prototype.newTextValue=function(){return new Date},t.prototype.getInteractive=function(){return o.NONE},t}(xn),Bn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return 30},t.prototype.getHeight=function(){return 30},t.prototype.getTextStyleClipping=function(){return!1},t.prototype.getTextAlignHorizontal=function(){return W.CENTER},t.prototype.getAlpha=function(t){return.9*n.prototype.getAlpha.call(this,t)},t.prototype.getFontWeight=function(){return"bold"},t}(xn),Sn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return null},t.prototype.getBorderColor=function(n){return null},t.prototype.getWidth=function(){return 30},t.prototype.getHeight=function(){return 30},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t.prototype.getInteractive=function(){return o.NONE},t}(D),Mn=function(){r.set("DPickerTime",Tn)},_n=function(){r.set("DPickerDatetimeButtonBack",yn),r.set("DPickerDatetimeButtonDate",In),r.set("DPickerDatetimeButtonNext",vn),r.set("DPickerDatetimeLabelDate",Bn),r.set("DPickerDatetimeLabel",Cn),r.set("DPickerDatetimeSpace",Sn),r.set("DPickerDatetime",kn),Mn()},Ln=function(){r.set("DPickerDate",bn),_n()},En=function(){r.set("DDialogDate",mn),Ln()},Pn=function(){r.set("DButtonDate",dn),En()};const Fn=wcardinal.ui.DPickerDatetimes;var Nn=function(n,t){return Fn.format(n,t.getDatetimeMask())},An=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextFormatter=function(){return Nn},t.prototype.newTextValue=function(){return new Date},t}(B),Hn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(K),Rn=function(){r.set("DDialogDatetime",Hn),_n()},zn=function(){r.set("DButtonDatetime",An),Rn()},Gn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(B),Vn=function(){r.set("DButtonFile",Gn)},On=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(M),jn=function(){r.set("DButtonLink",On)},Yn=function(n){function t(){return n.call(this,s.HIGHLIGHT_COLOR,.1,.2)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return n.inDisabled?null:n.isPressed||n.isActive?this.BACKGROUND_COLOR_PRESSED:n.isHovered?this.BACKGROUND_COLOR_HOVERED:this.BACKGROUND_COLOR},t.prototype.getBorderColor=function(n){return n.inDisabled?s.BORDER_COLOR:null},t.prototype.getOutlineColor=function(n){return this.getOutlineColorActive(n)},t.prototype.getOutlineOffset=function(n){return this.getOutlineOffsetActive(n)},t.prototype.getColor=function(t){return t.inDisabled?n.prototype.getColor.call(this,t):s.ACTIVE_COLOR},t}(C),Xn=function(){r.set("DButtonPrimary",Yn)};t.add("button_radio_mark_on",21,21,'<g transform="scale(0.875,0.875)"><path d="M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" fill="#fff" /></g>'),t.add("button_radio_mark_off",21,21,'<g transform="scale(0.875,0.875)"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" fill="#fff" /></g>');var Kn=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getBackgroundColor=function(n){return s.WEAK_HIGHLIGHT_COLOR},r.prototype.getColor=function(n){return s.COLOR},r.prototype.getBackgroundAlpha=function(n){return n.inEnabled&&n.isHovered?s.WEAK_HIGHLIGHT_ALPHA:0},r.prototype.getOutlineColor=function(n){return this.getOutlineColorNonActive(n)},r.prototype.getOutlineOffset=function(n){return this.getOutlineOffsetNonActive(n)},r.prototype.getImageTintColor=function(n){return n.inDisabled||!n.isActive?s.WEAK_HIGHLIGHT_COLOR:s.HIGHLIGHT_COLOR},r.prototype.isToggle=function(){return!0},r.prototype.getImageSource=function(n){return n.isActive?t.mappings.button_radio_mark_on:t.mappings.button_radio_mark_off},r}(M),Un=function(){r.set("DButtonRadio",Kn)},Jn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getImageAlignWith=function(){return b.PADDING},t.prototype.getImageAlignHorizontal=function(){return W.RIGHT},t.prototype.getImageMarginHorizontal=function(){return 0},t.prototype.getTextAlignHorizontal=function(){return W.LEFT},t}(Kn),qn=function(){r.set("DButtonRadioRight",Jn)},Qn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(C),Zn=function(){r.set("DButtonSecondary",Qn)};const $n=wcardinal.ui.toLabel;var nt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextFormatter=function(){return $n},t.prototype.newTextValue=function(){return null},t}(B),tt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return 480},t.prototype.getFooter=function(){return null},t.prototype.getInputMargin=function(){return 32},t}(X);const rt=wcardinal.ui.UtilGestureMode;var et=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.isOverflowMaskEnabled=function(){return!0},t.prototype.getBackgroundColor=function(n){return s.BACKGROUND_COLOR},t.prototype.getBorderAlign=function(n){return 1},t.prototype.getOutlineAlign=function(n){return 1},t.prototype.getInteractive=function(){return o.BOTH},t.prototype.getWheelSpeed=function(){return 2.24},t.prototype.getGestureMode=function(){return rt.TOUCH},t}(D),ut=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return s.BACKGROUND_COLOR_ON_BOARD},t}(et),it=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return null},t.prototype.getBorderColor=function(n){return null},t.prototype.getHeight=function(){return 250},t.prototype.getCornerMask=function(){return f.ALL},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(ut),ot=function(){function n(n,t,r){this.i=t,null!=n?(this.o=n,this.l=1,this.h=a.blend(n,0,.0175),this.m=1,this.D=a.blend(n,s.INVALID_COLOR,s.INVALID_ALPHA),this.T=1,this.p=r?s.HIGHLIGHT_COLOR:a.blend(n,s.HIGHLIGHT_COLOR,s.HIGHLIGHT_ALPHA),this.g=1,this.W=a.blend(n,s.WEAK_HIGHLIGHT_COLOR,s.WEAK_HIGHLIGHT_ALPHA),this.k=1):(this.o=0,this.l=0,this.h=0,this.m=.0175,this.D=s.INVALID_COLOR,this.T=s.INVALID_ALPHA,this.p=s.HIGHLIGHT_COLOR,this.g=r?1:s.HIGHLIGHT_ALPHA,this.W=s.WEAK_HIGHLIGHT_COLOR,this.k=s.WEAK_HIGHLIGHT_ALPHA),this.I=s.COLOR,this.v=r?s.ACTIVE_COLOR:s.COLOR,r?(this.C=s.COLOR,this.B=s.ACTIVE_COLOR):(this.C=s.COLOR,this.B=s.COLOR)}return n.prototype.getBackgroundColor=function(n){return n.inDisabled?this.i?n.isAlternated?this.h:this.o:null:n.isInvalid?this.D:n.isActive?this.p:n.isHovered?this.W:this.i?n.isAlternated?this.h:this.o:null},n.prototype.getBackgroundAlpha=function(n){return n.inDisabled?this.i?n.isAlternated?this.m:this.l:0:n.isInvalid?this.T:n.isActive?this.g:n.isHovered?this.k:this.i?n.isAlternated?this.m:this.l:0},n.prototype.getBorderColor=function(n){return null},n.prototype.getBorderMask=function(n){return c.NONE},n.prototype.getColor=function(n){return n.isActive?this.B:this.C},n.prototype.getAlpha=function(n){return n.inEnabled?1:0},n.prototype.getImageTintColor=function(n,t){return n.inDisabled||n.inReadOnly||!n.isActive&&!t?this.I:this.v},n.prototype.getHeight=function(){return 30},n.prototype.getCornerMask=function(){return f.ALL},n.prototype.getCursor=function(n){return n.isActionable?"pointer":""},n}(),ct=function(n){function t(){var t=n.call(this)||this;return t.S=t.newStyle(),t}return i(t,n),t.prototype.newStyle=function(){return new ot(null,!0,!1)},t.prototype.getBackgroundColor=function(n){return this.S.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return this.S.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return this.S.getBorderColor(n)},t.prototype.getBorderMask=function(n){return this.S.getBorderMask(n)},t.prototype.getColor=function(n){return this.S.getColor(n)},t.prototype.getAlpha=function(n){return this.S.getAlpha(n)},t.prototype.getHeight=function(){return this.S.getHeight()},t.prototype.getCornerMask=function(){return this.S.getCornerMask()},t.prototype.getImageTintColor=function(n){return this.S.getImageTintColor(n)},t.prototype.getCursor=function(n){return this.S.getCursor(n)},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t.prototype.newTextValue=function(){},t.prototype.getWidth=function(){return"padding"},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isDisabled=!0},t}(x),ft=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.newStyle=function(){return new ot(null,!1,!0)},t.prototype.getCornerMask=function(){return f.NONE},t}(ct),lt=function(){r.set("DDialogSelect",tt),r.set("DDialogSelectList",it),r.set("DDialogSelectListItem",ft)};const ht=wcardinal.ui.DPickerTimes;var at=function(n,t){return ht.format(n,t.getDatetimeMask())},st=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextFormatter=function(){return at},t.prototype.newTextValue=function(){return new Date},t}(B),dt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(K),mt=function(){r.set("DDialogTime",dt),Mn()},Dt=function(){r.set("DButtonTime",st),mt()},Tt=function(){_(),N(),P(),fn(),$(),r.set("DButtonSelect",nt),lt(),hn(),Pn(),zn(),Vn(),jn(),Xn(),qn(),Un(),Zn(),Dt(),S()},pt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(){return 16777215},t.prototype.getBorderColor=function(n){return null},t.prototype.getCornerMask=function(){return f.ALL},t.prototype.getInteractive=function(){return o.BOTH},t}(D),gt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return null},t.prototype.getBorderColor=function(n){return null},t.prototype.getPaddingLeft=function(){return 32},t.prototype.getPaddingTop=function(){return 32},t.prototype.getPaddingRight=function(){return 32},t.prototype.getPaddingBottom=function(){return 32},t.prototype.isOverflowMaskEnabled=function(){return!1},t.prototype.getInteractive=function(){return o.BOTH},t.prototype.getCornerMask=function(){return f.ALL},t}(D),Wt=function(){r.set("DCanvasContainer",gt),r.set("DCanvas",pt)},wt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getPaddingLeft=function(){return 80},t.prototype.getPaddingRight=function(){return 10},t.prototype.getPaddingTop=function(){return 10},t.prototype.getPaddingBottom=function(){return 70},t.prototype.getBorderColor=function(n){return null},t.prototype.getInteractive=function(){return o.BOTH},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t.prototype.isOverflowMaskEnabled=function(){return!0},t}(D);const kt=wcardinal.ui.DChartAxisPosition,bt=wcardinal.ui.DChartAxisTickPosition,yt=wcardinal.ui.EShapeTextAlignHorizontal,It=wcardinal.ui.EShapeTextAlignVertical,vt=wcardinal.ui.EShapeTextDirection;var xt=function(){function n(){}return n.prototype.getPosition=function(){return kt.BOTTOM},n.prototype.getPadding=function(){return 90},n.prototype.getLabelAlignHorizontal=function(n){switch(n){case kt.TOP:case kt.BOTTOM:return yt.CENTER;case kt.LEFT:return yt.OUTSIDE_LEFT;case kt.RIGHT:return yt.OUTSIDE_RIGHT}},n.prototype.getLabelAlignVertical=function(n){switch(n){case kt.TOP:return It.OUTSIDE_TOP;case kt.BOTTOM:return It.OUTSIDE_BOTTOM;case kt.LEFT:case kt.RIGHT:return It.MIDDLE}},n.prototype.getLabelPaddingHorizontal=function(){return 60},n.prototype.getLabelPaddingVertical=function(){return 50},n.prototype.getLabelDirection=function(){return vt.LEFT_TO_RIGHT},n.prototype.getLabelColor=function(){return this.getStrokeColor()},n.prototype.getStyle=function(){},n.prototype.getStrokeEnable=function(){return!0},n.prototype.getStrokeColor=function(){},n.prototype.getStrokeAlpha=function(){},n.prototype.getStrokeWidth=function(){},n.prototype.getStrokeAlign=function(){},n.prototype.getStrokeSide=function(){},n.prototype.getStrokeStyle=function(){},n.prototype.getTickEnable=function(){return!0},n.prototype.getMajorTickCount=function(){return 3},n.prototype.getMajorTickCapacity=function(n){return 2*n},n.prototype.getMajorTickStep=function(){},n.prototype.getMajorTickSize=function(){return 10},n.prototype.getMajorTickPosition=function(){return bt.OUTSIDE},n.prototype.getMajorTickStyle=function(){},n.prototype.getMajorTickTextAlignHorizontal=function(n){switch(n){case kt.TOP:case kt.BOTTOM:return yt.CENTER;case kt.LEFT:return yt.OUTSIDE_LEFT;case kt.RIGHT:return yt.OUTSIDE_RIGHT}},n.prototype.getMajorTickTextAlignVertical=function(n){switch(n){case kt.TOP:return It.OUTSIDE_TOP;case kt.BOTTOM:return It.OUTSIDE_BOTTOM;case kt.LEFT:case kt.RIGHT:return It.MIDDLE}},n.prototype.getMajorTickTextDirection=function(){return vt.LEFT_TO_RIGHT},n.prototype.getMajorTickTextColor=function(){return this.getStrokeColor()},n.prototype.getMajorTickTextFormat=function(){return"%.2f"},n.prototype.getMajorTickTextPaddingHorizontal=function(){return 15},n.prototype.getMajorTickTextPaddingVertical=function(){return 15},n.prototype.getMajorTickStrokeEnable=function(){return!0},n.prototype.getMajorTickStrokeColor=function(){return this.getStrokeColor()},n.prototype.getMajorTickStrokeAlpha=function(){return this.getStrokeAlpha()},n.prototype.getMajorTickStrokeWidth=function(){return this.getStrokeWidth()},n.prototype.getMajorTickStrokeAlign=function(){return this.getStrokeAlign()},n.prototype.getMajorTickStrokeSide=function(){return this.getStrokeSide()},n.prototype.getMajorTickStrokeStyle=function(){return this.getStrokeStyle()},n.prototype.getMajorTickGridlineEnable=function(){return!0},n.prototype.getMajorTickGridlineStyle=function(){},n.prototype.getMajorTickGridlineStrokeEnable=function(){return!0},n.prototype.getMajorTickGridlineStrokeColor=function(){return this.getStrokeColor()},n.prototype.getMajorTickGridlineStrokeAlpha=function(){return.1},n.prototype.getMajorTickGridlineStrokeWidth=function(){return this.getStrokeWidth()},n.prototype.getMajorTickGridlineStrokeAlign=function(){return this.getStrokeAlign()},n.prototype.getMajorTickGridlineStrokeSide=function(){return this.getStrokeSide()},n.prototype.getMajorTickGridlineStrokeStyle=function(){return this.getStrokeStyle()},n.prototype.getMinorTickCount=function(){return 3},n.prototype.getMinorTickStep=function(){},n.prototype.getMinorTickSize=function(){return 5},n.prototype.getMinorTickPosition=function(){return bt.OUTSIDE},n.prototype.getMinorTickStyle=function(){},n.prototype.getMinorTickStrokeEnable=function(){return!0},n.prototype.getMinorTickStrokeColor=function(){return this.getStrokeColor()},n.prototype.getMinorTickStrokeAlpha=function(){return this.getStrokeAlpha()},n.prototype.getMinorTickStrokeWidth=function(){return this.getStrokeWidth()},n.prototype.getMinorTickStrokeAlign=function(){return this.getStrokeAlign()},n.prototype.getMinorTickStrokeSide=function(){return this.getStrokeSide()},n.prototype.getMinorTickStrokeStyle=function(){return this.getStrokeStyle()},n}(),Ct=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(xt),Bt=function(n,t,r){var e=Math.abs(t-n)/r;if(e<=10)return e<=1.33?1:e<=2.86?2:e<=6.67?5:10;if(e<=100)return e<=13.33?10:e<=28.57?20:e<=66.67?50:100;if(e<=1e3)return e<=133.33?100:e<=285.71?200:e<=666.67?500:1e3;if(e<=1e4)return e<=1333.33?1e3:e<=2857.14?2e3:e<=6666.66?5e3:1e4;if(e<=12e4)return e<=13333.33?1e4:e<=24e3?2e4:e<=4e4?3e4:e<=72e3?6e4:e<=102857.14?9e4:12e4;if(e<=108e5)return e<=171428.57?12e4:e<=4e5?3e5:e<=8e5?6e5:e<=144e4?12e5:e<=24e5?18e5:e<=432e4?36e5:e<=6171428.57?54e5:e<=8e6?72e5:e<=9818181.82?9e6:108e5;var u=36e5,i=e/u;if(i<=24)return i<=1.33?u:i<=2.4?72e5:i<=3.43?108e5:i<=4.8?144e5:i<=6.86?216e5:i<=9.6?288e5:i<=14.4?432e5:i<=20.57?648e5:864e5;var o=i/24,c=Math.pow(10,Math.floor(Math.log(o)/Math.LN10)),f=e/c;return f<=1.33?c:f<=2.86?2*c:f<=6.67?5*c:10*c},St=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getMajorTickTextFormat=function(){return"%YMD\n%Hms"},t.prototype.getMajorTickStep=function(){return Bt},t}(Ct),Mt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getPosition=function(){return kt.LEFT},t.prototype.getLabelDirection=function(){return vt.BOTTOM_TO_TOP},t}(xt),_t=function(){function n(){}return n.prototype.isZero=function(n){return Math.abs(n)<1e-5},n}(),Lt=function(){function n(){}return n.prototype.toStep=function(n,t,r){var e=Math.abs(t-n)/r,u=Math.floor(Math.log(e)/Math.LN10),i=Math.pow(10,u),o=e/i;return o<=1.33?i:o<=2.86?2*i:o<=6.67?5*i:10*i},n}(),Et=function(){function n(){}return n.prototype.isZero=function(n){return Math.abs(n)<1e-5},n}(),Pt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(D),Ft=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(D),Nt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(D),At=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getX=function(){return"padding"},t.prototype.getY=function(){return"padding"},t.prototype.getWidth=function(){return"padding"},t.prototype.getHeight=function(){return"padding"},t.prototype.getPaddingTop=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t.prototype.getPaddingBottom=function(){return 10},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getBorderColor=function(n){return null},t.prototype.getCornerMask=function(){return f.ALL},t.prototype.isOverflowMaskEnabled=function(){return!0},t}(D);const Ht=wcardinal.ui.EShapeBar,Rt=wcardinal.ui.EShapeBarPosition;var zt=function(){function n(){}return n.prototype.isEnabled=function(n){return!0},n.prototype.newShape=function(n){var t=new Ht;return t.points.position=Rt.TOP,t.stroke.alpha=.5,t},n}(),Gt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(zt),Vt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.newShape=function(n){var t=new Ht;return t.points.position=Rt.LEFT,t.stroke.alpha=.5,t},t}(zt);const Ot=wcardinal.ui.EShapeCircle;var jt=function(){function n(){}return n.prototype.isEnabled=function(n){return!1},n.prototype.newShape=function(n){var t=new Ot;return n.isHovered?t.size.set(14,14):t.size.set(20,20),t},n}(),Yt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getCanvasBackgroundColor=function(){return 16777215},t.prototype.getCanvasBackgroundAlpha=function(){return 1},t.prototype.isAmbient=function(){return!0},t.prototype.getCanvasShadow=function(){return"WEAK"},t}(gt),Xt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Yt),Kt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.isAmbient=function(){return!0},t.prototype.getBackgroundBase=function(){return 15658734},t}(pt),Ut=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(Kt);const Jt=wcardinal.ui.EShapeStrokeSide,qt=wcardinal.ui.EShapeStrokeStyle;var Qt=function(){function n(){}return n.prototype.getFillColor=function(){return 16777215},n.prototype.getFillAlpha=function(){return.5},n.prototype.getStrokeColor=function(){return 5197647},n.prototype.getStrokeAlpha=function(){return 1},n.prototype.getStrokeWidth=function(){return 2},n.prototype.getStrokeAlign=function(){return 0},n.prototype.getStrokeSide=function(){return Jt.ALL},n.prototype.getStrokeStyle=function(){return qt.NONE},n.prototype.getTextValue=function(){return""},n.prototype.getTextColor=function(){return this.getStrokeColor()},n.prototype.getTextAlpha=function(){return this.getStrokeAlpha()},n.prototype.getTextFamily=function(){return"auto"},n.prototype.getTextSize=function(){return 14},n.prototype.getRadius=function(){return.25},n.prototype.getSizeX=function(){return 100},n.prototype.getSizeY=function(){return 100},n.prototype.getHighlightColor=function(){return 2000880},n.prototype.getCurveSegmentCount=function(){return 24},n}(),Zt=function(){r.set("EShape",Qt)},$t=function(){r.set("DDiagram",Xt),r.set("DDiagramCanvas",Ut),Zt()},nr=function(n,t,r){var e=Math.max(t,r);if(0<n){for(var u=e/1e3,i=0;i<10&&n<u;++i)n*=10;if(u<=n)return n}return e},tr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.isAmbient=function(){return!1},t.prototype.getOutlineColor=function(n){return null},t.prototype.getSnapGridMajorInterval=function(){return 10},t.prototype.getSnapGridMajorColor=function(){return 10066329},t.prototype.getSnapGridMajorAlpha=function(){return.5},t.prototype.getSnapGridMajorWidth=function(){return 1.25},t.prototype.getSnapGridMajorStyle=function(){return qt.DASHED|qt.NON_SCALING},t.prototype.getSnapGridMinorColor=function(){return this.getSnapGridMajorColor()},t.prototype.getSnapGridMinorAlpha=function(){return.125},t.prototype.getSnapGridMinorWidth=function(){return this.getSnapGridMajorWidth()},t.prototype.getSnapGridMinorStyle=function(){return this.getSnapGridMajorStyle()},t.prototype.getSnapGridSize=function(){return nr},t.prototype.getSnapTargetColor=function(){return s.HIGHLIGHT_COLOR},t.prototype.getSnapTargetAlpha=function(){return 1},t.prototype.getSnapTargetWidth=function(){return this.getSnapGridMajorWidth()},t.prototype.getSnapTargetStyle=function(){return this.getSnapGridMajorStyle()},t}(Kt),rr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.isAmbient=function(){return!1},t.prototype.isThumbnailEnabled=function(){return!1},t.prototype.getThumbnailSize=function(){return null},t.prototype.isSnapEnabled=function(){return!0},t.prototype.isSnapGridVisible=function(){return!0},t.prototype.isSnapGridEnabled=function(){return!0},t.prototype.getSnapGridSize=function(){return 10},t.prototype.isSnapTargetVisible=function(){return!0},t.prototype.isSnapTargetEnabled=function(){return!0},t}(Yt);const er=wcardinal.ui.EShapeActionOpenDialogExtensions,ur=wcardinal.ui.EShapeActionOpenExtensions,ir=wcardinal.ui.EShapeActionValueBlinkType,or=wcardinal.ui.EShapeActionValueChangeColorTarget,cr=wcardinal.ui.EShapeActionValueChangeColorType,fr=wcardinal.ui.EShapeActionValueChangeTextType,lr=wcardinal.ui.EShapeActionValueGestureType,hr=wcardinal.ui.EShapeActionValueMiscType,ar=wcardinal.ui.EShapeActionValueOnInputAction,sr=wcardinal.ui.EShapeActionValueOpenDialogType,dr=wcardinal.ui.EShapeActionValueOpenType,mr=wcardinal.ui.EShapeActionValueOpetyped,Dr=wcardinal.ui.EShapeActionValueShowHideType,Tr=wcardinal.ui.EShapeActionValueSubtyped,pr=wcardinal.ui.EShapeActionValueTransformMoveType,gr=wcardinal.ui.EShapeActionValueTransformResizeType,Wr=wcardinal.ui.EShapeActionValueTransformRotateType,wr=wcardinal.ui.EShapeActionValueTransformType,kr=wcardinal.ui.EShapeActionValueType,br=wcardinal.ui.UtilHtmlElementWhen;var yr=function(){function n(){}return n.prototype.toLabel=function(n){var t=n.type;if(n instanceof Tr){var r,e=n.subtype;if(n instanceof mr){if(null!=(r=this.toOpetypedLabel(t,e,n.opetype,n)))return r}else if(null!=(r=this.toSubtypedLabel(t,e,n)))return r}return this.toTypedLabel(t,n)},n.prototype.toTypedLabel=function(n,t){return"".concat(this.toTypeLabel(n),": ").concat(this.toConditionLabel(t.condition))},n.prototype.toSubtypedLabel=function(n,t,r){var e=this.toTypeLabel(n);switch(n){case kr.SHOW_HIDE:return"".concat(e,": ").concat(this.toShowHideTypeLabel(t));case kr.BLINK:return"".concat(e,": ").concat(this.toBlinkTypeLabel(t));case kr.CHANGE_COLOR:case kr.CHANGE_COLOR_LEGACY:return"".concat(e,": ").concat(this.toChangeColorTypeLabel(t));case kr.CHANGE_TEXT:return"".concat(e,": ").concat(this.toChangeTextTypeLabel(t));case kr.OPEN:return"".concat(e,": ").concat(this.toOpenTypeLabel(t));case kr.GESTURE:return"".concat(e,": ").concat(this.toGestureTypeLabel(t));case kr.MISC:return"".concat(e,": ").concat(this.toMiscTypeLabel(t))}return null},n.prototype.toOpetypedLabel=function(n,t,r,e){switch(n){case kr.TRANSFORM:var u=this.toTransformTypeLabel(t);switch(t){case wr.ROTATE:return"".concat(u,": ").concat(this.toTransformRotateTypeLabel(r));case wr.MOVE:return"".concat(u,": ").concat(this.toTransformMoveTypeLabel(r));case wr.RESIZE:return"".concat(u,": ").concat(this.toTransformResizeTypeLabel(r))}}return null},n.prototype.toTypeLabel=function(n){switch(n){case kr.SHOW_HIDE:return"Show / hide";case kr.BLINK:return"Blink";case kr.TRANSFORM:return"Transform";case kr.OPEN:return"Open";case kr.CHANGE_COLOR:case kr.CHANGE_COLOR_LEGACY:return"Change color";case kr.CHANGE_TEXT:return"Change text";case kr.CHANGE_CURSOR:return"Change cursor";case kr.EMIT_EVENT:return"Emit an event";case kr.GESTURE:return"Gesture";case kr.MISC:return"Misc.";default:return kr.EXTENSION<=n?"Extension":"Unknown"}},n.prototype.toConditionLabel=function(n){return 20<n.length?n.substring(0,20)+"...":n},n.prototype.toBlinkTypeLabel=function(n){switch(n){case ir.VISIBILITY:return"Visibility";case ir.BRIGHTEN:return"Brighten";case ir.DARKEN:return"Darken";case ir.OPACITY:return"Opacity";case ir.COLOR_FILL:return"Fill";case ir.COLOR_STROKE:return"Stroke"}},n.prototype.toShowHideTypeLabel=function(n){switch(n){case Dr.SHAPE_SHOW:return"Show";case Dr.SHAPE_HIDE:return"Hide";case Dr.SHAPE:return"Shape";case Dr.LAYER:return"Layer"}},n.prototype.toTransformTypeLabel=function(n){switch(n){case wr.RESIZE:return"Resize";case wr.MOVE:return"Move";case wr.ROTATE:return"Rotate"}},n.prototype.toTransformRotateTypeLabel=function(n){switch(n){case Wr.RELATIVE:return"Relative";case Wr.ABSOLUTE:return"Absolute"}},n.prototype.toTransformMoveTypeLabel=function(n){switch(n){case pr.RELATIVE_X:return"Relative X";case pr.RELATIVE_Y:return"Relative Y";case pr.ABSOLUTE_X:return"Absolute X";case pr.ABSOLUTE_Y:return"Absolute Y";case pr.FORWARD_OR_BACKWARD:return"Forward / backward";case pr.LEFT_OR_RIGHT:return"Left / right"}},n.prototype.toTransformResizeTypeLabel=function(n){switch(n){case gr.ABSOLUTE_SIZE:return"Height & width";case gr.RELATIVE_SIZE:return"Height & width (%)";case gr.ABSOLUTE_HEIGHT:return"Height";case gr.RELATIVE_HEIGHT:return"Height (%)";case gr.ABSOLUTE_WIDTH:return"Width";case gr.RELATIVE_WIDTH:return"Width (%)"}},n.prototype.toChangeColorTypeLabel=function(n){if(n===cr.NONE)return"None";var t="",r="";return n&cr.FILL&&(t+=r+"Fill",r=", "),n&cr.STROKE&&(t+=r+"Stroke",r=", "),n&cr.TEXT&&(t+=r+"Text",r=", "),n&cr.TEXT_OUTLINE&&(t+=r+"Text outline"),t},n.prototype.toChangeColorTargetLabel=function(n){switch(n){case or.COLOR_AND_ALPHA:return"Color";case or.COLOR:return"RGB";case or.ALPHA:return"Alpha";case or.CODE:return"Dynamic color";case or.BRIGHTNESS:return"Brightness"}},n.prototype.toChangeTextTypeLabel=function(n){switch(n){case fr.TEXT:return"Text";case fr.NUMBER:return"Number"}},n.prototype.toOpenTypeLabel=function(n){switch(n){case dr.DIAGRAM_LEGACY:return"Diagram";case dr.PAGE_LEGACY:return"Page (New window)";case dr.PAGE_INPLACE_LEGACY:return"Page (In-place)";case dr.DIALOG_TEXT:return"Dialog (Text)";case dr.DIALOG_INTEGER:return"Dialog (Integer)";case dr.DIALOG_REAL:return"Dialog (Real)";case dr.DIALOG_BOOLEAN:return"Dialog (Boolean)";case dr.DIALOG_DATE:return"Dialog (Date)";case dr.DIALOG_TIME:return"Dialog (Time)";case dr.DIALOG_DATETIME:return"Dialog (Datetime)";case dr.DIAGRAM:return"Diagram";case dr.PAGE:return"Page";case dr.DIALOG:return"Dialog";default:if(dr.EXTENSION<=n){var t=ur.get(n);return t?t.label:"Extension"}return"Unknown"}},n.prototype.toOpenDialogTypeLabel=function(n){switch(n){case sr.TEXT:return"Text";case sr.INTEGER:return"Integer";case sr.REAL:return"Real";case sr.BOOLEAN:return"Boolean";case sr.DATE:return"Date";case sr.TIME:return"Time";case sr.DATETIME:return"Datetime";default:if(sr.EXTENSION<=n){var t=er.get(n);return t?t.label:"Extension"}return"Unknown"}},n.prototype.toGestureTypeLabel=function(n){switch(n){case lr.SHAPE:return"Shape";case lr.LAYER:return"Layer"}},n.prototype.toMiscTypeLabel=function(n){switch(n){case hr.INPUT_TEXT:return"Input (Text)";case hr.INPUT_INTEGER:return"Input (Integer)";case hr.INPUT_REAL:return"Input (Real)";case hr.EMIT_EVENT:return this.toOnInputActionLabel(ar.EMIT_EVENT);case hr.WRITE_BOTH:return this.toOnInputActionLabel(ar.WRITE_BOTH);case hr.WRITE_LOCAL:return this.toOnInputActionLabel(ar.WRITE_LOCAL);case hr.WRITE_REMOTE:return this.toOnInputActionLabel(ar.WRITE_REMOTE);case hr.HTML_ELEMENT:return"HTML element";case hr.HTML_ELEMENT_WITHOUT_POINTER_EVENTS:return"HTML element (No pointer events)";case hr.SHOW_HIDE_LAYER:return"Show / hide layers";case hr.GESTURE_LAYER:return"Layer gesture";case hr.GESTURE:return"Gesture";case hr.EXECUTE:return"Execute"}},n.prototype.toHtmlElementWhenLabel=function(n){switch(n){case br.CLICKED:return"Clicked";case br.DOUBLE_CLICKED:return"Double clicked";case br.FOCUSED:return"Focused";case br.ALWAYS:return"Always"}},n.prototype.toOnInputActionLabel=function(n){switch(n){case ar.EMIT_EVENT:return"Emit event";case ar.WRITE_BOTH:return"Write (Both)";case ar.WRITE_LOCAL:return"Write (Local)";case ar.WRITE_REMOTE:return"Write (Remote)"}},n}(),Ir=function(){r.set("EShapeActionValue",yr)},vr=function(){r.set("DDiagramEditor",rr),r.set("DDiagramCanvasEditor",tr),Ir(),Zt()},xr=function(){r.set("DDialog",Y)};const Cr=wcardinal.ui.DLayoutDirection;var Br=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return null},t.prototype.getBorderColor=function(n){return null},t.prototype.getMargin=function(){return 5},t.prototype.getInteractive=function(){return o.CHILDREN},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t.prototype.getDirection=function(){return Cr.VERTICAL},t.prototype.getCornerAdjust=function(){return!1},t.prototype.getMultiplicity=function(){return 1},t.prototype.getReverse=function(){return!1},t}(D),Sr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getDirection=function(){return Cr.VERTICAL},t.prototype.getWidth=function(){return"auto"},t}(Br),Mr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getX=function(){return"padding"},t.prototype.getY=function(){return"padding"},t.prototype.getWidth=function(){return"padding"},t.prototype.getHeight=function(){return"auto"},t.prototype.getPaddingTop=function(){return 16},t.prototype.getPaddingRight=function(){return 16},t.prototype.getPaddingBottom=function(){return 16},t.prototype.getPaddingLeft=function(){return 16},t}(Sr),_r=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getDirection=function(){return Cr.HORIZONTAL},t.prototype.getHeight=function(){return"auto"},t}(Br),Lr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getButtonOk=function(){return"OK"},t.prototype.getButtonCancel=function(){return"Cancel"},t.prototype.getX=function(){return"padding"},t.prototype.getY=function(){return"padding"},t.prototype.getWidth=function(){return"padding"},t.prototype.getHeight=function(){return"auto"},t.prototype.getPaddingTop=function(){return 0},t.prototype.getPaddingRight=function(){return 16},t.prototype.getPaddingBottom=function(){return 16},t.prototype.getPaddingLeft=function(){return 16},t}(_r),Er=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return"padding"},t.prototype.getHeight=function(){return 38},t.prototype.getPaddingLeft=function(){return 16},t.prototype.getPaddingRight=function(){return 16},t.prototype.getBackgroundColor=function(n){return null},t.prototype.getCornerMask=function(){return f.BOTTOM},t.prototype.getBorderColor=function(n){return null},t.prototype.getInteractive=function(){return o.CHILDREN},t.prototype.newState=function(n){n.isFocusable=!1},t}(x);t.add("dialog_layered_header_button_close",20,14,'<g><polyline fill="none" stroke="#fff" stroke-width="1" points="15 2 5 12"></polyline><polyline fill="none" stroke="#fff" stroke-width="1" points="5 2 15 12"></polyline></g>');var Pr=function(n,t){return n-34},Fr=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getX=function(){return Pr},r.prototype.getY=function(){return"center"},r.prototype.getWidth=function(){return 30},r.prototype.getHeight=function(){return 30},r.prototype.getSecondaryImageAlignHorizontal=function(){return W.CENTER},r.prototype.getSecondaryImageAlignVertical=function(){return k.MIDDLE},r.prototype.getSecondaryImageAlignWith=function(){return b.PADDING},r.prototype.getSecondaryImageSource=function(n){return t.mappings.dialog_layered_header_button_close},r}(M),Nr=function(n){return n-1},Ar=function(n){return n-16},Hr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getX=function(){return 8},t.prototype.getY=function(){return Nr},t.prototype.getWidth=function(){return Ar},t.prototype.getHeight=function(){return 1},t.prototype.getBackgroundColor=function(n){return s.BORDER_COLOR},t.prototype.getBorderColor=function(n){return null},t.prototype.getInteractive=function(){return o.NONE},t}(x),Rr=function(){r.set("DDialogLayeredContent",Mr),r.set("DDialogLayeredFooter",Lr),r.set("DDialogLayeredHeaderButtonClose",Fr),r.set("DDialogLayeredHeaderSeparator",Hr),r.set("DDialogLayeredHeader",Er),r.set("DDialogLayered",X)},zr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getFooter=function(){return{button:{ok:"Yes",cancel:"No"}}},t.prototype.getMessage=function(){return""},t}(X),Gr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(x),Vr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return"padding"},t.prototype.getHeight=function(){return"auto"},t.prototype.getTextAlignHorizontal=function(){return W.CENTER},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(Gr),Or=function(){r.set("DDialogConfirm",zr),r.set("DDialogConfirmMessage",Vr)},jr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getMessage=function(){return"Are you sure you want to delete this data?"},t}(zr),Yr=function(){r.set("DDialogConfirmDelete",jr)},Xr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getMessage=function(){return"Your changes have not been saved.\nDo you want to discard the changes and continue?"},t}(zr),Kr=function(){r.set("DDialogConfirmDiscard",Xr)},Ur=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getLabel=function(){return""},t.prototype.getInputMargin=function(){return 32},t}(X),Jr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Ur),qr=function(){r.set("DDialogInputBoolean",Jr)},Qr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Ur),Zr=function(){r.set("DDialogInputInteger",Qr)},$r=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Ur),ne=function(){r.set("DDialogInputReal",$r)},te=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Ur),re=function(){r.set("DDialogInputText",te)},ee=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getFooter=function(){return{button:{ok:"OK",cancel:null}}},t}(zr),ue=function(){r.set("DDialogMessage",ee)},ie=function(n){return n.isSucceeded?"Processed successfully":n.isFailed?"Failed to process the request":"Processing..."},oe=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getFooter=function(){return{button:{ok:"OK",cancel:null}}},t.prototype.getMessage=function(){return ie},t.prototype.getDoneDelay=function(){return 400},t.prototype.getCloseDelay=function(){return 600},t}(zr);t.add("success_mark",21,21,'<g transform="scale(0.875,0.875)"><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z" fill="#fff" /></g>'),t.add("fail_mark",21,21,'<g transform="scale(0.875,0.875)"><path d="M11 15h2v2h-2zm0-8h2v6h-2zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" fill="#fff" /></g>');var ce=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getHeight=function(){return 90},r.prototype.getImageSource=function(n){return n.isSucceeded?t.mappings.success_mark:n.isFailed?t.mappings.fail_mark:null},r.prototype.getImageTintAlpha=function(n){return.75},r}(Vr),fe=function(){r.set("DDialogProcessing",oe),r.set("DDialogProcessingMessage",ce)},le=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getFooter=function(){return{button:{ok:"Save",cancel:null}}},t}(te),he=function(){r.set("DDialogSaveAs",le)},ae=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return"auto"},t}(Mr),se=function(){r.set("DDialogFittedContent",ae),r.set("DDialogFitted",K)},de=function(){cn(),Z(),Yr(),Kr(),Or(),En(),Rn(),se(),qr(),Zr(),ne(),re(),Rr(),ue(),fe(),he(),lt(),mt(),xr()},me=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return n.isActive?15792383:null},t.prototype.getBackgroundAlpha=function(n){return n.isActive?.1:0},t.prototype.getMargin=function(){return 0},t.prototype.getCornerMask=function(){return f.ALL},t}(Sr);t.add("menu_item_expandable_header_closed",14,14,'<g transform="scale(1, 0.7)"><polyline fill="none" stroke="#fff" stroke-width="1" points="6 16 10 10 6 4"></polyline></g>'),t.add("menu_item_expandable_header_opened",14,14,'<g transform="scale(0.7, 1)"><polyline fill="none" stroke="#fff" stroke-width="1" points="16 6 10 10 4 6"></polyline></g>');var De=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return n.inDisabled?null:n.isHovered||n.inActive?16316664:null},t.prototype.getBorderColor=function(n){return null},t.prototype.getHeight=function(){return 30},t.prototype.getWidth=function(){return"padding"},t.prototype.getPaddingLeft=function(){return 16},t.prototype.getPaddingRight=function(){return 16},t.prototype.getCornerMask=function(){return f.ALL},t}(Gr),Te=function(){r.set("DExpandableHeader",De),r.set("DExpandable",me)};const pe=wcardinal.ui.DHtmlElementState;var ge=function(){return null},We=function(n){var t=document.createElement("div");return n.appendChild(t),t},we=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getElementCreator=function(){return ge},t.prototype.setElementStyle=function(n,t,r,e,u,i,o){var c=this.getElementStylePointerEvent(t)+this.getElementStylePosition(t,e,u,i)+this.getElementStyleMargin(t)+this.getElementStyleText(t)+this.getElementStyleBackground(t)+this.getElementStyleBorder(t)+this.getElementStylePadding(t,r)+this.getElementStyleOutline(t)+this.getElementStyleClipPath(t,o);n.setAttribute("style",c),t.inReadOnly?n.setAttribute("readonly","readonly"):n.removeAttribute("readonly"),t.inDisabled?n.setAttribute("disabled","disabled"):n.removeAttribute("disabled")},t.prototype.getElementStylePointerEvent=function(n){return n.is(pe.NO_POINTER_EVENTS)?"":"pointer-events: auto;"},t.prototype.getElementStyleBackground=function(n){return"background-color: transparent;"},t.prototype.getElementStyleBorder=function(n){return"border: none; box-sizing: border-box;"},t.prototype.getElementStylePadding=function(n,t){return t?"getLeft"in t?"padding: ".concat(t.getTop(),"px ").concat(t.getRight(),"px ")+"".concat(t.getBottom(),"px ").concat(t.getLeft(),"px;"):"padding: ".concat(t.vertical,"px ").concat(t.horizontal,"px;"):"padding: 0px;"},t.prototype.getElementStyleOutline=function(n){return"outline: none;"},t.prototype.getElementStylePositionPosition=function(n,t){if(n){if(t){var r=n.x-t.x,e=n.y-t.y;return"left:".concat(r,"px; top:").concat(e,"px;")}return"left:".concat(n.x,"px; top: ").concat(n.y,"px;")}return"left: 0px; top: 0px;"},t.prototype.getElementStylePositionSize=function(n){return n?"width: ".concat(n.width,"px; height: ").concat(n.height,"px;"):"width: 0px; height: 0px;"},t.prototype.getElementStylePositionTransform=function(n){return n?"transform: matrix(".concat(n.a,",").concat(n.b,",").concat(n.c,",").concat(n.d,",").concat(n.tx,",").concat(n.ty,");"):""},t.prototype.getElementStylePosition=function(n,t,r,e){return"position: absolute;"+this.getElementStylePositionPosition(t,e)+this.getElementStylePositionSize(t)+this.getElementStylePositionTransform(r)},t.prototype.getElementStyleText=function(n){return"font-family: ".concat(this.getFontFamilly(),";")+"font-size: ".concat(this.getFontSize(),"px;")+"color: #".concat(this.getColor(n).toString(16),";")+"line-height: ".concat(this.getLineHeight(),"px;")+"-moz-tab-size: 4; -o-tab-size: 4; tab-size: 4;"},t.prototype.getElementStyleMargin=function(n){return"margin: 0;"},t.prototype.getElementStyleClipPath=function(n,t){if(null!=t){var r=t.id;return"-webkit-clip-path: url(#".concat(r,"); clip-path: url(#").concat(r,");")}return""},t.prototype.getClipperCreator=function(){return We},t.prototype.setClipperStyle=function(n,t,r,e,u,i,o){var c="outline: none; padding: 0; margin: 0; border: none;background-color: transparent; pointer-events: none;"+this.getClipperStyleOverflow(i)+this.getClipperStylePosition(i);n.setAttribute("style",c)},t.prototype.getClipperStyleOverflow=function(n){return n?"overflow: hidden;":"overflow: visible;"},t.prototype.getClipperStylePositionPosition=function(n){return n?"left: ".concat(n.x,"px; top: ").concat(n.y,"px;"):"left: 0px; top: 0px;"},t.prototype.getClipperStylePositionSize=function(n){return n?"width: ".concat(n.width,"px; height: ").concat(n.height,"px;")+"line-height: ".concat(n.height,"px;"):"width: 0px; height: 0px;"},t.prototype.getClipperStylePosition=function(n){return"position: absolute;"+this.getClipperStylePositionPosition(n)+this.getClipperStylePositionSize(n)},t.prototype.isClipperExEnabled=function(){return!1},t.prototype.getBeforeCreator=function(){return We},t.prototype.setBeforeStyle=function(n){n.setAttribute("style","overflow: hidden; outline: none;padding: 0; margin: 0; border: none; background-color: transparent;position: absolute; left: 0; top: 0; width: 0; height: 0; line-height: 0;"),n.setAttribute("tabindex","0")},t.prototype.getAfterCreator=function(){return We},t.prototype.setAfterStyle=function(n){this.setBeforeStyle(n)},t.prototype.getWhen=function(){return br.FOCUSED},t.prototype.getSelect=function(){return!1},t}(x),ke=function(){r.set("DImage",Gr)},be=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getHeight=function(){return this.getLineHeight()},t}(_r),ye=function(){r.set("DInputAndLabel",be)},Ie=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getCornerAdjust=function(){return!0},t.prototype.getMargin=function(){return 0},t}(_r),ve=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBorderMask=function(){return c.RIGHT},t.prototype.isToggle=function(){return!0},t.prototype.newTextValue=function(){return"OFF"},t}(B),xe=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBorderMask=function(){return c.LEFT},t.prototype.isToggle=function(){return!0},t.prototype.newTextValue=function(){return"ON"},t}(B),Ce=function(){r.set("DInputBoolean",Ie),r.set("DInputBooleanButtonOn",xe),r.set("DInputBooleanButtonOff",ve)},Be=function(){return null},Se=function(n){return n},Me=function(n){function t(){var t=null!==n&&n.apply(this,arguments)||this;return t.BACKGROUND_COLOR=s.BACKGROUND_COLOR_ON_BOARD,t.BACKGROUND_COLOR_HOVERED=a.darken(t.BACKGROUND_COLOR,.017),t}return i(t,n),t.prototype.getBackgroundColor=function(n){return n.inDisabled||n.inReadOnly?null:n.isHovered?this.BACKGROUND_COLOR_HOVERED:this.BACKGROUND_COLOR},t.prototype.getBorderColor=function(n){return n.isInvalid?s.INVALID_COLOR:s.BORDER_COLOR},t.prototype.getHeight=function(){return this.getLineHeight()},t.prototype.getWidth=function(){return 100},t.prototype.getPlaceholder=function(){return""},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t.prototype.getCursor=function(n){return n.isActionable?"text":""},t.prototype.getEditingFormatter=function(){return this.getTextFormatter()},t.prototype.getEditingUnformatter=function(){return Se},t.prototype.getEditingValidator=function(){return Be},t.prototype.getSelect=function(){return!0},t.prototype.getElementStyleBorder=function(n){return"border: 1px solid transparent; box-sizing: border-box;"},t}(we),_e="d-theme-white-input-input",Le="".concat(_e,"-element"),Ee=function(n){var t=n.getElementsByClassName(Le);if(0<t.length)return t[0];var r=document.createElement("input");return r.setAttribute("spellcheck","false"),r.setAttribute("class",Le),n.appendChild(r),r},Pe=function(n,t){var r=n.getElementsByClassName(t);if(0<r.length)return r[0];var e=document.createElement("div");return e.setAttribute("class",t),n.appendChild(e),e},Fe="".concat(_e,"-clipper"),Ne=function(n){return Pe(n,Fe)},Ae="".concat(_e,"-before"),He=function(n){return Pe(n,Ae)},Re="".concat(_e,"-after"),ze=function(n){return Pe(n,Re)},Ge=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getElementCreator=function(){return Ee},t.prototype.getClipperCreator=function(){return Ne},t.prototype.getBeforeCreator=function(){return He},t.prototype.getAfterCreator=function(){return ze},t}(Me),Ve=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextAlignHorizontal=function(){return W.CENTER},t.prototype.getStep=function(){return null},t.prototype.getMin=function(){return null},t.prototype.getMax=function(){return null},t.prototype.newTextValue=function(){return 0},t}(Ge),Oe=function(n){var t=parseInt(n,10);return t==t?t:0},je=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getEditingUnformatter=function(){return Oe},t}(Ve),Ye=function(){r.set("DInputInteger",je)},Xe=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextAlignHorizontal=function(){return W.RIGHT},t.prototype.getWidth=function(){return 60},t.prototype.getHeight=function(){return this.getLineHeight()},t}(xn),Ke=function(){r.set("DInputLabel",Xe)},Ue=function(n){var t=parseFloat(n);return t==t?t:0},Je=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getEditingUnformatter=function(){return Ue},t}(Ve),qe=function(){r.set("DInputReal",Je)},Qe=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.newTextValue=function(){return""},t}(Ge);t.add("input_search",21,21,'<g transform="scale(0.875,0.875)"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" fill="#fff"/></g>');var Ze=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getPaddingRight=function(){return 31},r.prototype.getImageSource=function(n){return t.mappings.input_search},r.prototype.getImageAlignWith=function(){return b.BORDER},r.prototype.getImageAlignHorizontal=function(){return W.RIGHT},r.prototype.getImageMarginHorizontal=function(){return 6},r}(Qe),$e=function(){r.set("DInputSearch",Ze)},nu=function(){r.set("DInputText",Qe)},tu="d-theme-white-input-text-area",ru="".concat(tu,"-element"),eu=function(n){var t=n.getElementsByClassName(ru);if(0<t.length)return t[0];var r=document.createElement("textarea");return r.setAttribute("spellcheck","false"),r.setAttribute("class",ru),n.appendChild(r),r},uu=function(n,t){var r=n.getElementsByClassName(t);if(0<r.length)return r[0];var e=document.createElement("div");return e.setAttribute("class",t),n.appendChild(e),e},iu="".concat(tu,"-clipper"),ou=function(n){return uu(n,iu)},cu="".concat(tu,"-before"),fu=function(n){return uu(n,cu)},lu="".concat(tu,"-after"),hu=function(n){return uu(n,lu)},au=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextAlignVertical=function(){return k.TOP},t.prototype.getTextStyleWordWrap=function(){return y.NORMAL},t.prototype.getElementCreator=function(){return eu},t.prototype.getClipperCreator=function(){return ou},t.prototype.getBeforeCreator=function(){return fu},t.prototype.getAfterCreator=function(){return hu},t.prototype.newTextValue=function(){return""},t.prototype.getElementStyleText=function(t){return n.prototype.getElementStyleText.call(this,t)+this.getElementStyleTextResize(t)+this.getElementStyleTextWordWrap(t)},t.prototype.getElementStyleTextResize=function(n){return"resize: none;"},t.prototype.getElementStyleTextWordWrap=function(n){var t="overflow-wrap: break-word; word-wrap: break-word;";switch(this.getTextStyleWordWrap()){case y.NORMAL:t+="word-break: normal;";break;default:t+="word-break: break-all;"}return t},t}(Me),su=function(){r.set("DInputTextArea",au)},du=function(){ye(),Ce(),Ye(),Ke(),qe(),$e(),su(),nu()},mu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return null},t.prototype.getBorderColor=function(n){return null},t.prototype.getWidth=function(){return 0},t.prototype.getHeight=function(){return 0},t.prototype.getClearType=function(){return l.BOTH},t.prototype.getInteractive=function(){return o.CHILDREN},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(D),Du=function(){r.set("DLayout",Br),r.set("DLayoutHorizontal",_r),r.set("DLayoutSpace",mu),r.set("DLayoutVertical",Sr)};const Tu=wcardinal.ui.DLinkMenuItemId;t.add("link_mark",24,24,'<g><path fill="none" stroke="#fff" stroke-width="1" d="M10 6H7c-1.11 0-2 .9-2 2v8c0 1.1.89 2 2 2h8c1.1 0 2-.9 2-2v-3 M19 11V4h-7 M18.75 4.5l-8 8" /></g>');var pu=function(){function n(){}return n.prototype.getImageSource=function(n){return t.mappings.link_mark},n.prototype.getMenuOptions=function(){return{sticky:!0,align:"RIGHT",items:[{value:Tu.OPEN_LINK,text:{value:this.getLabelOpenLink()}},{value:Tu.OPEN_LINK_IN_NEW_WINDOW,text:{value:this.getLabelOpenInNewWindow()}},{value:Tu.COPY_LINK_ADDRESS,text:{value:this.getOpenCopyLinkAddress()}}]}},n.prototype.getLabelOpenLink=function(){return"Open"},n.prototype.getLabelOpenInNewWindow=function(){return"Open in new window"},n.prototype.getOpenCopyLinkAddress=function(){return"Copy link address"},n}(),gu=function(){r.set("DLink",pu)},Wu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.newStyle=function(){return new ot(null,!1,!0)},t}(ct),wu=function(){r.set("DListItemAmbient",Wu),r.set("DListItem",ct),r.set("DList",ut)},ku=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return s.BACKGROUND_COLOR_ON_BOARD},t.prototype.getOffsetX=function(){return 5},t.prototype.getOffsetY=function(){return 5},t.prototype.getPaddingTop=function(){return 5},t.prototype.getPaddingBottom=function(){return 5},t.prototype.getWidth=function(){return 200},t.prototype.getHeight=function(){return"auto"},t.prototype.getMargin=function(){return 0},t.prototype.getShadow=function(){return this.newShadowWeak()},t.prototype.getInteractive=function(){return o.BOTH},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusRoot=!0},t}(Sr),bu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return n.inDisabled?null:n.isActive?this.getBackgroundColorActive(n):n.isHovered?s.WEAK_HIGHLIGHT_COLOR:null},t.prototype.getBackgroundColorActive=function(n){return s.HIGHLIGHT_COLOR},t.prototype.getBackgroundAlpha=function(n){return n.inDisabled?s.WEAK_HIGHLIGHT_ALPHA:n.isActive?this.getBackgroundAlphaActive(n):s.WEAK_HIGHLIGHT_ALPHA},t.prototype.getBackgroundAlphaActive=function(n){return s.HIGHLIGHT_ALPHA},t.prototype.getColor=function(n){return n.inDisabled?s.COLOR:n.isActive?this.getColorActive(n):s.COLOR},t.prototype.getColorActive=function(n){return s.COLOR},t.prototype.getBorderColor=function(n){return null},t.prototype.getHeight=function(){return 30},t.prototype.getWidth=function(){return"padding"},t.prototype.getTextAlignHorizontal=function(){return W.LEFT},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t.prototype.getCornerMask=function(){return f.ALL},t.prototype.getCursor=function(n){return n.isActionable?"pointer":""},t}(Gr),yu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColorActive=function(n){return s.HIGHLIGHT_COLOR},t.prototype.getBackgroundAlphaActive=function(n){return 1},t.prototype.getColorActive=function(n){return s.ACTIVE_COLOR},t.prototype.getPaddingLeft=function(){return this.getPaddingRight()},t.prototype.getPaddingRight=function(){return 26},t}(bu),Iu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getShortcutTextMargin=function(){return this.getPaddingRight()},t.prototype.getShortcutColor=function(n){return this.getColor(n)},t.prototype.getShortcutAlpha=function(n){return.5*this.getAlpha(n)},t}(yu);t.add("menu_item_mark_check_active",14,14,'<g><polyline fill="none" stroke="#fff" stroke-width="1" points="1 6.5 5 11 13 2.5"></polyline></g>'),t.add("menu_item_mark_check_inactive",14,14,"<g></g>");var vu=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getBackgroundColorActive=function(n){return n.isHovered?s.WEAK_HIGHLIGHT_COLOR:null},r.prototype.getBackgroundAlphaActive=function(n){return s.WEAK_HIGHLIGHT_ALPHA},r.prototype.getColorActive=function(n){return s.COLOR},r.prototype.getImageSource=function(n){return n.isActive?t.mappings.menu_item_mark_check_active:t.mappings.menu_item_mark_check_inactive},r.prototype.getImageAlignWith=function(){return b.BORDER},r.prototype.getImageMarginHorizontal=function(){return 7},r}(Iu),xu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return n.isActive?15792383:null},t.prototype.getBackgroundAlpha=function(n){return n.isActive?.1:0},t.prototype.getMargin=function(){return 0},t.prototype.getWidth=function(){return"padding"},t.prototype.getHeight=function(){return"auto"},t.prototype.getCornerMask=function(){return f.ALL},t}(Sr),Cu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return"padding"},t.prototype.getHeight=function(){return"auto"},t.prototype.getCornerMask=function(){return f.ALL},t}(Sr),Bu=function(){function n(){}return n.init=function(){t.add("expandable_closed",14,14,'<g transform="scale(1, 0.7)"><polyline fill="none" stroke="#fff" stroke-width="1" points="6 16 10 10 6 4"></polyline></g>'),t.add("expandable_opened",14,14,'<g transform="scale(0.7, 1)"><polyline fill="none" stroke="#fff" stroke-width="1" points="16 6 10 10 4 6"></polyline></g>')},n.getImageOpened=function(){return t.mappings.expandable_opened},n.getImageClosed=function(){return t.mappings.expandable_closed},n}();Bu.init();var Su=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getPaddingLeft=function(){return this.getPaddingRight()},t.prototype.getPaddingRight=function(){return 26},t.prototype.getImageSource=function(n){return n.inActive?Bu.getImageOpened():Bu.getImageClosed()},t.prototype.getImageAlignWith=function(){return b.BORDER},t.prototype.getImageMarginHorizontal=function(){return 7},t}(bu),Mu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getPaddingLeft=function(){return n.prototype.getPaddingLeft.call(this)+16},t.prototype.getImageMarginHorizontal=function(){return n.prototype.getImageMarginHorizontal.call(this)+16},t}(vu);const _u=wcardinal.ui.DBaseState;var Lu=function(t){function r(){var r=t.call(this)||this;return r.M=n.getInstance().get("DLink"),r}return i(r,t),r.prototype.getImageSource=function(n){return n.is(_u.NEW_WINDOW)?this.M.getImageSource(n):null},r.prototype.getImageTintAlpha=function(n){return n.isHovered?t.prototype.getImageTintAlpha.call(this,n):0},r.prototype.getImageAlignWith=function(){return b.BORDER},r.prototype.getImageAlignHorizontal=function(){return W.RIGHT},r}(Iu),Eu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getPaddingLeft=function(){return n.prototype.getPaddingLeft.call(this)+16},t}(Lu);t.add("menu_item_mark_next",14,20,'<g><polyline fill="none" stroke="#fff" stroke-width="1" points="5 16 11 10 5 4"></polyline></g>');var Pu=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getImageSource=function(n){return t.mappings.menu_item_mark_next},r.prototype.getImageAlignWith=function(){return b.BORDER},r.prototype.getImageAlignHorizontal=function(){return W.RIGHT},r.prototype.getImageMarginHorizontal=function(){return 12},r}(yu),Fu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getPaddingLeft=function(){return n.prototype.getPaddingLeft.call(this)+16},t}(Pu),Nu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBorderColor=function(n){return s.WEAK_HIGHLIGHT_COLOR},t.prototype.getBorderAlpha=function(n){return s.WEAK_HIGHLIGHT_ALPHA},t.prototype.getHeight=function(){return 15},t.prototype.getWidth=function(){return"padding"},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t.prototype.getInteractive=function(){return o.NONE},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(bu),Au=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getPaddingLeft=function(){return n.prototype.getPaddingLeft.call(this)+16},t}(Nu),Hu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(mu),Ru=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getPaddingLeft=function(){return n.prototype.getPaddingLeft.call(this)+16},t}(Hu),zu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getPaddingLeft=function(){return n.prototype.getPaddingLeft.call(this)+16},t}(Iu),Gu=function(){r.set("DMenu",ku),r.set("DMenuItem",yu),r.set("DMenuItemCheck",vu),r.set("DMenuItemLink",Lu),r.set("DMenuItemMenu",Pu),r.set("DMenuItemSeparator",Nu),r.set("DMenuItemSpace",Hu),r.set("DMenuItemText",Iu),r.set("DMenuItemExpandableBody",Cu),r.set("DMenuItemExpandableHeader",Su),r.set("DMenuItemExpandableItemCheck",Mu),r.set("DMenuItemExpandableItemLink",Eu),r.set("DMenuItemExpandableItemMenu",Fu),r.set("DMenuItemExpandableItemSeparator",Au),r.set("DMenuItemExpandableItemSpace",Ru),r.set("DMenuItemExpandableItemText",zu),r.set("DMenuItemExpandable",xu)},Vu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(){return 16645629},t.prototype.getBorderColor=function(n){return null},t.prototype.getHeight=function(){return 30},t.prototype.getMargin=function(){return 0},t.prototype.getPaddingLeft=function(){return 5},t.prototype.getPaddingRight=function(){return 5},t.prototype.getInteractive=function(){return o.BOTH},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusRoot=!0},t}(_r),Ou=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return n.inDisabled?null:n.isActive?s.HIGHLIGHT_COLOR:n.isHovered?s.WEAK_HIGHLIGHT_COLOR:null},t.prototype.getBackgroundAlpha=function(n){return s.WEAK_HIGHLIGHT_ALPHA},t.prototype.getBorderColor=function(){return null},t.prototype.getWidth=function(){return"auto"},t.prototype.getHeight=function(){return"100%"},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t.prototype.getCornerMask=function(){return f.ALL},t.prototype.getTextAlignHorizontal=function(){return W.LEFT},t.prototype.getTextStyleClipping=function(){return!1},t}(B),ju=function(){r.set("DMenuBarItem",Ou),r.set("DMenuBar",Vu),Gu()},Yu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return s.BACKGROUND_COLOR_ON_BOARD},t.prototype.getBorderColor=function(n){return null},t.prototype.getInteractive=function(){return o.BOTH},t}(et),Xu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return"100%"},t.prototype.getHeight=function(){return"auto"},t.prototype.getPaddingTop=function(){return 16},t.prototype.getPaddingBottom=function(){return 16},t.prototype.getMargin=function(){return 0},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(Sr),Ku=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(vu),Uu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(xu),Ju=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Mu),qu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Eu),Qu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Fu),Zu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Au),$u=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Ru),ni=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(zu),ti=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Lu),ri=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Pu),ei=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Nu),ui=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Hu),ii=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Iu),oi=function(){r.set("DMenuSided",Yu),r.set("DMenuSidedContent",Xu),r.set("DMenuSidedItemCheck",Ku),r.set("DMenuSidedItemLink",ti),r.set("DMenuSidedItemMenu",ri),r.set("DMenuSidedItemSeparator",ei),r.set("DMenuSidedItemSpace",ui),r.set("DMenuSidedItemText",ii),r.set("DMenuSidedItemExpandable",Uu),r.set("DMenuSidedItemExpandableItemCheck",Ju),r.set("DMenuSidedItemExpandableItemLink",qu),r.set("DMenuSidedItemExpandableItemMenu",Qu),r.set("DMenuSidedItemExpandableItemSeparator",Zu),r.set("DMenuSidedItemExpandableItemSpace",$u),r.set("DMenuSidedItemExpandableItemText",ni)},ci=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return"100%"},t.prototype.getHeight=function(){return"100%"},t.prototype.getTextAlignHorizontal=function(){return W.CENTER},t.prototype.getInteractive=function(){return o.NONE},t.prototype.getAlpha=function(){return.2},t.prototype.getFontSize=function(){return 26},t.prototype.getFontWeight=function(){return"bold"},t.prototype.getImageTintAlpha=function(n){return.2},t.prototype.getImageAlignWith=function(){return b.TEXT},t.prototype.getImageAlignHorizontal=function(){return W.LEFT},t.prototype.getImageAlignVertical=function(){return k.MIDDLE},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(x),fi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.newTextValue=function(){return"Something went wrong"},t}(ci),li=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.newTextValue=function(){return"No items found"},t}(ci),hi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.newTextValue=function(){return"Searching"},t}(ci),ai=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getFontSize=function(){return 18},t}(ci),si=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.newTextValue=function(){return"Something went wrong"},t}(ai),di=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.newTextValue=function(){return"No items found"},t}(ai),mi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.newTextValue=function(){return"Searching"},t}(ai),Di=function(){r.set("DNote",ci),r.set("DNoteError",fi),r.set("DNoteNoItemsFound",li),r.set("DNoteSearching",hi),r.set("DNoteSmallError",si),r.set("DNoteSmallNoItemsFound",di),r.set("DNoteSmallSearching",mi)},Ti=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return"auto"},t.prototype.getMargin=function(){return 10},t.prototype.getButtonSpace=function(){return 10},t}(_r);t.add("pagination_dots",21,21,'<g><circle cx="2" cy="15" r="1.1" fill="#fff" stroke="none" /><circle cx="10.5" cy="15" r="1.1" fill="#fff" stroke="none" /><circle cx="19" cy="15" r="1.1" fill="#fff" stroke="none" /></g>');var pi=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getWidth=function(){return 30},r.prototype.getHeight=function(){return 30},r.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},r.prototype.getImageSource=function(n){return t.mappings.pagination_dots},r}(x);t.add("pagination_button_last",21,21,'<g><polyline fill="none" stroke="#fff" stroke-width="1" points="9 15 15 10 9 5"></polyline><polyline fill="none" stroke="#fff" stroke-width="1" points="5 15 11 10 5 5"></polyline></g>');var gi=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getWidth=function(){return 30},r.prototype.getImageSource=function(n){return t.mappings.pagination_button_last},r}(M);t.add("pagination_button_next",21,21,'<g><polyline fill="none" stroke="#fff" stroke-width="1" points="7 15 13 10 7 5"></polyline></g>');var Wi=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getWidth=function(){return 30},r.prototype.getImageSource=function(n){return t.mappings.pagination_button_next},r}(M),wi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return 30},t.prototype.newTextValue=function(){return 0},t.prototype.getTextStyleClipping=function(){return!1},t}(M);t.add("pagination_button_previous",21,21,'<g><polyline fill="none" stroke="#fff" stroke-width="1" points="13 15 7 10 13 5"></polyline></g>');var ki=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getWidth=function(){return 30},r.prototype.getImageSource=function(n){return t.mappings.pagination_button_previous},r}(M);t.add("pagination_button_top",21,21,'<g><polyline fill="none" stroke="#fff" stroke-width="1" points="11 15 5 10 11 5"></polyline><polyline fill="none" stroke="#fff" stroke-width="1" points="15 15 9 10 15 5"></polyline></g>');var bi=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getWidth=function(){return 30},r.prototype.getImageSource=function(n){return t.mappings.pagination_button_top},r}(M),yi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return s.HIGHLIGHT_COLOR},t.prototype.getColor=function(n){return s.ACTIVE_COLOR},t.prototype.getWidth=function(){return 30},t.prototype.getHeight=function(){return 30},t.prototype.getTextStyleClipping=function(){return!1},t.prototype.getTextAlignHorizontal=function(){return W.CENTER},t}(x),Ii=function(){r.set("DPagination",Ti),r.set("DPaginationPage",yi),r.set("DPaginationDots",pi),r.set("DPaginationButtonLast",gi),r.set("DPaginationButtonNext",Wi),r.set("DPaginationButtonPage",wi),r.set("DPaginationButtonPrevious",ki),r.set("DPaginationButtonTop",bi)},vi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return"100%"},t.prototype.getBorderColor=function(n){return null},t.prototype.getInteractive=function(){return o.BOTH},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(D),xi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return 16777215},t.prototype.getBackgroundAlpha=function(n){return 0},t.prototype.getWidth=function(){return 13},t.prototype.getHeight=function(){return 13},t.prototype.getInteractive=function(){return o.BOTH},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t.prototype.getFadeOutDelay=function(){return 1500},t}(D),Ci=function(n){function t(){var t=null!==n&&n.apply(this,arguments)||this;return t.BORDER_COLOR=a.darken(s.WEAK_HIGHLIGHT_COLOR,.25),t}return i(t,n),t.prototype.getBackgroundColor=function(n){return null},t.prototype.getBackgroundAlpha=function(n){return 1},t.prototype.getBorderColor=function(n){return this.BORDER_COLOR},t.prototype.getBorderAlpha=function(n){return n.inDisabled?.25:n.isHovered||n.isGesturing?.75:.5},t.prototype.getBorderWidth=function(n){return 3},t.prototype.getBorderAlign=function(n){return.5},t.prototype.getWidth=function(){return 13},t.prototype.getHeight=function(){return 13},t.prototype.getThumbMinimumLength=function(){return 16},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(D),Bi=function(){r.set("DScrollBar",xi),r.set("DScrollBarThumb",Ci)},Si=function(){r.set("DPane",et),r.set("DContent",vi),Bi()};const Mi=wcardinal.ui.isString;t.add("dropdown_mark",20,14,'<g><polyline fill="none" stroke="#fff" stroke-width="1" points="16 5 10 11 4 5"></polyline></g>');var _i=function(n){function r(){return n.call(this,s.BACKGROUND_COLOR_ON_BOARD)||this}return i(r,n),r.prototype.getSecondaryImageAlignHorizontal=function(){return W.RIGHT},r.prototype.getSecondaryImageAlignWith=function(){return b.PADDING},r.prototype.getSecondaryImageMarginHorizontal=function(){return-20},r.prototype.getPaddingLeft=function(){return 25},r.prototype.getPaddingRight=function(){return 25},r.prototype.getSecondaryImageSource=function(n){return t.mappings.dropdown_mark},r}(C),Li=function(n){if(n){var t=n.text;if(Mi(t))return t;if(null!=t){var r=t(n.state);if(null!=r)return r}}return""},Ei=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextFormatter=function(){return Li},t.prototype.newTextValue=function(){return null},t}(_i),Pi=function(n){if(n){for(var t="",r="",e=0,u=n.length;e<u;++e){var i=n[e],o=i.text;if(Mi(o))t+=r+o,r=", ";else if(null!=o){var c=o(i.state);null!=c&&(t+=r+c,r=", ")}}return t}return""},Fi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextFormatter=function(){return Pi},t.prototype.newTextValue=function(){return[]},t}(_i),Ni=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.newTextValue=function(){return""},t}(_i),Ai=function(){r.set("DDropdown",Ni)},Hi=function(){r.set("DSelectMultiple",Fi),r.set("DSelect",Ei),Ai()},Ri=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getInteractive=function(){return o.CHILDREN},t.prototype.getOutlineColor=function(n){return null},t}(D),zi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getHeight=function(){return 33},t.prototype.getWidth=function(){return 300},t.prototype.getX=function(){return"CENTER"},t}(Ri),Gi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getHeight=function(){return 15},t.prototype.getWidth=function(){return 30},t.prototype.getTextAlignHorizontal=function(){return W.CENTER},t.prototype.getTextAlignVertical=function(){return k.MIDDLE},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(v),Vi=function(){function n(){}return n.getBackgroundColor=function(n,t){return n.isActive||t?n.inDisabled?this.BACKGROUND_COLOR:n.isPressed&&n.isHovered?this.BACKGROUND_COLOR_ACTIVE_PRESSED:n.isPressed||n.isHovered?this.BACKGROUND_COLOR_ACTIVE_HOVERED:this.BACKGROUND_COLOR_ACTIVE:n.inDisabled?this.BACKGROUND_COLOR_DISABLED:n.isPressed&&n.isHovered?this.BACKGROUND_COLOR_PRESSED:n.isPressed||n.isHovered?this.BACKGROUND_COLOR_HOVERED:this.BACKGROUND_COLOR},n.BACKGROUND_COLOR_ACTIVE=s.HIGHLIGHT_COLOR,n.BACKGROUND_COLOR_ACTIVE_HOVERED=a.darken(n.BACKGROUND_COLOR_ACTIVE,.1),n.BACKGROUND_COLOR_ACTIVE_PRESSED=a.darken(n.BACKGROUND_COLOR_ACTIVE,.2),n.BACKGROUND_COLOR=s.WEAK_HIGHLIGHT_COLOR,n.BACKGROUND_COLOR_HOVERED=a.darken(n.BACKGROUND_COLOR,.1),n.BACKGROUND_COLOR_PRESSED=a.darken(n.BACKGROUND_COLOR,.2),n.BACKGROUND_COLOR_DISABLED=a.blend(n.BACKGROUND_COLOR,s.BACKGROUND_COLOR_ON_BOARD,.5),n}();t.add("slider_thumb",16,16,'<circle cx="8" cy="8" r="7.5" stroke="none" fill="#ffffff" />');var Oi=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getX=function(){return"CENTER"},r.prototype.getY=function(){return"CENTER"},r.prototype.getWidth=function(){return 16},r.prototype.getHeight=function(){return 16},r.prototype.getBackgroundColor=function(n){return null},r.prototype.getBorderColor=function(n){return null},r.prototype.getImageSource=function(n){return t.mappings.slider_thumb},r.prototype.getImageTintColor=function(n){return Vi.getBackgroundColor(n,!0)},r.prototype.getImageTintAlpha=function(n){return 1},r.prototype.getImageAlignHorizontal=function(){return W.CENTER},r.prototype.getOutlineColor=function(n){return null},r}(B),ji=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return Vi.getBackgroundColor(n)},t.prototype.getBorderColor=function(n){return null},t.prototype.getOutlineColor=function(t){return n.prototype.getOutlineColorNonActive.call(this,t)},t.prototype.getOutlineOffset=function(t){return n.prototype.getOutlineOffsetNonActive.call(this,t)},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(B),Yi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getX=function(){return 0},t.prototype.getY=function(){return"CENTER"},t.prototype.getWidth=function(){return"100%"},t.prototype.getHeight=function(){return 5},t}(ji),Xi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getX=function(){return"CENTER"},t.prototype.getY=function(){return 0},t.prototype.getWidth=function(){return 5},t.prototype.getHeight=function(){return"100%"},t}(ji),Ki=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getX=function(){return"CENTER"},t.prototype.getY=function(){return"CENTER"},t.prototype.getWidth=function(){return 2*this.getLineHeight()},t.prototype.getHeight=function(){return this.getLineHeight()},t.prototype.getBackgroundColor=function(n){return n.inDisabled?11184810:s.HIGHLIGHT_COLOR},t.prototype.getBorderColor=function(n){return null},t.prototype.getColor=function(n){return s.ACTIVE_COLOR},t.prototype.getTextAlignHorizontal=function(){return W.CENTER},t.prototype.getTextAlignVertical=function(){return k.TOP},t.prototype.getPrecision=function(){return 0},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(v),Ui=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getHeight=function(){return 322},t.prototype.getWidth=function(){return 35},t}(Ri),Ji=function(){r.set("DSlider",Ri),r.set("DSliderValue",Ki),r.set("DSliderLabel",Gi),r.set("DSliderThumb",Oi),r.set("DSliderVertical",Ui),r.set("DSliderHorizontal",zi),r.set("DSliderTrack",ji),r.set("DSliderTrackVertical",Xi),r.set("DSliderTrackHorizontal",Yi)},qi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(){return s.BACKGROUND_COLOR},t.prototype.getBorderColor=function(n){return null},t.prototype.getMargin=function(){return 0},t.prototype.getInteractive=function(){return o.BOTH},t}(et),Qi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return"100%"},t.prototype.getCornerMask=function(){return f.TOP},t.prototype.getBorderColor=function(n){return null},t.prototype.getRowHeight=function(){return 30},t.prototype.getInteractive=function(){return o.BOTH},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(D);const Zi=wcardinal.ui.DTableState;var $i=function(){function n(){}var t;return n.getBackgroundColor=function(n){return n.inDisabled?n.is(Zi.FROZEN)?n.onAlternated?this.BACKGROUND_COLOR_FROZEN_ODD:this.BACKGROUND_COLOR_FROZEN_EVEN:null:n.isInvalid?s.INVALID_BLENDED_ON_BOARD:n.underActive?s.HIGHLIGHT_BLENDED_ON_BOARD:n.onHovered||n.isHovered?s.WEAK_HIGHLIGHT_BLENDED_ON_BOARD:n.is(Zi.FROZEN)?n.onAlternated?this.BACKGROUND_COLOR_FROZEN_ODD:this.BACKGROUND_COLOR_FROZEN_EVEN:null},n.getBackgroundAlpha=function(n){return 1},n.getBorderColor=function(n){return n.is(Zi.FROZEN_END)?this.BORDER_COLOR_FROZEN:this.BORDER_COLOR},n.getBorderMask=function(n){return n.is(Zi.END)?c.ALL:c.NOT_RIGHT},n.getColor=function(n){return s.COLOR},n.getAlpha=function(n){return n.inEnabled?1:0},n.getImageTintColor=function(n,t){return n.inDisabled||n.inReadOnly||!n.isActive&&!t?s.WEAK_HIGHLIGHT_COLOR:s.HIGHLIGHT_COLOR},n.getHeight=function(){return"padding"},n.getCornerMask=function(){return f.ALL},t=n,n.BACKGROUND_COLOR=s.BACKGROUND_COLOR_ON_BOARD,n.BACKGROUND_COLOR_FROZEN_EVEN=a.darken(t.BACKGROUND_COLOR,.01),n.BACKGROUND_COLOR_FROZEN_ODD=a.darken(t.BACKGROUND_COLOR_FROZEN_EVEN,.01),n.BORDER_COLOR=a.darken(t.BACKGROUND_COLOR,.035),n.BORDER_COLOR_FROZEN=a.darken(t.BORDER_COLOR,.035),n}(),no=function(){function n(){}return n.init=function(){t.add("action_mark",21,21,'<g transform="scale(0.875,0.875)"><path d="M14.06 9.02l.92.92L5.92 19H5v-.92l9.06-9.06M17.66 3c-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29zm-3.6 3.19L3 17.25V21h3.75L17.81 9.94l-3.75-3.75z" fill="#fff"/></g>')},n.getImageSource=function(n){return t.mappings.action_mark},n.getImageTintColor=function(n){return $i.getImageTintColor(n,!0)},n}(),to=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t.prototype.isSyncEnabled=function(){return!0},t.prototype.newTextValue=function(){return null},t}(B);no.init();var ro=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getImageTintColor=function(n){return no.getImageTintColor(n)},t.prototype.getImageSource=function(n){return no.getImageSource(n)},t.prototype.isSyncEnabled=function(){return!1},t}(to);no.init();var eo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t.prototype.getSecondaryImageSource=function(n){return null},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t.prototype.getImageTintColor=function(n){return no.getImageTintColor(n)},t.prototype.getImageSource=function(n){return no.getImageSource(n)},t}(Ni),uo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t.prototype.isSyncEnabled=function(){return!0},t.prototype.newTextValue=function(){return null},t}(B);no.init();var io=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getImageTintColor=function(n){return no.getImageTintColor(n)},t.prototype.getImageSource=function(n){return no.getImageSource(n)},t.prototype.isSyncEnabled=function(){return!1},t}(uo),oo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t.prototype.getImageTintColor=function(n){return $i.getImageTintColor(n)},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t.prototype.newTextValue=function(){},t}(x),co=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getCursor=function(n){return n.isActionable?"pointer":""},t}(oo),fo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getImageTintColor=function(n){return $i.getImageTintColor(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t}(E),lo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t}(H),ho=function(n){return an.format(n)},ao=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t.prototype.getTextFormatter=function(){return ho},t.prototype.newTextValue=function(){return new Date},t}(B),so=function(n,t){return Fn.format(n,t.getDatetimeMask())},mo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t.prototype.getTextFormatter=function(){return so},t.prototype.newTextValue=function(){return new Date},t}(B),Do=function(n){return String(Number(n)+1)},To=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t.prototype.getTextFormatter=function(){return Do},t.prototype.newTextValue=function(){return 0},t}(x),po=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextAlignHorizontal=function(){return W.RIGHT},t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t}(je),go=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextAlignHorizontal=function(){return W.RIGHT},t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t}(Je),Wo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t}(Qe),wo=function(){function n(){}return n.init=function(){Bu.init()},n.getImageSource=function(n){return n.is(Zi.HAS_CHILDREN)?n.is(Zi.OPENED)?Bu.getImageOpened():Bu.getImageClosed():null},n}();wo.init();var ko=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getBackgroundColor=function(n){return null},t.prototype.getBorderColor=function(n){return null},t.prototype.getLevelPadding=function(n){return 24+20*n},t.prototype.getInteractive=function(){return o.CHILDREN},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1,t.isFocusReverse=!0},t}(D),bo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getX=function(){return"padding"},t.prototype.getY=function(){return"padding"},t.prototype.getWidth=function(){return"padding"},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t.prototype.getPaddingLeft=function(){return 0},t}(Qe),yo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getX=function(){return"padding"},t.prototype.getY=function(){return"padding"},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getBackgroundColor=function(n){return null},t.prototype.getBackgroundAlpha=function(n){return 1},t.prototype.getBorderColor=function(n){return null},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t.prototype.getImageAlignWith=function(){return b.BORDER},t.prototype.getImageAlignHorizontal=function(){return W.RIGHT},t.prototype.getImageSource=function(n){return wo.getImageSource(n)},t.prototype.getImageTintColor=function(n){return this.getColor(n)},t.prototype.getImageTintAlpha=function(n){return.5*this.getAlpha(n)},t}(C),Io=function(t){function r(){var r=t.call(this)||this;return r.M=n.getInstance().get("DLink"),r}return i(r,t),r.prototype.getImageTintColor=function(n){return $i.getImageTintColor(n,!0)},r.prototype.getImageSource=function(n){return this.M.getImageSource(n)},r}(co),vo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t.prototype.getSecondaryImageSource=function(n){return null},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t}(Ei),xo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t.prototype.getSecondaryImageSource=function(n){return null},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t}(Fi),Co=function(n,t){return ht.format(n,t.getDatetimeMask())},Bo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t.prototype.getTextFormatter=function(){return Co},t.prototype.newTextValue=function(){return new Date},t}(B);wo.init();var So=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getLevelPadding=function(n){return 24+20*n-this.getPaddingLeft()},t.prototype.getImageAlignWith=function(){return b.PADDING},t.prototype.getImageMarginHorizontal=function(){return-19},t.prototype.getImageSource=function(n){return wo.getImageSource(n)},t.prototype.getImageTintColor=function(n){return this.getColor(n)},t.prototype.getImageTintAlpha=function(n){return.5*this.getAlpha(n)},t}(co),Mo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBorderColor=function(n){return null},t.prototype.getCornerMask=function(){return f.ALL},t.prototype.getMargin=function(){return 0},t.prototype.getInteractive=function(){return o.BOTH},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusReverse=!0},t}(_r),_o=function(n){function t(){var t=null!==n&&n.apply(this,arguments)||this;return t.BACKGROUND_COLOR_EVEN=s.BACKGROUND_COLOR_ON_BOARD,t.BACKGROUND_COLOR_ODD=a.darken(s.BACKGROUND_COLOR_ON_BOARD,.01),t}return i(t,n),t.prototype.getBackgroundColor=function(n){return n.inDisabled?n.isAlternated?this.BACKGROUND_COLOR_ODD:this.BACKGROUND_COLOR_EVEN:n.isActive?s.HIGHLIGHT_BLENDED_ON_BOARD:n.isHovered?s.WEAK_HIGHLIGHT_BLENDED_ON_BOARD:n.isAlternated?this.BACKGROUND_COLOR_ODD:this.BACKGROUND_COLOR_EVEN},t.prototype.getWidth=function(){return"100%"},t}(Mo),Lo=function(n){function t(){var t=null!==n&&n.apply(this,arguments)||this;return t.BACKGROUND_COLOR=a.darken(s.BACKGROUND_COLOR_ON_BOARD,.02),t.BORDER_COLOR=a.darken(s.BACKGROUND_COLOR_ON_BOARD,.055),t}return i(t,n),t.prototype.getBackgroundColor=function(n){return n.inDisabled?null:this.BACKGROUND_COLOR},t.prototype.getBorderColor=function(n){return this.BORDER_COLOR},t.prototype.getBorderMask=function(n){return c.NOT_BOTTOM},t.prototype.getWidth=function(){return"100%"},t.prototype.getHeight=function(){return 30},t}(Mo),Eo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Lo);t.add("sorted_descending",16,16,'<g transform="scale(0.875,0.875)"><path d="M3 12l5-5 5 5H3z" fill="#fff"/></g>'),t.add("sorted_ascending",16,16,'<g transform="scale(0.875,0.875)"><path d="M3 8l5 5 5-5H3z" fill="#fff"/></g>');var Po=function(n){function r(){var t=null!==n&&n.apply(this,arguments)||this;return t.BACKGROUND_COLOR=a.darken(s.BACKGROUND_COLOR_ON_BOARD,.02),t.BACKGROUND_COLOR_HOVERED=a.darken(t.BACKGROUND_COLOR,.017),t.BACKGROUND_COLOR_PRESSED=a.darken(t.BACKGROUND_COLOR,.034),t.BACKGROUND_COLOR_FROZEN=a.darken(t.BACKGROUND_COLOR,.02),t.BORDER_COLOR=a.darken(s.BACKGROUND_COLOR_ON_BOARD,.055),t.BORDER_COLOR_FROZEN=a.darken(t.BORDER_COLOR,.055),t}return i(r,n),r.prototype.getBackgroundColor=function(n){return n.inDisabled?n.is(Zi.FROZEN)?this.BACKGROUND_COLOR_FROZEN:null:n.isPressed?this.BACKGROUND_COLOR_PRESSED:n.isHovered?this.BACKGROUND_COLOR_HOVERED:n.is(Zi.FROZEN)?this.BACKGROUND_COLOR_FROZEN:null},r.prototype.getBackgroundAlpha=function(n){return 1},r.prototype.getBorderColor=function(n){return n.is(Zi.FROZEN_END)?this.BORDER_COLOR_FROZEN:this.BORDER_COLOR},r.prototype.getBorderMask=function(n){return n.is(Zi.END)?c.ALL:c.NOT_RIGHT},r.prototype.getTextAlignHorizontal=function(){return W.CENTER},r.prototype.getCornerMask=function(){return f.ALL},r.prototype.getHeight=function(){return"padding"},r.prototype.getPaddingLeft=function(){return 10},r.prototype.getPaddingRight=function(){return 10},r.prototype.newTextValue=function(){return null},r.prototype.getImageTintColor=function(n,t){return n.inDisabled||n.inReadOnly||!n.isActive&&!t?s.WEAK_HIGHLIGHT_COLOR:s.HIGHLIGHT_COLOR},r.prototype.getSecondaryImageTintColor=function(t){return t.is(Zi.CHECKABLE)?L.getImageTintColor(t):n.prototype.getSecondaryImageTintColor.call(this,t)},r.prototype.getSecondaryImageSource=function(n){return n.is(Zi.CHECKABLE)?L.getImageSource(n):null},r.prototype.getSecondaryImageAlignHorizontal=function(){return W.LEFT},r.prototype.getSecondaryImageAlignVertical=function(){return k.MIDDLE},r.prototype.getSecondaryImageAlignWith=function(){return b.TEXT},r.prototype.getTertiaryImageSource=function(n){return n.is(Zi.SORTED_ASCENDING)?t.mappings.sorted_ascending:n.is(Zi.SORTED_DESCENDING)?t.mappings.sorted_descending:null},r.prototype.getTertiaryImageTintColor=function(t){return n.prototype.getImageTintColor.call(this,t)},r.prototype.getTertiaryImageAlignHorizontal=function(){return W.RIGHT},r.prototype.getTertiaryImageAlignWith=function(){return b.BORDER},r.prototype.getCursor=function(n){return n.isActionable&&(n.is(Zi.CHECKABLE)||n.is(Zi.SORTABLE))?"pointer":""},r}(Gr),Fo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Po),No=function(){r.set("DTableBodyCellActionDialog",ro),r.set("DTableBodyCellActionMenu",eo),r.set("DTableBodyCellActionPromise",io),r.set("DTableBodyCellButton",co),r.set("DTableBodyCellCheck",fo),r.set("DTableBodyCellColor",lo),r.set("DTableBodyCellDate",ao),r.set("DTableBodyCellDatetime",mo),r.set("DTableBodyCellIndex",To),r.set("DTableBodyCellInputInteger",po),r.set("DTableBodyCellInputReal",go),r.set("DTableBodyCellInputText",Wo),r.set("DTableBodyCellInputTreeMarker",yo),r.set("DTableBodyCellInputTreeInput",bo),r.set("DTableBodyCellInputTree",ko),r.set("DTableBodyCellLink",Io),r.set("DTableBodyCellSelectDialog",to),r.set("DTableBodyCellSelectMenu",vo),r.set("DTableBodyCellSelectMultiple",xo),r.set("DTableBodyCellSelectPromise",uo),r.set("DTableBodyCellText",oo),r.set("DTableBodyCellTree",So),r.set("DTableBodyCellTime",Bo),r.set("DTableBodyRow",_o),r.set("DTableBody",Qi),r.set("DTableCategoryCell",Fo),r.set("DTableCategory",Eo),r.set("DTableHeaderCell",Po),r.set("DTableHeader",Lo),r.set("DTableRow",Mo),r.set("DTable",qi),P(),$(),Pn(),zn(),Ye(),qe(),nu(),lt(),Gu()},Ao=function(){r.set("DText",xn)};wo.init();var Ho=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getSecondaryImageSource=function(n){return wo.getImageSource(n)},t.prototype.getSecondaryImageTintColor=function(n){return this.getColor(n)},t.prototype.getSecondaryImageTintAlpha=function(n){return.5*this.getAlpha(n)},t.prototype.getSecondaryImageAlignWith=function(){return b.PADDING},t.prototype.getSecondaryImageMarginHorizontal=function(){return-19},t}(ot),Ro=function(n){function t(){var t=n.call(this)||this;return t.S=t.newStyle(),t}return i(t,n),t.prototype.newStyle=function(){return new Ho(null,!0,!1)},t.prototype.getBackgroundColor=function(n){return s.BACKGROUND_COLOR_ON_BOARD},t}(et),zo=function(n){function t(){var t=n.call(this)||this;return t.S=t.newStyle(),t}return i(t,n),t.prototype.newStyle=function(){return new Ho(null,!0,!1)},t.prototype.getBackgroundColor=function(n){return this.S.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return this.S.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return this.S.getBorderColor(n)},t.prototype.getBorderMask=function(n){return this.S.getBorderMask(n)},t.prototype.getColor=function(n){return this.S.getColor(n)},t.prototype.getAlpha=function(n){return this.S.getAlpha(n)},t.prototype.getHeight=function(){return this.S.getHeight()},t.prototype.getCornerMask=function(){return this.S.getCornerMask()},t.prototype.getImageTintColor=function(n){return this.S.getImageTintColor(n)},t.prototype.getCursor=function(n){return this.S.getCursor(n)},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t.prototype.newTextValue=function(){},t.prototype.getWidth=function(){return"padding"},t.prototype.getLevelPadding=function(n){return 24+20*n-this.getPaddingLeft()},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isDisabled=!0},t}(x),Go=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getCursor=function(n){return n.isActionable?"pointer":""},t}(zo);wo.init();var Vo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getSecondaryImageSource=function(n){return this.S.getSecondaryImageSource(n)},t.prototype.getSecondaryImageTintColor=function(n){return this.S.getSecondaryImageTintColor(n)},t.prototype.getSecondaryImageTintAlpha=function(n){return this.S.getSecondaryImageTintAlpha(n)},t.prototype.getSecondaryImageAlignWith=function(){return this.S.getSecondaryImageAlignWith()},t.prototype.getSecondaryImageMarginHorizontal=function(){return this.S.getSecondaryImageMarginHorizontal()},t}(Go),Oo=function(){r.set("DTree",Ro),r.set("DTreeItemText",zo),r.set("DTreeItemButton",Go),r.set("DTreeItemNonEditable",Vo)};const jo=wcardinal.ui.UtilGestureModifier;var Yo=function(){function n(){}return n.prototype.isWheelZoomEnabled=function(){return!0},n.prototype.getWheelZoomSpeed=function(){return.004},n.prototype.getWheelZoomModifier=function(){return jo.NOT_NONE},n.prototype.isWheelTranslationEnabled=function(){return!0},n.prototype.getWheelTranslationSpeed=function(){return 2.24},n.prototype.getWheelTranslationModifier=function(){return jo.NONE},n.prototype.isDblClickZoomEnabled=function(){return!0},n.prototype.getDblClickZoomSpeed=function(){return 2},n.prototype.getDblClickZoomModifier=function(){return jo.NONE},n.prototype.getDblClickZoomDuration=function(){return 333},n.prototype.getZoomMin=function(){return.05},n.prototype.getZoomMax=function(){return 20},n.prototype.getZoomKeepRatio=function(){return!0},n.prototype.getGestureMode=function(){return rt.ON},n.prototype.getGestureModifier=function(){return jo.NONE},n.prototype.getGestureDuration=function(){return 1},n}(),Xo=function(){e(),T(),g(),Tt(),r.set("DView",Yo),Wt(),r.set("DChart",wt),r.set("DChartAxisX",Ct),r.set("DChartAxisXDatetime",St),r.set("DChartAxisY",Mt),r.set("DChartCoordinate",_t),r.set("DChartCoordinateTick",Lt),r.set("DChartCoordinateTransform",Et),r.set("DChartLegend",Pt),r.set("DChartLegendItem",Ft),r.set("DChartOverview",Nt),r.set("DChartPlotArea",At),r.set("DChartSelectionGridlineX",Gt),r.set("DChartSelectionGridlineY",Vt),r.set("DChartSelectionMarker",jt),vr(),$t(),de(),Te(),r.set("DHtmlElement",we),ke(),du(),Du(),gu(),wu(),Oo(),ju(),oi(),Gu(),Di(),Si(),Ii(),on(),Q(),Ln(),_n(),Mn(),Hi(),No(),Ao(),Ji()},Ko={__proto__:null,loadThemeWhiteAll:Xo,loadThemeWhiteBase:T,loadThemeWhiteBoard:g,loadThemeWhiteButtonAll:Tt,loadThemeWhiteButtonAmbient:_,loadThemeWhiteButtonCheckRight:N,loadThemeWhiteButtonCheck:P,loadThemeWhiteButtonColorGradient:fn,loadThemeWhiteButtonColor:$,loadThemeWhiteButtonDanger:hn,loadThemeWhiteButtonDate:Pn,loadThemeWhiteButtonDatetime:zn,loadThemeWhiteButtonFile:Vn,loadThemeWhiteButtonLink:jn,loadThemeWhiteButtonPrimary:Xn,loadThemeWhiteButtonRadioRight:qn,loadThemeWhiteButtonRadio:Un,loadThemeWhiteButtonSecondary:Zn,loadThemeWhiteButtonTime:Dt,loadThemeWhiteButton:S,loadThemeWhiteCanvasContainer:Wt,loadThemeWhiteDiagramEditor:vr,loadThemeWhiteDiagram:$t,loadThemeWhiteDialogAll:de,loadThemeWhiteDialogColorGradient:cn,loadThemeWhiteDialogColor:Z,loadThemeWhiteDialogConfirmDelete:Yr,loadThemeWhiteDialogConfirmDiscard:Kr,loadThemeWhiteDialogConfirm:Or,loadThemeWhiteDialogDate:En,loadThemeWhiteDialogDatetime:Rn,loadThemeWhiteDialogFitted:se,loadThemeWhiteDialogInputBoolean:qr,loadThemeWhiteDialogInputInteger:Zr,loadThemeWhiteDialogInputReal:ne,loadThemeWhiteDialogInputText:re,loadThemeWhiteDialogLayered:Rr,loadThemeWhiteDialogMessage:ue,loadThemeWhiteDialogProcessing:fe,loadThemeWhiteDialogSaveAs:he,loadThemeWhiteDialogSelect:lt,loadThemeWhiteDialogTime:mt,loadThemeWhiteDialog:xr,loadThemeWhiteDropdown:Ai,loadThemeWhiteExpandable:Te,loadThemeWhiteImage:ke,loadThemeWhiteInputAll:du,loadThemeWhiteInputAndLabel:ye,loadThemeWhiteInputBoolean:Ce,loadThemeWhiteInputInteger:Ye,loadThemeWhiteInputLabel:Ke,loadThemeWhiteInputReal:qe,loadThemeWhiteInputSearch:$e,loadThemeWhiteInputTextArea:su,loadThemeWhiteInputText:nu,loadThemeWhiteLayout:Du,loadThemeWhiteLink:gu,loadThemeWhiteList:wu,loadThemeWhiteTree:Oo,loadThemeWhiteMenuBar:ju,loadThemeWhiteMenuSided:oi,loadThemeWhiteMenu:Gu,loadThemeWhiteNote:Di,loadThemeWhitePane:Si,loadThemeWhitePagination:Ii,loadThemeWhitePickerColorGradient:on,loadThemeWhitePickerColor:Q,loadThemeWhitePickerDate:Ln,loadThemeWhitePickerDatetime:_n,loadThemeWhitePickerTime:Mn,loadThemeWhiteScrollBar:Bi,loadThemeWhiteSelect:Hi,loadThemeWhiteShapeActionValue:Ir,loadThemeWhiteShape:Zt,loadThemeWhiteSlider:Ji,loadThemeWhiteTable:No,loadThemeWhiteText:Ao,loadThemeWhite:e,DThemeWhiteAtlas:t,DThemeWhiteBase:D,DThemeWhiteBoard:p,DThemeWhiteButtonAmbient:M,DThemeWhiteButtonBase:C,DThemeWhiteButtonCheck:E,DThemeWhiteButtonCheckRight:F,DThemeWhiteButtonChecks:L,DThemeWhiteButtonColorGradient:rn,DThemeWhiteButtonColor:H,DThemeWhiteButtonDanger:ln,DThemeWhiteButtonDate:dn,DThemeWhiteButtonDatetime:An,DThemeWhiteButtonFile:Gn,DThemeWhiteButtonLink:On,DThemeWhiteButtonPrimary:Yn,DThemeWhiteButtonRadioRight:Jn,DThemeWhiteButtonRadio:Kn,DThemeWhiteButtonSecondary:Qn,DThemeWhiteButtonTime:st,DThemeWhiteButton:B,DThemeWhiteCanvasContainer:gt,DThemeWhiteCanvas:pt,DThemeWhiteChartAxisBase:xt,DThemeWhiteChartAxisXDatetime:St,DThemeWhiteChartAxisX:Ct,DThemeWhiteChartAxisY:Mt,DThemeWhiteChartCoordinateTick:Lt,DThemeWhiteChartCoordinateTransform:Et,DThemeWhiteChartCoordinate:_t,DThemeWhiteChartLegendItem:Ft,DThemeWhiteChartLegend:Pt,DThemeWhiteChartOverview:Nt,DThemeWhiteChartPlotArea:At,DThemeWhiteChart:wt,DThemeWhiteContent:vi,DThemeWhiteDiagramBase:Yt,DThemeWhiteDiagramCanvasBase:Kt,DThemeWhiteDiagramCanvasEditor:tr,DThemeWhiteDiagramCanvas:Ut,DThemeWhiteDiagramEditor:rr,DThemeWhiteDiagram:Xt,DThemeWhiteDialogColorGradient:en,DThemeWhiteDialogColor:U,DThemeWhiteDialogConfirmDelete:jr,DThemeWhiteDialogConfirmDiscard:Xr,DThemeWhiteDialogConfirmMessage:Vr,DThemeWhiteDialogConfirm:zr,DThemeWhiteDialogDate:mn,DThemeWhiteDialogDatetime:Hn,DThemeWhiteDialogFittedContent:ae,DThemeWhiteDialogFitted:K,DThemeWhiteDialogInputBoolean:Jr,DThemeWhiteDialogInputInteger:Qr,DThemeWhiteDialogInputReal:$r,DThemeWhiteDialogInputText:te,DThemeWhiteDialogInput:Ur,DThemeWhiteDialogLayeredContent:Mr,DThemeWhiteDialogLayeredFooter:Lr,DThemeWhiteDialogLayeredHeaderButtonClose:Fr,DThemeWhiteDialogLayeredHeaderSeparator:Hr,DThemeWhiteDialogLayeredHeader:Er,DThemeWhiteDialogLayered:X,DThemeWhiteDialogMessage:ee,DThemeWhiteDialogProcessingMessage:ce,DThemeWhiteDialogProcessing:oe,DThemeWhiteDialogSaveAs:le,DThemeWhiteDialogSelectListItem:ft,DThemeWhiteDialogSelectList:it,DThemeWhiteDialogSelect:tt,DThemeWhiteDialogTime:dt,DThemeWhiteDialog:Y,DThemeWhiteDropdown:Ni,DThemeWhiteExpandableHeader:De,DThemeWhiteExpandable:me,DThemeWhiteFont:d,DThemeWhiteHtmlElement:we,DThemeWhiteImageBase:x,DThemeWhiteImage:Gr,DThemeWhiteInputAndLabel:be,DThemeWhiteInputBooleanButtonOff:ve,DThemeWhiteInputBooleanButtonOn:xe,DThemeWhiteInputBoolean:Ie,DThemeWhiteInputInput:Ge,DThemeWhiteInputInteger:je,DThemeWhiteInputLabel:Xe,DThemeWhiteInputNumber:Ve,DThemeWhiteInputReal:Je,DThemeWhiteInputSearch:Ze,DThemeWhiteInputTextArea:au,DThemeWhiteInputText:Qe,DThemeWhiteInput:Me,DThemeWhiteLayoutHorizontal:_r,DThemeWhiteLayoutSpace:mu,DThemeWhiteLayoutVertical:Sr,DThemeWhiteLayout:Br,DThemeWhiteLink:pu,DThemeWhiteListItemAmbient:Wu,DThemeWhiteListItem:ct,DThemeWhiteListItems:ot,DThemeWhiteList:ut,DThemeWhiteMenuBarItem:Ou,DThemeWhiteMenuBar:Vu,DThemeWhiteMenuItemBase:bu,DThemeWhiteMenuItemCheck:vu,DThemeWhiteMenuItemExpandableBody:Cu,DThemeWhiteMenuItemExpandableHeader:Su,DThemeWhiteMenuItemExpandableItemCheck:Mu,DThemeWhiteMenuItemExpandableItemLink:Eu,DThemeWhiteMenuItemExpandableItemMenu:Fu,DThemeWhiteMenuItemExpandableItemSeparator:Au,DThemeWhiteMenuItemExpandableItemSpace:Ru,DThemeWhiteMenuItemExpandableItemText:zu,DThemeWhiteMenuItemExpandable:xu,DThemeWhiteMenuItemLink:Lu,DThemeWhiteMenuItemMenu:Pu,DThemeWhiteMenuItemSeparator:Nu,DThemeWhiteMenuItemSpace:Hu,DThemeWhiteMenuItemText:Iu,DThemeWhiteMenuItem:yu,DThemeWhiteMenuSidedContent:Xu,DThemeWhiteMenuSidedItemCheck:Ku,DThemeWhiteMenuSidedItemExpandableItemCheck:Ju,DThemeWhiteMenuSidedItemExpandableItemLink:qu,DThemeWhiteMenuSidedItemExpandableItemMenu:Qu,DThemeWhiteMenuSidedItemExpandableItemSeparator:Zu,DThemeWhiteMenuSidedItemExpandableItemSpace:$u,DThemeWhiteMenuSidedItemExpandableItemText:ni,DThemeWhiteMenuSidedItemExpandable:Uu,DThemeWhiteMenuSidedItemLink:ti,DThemeWhiteMenuSidedItemMenu:ri,DThemeWhiteMenuSidedItemSeparator:ei,DThemeWhiteMenuSidedItemSpace:ui,DThemeWhiteMenuSidedItemText:ii,DThemeWhiteMenuSided:Yu,DThemeWhiteMenu:ku,DThemeWhiteNoteError:fi,DThemeWhiteNoteNoItemsFound:li,DThemeWhiteNoteSearching:hi,DThemeWhiteNoteSmallError:si,DThemeWhiteNoteSmallNoItemsFound:di,DThemeWhiteNoteSmallSearching:mi,DThemeWhiteNoteSmall:ai,DThemeWhiteNote:ci,DThemeWhitePaginationButtonLast:gi,DThemeWhitePaginationButtonNext:Wi,DThemeWhitePaginationButtonPage:wi,DThemeWhitePaginationButtonPrevious:ki,DThemeWhitePaginationButtonTop:bi,DThemeWhitePaginationDots:pi,DThemeWhitePaginationPage:yi,DThemeWhitePagination:Ti,DThemeWhitePane:et,DThemeWhitePickerColorGradient:un,DThemeWhitePickerColor:q,DThemeWhitePickerDate:bn,DThemeWhitePickerDatetimeButtonBack:yn,DThemeWhitePickerDatetimeButtonDate:In,DThemeWhitePickerDatetimeButtonNext:vn,DThemeWhitePickerDatetimeLabelDate:Bn,DThemeWhitePickerDatetimeLabel:Cn,DThemeWhitePickerDatetimeSpace:Sn,DThemeWhitePickerDatetime:kn,DThemeWhitePickerTime:Tn,DThemeWhiteScrollBarThumb:Ci,DThemeWhiteScrollBar:xi,DThemeWhiteSelectMultiple:Fi,DThemeWhiteSelect:Ei,DThemeWhiteSlider:Ri,DThemeWhiteSliderHorizontal:zi,DThemeWhiteSliderLabel:Gi,DThemeWhiteSliderThumb:Oi,DThemeWhiteSliderTrack:ji,DThemeWhiteSliderTrackHorizontal:Yi,DThemeWhiteSliderTrackVertical:Xi,DThemeWhiteSliderValue:Ki,DThemeWhiteSliderVertical:Ui,DThemeWhiteTableBodyCellButton:co,DThemeWhiteTableBodyCellCheck:fo,DThemeWhiteTableBodyCellColor:lo,DThemeWhiteTableBodyCellDate:ao,DThemeWhiteTableBodyCellDatetime:mo,DThemeWhiteTableBodyCellIndex:To,DThemeWhiteTableBodyCellInputInteger:po,DThemeWhiteTableBodyCellInputReal:go,DThemeWhiteTableBodyCellInputText:Wo,DThemeWhiteTableBodyCellLink:Io,DThemeWhiteTableBodyCellSelectDialog:to,DThemeWhiteTableBodyCellSelectMenu:vo,DThemeWhiteTableBodyCellSelectPromise:uo,DThemeWhiteTableBodyCellText:oo,DThemeWhiteTableBodyCellTime:Bo,DThemeWhiteTableBodyCells:$i,DThemeWhiteTableBodyRow:_o,DThemeWhiteTableBody:Qi,DThemeWhiteTableCategoryCell:Fo,DThemeWhiteTableCategory:Eo,DThemeWhiteTableHeaderCell:Po,DThemeWhiteTableHeader:Lo,DThemeWhiteTableRow:Mo,DThemeWhiteTable:qi,DThemeWhiteTextBase:v,DThemeWhiteText:xn,DThemeWhiteTreeItemButton:Go,DThemeWhiteTreeItemNonEditable:Vo,DThemeWhiteTreeItemText:zo,DThemeWhiteTreeItems:Ho,DThemeWhiteTree:Ro,DThemeWhiteView:Yo,DThemeWhite:r,EThemeWhiteShapeActionValue:yr,EThemeWhiteShape:Qt};Xo();var Uo=window;Uo.wcardinal=Uo.wcardinal||{};var Jo=Uo.wcardinal.ui=Uo.wcardinal.ui||{},qo=Ko;for(var Qo in qo)Jo[Qo]=qo[Qo]}();
9
+ !function(){"use strict";const n=wcardinal.ui.DThemes;var t=new(0,wcardinal.ui.UtilSvgAtlasBuilder)(256,1,3),r=function(){function n(){this.t={}}return n.prototype.get=function(t){var r=this.t[t];if(null!=r)return r;var e=n.u[t];if(null!=e)return this.t[t]=new e;throw new Error("No theme for the type '".concat(t,"'"))},n.prototype.set=function(n,t){return this.t[n]=t,this},n.prototype.getClass=function(t){var r=n.u[t];if(null!=r)return r;throw new Error("No theme for the type '".concat(t,"'"))},n.prototype.setClass=function(t,r){return n.u[t]=r,this},n.prototype.getAtlas=function(){return t},n.set=function(n,t){this.u[n]=t},n.u={},n}(),e=function(){n.setDefaultThemeClass(r)},u=function(n,t){return(u=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,t){n.__proto__=t}||function(n,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(n[r]=t[r])})(n,t)};function i(n,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=n}u(n,t),n.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}const o=wcardinal.ui.DBaseInteractive,c=wcardinal.ui.DBorderMask,f=wcardinal.ui.DCornerMask,l=wcardinal.ui.DLayoutClearType,h=wcardinal.ui.DShadowImpl,a=wcardinal.ui.UtilRgb;var s=function(){function n(){}return n.COLOR=4473924,n.ACTIVE_COLOR=16777215,n.BORDER_COLOR=15066597,n.BACKGROUND_COLOR=15921906,n.BACKGROUND_COLOR_ON_BOARD=16777215,n.HIGHLIGHT_COLOR=3381759,n.HIGHLIGHT_ALPHA=.2,n.HIGHLIGHT_BLENDED=a.blend(n.BACKGROUND_COLOR,n.HIGHLIGHT_COLOR,n.HIGHLIGHT_ALPHA),n.HIGHLIGHT_BLENDED_ON_BOARD=a.blend(n.BACKGROUND_COLOR_ON_BOARD,n.HIGHLIGHT_COLOR,n.HIGHLIGHT_ALPHA),n.WEAK_HIGHLIGHT_COLOR=13421772,n.WEAK_HIGHLIGHT_ALPHA=.2,n.WEAK_HIGHLIGHT_BLENDED=a.blend(n.BACKGROUND_COLOR,n.WEAK_HIGHLIGHT_COLOR,n.WEAK_HIGHLIGHT_ALPHA),n.WEAK_HIGHLIGHT_BLENDED_ON_BOARD=a.blend(n.BACKGROUND_COLOR_ON_BOARD,n.WEAK_HIGHLIGHT_COLOR,n.WEAK_HIGHLIGHT_ALPHA),n.INVALID_COLOR=16755370,n.INVALID_ALPHA=.2,n.INVALID_BLENDED=a.blend(n.BACKGROUND_COLOR,n.INVALID_COLOR,n.INVALID_ALPHA),n.INVALID_BLENDED_ON_BOARD=a.blend(n.BACKGROUND_COLOR_ON_BOARD,n.INVALID_COLOR,n.INVALID_ALPHA),n}(),d=function(){function n(){}return n.prototype.getFontFamilly=function(){return'ProximaNova,-apple-system,Meiryo,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif'},n.prototype.getFontSize=function(){return 14},n.prototype.getColor=function(n){return s.COLOR},n.prototype.getFontWeight=function(){return"normal"},n.prototype.getFontStyle=function(){return"normal"},n.prototype.getFontVariant=function(){return"normal"},n.prototype.getAlpha=function(n){return n.inDisabled?.5:1},n.prototype.getLineHeight=function(){return 30},n}(),m=function(n,r,e){var u=2*r;t.add(n,u,u,"<g><defs>"+'<radialGradient id="'.concat(n,'_filter">')+'<stop offset="0%" stop-color="black" stop-opacity="'.concat(e,'" />')+'<stop offset="20%" stop-color="black" stop-opacity="'.concat(e,'" />')+'<stop offset="40%" stop-color="black" stop-opacity="'.concat(.368*e,'" />')+'<stop offset="60%" stop-color="black" stop-opacity="'.concat(.135*e,'" />')+'<stop offset="80%" stop-color="black" stop-opacity="'.concat(.05*e,'" />')+'<stop offset="100%" stop-color="black" stop-opacity="0" /></radialGradient></defs>'+'<rect x="0" y="0" width="'.concat(u,'" height="').concat(u,'" fill="url(#').concat(n,'_filter)"/>')+"</g>")};m("shadow_weak",12,.15),m("shadow",24,.15),t.add("background",16,16,'<g><defs><radialGradient id="234sfdhjfpijsrnsedsd435jseflkm"><stop offset="25%" stop-color="white" stop-opacity="1" /><stop offset="75%" stop-color="white" stop-opacity="0.25" /></radialGradient></defs><rect x="0" y="0" width="16" height="16" fill="url(#234sfdhjfpijsrnsedsd435jseflkm)"/></g>');var D=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getX=function(){return 0},r.prototype.getY=function(){return 0},r.prototype.getHeight=function(){return 100},r.prototype.getWidth=function(){return 100},r.prototype.getBackgroundColor=function(n){return null},r.prototype.getBackgroundAlpha=function(n){return 1},r.prototype.getBackgroundTexture=function(){return t.mappings.background},r.prototype.getBorderColor=function(n){return null},r.prototype.getBorderAlpha=function(n){return 1},r.prototype.getBorderWidth=function(n){return 1},r.prototype.getBorderAlign=function(n){return 0},r.prototype.getBorderMask=function(n){return c.NONE},r.prototype.getBorderTexture=function(){return t.mappings.background},r.prototype.getPaddingLeft=function(){return 0},r.prototype.getPaddingRight=function(){return 0},r.prototype.getPaddingTop=function(){return 0},r.prototype.getPaddingBottom=function(){return 0},r.prototype.getCornerRadius=function(){return 3},r.prototype.getCornerMask=function(){return f.NONE},r.prototype.getOutlineColor=function(n){return s.HIGHLIGHT_COLOR},r.prototype.getOutlineAlpha=function(n){return n.isFocused?1:0},r.prototype.getOutlineWidth=function(n){return 1},r.prototype.getOutlineOffset=function(n){return 0},r.prototype.getOutlineAlign=function(n){return 0},r.prototype.getOutlineMask=function(n){return c.NONE},r.prototype.getClearType=function(){return l.NONE},r.prototype.getShadow=function(){return null},r.prototype.getInteractive=function(){return o.SELF},r.prototype.newState=function(n){},r.prototype.getTitle=function(){return""},r.prototype.getWeight=function(){return-1},r.prototype.newShadow=function(){return new h(t.mappings.shadow,24,24,0,9.6)},r.prototype.newShadowWeak=function(){return new h(t.mappings.shadow_weak,12,12,0,4.8)},r.prototype.getCursor=function(n){return""},r}(d),T=function(){r.set("DBase",D)},p=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(){return s.BACKGROUND_COLOR},t.prototype.getBorderColor=function(n){return null},t.prototype.getCornerMask=function(){return f.ALL},t.prototype.getPaddingLeft=function(){return 16},t.prototype.getPaddingTop=function(){return 16},t.prototype.getPaddingRight=function(){return 16},t.prototype.getPaddingBottom=function(){return 16},t.prototype.getInteractive=function(){return o.BOTH},t}(D),g=function(){r.set("DBoard",p)};const W=wcardinal.ui.DAlignHorizontal,w=wcardinal.ui.DButtonBaseWhen,k=wcardinal.ui.DAlignVertical,b=wcardinal.ui.DAlignWith,y=wcardinal.ui.DDynamicTextStyleWordWrap,I=wcardinal.ui.toString;var v=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextAlignVertical=function(){return k.MIDDLE},t.prototype.getTextAlignHorizontal=function(){return W.LEFT},t.prototype.isOverflowMaskEnabled=function(){return!1},t.prototype.getTextStyleClipping=function(){return!0},t.prototype.getTextStyleWordWrap=function(){return y.NONE},t.prototype.getTextFormatter=function(){return I},t.prototype.getTextValue=function(n){},t.prototype.newTextValue=function(){},t}(D),x=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getImageAlignHorizontal=function(){return W.LEFT},t.prototype.getImageAlignVertical=function(){return k.MIDDLE},t.prototype.getImageAlignWith=function(){return b.TEXT},t.prototype.getImageMarginHorizontal=function(){return 5},t.prototype.getImageMarginVertial=function(){return 5},t.prototype.getImageTintColor=function(n){return this.getColor(n)},t.prototype.getImageTintAlpha=function(n){return this.getAlpha(n)},t.prototype.getImageSource=function(n){return null},t.prototype.getSecondaryImageAlignHorizontal=function(){return this.getImageAlignHorizontal()},t.prototype.getSecondaryImageAlignVertical=function(){return this.getImageAlignVertical()},t.prototype.getSecondaryImageAlignWith=function(){return this.getImageAlignWith()},t.prototype.getSecondaryImageMarginHorizontal=function(){return this.getImageMarginHorizontal()},t.prototype.getSecondaryImageMarginVertial=function(){return this.getImageMarginVertial()},t.prototype.getSecondaryImageTintColor=function(n){return this.getImageTintColor(n)},t.prototype.getSecondaryImageTintAlpha=function(n){return this.getImageTintAlpha(n)},t.prototype.getTertiaryImageAlignHorizontal=function(){return this.getImageAlignHorizontal()},t.prototype.getTertiaryImageAlignVertical=function(){return this.getImageAlignVertical()},t.prototype.getTertiaryImageAlignWith=function(){return this.getImageAlignWith()},t.prototype.getTertiaryImageMarginHorizontal=function(){return this.getImageMarginHorizontal()},t.prototype.getTertiaryImageMarginVertial=function(){return this.getImageMarginVertial()},t.prototype.getTertiaryImageTintColor=function(n){return this.getImageTintColor(n)},t.prototype.getTertiaryImageTintAlpha=function(n){return this.getImageTintAlpha(n)},t}(v),C=function(n){function t(t,r,e){void 0===t&&(t=16777215),void 0===r&&(r=.017),void 0===e&&(e=.034);var u=n.call(this)||this;return u.BACKGROUND_COLOR=t,u.BACKGROUND_COLOR_HOVERED=a.darken(t,r),u.BACKGROUND_COLOR_PRESSED=a.darken(t,e),u.OUTLINE_COLOR=a.brighten(t,.75),u}return i(t,n),t.prototype.getBackgroundColor=function(n){return n.inDisabled?null:n.isActive?s.HIGHLIGHT_COLOR:n.isPressed?this.BACKGROUND_COLOR_PRESSED:n.isHovered?this.BACKGROUND_COLOR_HOVERED:this.BACKGROUND_COLOR},t.prototype.getColor=function(t){return t.inDisabled||!t.isActive?n.prototype.getColor.call(this,t):s.ACTIVE_COLOR},t.prototype.getBorderColor=function(n){return n.inDisabled||!n.isActive?s.BORDER_COLOR:null},t.prototype.getOutlineColor=function(n){return n.isActive?this.getOutlineColorActive(n):this.getOutlineColorNonActive(n)},t.prototype.getOutlineColorActive=function(n){return this.OUTLINE_COLOR},t.prototype.getOutlineColorNonActive=function(t){return n.prototype.getOutlineColor.call(this,t)},t.prototype.getOutlineOffset=function(n){return n.isActive?this.getOutlineOffsetActive(n):this.getOutlineOffsetNonActive(n)},t.prototype.getOutlineOffsetActive=function(n){return-1.5},t.prototype.getOutlineOffsetNonActive=function(t){return n.prototype.getOutlineOffset.call(this,t)},t.prototype.getHeight=function(){return 30},t.prototype.getWidth=function(){return 100},t.prototype.getTextAlignHorizontal=function(){return W.CENTER},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t.prototype.isToggle=function(){return!1},t.prototype.getWhen=function(){return w.CLICKED},t.prototype.getCursor=function(n){return n.isActionable?"pointer":""},t}(x),B=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(C),S=function(){r.set("DButton",B)},M=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return n.isActive?s.HIGHLIGHT_COLOR:s.WEAK_HIGHLIGHT_COLOR},t.prototype.getBackgroundAlpha=function(n){if(n.inEnabled){if(n.isActive)return 1;if(n.isPressed)return 2*s.WEAK_HIGHLIGHT_ALPHA;if(n.isHovered)return s.WEAK_HIGHLIGHT_ALPHA}return 0},t.prototype.getBorderColor=function(n){return null},t}(C),_=function(){r.set("DButtonAmbient",M)};t.add("button_check_mark_on",21,21,'<g transform="scale(0.875,0.875)"><path d="M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-9 14l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" fill="#fff" /></g>'),t.add("button_check_mark_off",21,21,'<g transform="scale(0.875,0.875)"><path d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" fill="#fff" /></g>');var L=function(){function n(){}return n.getImageTintColor=function(n){return n.inDisabled||n.inReadOnly||!n.isActive?s.WEAK_HIGHLIGHT_COLOR:s.HIGHLIGHT_COLOR},n.getImageSource=function(n){return n.isActive?t.mappings.button_check_mark_on:t.mappings.button_check_mark_off},n}();t.add("button_check_mark_on",21,21,'<g transform="scale(0.875,0.875)"><path d="M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-9 14l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" fill="#fff" /></g>'),t.add("button_check_mark_off",21,21,'<g transform="scale(0.875,0.875)"><path d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" fill="#fff" /></g>');var E=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return s.WEAK_HIGHLIGHT_COLOR},t.prototype.getColor=function(n){return s.COLOR},t.prototype.getBackgroundAlpha=function(n){return n.inEnabled&&n.isHovered?s.WEAK_HIGHLIGHT_ALPHA:0},t.prototype.getOutlineColor=function(n){return this.getOutlineColorNonActive(n)},t.prototype.getOutlineOffset=function(n){return this.getOutlineOffsetNonActive(n)},t.prototype.getImageTintColor=function(n){return L.getImageTintColor(n)},t.prototype.isToggle=function(){return!0},t.prototype.getImageSource=function(n){return L.getImageSource(n)},t}(M),P=function(){r.set("DButtonCheck",E)},F=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getImageAlignWith=function(){return b.PADDING},t.prototype.getImageAlignHorizontal=function(){return W.RIGHT},t.prototype.getImageMarginHorizontal=function(){return 0},t.prototype.getTextAlignHorizontal=function(){return W.LEFT},t}(E),N=function(){r.set("DButtonCheckRight",F)};t.add("button_color_sample",21,21,'<g transform="scale(0.875,0.875)"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" fill="#fff"/></g>');var A=function(n){return"#".concat(a.toCode(n.color)," A").concat(n.alpha.toFixed(2))},H=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getImageTintColor=function(n){return null},r.prototype.getImageSource=function(n){return t.mappings.button_color_sample},r.prototype.getTextFormatter=function(){return A},r.prototype.newTextValue=function(){return{color:16777215,alpha:1}},r}(B);const R=wcardinal.ui.DAnimationFadeIn,z=wcardinal.ui.DDialogAlign,G=wcardinal.ui.DDialogCloseOn,V=wcardinal.ui.DDialogGestureMode,O=wcardinal.ui.DDialogMode,j=wcardinal.ui.DDialogState;var Y=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getMode=function(){return O.MODAL},t.prototype.closeOn=function(n){switch(n){case O.MODAL:case O.MENU:return G.ESC|G.CLICK_OUTSIDE;case O.MODELESS:return G.NONE}},t.prototype.isSticky=function(n){return!1},t.prototype.isGestureEnabled=function(n){switch(n){case O.MODAL:case O.MODELESS:return!0;case O.MENU:return!1}},t.prototype.getGestureMode=function(n){return V.DIRTY},t.prototype.getOffsetX=function(n){return 5},t.prototype.getOffsetY=function(n){return 5},t.prototype.getAlign=function(n){return z.BOTTOM},t.prototype.newAnimation=function(n){switch(n){case O.MODAL:return new R;case O.MODELESS:case O.MENU:return null}},t.prototype.getBackgroundColor=function(n){return n.is(j.MENU)?s.BACKGROUND_COLOR_ON_BOARD:s.BACKGROUND_COLOR},t.prototype.getBorderColor=function(n){return n.is(j.MENU)?null:16448250},t.prototype.getOutlineColor=function(n){return null},t.prototype.getPaddingLeft=function(){return 0},t.prototype.getPaddingTop=function(){return 0},t.prototype.getPaddingRight=function(){return 0},t.prototype.getPaddingBottom=function(){return 0},t.prototype.getX=function(){return 0},t.prototype.getY=function(){return 0},t.prototype.getWidth=function(){return 400},t.prototype.getHeight=function(){return"auto"},t.prototype.getShadow=function(){return this.newShadow()},t.prototype.getInteractive=function(){return o.BOTH},t}(D),X=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getLayout=function(){},t.prototype.getHeader=function(){return null},t.prototype.getContent=function(){},t.prototype.getFooter=function(){},t}(Y),K=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return"auto"},t}(X),U=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(K),J=function(n,t){for(var r="<g>",e=0;e<t;++e)for(var u=0;u<n;++u){var i=(u+e)%2==0?"#bfbfbf":"#a5a5a5";r+='<rect x="'.concat(9*u,'" y="').concat(9*e,'" width="9" height="9" fill="').concat(i,'" />')}return r+"</g>"};t.add("picker_color_main",234,156,'<g><linearGradient id="fs7w3iusfdnb" x1="0%" y1="0%" x2="100%" y2="0%"><stop stop-color="#FFFFFF" stop-opacity="0" offset="0"/><stop stop-color="#FFFFFF" stop-opacity="1" offset="1"/></linearGradient><linearGradient id="2rfcfe9874bw" x1="0%" y1="0%" x2="0%" y2="100%"><stop stop-color="#000000" stop-opacity="0" offset="0"/><stop stop-color="#000000" stop-opacity="1" offset="1"/></linearGradient><rect x="0" y="0" width="234" height="156" fill="url(#fs7w3iusfdnb)" /><rect x="0" y="0" width="234" height="156" fill="url(#2rfcfe9874bw)" /></g>'),t.add("picker_color_alpha_checkerboard",234,18,J(26,2)),t.add("picker_color_alpha",234,18,'<g><linearGradient id="s48afbuh44" x1="0%" y1="0%" x2="100%" y2="0%"><stop stop-color="#FFFFFF" stop-opacity="0" offset="0"/><stop stop-color="#FFFFFF" stop-opacity="1" offset="1"/></linearGradient><rect x="0" y="0" width="234" height="18" fill="url(#s48afbuh44)" /></g>'),t.add("picker_color_base",234,18,'<g><linearGradient id="ni2rbisdf3" x1="0%" y1="0%" x2="100%" y2="0%"><stop stop-color="#FF0000" offset="0"/><stop stop-color="#FFFF00" offset="0.167"/><stop stop-color="#00FF00" offset="0.333"/><stop stop-color="#00FFFF" offset="0.5"/><stop stop-color="#0000FF" offset="0.667"/><stop stop-color="#FF00FF" offset="0.833"/><stop stop-color="#FF0000" offset="1"/></linearGradient><rect x="0" y="0" width="234" height="18" fill="url(#ni2rbisdf3)" /></g>'),t.add("picker_color_base_pointer",16.2,31.8,'<rect x="4.5" y="4.5" width="7.2" height="22.8" stroke="#5f5f5f" stroke-width="2.4" fill="none" />'),t.add("picker_color_pointer",25.8,25.8,'<circle cx="12.9" cy="12.9" r="4.8" stroke="#5f5f5f" stroke-width="2.4" fill="none" /><circle cx="12.9" cy="12.9" r="7.2" stroke="#ffffff" stroke-width="2.4" fill="none" />'),t.add("picker_color_recent_checkerboard",18,18,J(2,2)),t.add("picker_color_recent_null",18,18,'<g><rect x="1.2" y="1.2" width="15.6" height="15.6" stroke="#fff" stroke-width="0.8" fill="none" /><line x1="16.8" y1="1.2" x2="1.2" y2="16.8" stroke="#fff" stroke-width="0.8" stroke-linecap="round" /><line x1="1.2" y1="1.2" x2="16.8" y2="16.8" stroke="#fff" stroke-width="0.8" stroke-linecap="round" /></g>'),t.add("picker_color_sample_checkerboard",45,63,J(5,7)),t.add("picker_color_sample_null",54,54,'<g><rect x="3.6" y="3.6" width="46.8" height="46.8" stroke="#fff" stroke-width="2.4" fill="none" /><line x1="50.4" y1="3.6" x2="3.6" y2="50.4" stroke="#fff" stroke-width="2.4" stroke-linecap="round" /><line x1="3.6" y1="3.6" x2="50.4" y2="50.4" stroke="#fff" stroke-width="2.4" stroke-linecap="round" /></g>'),t.add("picker_color_anchor_outlined",25.8,25.8,'<circle cx="12.9" cy="12.9" r="8.4" stroke="none" fill="#ffffff" /><circle cx="12.9" cy="12.9" r="9.6" stroke="#5f5f5f" stroke-width="2.4" fill="none" />'),t.add("picker_color_anchor",28.2,28.2,'<circle cx="14.1" cy="14.1" r="6" stroke="none" fill="#ffffff" /><circle cx="14.1" cy="14.1" r="7.2" stroke="#5f5f5f" stroke-width="2.4" fill="none" />'),t.add("picker_color_direction",12,30,'<path d="M0.6 25.8 L 12.0375 5.9895" stroke="#5f5f5f" stroke-width="1.2" fill="none" /><path d="M8.5125 25.8 A 8.475 8.475 0 0 0 4.275 18.4605" stroke="#5f5f5f" stroke-width="1.2" fill="none" /><rect x="0.6" y="24.6" width="11.4375" height="1.2" rx="0.6" ry="0.6" stroke="none" fill="#5f5f5f" />');var q=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getMainWidth=function(){return 234},r.prototype.getMainHeight=function(){return 156},r.prototype.getMainTexture=function(){return t.mappings.picker_color_main},r.prototype.getMainPointerTexture=function(){return t.mappings.picker_color_pointer},r.prototype.getMainPointerColor=function(){return 16777215},r.prototype.getMainPointerAlpha=function(){return 1},r.prototype.getBaseHeight=function(){return 18},r.prototype.getBaseMargin=function(){return 6},r.prototype.getBaseTexture=function(){return t.mappings.picker_color_base},r.prototype.getBasePointerTexture=function(){return t.mappings.picker_color_base_pointer},r.prototype.getBasePointerColor=function(){return 16777215},r.prototype.getBasePointerAlpha=function(){return this.getMainPointerAlpha()},r.prototype.getAlphaHeight=function(){return this.getBaseHeight()},r.prototype.getAlphaMargin=function(){return this.getBaseMargin()},r.prototype.getAlphaTexture=function(){return t.mappings.picker_color_alpha},r.prototype.getAlphaCheckerboardTexture=function(){return t.mappings.picker_color_alpha_checkerboard},r.prototype.getAlphaPointerTexture=function(){return this.getBasePointerTexture()},r.prototype.getAlphaPointerColor=function(){return this.getBasePointerColor()},r.prototype.getAlphaPointerAlpha=function(){return this.getMainPointerAlpha()},r.prototype.getRecentMargin=function(){return this.getBaseMargin()},r.prototype.getRecentColorWidth=function(){return this.getBaseHeight()},r.prototype.getRecentColorHeight=function(){return this.getRecentColorWidth()},r.prototype.getRecentColorMargin=function(){return this.getRecentMargin()},r.prototype.getRecentColorCount=function(){return 10},r.prototype.getRecentCheckerboardTexture=function(){return t.mappings.picker_color_recent_checkerboard},r.prototype.getRecentNullTexture=function(){return t.mappings.picker_color_recent_null},r.prototype.getRecents=function(){return[]},r.prototype.getInputMargin=function(){return this.getBaseMargin()},r.prototype.getInputLabelWidth=function(){return 15},r.prototype.getSampleCheckerboardTexture=function(){return t.mappings.picker_color_sample_checkerboard},r.prototype.getSampleNullTexture=function(){return t.mappings.picker_color_sample_null},r.prototype.getBackgroundColor=function(n){return null},r.prototype.getBorderColor=function(n){return null},r.prototype.getInteractive=function(){return o.CHILDREN},r.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},r}(D),Q=function(){r.set("DPickerColor",q)},Z=function(){r.set("DDialogColor",U),Q()},$=function(){r.set("DButtonColor",H),Z()};const nn=wcardinal.ui.DColorGradientObservable;t.add("button_color_gradient_sample",21,21,'<g transform="scale(0.875,0.875)"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z" fill="#fff"/></g>');var tn=function(){return""},rn=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getViewBaseTexture=function(){return t.mappings.button_color_gradient_sample},r.prototype.getTextFormatter=function(){return tn},r.prototype.newTextValue=function(){return new nn},r.prototype.getCheckerColors=function(){return[.75,.65]},r}(B),en=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(K),un=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getGradientPointsWidth=function(){return 30},r.prototype.getGradientPointsMargin=function(){return 24},r.prototype.getGradientAnchorTexture=function(){return t.mappings.picker_color_anchor},r.prototype.getGradientAnchorOutlinedTexture=function(){return t.mappings.picker_color_anchor_outlined},r.prototype.getGradientAnchorOutlineTexture=function(){return t.mappings.picker_color_anchor_outline},r.prototype.getGradientDirectionMargin=function(){return 5},r.prototype.getGradientDirectionTexture=function(){return t.mappings.picker_color_direction},r.prototype.getGradientRecentColumn=function(){return 4},r.prototype.getGradientRecentWidth=function(){return 30},r.prototype.getGradientRecentMargin=function(){return 5},r.prototype.getGradientRecentCount=function(){return 16},r.prototype.getGradientRecents=function(){return[]},r.prototype.getGradientCheckerColors=function(){return[.75,.65]},r.prototype.getBackgroundColor=function(n){return null},r.prototype.getBorderColor=function(n){return null},r.prototype.getInteractive=function(){return o.CHILDREN},r.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},r}(D),on=function(){r.set("DPickerColorGradient",un),Q()},cn=function(){r.set("DDialogColorGradient",en),on()},fn=function(){r.set("DButtonColorGradient",rn),cn()},ln=function(n){function t(){return n.call(this,16733542,.1,.2)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return n.inDisabled?null:n.isPressed||n.isActive?this.BACKGROUND_COLOR_PRESSED:n.isHovered?this.BACKGROUND_COLOR_HOVERED:this.BACKGROUND_COLOR},t.prototype.getBorderColor=function(n){return n.inDisabled?s.BORDER_COLOR:null},t.prototype.getOutlineColor=function(n){return this.getOutlineColorActive(n)},t.prototype.getOutlineOffset=function(n){return this.getOutlineOffsetActive(n)},t.prototype.getColor=function(t){return t.inDisabled?n.prototype.getColor.call(this,t):s.ACTIVE_COLOR},t}(C),hn=function(){r.set("DButtonDanger",ln)};const an=wcardinal.ui.DPickerDates;var sn=function(n){return an.format(n)},dn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextFormatter=function(){return sn},t.prototype.newTextValue=function(){return new Date},t}(B),mn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(K);const Dn=wcardinal.ui.DPickerDatetimeMask;var Tn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return null},t.prototype.getInteractive=function(){return o.CHILDREN},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t.prototype.getMargin=function(){return 8},t.prototype.getHoursOptions=function(){return{width:100,title:"Hours"}},t.prototype.getMinutesOptions=function(){return{width:100,title:"Minutes"}},t.prototype.getSecondsOptions=function(){return{width:100,title:"Seconds"}},t.prototype.getMask=function(){return Dn.HOURS|Dn.MINUTES},t.prototype.getWidth=function(){return"auto"},t.prototype.getHeight=function(){return"auto"},t.prototype.getLowerBound=function(){return null},t.prototype.isLowerBoundInclusive=function(){return!1},t.prototype.getUpperBound=function(){return null},t.prototype.isUpperBoundInclusive=function(){return!1},t}(D),pn=["January","February","March","April","May","June","July","August","September","October","November","December"],gn=["Su","Mo","Tu","We","Th","Fr","Sa"],Wn=function(n){return"".concat(pn[n.getMonth()]," ").concat(n.getFullYear())},wn=function(){},kn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getDayLabels=function(){return gn},t.prototype.getDayStart=function(){return 0},t.prototype.getLabelFormatter=function(){return Wn},t.prototype.getDateDecorator=function(){return wn},t.prototype.getBackButtonOptions=function(){return{title:"Previous"}},t.prototype.getNextButtonOptions=function(){return{title:"Next"}},t.prototype.getMask=function(){return Dn.DATE|n.prototype.getMask.call(this)},t}(Tn),bn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getMask=function(){return Dn.DATE},t}(kn);t.add("picker_date_back",24,24,'<g><path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z" fill="#fff" /></g>');var yn=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getWidth=function(){return"auto"},r.prototype.getImageAlignWith=function(){return b.PADDING},r.prototype.getImageMarginHorizontal=function(){return 0},r.prototype.getImageAlignHorizontal=function(){return W.LEFT},r.prototype.getImageSource=function(n){return t.mappings.picker_date_back},r.prototype.getAlpha=function(t){return.9*n.prototype.getAlpha.call(this,t)},r}(M),In=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextAlignHorizontal=function(){return W.CENTER},t.prototype.getTextStyleClipping=function(){return!1},t.prototype.getWidth=function(){return 30},t.prototype.getHeight=function(){return 30},t.prototype.isToggle=function(){return!0},t}(M);t.add("picker_date_next",24,24,'<g><path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z" fill="#fff" /></g>');var vn=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getWidth=function(){return"auto"},r.prototype.getImageAlignWith=function(){return b.PADDING},r.prototype.getImageMarginHorizontal=function(){return 0},r.prototype.getImageAlignHorizontal=function(){return W.LEFT},r.prototype.getImageSource=function(n){return t.mappings.picker_date_next},r.prototype.getAlpha=function(t){return.9*n.prototype.getAlpha.call(this,t)},r}(M),xn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getHeight=function(){return this.getLineHeight()},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(v),Cn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return 30},t.prototype.getHeight=function(){return 30},t.prototype.getTextStyleClipping=function(){return!1},t.prototype.getTextAlignHorizontal=function(){return W.CENTER},t.prototype.getAlpha=function(t){return.9*n.prototype.getAlpha.call(this,t)},t.prototype.getFontWeight=function(){return"bold"},t.prototype.getFontSize=function(){return Math.round(1.25*n.prototype.getFontSize.call(this))},t.prototype.newTextValue=function(){return new Date},t.prototype.getInteractive=function(){return o.NONE},t}(xn),Bn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return 30},t.prototype.getHeight=function(){return 30},t.prototype.getTextStyleClipping=function(){return!1},t.prototype.getTextAlignHorizontal=function(){return W.CENTER},t.prototype.getAlpha=function(t){return.9*n.prototype.getAlpha.call(this,t)},t.prototype.getFontWeight=function(){return"bold"},t}(xn),Sn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return null},t.prototype.getBorderColor=function(n){return null},t.prototype.getWidth=function(){return 30},t.prototype.getHeight=function(){return 30},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t.prototype.getInteractive=function(){return o.NONE},t}(D),Mn=function(){r.set("DPickerTime",Tn)},_n=function(){r.set("DPickerDatetimeButtonBack",yn),r.set("DPickerDatetimeButtonDate",In),r.set("DPickerDatetimeButtonNext",vn),r.set("DPickerDatetimeLabelDate",Bn),r.set("DPickerDatetimeLabel",Cn),r.set("DPickerDatetimeSpace",Sn),r.set("DPickerDatetime",kn),Mn()},Ln=function(){r.set("DPickerDate",bn),_n()},En=function(){r.set("DDialogDate",mn),Ln()},Pn=function(){r.set("DButtonDate",dn),En()};const Fn=wcardinal.ui.DPickerDatetimes;var Nn=function(n,t){return Fn.format(n,t.getDatetimeMask())},An=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextFormatter=function(){return Nn},t.prototype.newTextValue=function(){return new Date},t}(B),Hn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(K),Rn=function(){r.set("DDialogDatetime",Hn),_n()},zn=function(){r.set("DButtonDatetime",An),Rn()},Gn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(B),Vn=function(){r.set("DButtonFile",Gn)},On=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(M),jn=function(){r.set("DButtonLink",On)},Yn=function(n){function t(){return n.call(this,s.HIGHLIGHT_COLOR,.1,.2)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return n.inDisabled?null:n.isPressed||n.isActive?this.BACKGROUND_COLOR_PRESSED:n.isHovered?this.BACKGROUND_COLOR_HOVERED:this.BACKGROUND_COLOR},t.prototype.getBorderColor=function(n){return n.inDisabled?s.BORDER_COLOR:null},t.prototype.getOutlineColor=function(n){return this.getOutlineColorActive(n)},t.prototype.getOutlineOffset=function(n){return this.getOutlineOffsetActive(n)},t.prototype.getColor=function(t){return t.inDisabled?n.prototype.getColor.call(this,t):s.ACTIVE_COLOR},t}(C),Xn=function(){r.set("DButtonPrimary",Yn)};t.add("button_radio_mark_on",21,21,'<g transform="scale(0.875,0.875)"><path d="M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" fill="#fff" /></g>'),t.add("button_radio_mark_off",21,21,'<g transform="scale(0.875,0.875)"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" fill="#fff" /></g>');var Kn=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getBackgroundColor=function(n){return s.WEAK_HIGHLIGHT_COLOR},r.prototype.getColor=function(n){return s.COLOR},r.prototype.getBackgroundAlpha=function(n){return n.inEnabled&&n.isHovered?s.WEAK_HIGHLIGHT_ALPHA:0},r.prototype.getOutlineColor=function(n){return this.getOutlineColorNonActive(n)},r.prototype.getOutlineOffset=function(n){return this.getOutlineOffsetNonActive(n)},r.prototype.getImageTintColor=function(n){return n.inDisabled||!n.isActive?s.WEAK_HIGHLIGHT_COLOR:s.HIGHLIGHT_COLOR},r.prototype.isToggle=function(){return!0},r.prototype.getImageSource=function(n){return n.isActive?t.mappings.button_radio_mark_on:t.mappings.button_radio_mark_off},r}(M),Un=function(){r.set("DButtonRadio",Kn)},Jn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getImageAlignWith=function(){return b.PADDING},t.prototype.getImageAlignHorizontal=function(){return W.RIGHT},t.prototype.getImageMarginHorizontal=function(){return 0},t.prototype.getTextAlignHorizontal=function(){return W.LEFT},t}(Kn),qn=function(){r.set("DButtonRadioRight",Jn)},Qn=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(C),Zn=function(){r.set("DButtonSecondary",Qn)};const $n=wcardinal.ui.toLabel;var nt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextFormatter=function(){return $n},t.prototype.newTextValue=function(){return null},t}(B),tt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return 480},t.prototype.getFooter=function(){return null},t.prototype.getInputMargin=function(){return 32},t}(X);const rt=wcardinal.ui.UtilGestureMode;var et=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.isOverflowMaskEnabled=function(){return!0},t.prototype.getBackgroundColor=function(n){return s.BACKGROUND_COLOR},t.prototype.getBorderAlign=function(n){return 1},t.prototype.getOutlineAlign=function(n){return 1},t.prototype.getInteractive=function(){return o.BOTH},t.prototype.getWheelSpeed=function(){return 2.24},t.prototype.getGestureMode=function(){return rt.TOUCH},t}(D),ut=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return s.BACKGROUND_COLOR_ON_BOARD},t}(et),it=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return null},t.prototype.getBorderColor=function(n){return null},t.prototype.getHeight=function(){return 250},t.prototype.getCornerMask=function(){return f.ALL},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(ut),ot=function(){function n(n,t,r){this.i=t,null!=n?(this.o=n,this.l=1,this.h=a.blend(n,0,.0175),this.m=1,this.D=a.blend(n,s.INVALID_COLOR,s.INVALID_ALPHA),this.T=1,this.p=r?s.HIGHLIGHT_COLOR:a.blend(n,s.HIGHLIGHT_COLOR,s.HIGHLIGHT_ALPHA),this.g=1,this.W=a.blend(n,s.WEAK_HIGHLIGHT_COLOR,s.WEAK_HIGHLIGHT_ALPHA),this.k=1):(this.o=0,this.l=0,this.h=0,this.m=.0175,this.D=s.INVALID_COLOR,this.T=s.INVALID_ALPHA,this.p=s.HIGHLIGHT_COLOR,this.g=r?1:s.HIGHLIGHT_ALPHA,this.W=s.WEAK_HIGHLIGHT_COLOR,this.k=s.WEAK_HIGHLIGHT_ALPHA),this.I=s.COLOR,this.v=r?s.ACTIVE_COLOR:s.COLOR,r?(this.C=s.COLOR,this.B=s.ACTIVE_COLOR):(this.C=s.COLOR,this.B=s.COLOR)}return n.prototype.getBackgroundColor=function(n){return n.inDisabled?this.i?n.isAlternated?this.h:this.o:null:n.isInvalid?this.D:n.isActive?this.p:n.isHovered?this.W:this.i?n.isAlternated?this.h:this.o:null},n.prototype.getBackgroundAlpha=function(n){return n.inDisabled?this.i?n.isAlternated?this.m:this.l:0:n.isInvalid?this.T:n.isActive?this.g:n.isHovered?this.k:this.i?n.isAlternated?this.m:this.l:0},n.prototype.getBorderColor=function(n){return null},n.prototype.getBorderMask=function(n){return c.NONE},n.prototype.getColor=function(n){return n.isActive?this.B:this.C},n.prototype.getAlpha=function(n){return n.inEnabled?1:0},n.prototype.getImageTintColor=function(n,t){return n.inDisabled||n.inReadOnly||!n.isActive&&!t?this.I:this.v},n.prototype.getHeight=function(){return 30},n.prototype.getCornerMask=function(){return f.ALL},n.prototype.getCursor=function(n){return n.isActionable?"pointer":""},n}(),ct=function(n){function t(){var t=n.call(this)||this;return t.S=t.newStyle(),t}return i(t,n),t.prototype.newStyle=function(){return new ot(null,!0,!1)},t.prototype.getBackgroundColor=function(n){return this.S.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return this.S.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return this.S.getBorderColor(n)},t.prototype.getBorderMask=function(n){return this.S.getBorderMask(n)},t.prototype.getColor=function(n){return this.S.getColor(n)},t.prototype.getAlpha=function(n){return this.S.getAlpha(n)},t.prototype.getHeight=function(){return this.S.getHeight()},t.prototype.getCornerMask=function(){return this.S.getCornerMask()},t.prototype.getImageTintColor=function(n){return this.S.getImageTintColor(n)},t.prototype.getCursor=function(n){return this.S.getCursor(n)},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t.prototype.newTextValue=function(){},t.prototype.getWidth=function(){return"padding"},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isDisabled=!0},t}(x),ft=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.newStyle=function(){return new ot(null,!1,!0)},t.prototype.getCornerMask=function(){return f.NONE},t}(ct),lt=function(){r.set("DDialogSelect",tt),r.set("DDialogSelectList",it),r.set("DDialogSelectListItem",ft)};const ht=wcardinal.ui.DPickerTimes;var at=function(n,t){return ht.format(n,t.getDatetimeMask())},st=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextFormatter=function(){return at},t.prototype.newTextValue=function(){return new Date},t}(B),dt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(K),mt=function(){r.set("DDialogTime",dt),Mn()},Dt=function(){r.set("DButtonTime",st),mt()},Tt=function(){_(),N(),P(),fn(),$(),r.set("DButtonSelect",nt),lt(),hn(),Pn(),zn(),Vn(),jn(),Xn(),qn(),Un(),Zn(),Dt(),S()},pt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(){return 16777215},t.prototype.getBorderColor=function(n){return null},t.prototype.getCornerMask=function(){return f.ALL},t.prototype.getInteractive=function(){return o.BOTH},t}(D),gt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return null},t.prototype.getBorderColor=function(n){return null},t.prototype.getPaddingLeft=function(){return 32},t.prototype.getPaddingTop=function(){return 32},t.prototype.getPaddingRight=function(){return 32},t.prototype.getPaddingBottom=function(){return 32},t.prototype.isOverflowMaskEnabled=function(){return!1},t.prototype.getInteractive=function(){return o.BOTH},t.prototype.getCornerMask=function(){return f.ALL},t}(D),Wt=function(){r.set("DCanvasContainer",gt),r.set("DCanvas",pt)},wt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getPaddingLeft=function(){return 80},t.prototype.getPaddingRight=function(){return 10},t.prototype.getPaddingTop=function(){return 10},t.prototype.getPaddingBottom=function(){return 70},t.prototype.getBorderColor=function(n){return null},t.prototype.getInteractive=function(){return o.BOTH},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t.prototype.isOverflowMaskEnabled=function(){return!0},t}(D);const kt=wcardinal.ui.DChartAxisPosition,bt=wcardinal.ui.DChartAxisTickPosition,yt=wcardinal.ui.EShapeTextAlignHorizontal,It=wcardinal.ui.EShapeTextAlignVertical,vt=wcardinal.ui.EShapeTextDirection;var xt=function(){function n(){}return n.prototype.getPosition=function(){return kt.BOTTOM},n.prototype.getPadding=function(){return 90},n.prototype.getLabelAlignHorizontal=function(n){switch(n){case kt.TOP:case kt.BOTTOM:return yt.CENTER;case kt.LEFT:return yt.OUTSIDE_LEFT;case kt.RIGHT:return yt.OUTSIDE_RIGHT}},n.prototype.getLabelAlignVertical=function(n){switch(n){case kt.TOP:return It.OUTSIDE_TOP;case kt.BOTTOM:return It.OUTSIDE_BOTTOM;case kt.LEFT:case kt.RIGHT:return It.MIDDLE}},n.prototype.getLabelPaddingHorizontal=function(){return 60},n.prototype.getLabelPaddingVertical=function(){return 50},n.prototype.getLabelDirection=function(){return vt.LEFT_TO_RIGHT},n.prototype.getLabelColor=function(){return this.getStrokeColor()},n.prototype.getStyle=function(){},n.prototype.getStrokeEnable=function(){return!0},n.prototype.getStrokeColor=function(){},n.prototype.getStrokeAlpha=function(){},n.prototype.getStrokeWidth=function(){},n.prototype.getStrokeAlign=function(){},n.prototype.getStrokeSide=function(){},n.prototype.getStrokeStyle=function(){},n.prototype.getTickEnable=function(){return!0},n.prototype.getMajorTickCount=function(){return 3},n.prototype.getMajorTickCapacity=function(n){return 2*n},n.prototype.getMajorTickStep=function(){},n.prototype.getMajorTickSize=function(){return 10},n.prototype.getMajorTickPosition=function(){return bt.OUTSIDE},n.prototype.getMajorTickStyle=function(){},n.prototype.getMajorTickTextAlignHorizontal=function(n){switch(n){case kt.TOP:case kt.BOTTOM:return yt.CENTER;case kt.LEFT:return yt.OUTSIDE_LEFT;case kt.RIGHT:return yt.OUTSIDE_RIGHT}},n.prototype.getMajorTickTextAlignVertical=function(n){switch(n){case kt.TOP:return It.OUTSIDE_TOP;case kt.BOTTOM:return It.OUTSIDE_BOTTOM;case kt.LEFT:case kt.RIGHT:return It.MIDDLE}},n.prototype.getMajorTickTextDirection=function(){return vt.LEFT_TO_RIGHT},n.prototype.getMajorTickTextColor=function(){return this.getStrokeColor()},n.prototype.getMajorTickTextFormat=function(){return"%.2f"},n.prototype.getMajorTickTextPaddingHorizontal=function(){return 15},n.prototype.getMajorTickTextPaddingVertical=function(){return 15},n.prototype.getMajorTickStrokeEnable=function(){return!0},n.prototype.getMajorTickStrokeColor=function(){return this.getStrokeColor()},n.prototype.getMajorTickStrokeAlpha=function(){return this.getStrokeAlpha()},n.prototype.getMajorTickStrokeWidth=function(){return this.getStrokeWidth()},n.prototype.getMajorTickStrokeAlign=function(){return this.getStrokeAlign()},n.prototype.getMajorTickStrokeSide=function(){return this.getStrokeSide()},n.prototype.getMajorTickStrokeStyle=function(){return this.getStrokeStyle()},n.prototype.getMajorTickGridlineEnable=function(){return!0},n.prototype.getMajorTickGridlineStyle=function(){},n.prototype.getMajorTickGridlineStrokeEnable=function(){return!0},n.prototype.getMajorTickGridlineStrokeColor=function(){return this.getStrokeColor()},n.prototype.getMajorTickGridlineStrokeAlpha=function(){return.1},n.prototype.getMajorTickGridlineStrokeWidth=function(){return this.getStrokeWidth()},n.prototype.getMajorTickGridlineStrokeAlign=function(){return this.getStrokeAlign()},n.prototype.getMajorTickGridlineStrokeSide=function(){return this.getStrokeSide()},n.prototype.getMajorTickGridlineStrokeStyle=function(){return this.getStrokeStyle()},n.prototype.getMinorTickCount=function(){return 3},n.prototype.getMinorTickStep=function(){},n.prototype.getMinorTickSize=function(){return 5},n.prototype.getMinorTickPosition=function(){return bt.OUTSIDE},n.prototype.getMinorTickStyle=function(){},n.prototype.getMinorTickTextAlignHorizontal=function(n){return this.getMajorTickTextAlignHorizontal(n)},n.prototype.getMinorTickTextAlignVertical=function(n){return this.getMajorTickTextAlignVertical(n)},n.prototype.getMinorTickTextDirection=function(){return this.getMajorTickTextDirection()},n.prototype.getMinorTickTextColor=function(){return this.getStrokeColor()},n.prototype.getMinorTickTextFormat=function(){},n.prototype.getMinorTickTextPaddingHorizontal=function(){return this.getMajorTickTextPaddingHorizontal()},n.prototype.getMinorTickTextPaddingVertical=function(){return this.getMajorTickTextPaddingVertical()},n.prototype.getMinorTickStrokeEnable=function(){return!0},n.prototype.getMinorTickStrokeColor=function(){return this.getStrokeColor()},n.prototype.getMinorTickStrokeAlpha=function(){return this.getStrokeAlpha()},n.prototype.getMinorTickStrokeWidth=function(){return this.getStrokeWidth()},n.prototype.getMinorTickStrokeAlign=function(){return this.getStrokeAlign()},n.prototype.getMinorTickStrokeSide=function(){return this.getStrokeSide()},n.prototype.getMinorTickStrokeStyle=function(){return this.getStrokeStyle()},n}(),Ct=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(xt),Bt=function(n,t,r){var e=Math.abs(t-n)/r;if(e<=10)return e<=1.33?1:e<=2.86?2:e<=6.67?5:10;if(e<=100)return e<=13.33?10:e<=28.57?20:e<=66.67?50:100;if(e<=1e3)return e<=133.33?100:e<=285.71?200:e<=666.67?500:1e3;if(e<=1e4)return e<=1333.33?1e3:e<=2857.14?2e3:e<=6666.66?5e3:1e4;if(e<=12e4)return e<=13333.33?1e4:e<=24e3?2e4:e<=4e4?3e4:e<=72e3?6e4:e<=102857.14?9e4:12e4;if(e<=108e5)return e<=171428.57?12e4:e<=4e5?3e5:e<=8e5?6e5:e<=144e4?12e5:e<=24e5?18e5:e<=432e4?36e5:e<=6171428.57?54e5:e<=8e6?72e5:e<=9818181.82?9e6:108e5;var u=36e5,i=e/u;if(i<=24)return i<=1.33?u:i<=2.4?72e5:i<=3.43?108e5:i<=4.8?144e5:i<=6.86?216e5:i<=9.6?288e5:i<=14.4?432e5:i<=20.57?648e5:864e5;var o=i/24,c=Math.pow(10,Math.floor(Math.log(o)/Math.LN10)),f=e/c;return f<=1.33?c:f<=2.86?2*c:f<=6.67?5*c:10*c},St=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getMajorTickTextFormat=function(){return"%YMD\n%Hms"},t.prototype.getMajorTickStep=function(){return Bt},t}(Ct),Mt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getPosition=function(){return kt.LEFT},t.prototype.getLabelDirection=function(){return vt.BOTTOM_TO_TOP},t}(xt),_t=function(){function n(){}return n.prototype.isZero=function(n){return Math.abs(n)<1e-5},n}(),Lt=function(){function n(){}return n.prototype.toStep=function(n,t,r){var e=Math.abs(t-n)/r,u=Math.floor(Math.log(e)/Math.LN10),i=Math.pow(10,u),o=e/i;return o<=1.33?i:o<=2.86?2*i:o<=6.67?5*i:10*i},n}(),Et=function(){function n(){}return n.prototype.isZero=function(n){return Math.abs(n)<1e-5},n}(),Pt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(D),Ft=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(D),Nt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(D),At=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getX=function(){return"padding"},t.prototype.getY=function(){return"padding"},t.prototype.getWidth=function(){return"padding"},t.prototype.getHeight=function(){return"padding"},t.prototype.getPaddingTop=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t.prototype.getPaddingBottom=function(){return 10},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getBorderColor=function(n){return null},t.prototype.getCornerMask=function(){return f.ALL},t.prototype.isOverflowMaskEnabled=function(){return!0},t}(D);const Ht=wcardinal.ui.EShapeBar,Rt=wcardinal.ui.EShapeBarPosition;var zt=function(){function n(){}return n.prototype.isEnabled=function(n){return!0},n.prototype.newShape=function(n){var t=new Ht;return t.points.position=Rt.TOP,t.stroke.alpha=.5,t},n}(),Gt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(zt),Vt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.newShape=function(n){var t=new Ht;return t.points.position=Rt.LEFT,t.stroke.alpha=.5,t},t}(zt);const Ot=wcardinal.ui.EShapeCircle;var jt=function(){function n(){}return n.prototype.isEnabled=function(n){return!1},n.prototype.newShape=function(n){var t=new Ot;return n.isHovered?t.size.set(14,14):t.size.set(20,20),t},n}(),Yt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getCanvasBackgroundColor=function(){return 16777215},t.prototype.getCanvasBackgroundAlpha=function(){return 1},t.prototype.isAmbient=function(){return!0},t.prototype.getCanvasShadow=function(){return"WEAK"},t}(gt),Xt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Yt),Kt=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.isAmbient=function(){return!0},t.prototype.getBackgroundBase=function(){return 15658734},t}(pt),Ut=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(Kt);const Jt=wcardinal.ui.EShapeStrokeSide,qt=wcardinal.ui.EShapeStrokeStyle;var Qt=function(){function n(){}return n.prototype.getFillColor=function(){return 16777215},n.prototype.getFillAlpha=function(){return.5},n.prototype.getStrokeColor=function(){return 5197647},n.prototype.getStrokeAlpha=function(){return 1},n.prototype.getStrokeWidth=function(){return 2},n.prototype.getStrokeAlign=function(){return 0},n.prototype.getStrokeSide=function(){return Jt.ALL},n.prototype.getStrokeStyle=function(){return qt.NONE},n.prototype.getTextValue=function(){return""},n.prototype.getTextColor=function(){return this.getStrokeColor()},n.prototype.getTextAlpha=function(){return this.getStrokeAlpha()},n.prototype.getTextFamily=function(){return"auto"},n.prototype.getTextSize=function(){return 14},n.prototype.getRadius=function(){return.25},n.prototype.getSizeX=function(){return 100},n.prototype.getSizeY=function(){return 100},n.prototype.getHighlightColor=function(){return 2000880},n.prototype.getCurveSegmentCount=function(){return 24},n}(),Zt=function(){r.set("EShape",Qt)},$t=function(){r.set("DDiagram",Xt),r.set("DDiagramCanvas",Ut),Zt()},nr=function(n,t,r){var e=Math.max(t,r);if(0<n){for(var u=e/1e3,i=0;i<10&&n<u;++i)n*=10;if(u<=n)return n}return e},tr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.isAmbient=function(){return!1},t.prototype.getOutlineColor=function(n){return null},t.prototype.getSnapGridMajorInterval=function(){return 10},t.prototype.getSnapGridMajorColor=function(){return 10066329},t.prototype.getSnapGridMajorAlpha=function(){return.5},t.prototype.getSnapGridMajorWidth=function(){return 1.25},t.prototype.getSnapGridMajorStyle=function(){return qt.DASHED|qt.NON_SCALING},t.prototype.getSnapGridMinorColor=function(){return this.getSnapGridMajorColor()},t.prototype.getSnapGridMinorAlpha=function(){return.125},t.prototype.getSnapGridMinorWidth=function(){return this.getSnapGridMajorWidth()},t.prototype.getSnapGridMinorStyle=function(){return this.getSnapGridMajorStyle()},t.prototype.getSnapGridSize=function(){return nr},t.prototype.getSnapTargetColor=function(){return s.HIGHLIGHT_COLOR},t.prototype.getSnapTargetAlpha=function(){return 1},t.prototype.getSnapTargetWidth=function(){return this.getSnapGridMajorWidth()},t.prototype.getSnapTargetStyle=function(){return this.getSnapGridMajorStyle()},t}(Kt),rr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.isAmbient=function(){return!1},t.prototype.isThumbnailEnabled=function(){return!1},t.prototype.getThumbnailSize=function(){return null},t.prototype.isSnapEnabled=function(){return!0},t.prototype.isSnapGridVisible=function(){return!0},t.prototype.isSnapGridEnabled=function(){return!0},t.prototype.getSnapGridSize=function(){return 10},t.prototype.isSnapTargetVisible=function(){return!0},t.prototype.isSnapTargetEnabled=function(){return!0},t}(Yt);const er=wcardinal.ui.EShapeActionOpenDialogExtensions,ur=wcardinal.ui.EShapeActionOpenExtensions,ir=wcardinal.ui.EShapeActionValueBlinkType,or=wcardinal.ui.EShapeActionValueChangeColorTarget,cr=wcardinal.ui.EShapeActionValueChangeColorType,fr=wcardinal.ui.EShapeActionValueChangeTextType,lr=wcardinal.ui.EShapeActionValueGestureType,hr=wcardinal.ui.EShapeActionValueMiscType,ar=wcardinal.ui.EShapeActionValueOnInputAction,sr=wcardinal.ui.EShapeActionValueOpenDialogType,dr=wcardinal.ui.EShapeActionValueOpenType,mr=wcardinal.ui.EShapeActionValueOpetyped,Dr=wcardinal.ui.EShapeActionValueShowHideType,Tr=wcardinal.ui.EShapeActionValueSubtyped,pr=wcardinal.ui.EShapeActionValueTransformMoveType,gr=wcardinal.ui.EShapeActionValueTransformResizeType,Wr=wcardinal.ui.EShapeActionValueTransformRotateType,wr=wcardinal.ui.EShapeActionValueTransformType,kr=wcardinal.ui.EShapeActionValueType,br=wcardinal.ui.UtilHtmlElementWhen;var yr=function(){function n(){}return n.prototype.toLabel=function(n){var t=n.type;if(n instanceof Tr){var r,e=n.subtype;if(n instanceof mr){if(null!=(r=this.toOpetypedLabel(t,e,n.opetype,n)))return r}else if(null!=(r=this.toSubtypedLabel(t,e,n)))return r}return this.toTypedLabel(t,n)},n.prototype.toTypedLabel=function(n,t){return"".concat(this.toTypeLabel(n),": ").concat(this.toConditionLabel(t.condition))},n.prototype.toSubtypedLabel=function(n,t,r){var e=this.toTypeLabel(n);switch(n){case kr.SHOW_HIDE:return"".concat(e,": ").concat(this.toShowHideTypeLabel(t));case kr.BLINK:return"".concat(e,": ").concat(this.toBlinkTypeLabel(t));case kr.CHANGE_COLOR:case kr.CHANGE_COLOR_LEGACY:return"".concat(e,": ").concat(this.toChangeColorTypeLabel(t));case kr.CHANGE_TEXT:return"".concat(e,": ").concat(this.toChangeTextTypeLabel(t));case kr.OPEN:return"".concat(e,": ").concat(this.toOpenTypeLabel(t));case kr.GESTURE:return"".concat(e,": ").concat(this.toGestureTypeLabel(t));case kr.MISC:return"".concat(e,": ").concat(this.toMiscTypeLabel(t))}return null},n.prototype.toOpetypedLabel=function(n,t,r,e){switch(n){case kr.TRANSFORM:var u=this.toTransformTypeLabel(t);switch(t){case wr.ROTATE:return"".concat(u,": ").concat(this.toTransformRotateTypeLabel(r));case wr.MOVE:return"".concat(u,": ").concat(this.toTransformMoveTypeLabel(r));case wr.RESIZE:return"".concat(u,": ").concat(this.toTransformResizeTypeLabel(r))}}return null},n.prototype.toTypeLabel=function(n){switch(n){case kr.SHOW_HIDE:return"Show / hide";case kr.BLINK:return"Blink";case kr.TRANSFORM:return"Transform";case kr.OPEN:return"Open";case kr.CHANGE_COLOR:case kr.CHANGE_COLOR_LEGACY:return"Change color";case kr.CHANGE_TEXT:return"Change text";case kr.CHANGE_CURSOR:return"Change cursor";case kr.EMIT_EVENT:return"Emit an event";case kr.GESTURE:return"Gesture";case kr.MISC:return"Misc.";default:return kr.EXTENSION<=n?"Extension":"Unknown"}},n.prototype.toConditionLabel=function(n){return 20<n.length?n.substring(0,20)+"...":n},n.prototype.toBlinkTypeLabel=function(n){switch(n){case ir.VISIBILITY:return"Visibility";case ir.BRIGHTEN:return"Brighten";case ir.DARKEN:return"Darken";case ir.OPACITY:return"Opacity";case ir.COLOR_FILL:return"Fill";case ir.COLOR_STROKE:return"Stroke"}},n.prototype.toShowHideTypeLabel=function(n){switch(n){case Dr.SHAPE_SHOW:return"Show";case Dr.SHAPE_HIDE:return"Hide";case Dr.SHAPE:return"Shape";case Dr.LAYER:return"Layer"}},n.prototype.toTransformTypeLabel=function(n){switch(n){case wr.RESIZE:return"Resize";case wr.MOVE:return"Move";case wr.ROTATE:return"Rotate"}},n.prototype.toTransformRotateTypeLabel=function(n){switch(n){case Wr.RELATIVE:return"Relative";case Wr.ABSOLUTE:return"Absolute"}},n.prototype.toTransformMoveTypeLabel=function(n){switch(n){case pr.RELATIVE_X:return"Relative X";case pr.RELATIVE_Y:return"Relative Y";case pr.ABSOLUTE_X:return"Absolute X";case pr.ABSOLUTE_Y:return"Absolute Y";case pr.FORWARD_OR_BACKWARD:return"Forward / backward";case pr.LEFT_OR_RIGHT:return"Left / right"}},n.prototype.toTransformResizeTypeLabel=function(n){switch(n){case gr.ABSOLUTE_SIZE:return"Height & width";case gr.RELATIVE_SIZE:return"Height & width (%)";case gr.ABSOLUTE_HEIGHT:return"Height";case gr.RELATIVE_HEIGHT:return"Height (%)";case gr.ABSOLUTE_WIDTH:return"Width";case gr.RELATIVE_WIDTH:return"Width (%)"}},n.prototype.toChangeColorTypeLabel=function(n){if(n===cr.NONE)return"None";var t="",r="";return n&cr.FILL&&(t+=r+"Fill",r=", "),n&cr.STROKE&&(t+=r+"Stroke",r=", "),n&cr.TEXT&&(t+=r+"Text",r=", "),n&cr.TEXT_OUTLINE&&(t+=r+"Text outline"),t},n.prototype.toChangeColorTargetLabel=function(n){switch(n){case or.COLOR_AND_ALPHA:return"Color";case or.COLOR:return"RGB";case or.ALPHA:return"Alpha";case or.CODE:return"Dynamic color";case or.BRIGHTNESS:return"Brightness"}},n.prototype.toChangeTextTypeLabel=function(n){switch(n){case fr.TEXT:return"Text";case fr.NUMBER:return"Number"}},n.prototype.toOpenTypeLabel=function(n){switch(n){case dr.DIAGRAM_LEGACY:return"Diagram";case dr.PAGE_LEGACY:return"Page (New window)";case dr.PAGE_INPLACE_LEGACY:return"Page (In-place)";case dr.DIALOG_TEXT:return"Dialog (Text)";case dr.DIALOG_INTEGER:return"Dialog (Integer)";case dr.DIALOG_REAL:return"Dialog (Real)";case dr.DIALOG_BOOLEAN:return"Dialog (Boolean)";case dr.DIALOG_DATE:return"Dialog (Date)";case dr.DIALOG_TIME:return"Dialog (Time)";case dr.DIALOG_DATETIME:return"Dialog (Datetime)";case dr.DIAGRAM:return"Diagram";case dr.PAGE:return"Page";case dr.DIALOG:return"Dialog";default:if(dr.EXTENSION<=n){var t=ur.get(n);return t?t.label:"Extension"}return"Unknown"}},n.prototype.toOpenDialogTypeLabel=function(n){switch(n){case sr.TEXT:return"Text";case sr.INTEGER:return"Integer";case sr.REAL:return"Real";case sr.BOOLEAN:return"Boolean";case sr.DATE:return"Date";case sr.TIME:return"Time";case sr.DATETIME:return"Datetime";default:if(sr.EXTENSION<=n){var t=er.get(n);return t?t.label:"Extension"}return"Unknown"}},n.prototype.toGestureTypeLabel=function(n){switch(n){case lr.SHAPE:return"Shape";case lr.LAYER:return"Layer"}},n.prototype.toMiscTypeLabel=function(n){switch(n){case hr.INPUT_TEXT:return"Input (Text)";case hr.INPUT_INTEGER:return"Input (Integer)";case hr.INPUT_REAL:return"Input (Real)";case hr.EMIT_EVENT:return this.toOnInputActionLabel(ar.EMIT_EVENT);case hr.WRITE_BOTH:return this.toOnInputActionLabel(ar.WRITE_BOTH);case hr.WRITE_LOCAL:return this.toOnInputActionLabel(ar.WRITE_LOCAL);case hr.WRITE_REMOTE:return this.toOnInputActionLabel(ar.WRITE_REMOTE);case hr.HTML_ELEMENT:return"HTML element";case hr.HTML_ELEMENT_WITHOUT_POINTER_EVENTS:return"HTML element (No pointer events)";case hr.SHOW_HIDE_LAYER:return"Show / hide layers";case hr.GESTURE_LAYER:return"Layer gesture";case hr.GESTURE:return"Gesture";case hr.EXECUTE:return"Execute"}},n.prototype.toHtmlElementWhenLabel=function(n){switch(n){case br.CLICKED:return"Clicked";case br.DOUBLE_CLICKED:return"Double clicked";case br.FOCUSED:return"Focused";case br.ALWAYS:return"Always"}},n.prototype.toOnInputActionLabel=function(n){switch(n){case ar.EMIT_EVENT:return"Emit event";case ar.WRITE_BOTH:return"Write (Both)";case ar.WRITE_LOCAL:return"Write (Local)";case ar.WRITE_REMOTE:return"Write (Remote)"}},n}(),Ir=function(){r.set("EShapeActionValue",yr)},vr=function(){r.set("DDiagramEditor",rr),r.set("DDiagramCanvasEditor",tr),Ir(),Zt()},xr=function(){r.set("DDialog",Y)};const Cr=wcardinal.ui.DLayoutDirection;var Br=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return null},t.prototype.getBorderColor=function(n){return null},t.prototype.getMargin=function(){return 5},t.prototype.getInteractive=function(){return o.CHILDREN},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t.prototype.getDirection=function(){return Cr.VERTICAL},t.prototype.getCornerAdjust=function(){return!1},t.prototype.getMultiplicity=function(){return 1},t.prototype.getReverse=function(){return!1},t}(D),Sr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getDirection=function(){return Cr.VERTICAL},t.prototype.getWidth=function(){return"auto"},t}(Br),Mr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getX=function(){return"padding"},t.prototype.getY=function(){return"padding"},t.prototype.getWidth=function(){return"padding"},t.prototype.getHeight=function(){return"auto"},t.prototype.getPaddingTop=function(){return 16},t.prototype.getPaddingRight=function(){return 16},t.prototype.getPaddingBottom=function(){return 16},t.prototype.getPaddingLeft=function(){return 16},t}(Sr),_r=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getDirection=function(){return Cr.HORIZONTAL},t.prototype.getHeight=function(){return"auto"},t}(Br),Lr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getButtonOk=function(){return"OK"},t.prototype.getButtonCancel=function(){return"Cancel"},t.prototype.getX=function(){return"padding"},t.prototype.getY=function(){return"padding"},t.prototype.getWidth=function(){return"padding"},t.prototype.getHeight=function(){return"auto"},t.prototype.getPaddingTop=function(){return 0},t.prototype.getPaddingRight=function(){return 16},t.prototype.getPaddingBottom=function(){return 16},t.prototype.getPaddingLeft=function(){return 16},t}(_r),Er=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return"padding"},t.prototype.getHeight=function(){return 38},t.prototype.getPaddingLeft=function(){return 16},t.prototype.getPaddingRight=function(){return 16},t.prototype.getBackgroundColor=function(n){return null},t.prototype.getCornerMask=function(){return f.BOTTOM},t.prototype.getBorderColor=function(n){return null},t.prototype.getInteractive=function(){return o.CHILDREN},t.prototype.newState=function(n){n.isFocusable=!1},t}(x);t.add("dialog_layered_header_button_close",20,14,'<g><polyline fill="none" stroke="#fff" stroke-width="1" points="15 2 5 12"></polyline><polyline fill="none" stroke="#fff" stroke-width="1" points="5 2 15 12"></polyline></g>');var Pr=function(n,t){return n-34},Fr=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getX=function(){return Pr},r.prototype.getY=function(){return"center"},r.prototype.getWidth=function(){return 30},r.prototype.getHeight=function(){return 30},r.prototype.getSecondaryImageAlignHorizontal=function(){return W.CENTER},r.prototype.getSecondaryImageAlignVertical=function(){return k.MIDDLE},r.prototype.getSecondaryImageAlignWith=function(){return b.PADDING},r.prototype.getSecondaryImageSource=function(n){return t.mappings.dialog_layered_header_button_close},r}(M),Nr=function(n){return n-1},Ar=function(n){return n-16},Hr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getX=function(){return 8},t.prototype.getY=function(){return Nr},t.prototype.getWidth=function(){return Ar},t.prototype.getHeight=function(){return 1},t.prototype.getBackgroundColor=function(n){return s.BORDER_COLOR},t.prototype.getBorderColor=function(n){return null},t.prototype.getInteractive=function(){return o.NONE},t}(x),Rr=function(){r.set("DDialogLayeredContent",Mr),r.set("DDialogLayeredFooter",Lr),r.set("DDialogLayeredHeaderButtonClose",Fr),r.set("DDialogLayeredHeaderSeparator",Hr),r.set("DDialogLayeredHeader",Er),r.set("DDialogLayered",X)},zr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getFooter=function(){return{button:{ok:"Yes",cancel:"No"}}},t.prototype.getMessage=function(){return""},t}(X),Gr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(x),Vr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return"padding"},t.prototype.getHeight=function(){return"auto"},t.prototype.getTextAlignHorizontal=function(){return W.CENTER},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(Gr),Or=function(){r.set("DDialogConfirm",zr),r.set("DDialogConfirmMessage",Vr)},jr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getMessage=function(){return"Are you sure you want to delete this data?"},t}(zr),Yr=function(){r.set("DDialogConfirmDelete",jr)},Xr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getMessage=function(){return"Your changes have not been saved.\nDo you want to discard the changes and continue?"},t}(zr),Kr=function(){r.set("DDialogConfirmDiscard",Xr)},Ur=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getLabel=function(){return""},t.prototype.getInputMargin=function(){return 32},t}(X),Jr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Ur),qr=function(){r.set("DDialogInputBoolean",Jr)},Qr=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Ur),Zr=function(){r.set("DDialogInputInteger",Qr)},$r=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Ur),ne=function(){r.set("DDialogInputReal",$r)},te=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Ur),re=function(){r.set("DDialogInputText",te)},ee=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getFooter=function(){return{button:{ok:"OK",cancel:null}}},t}(zr),ue=function(){r.set("DDialogMessage",ee)},ie=function(n){return n.isSucceeded?"Processed successfully":n.isFailed?"Failed to process the request":"Processing..."},oe=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getFooter=function(){return{button:{ok:"OK",cancel:null}}},t.prototype.getMessage=function(){return ie},t.prototype.getDoneDelay=function(){return 400},t.prototype.getCloseDelay=function(){return 600},t}(zr);t.add("success_mark",21,21,'<g transform="scale(0.875,0.875)"><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z" fill="#fff" /></g>'),t.add("fail_mark",21,21,'<g transform="scale(0.875,0.875)"><path d="M11 15h2v2h-2zm0-8h2v6h-2zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" fill="#fff" /></g>');var ce=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getHeight=function(){return 90},r.prototype.getImageSource=function(n){return n.isSucceeded?t.mappings.success_mark:n.isFailed?t.mappings.fail_mark:null},r.prototype.getImageTintAlpha=function(n){return.75},r}(Vr),fe=function(){r.set("DDialogProcessing",oe),r.set("DDialogProcessingMessage",ce)},le=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getFooter=function(){return{button:{ok:"Save",cancel:null}}},t}(te),he=function(){r.set("DDialogSaveAs",le)},ae=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return"auto"},t}(Mr),se=function(){r.set("DDialogFittedContent",ae),r.set("DDialogFitted",K)},de=function(){cn(),Z(),Yr(),Kr(),Or(),En(),Rn(),se(),qr(),Zr(),ne(),re(),Rr(),ue(),fe(),he(),lt(),mt(),xr()},me=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return n.isActive?15792383:null},t.prototype.getBackgroundAlpha=function(n){return n.isActive?.1:0},t.prototype.getMargin=function(){return 0},t.prototype.getCornerMask=function(){return f.ALL},t}(Sr);t.add("menu_item_expandable_header_closed",14,14,'<g transform="scale(1, 0.7)"><polyline fill="none" stroke="#fff" stroke-width="1" points="6 16 10 10 6 4"></polyline></g>'),t.add("menu_item_expandable_header_opened",14,14,'<g transform="scale(0.7, 1)"><polyline fill="none" stroke="#fff" stroke-width="1" points="16 6 10 10 4 6"></polyline></g>');var De=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return n.inDisabled?null:n.isHovered||n.inActive?16316664:null},t.prototype.getBorderColor=function(n){return null},t.prototype.getHeight=function(){return 30},t.prototype.getWidth=function(){return"padding"},t.prototype.getPaddingLeft=function(){return 16},t.prototype.getPaddingRight=function(){return 16},t.prototype.getCornerMask=function(){return f.ALL},t}(Gr),Te=function(){r.set("DExpandableHeader",De),r.set("DExpandable",me)};const pe=wcardinal.ui.DHtmlElementState;var ge=function(){return null},We=function(n){var t=document.createElement("div");return n.appendChild(t),t},we=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getElementCreator=function(){return ge},t.prototype.setElementStyle=function(n,t,r,e,u,i,o){var c=this.getElementStylePointerEvent(t)+this.getElementStylePosition(t,e,u,i)+this.getElementStyleMargin(t)+this.getElementStyleText(t)+this.getElementStyleBackground(t)+this.getElementStyleBorder(t)+this.getElementStylePadding(t,r)+this.getElementStyleOutline(t)+this.getElementStyleClipPath(t,o);n.setAttribute("style",c),t.inReadOnly?n.setAttribute("readonly","readonly"):n.removeAttribute("readonly"),t.inDisabled?n.setAttribute("disabled","disabled"):n.removeAttribute("disabled")},t.prototype.getElementStylePointerEvent=function(n){return n.is(pe.NO_POINTER_EVENTS)?"":"pointer-events: auto;"},t.prototype.getElementStyleBackground=function(n){return"background-color: transparent;"},t.prototype.getElementStyleBorder=function(n){return"border: none; box-sizing: border-box;"},t.prototype.getElementStylePadding=function(n,t){return t?"getLeft"in t?"padding: ".concat(t.getTop(),"px ").concat(t.getRight(),"px ")+"".concat(t.getBottom(),"px ").concat(t.getLeft(),"px;"):"padding: ".concat(t.vertical,"px ").concat(t.horizontal,"px;"):"padding: 0px;"},t.prototype.getElementStyleOutline=function(n){return"outline: none;"},t.prototype.getElementStylePositionPosition=function(n,t){if(n){if(t){var r=n.x-t.x,e=n.y-t.y;return"left:".concat(r,"px; top:").concat(e,"px;")}return"left:".concat(n.x,"px; top: ").concat(n.y,"px;")}return"left: 0px; top: 0px;"},t.prototype.getElementStylePositionSize=function(n){return n?"width: ".concat(n.width,"px; height: ").concat(n.height,"px;"):"width: 0px; height: 0px;"},t.prototype.getElementStylePositionTransform=function(n){return n?"transform: matrix(".concat(n.a,",").concat(n.b,",").concat(n.c,",").concat(n.d,",").concat(n.tx,",").concat(n.ty,");"):""},t.prototype.getElementStylePosition=function(n,t,r,e){return"position: absolute;"+this.getElementStylePositionPosition(t,e)+this.getElementStylePositionSize(t)+this.getElementStylePositionTransform(r)},t.prototype.getElementStyleText=function(n){return"font-family: ".concat(this.getFontFamilly(),";")+"font-size: ".concat(this.getFontSize(),"px;")+"color: #".concat(this.getColor(n).toString(16),";")+"line-height: ".concat(this.getLineHeight(),"px;")+"-moz-tab-size: 4; -o-tab-size: 4; tab-size: 4;"},t.prototype.getElementStyleMargin=function(n){return"margin: 0;"},t.prototype.getElementStyleClipPath=function(n,t){if(null!=t){var r=t.id;return"-webkit-clip-path: url(#".concat(r,"); clip-path: url(#").concat(r,");")}return""},t.prototype.getClipperCreator=function(){return We},t.prototype.setClipperStyle=function(n,t,r,e,u,i,o){var c="outline: none; padding: 0; margin: 0; border: none;background-color: transparent; pointer-events: none;"+this.getClipperStyleOverflow(i)+this.getClipperStylePosition(i);n.setAttribute("style",c)},t.prototype.getClipperStyleOverflow=function(n){return n?"overflow: hidden;":"overflow: visible;"},t.prototype.getClipperStylePositionPosition=function(n){return n?"left: ".concat(n.x,"px; top: ").concat(n.y,"px;"):"left: 0px; top: 0px;"},t.prototype.getClipperStylePositionSize=function(n){return n?"width: ".concat(n.width,"px; height: ").concat(n.height,"px;")+"line-height: ".concat(n.height,"px;"):"width: 0px; height: 0px;"},t.prototype.getClipperStylePosition=function(n){return"position: absolute;"+this.getClipperStylePositionPosition(n)+this.getClipperStylePositionSize(n)},t.prototype.isClipperExEnabled=function(){return!1},t.prototype.getBeforeCreator=function(){return We},t.prototype.setBeforeStyle=function(n){n.setAttribute("style","overflow: hidden; outline: none;padding: 0; margin: 0; border: none; background-color: transparent;position: absolute; left: 0; top: 0; width: 0; height: 0; line-height: 0;"),n.setAttribute("tabindex","0")},t.prototype.getAfterCreator=function(){return We},t.prototype.setAfterStyle=function(n){this.setBeforeStyle(n)},t.prototype.getWhen=function(){return br.FOCUSED},t.prototype.getSelect=function(){return!1},t}(x),ke=function(){r.set("DImage",Gr)},be=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getHeight=function(){return this.getLineHeight()},t}(_r),ye=function(){r.set("DInputAndLabel",be)},Ie=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getCornerAdjust=function(){return!0},t.prototype.getMargin=function(){return 0},t}(_r),ve=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBorderMask=function(){return c.RIGHT},t.prototype.isToggle=function(){return!0},t.prototype.newTextValue=function(){return"OFF"},t}(B),xe=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBorderMask=function(){return c.LEFT},t.prototype.isToggle=function(){return!0},t.prototype.newTextValue=function(){return"ON"},t}(B),Ce=function(){r.set("DInputBoolean",Ie),r.set("DInputBooleanButtonOn",xe),r.set("DInputBooleanButtonOff",ve)},Be=function(){return null},Se=function(n){return n},Me=function(n){function t(){var t=null!==n&&n.apply(this,arguments)||this;return t.BACKGROUND_COLOR=s.BACKGROUND_COLOR_ON_BOARD,t.BACKGROUND_COLOR_HOVERED=a.darken(t.BACKGROUND_COLOR,.017),t}return i(t,n),t.prototype.getBackgroundColor=function(n){return n.inDisabled||n.inReadOnly?null:n.isHovered?this.BACKGROUND_COLOR_HOVERED:this.BACKGROUND_COLOR},t.prototype.getBorderColor=function(n){return n.isInvalid?s.INVALID_COLOR:s.BORDER_COLOR},t.prototype.getHeight=function(){return this.getLineHeight()},t.prototype.getWidth=function(){return 100},t.prototype.getPlaceholder=function(){return""},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t.prototype.getCursor=function(n){return n.isActionable?"text":""},t.prototype.getEditingFormatter=function(){return this.getTextFormatter()},t.prototype.getEditingUnformatter=function(){return Se},t.prototype.getEditingValidator=function(){return Be},t.prototype.getSelect=function(){return!0},t.prototype.getElementStyleBorder=function(n){return"border: 1px solid transparent; box-sizing: border-box;"},t}(we),_e="d-theme-white-input-input",Le="".concat(_e,"-element"),Ee=function(n){var t=n.getElementsByClassName(Le);if(0<t.length)return t[0];var r=document.createElement("input");return r.setAttribute("spellcheck","false"),r.setAttribute("class",Le),n.appendChild(r),r},Pe=function(n,t){var r=n.getElementsByClassName(t);if(0<r.length)return r[0];var e=document.createElement("div");return e.setAttribute("class",t),n.appendChild(e),e},Fe="".concat(_e,"-clipper"),Ne=function(n){return Pe(n,Fe)},Ae="".concat(_e,"-before"),He=function(n){return Pe(n,Ae)},Re="".concat(_e,"-after"),ze=function(n){return Pe(n,Re)},Ge=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getElementCreator=function(){return Ee},t.prototype.getClipperCreator=function(){return Ne},t.prototype.getBeforeCreator=function(){return He},t.prototype.getAfterCreator=function(){return ze},t}(Me),Ve=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextAlignHorizontal=function(){return W.CENTER},t.prototype.getStep=function(){return null},t.prototype.getMin=function(){return null},t.prototype.getMax=function(){return null},t.prototype.newTextValue=function(){return 0},t}(Ge),Oe=function(n){var t=parseInt(n,10);return t==t?t:0},je=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getEditingUnformatter=function(){return Oe},t}(Ve),Ye=function(){r.set("DInputInteger",je)},Xe=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextAlignHorizontal=function(){return W.RIGHT},t.prototype.getWidth=function(){return 60},t.prototype.getHeight=function(){return this.getLineHeight()},t}(xn),Ke=function(){r.set("DInputLabel",Xe)},Ue=function(n){var t=parseFloat(n);return t==t?t:0},Je=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getEditingUnformatter=function(){return Ue},t}(Ve),qe=function(){r.set("DInputReal",Je)},Qe=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.newTextValue=function(){return""},t}(Ge);t.add("input_search",21,21,'<g transform="scale(0.875,0.875)"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" fill="#fff"/></g>');var Ze=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getPaddingRight=function(){return 31},r.prototype.getImageSource=function(n){return t.mappings.input_search},r.prototype.getImageAlignWith=function(){return b.BORDER},r.prototype.getImageAlignHorizontal=function(){return W.RIGHT},r.prototype.getImageMarginHorizontal=function(){return 6},r}(Qe),$e=function(){r.set("DInputSearch",Ze)},nu=function(){r.set("DInputText",Qe)},tu="d-theme-white-input-text-area",ru="".concat(tu,"-element"),eu=function(n){var t=n.getElementsByClassName(ru);if(0<t.length)return t[0];var r=document.createElement("textarea");return r.setAttribute("spellcheck","false"),r.setAttribute("class",ru),n.appendChild(r),r},uu=function(n,t){var r=n.getElementsByClassName(t);if(0<r.length)return r[0];var e=document.createElement("div");return e.setAttribute("class",t),n.appendChild(e),e},iu="".concat(tu,"-clipper"),ou=function(n){return uu(n,iu)},cu="".concat(tu,"-before"),fu=function(n){return uu(n,cu)},lu="".concat(tu,"-after"),hu=function(n){return uu(n,lu)},au=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextAlignVertical=function(){return k.TOP},t.prototype.getTextStyleWordWrap=function(){return y.NORMAL},t.prototype.getElementCreator=function(){return eu},t.prototype.getClipperCreator=function(){return ou},t.prototype.getBeforeCreator=function(){return fu},t.prototype.getAfterCreator=function(){return hu},t.prototype.newTextValue=function(){return""},t.prototype.getElementStyleText=function(t){return n.prototype.getElementStyleText.call(this,t)+this.getElementStyleTextResize(t)+this.getElementStyleTextWordWrap(t)},t.prototype.getElementStyleTextResize=function(n){return"resize: none;"},t.prototype.getElementStyleTextWordWrap=function(n){var t="overflow-wrap: break-word; word-wrap: break-word;";switch(this.getTextStyleWordWrap()){case y.NORMAL:t+="word-break: normal;";break;default:t+="word-break: break-all;"}return t},t}(Me),su=function(){r.set("DInputTextArea",au)},du=function(){ye(),Ce(),Ye(),Ke(),qe(),$e(),su(),nu()},mu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return null},t.prototype.getBorderColor=function(n){return null},t.prototype.getWidth=function(){return 0},t.prototype.getHeight=function(){return 0},t.prototype.getClearType=function(){return l.BOTH},t.prototype.getInteractive=function(){return o.CHILDREN},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(D),Du=function(){r.set("DLayout",Br),r.set("DLayoutHorizontal",_r),r.set("DLayoutSpace",mu),r.set("DLayoutVertical",Sr)};const Tu=wcardinal.ui.DLinkMenuItemId;t.add("link_mark",24,24,'<g><path fill="none" stroke="#fff" stroke-width="1" d="M10 6H7c-1.11 0-2 .9-2 2v8c0 1.1.89 2 2 2h8c1.1 0 2-.9 2-2v-3 M19 11V4h-7 M18.75 4.5l-8 8" /></g>');var pu=function(){function n(){}return n.prototype.getImageSource=function(n){return t.mappings.link_mark},n.prototype.getMenuOptions=function(){return{sticky:!0,align:"RIGHT",items:[{value:Tu.OPEN_LINK,text:{value:this.getLabelOpenLink()}},{value:Tu.OPEN_LINK_IN_NEW_WINDOW,text:{value:this.getLabelOpenInNewWindow()}},{value:Tu.COPY_LINK_ADDRESS,text:{value:this.getOpenCopyLinkAddress()}}]}},n.prototype.getLabelOpenLink=function(){return"Open"},n.prototype.getLabelOpenInNewWindow=function(){return"Open in new window"},n.prototype.getOpenCopyLinkAddress=function(){return"Copy link address"},n}(),gu=function(){r.set("DLink",pu)},Wu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.newStyle=function(){return new ot(null,!1,!0)},t}(ct),wu=function(){r.set("DListItemAmbient",Wu),r.set("DListItem",ct),r.set("DList",ut)},ku=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return s.BACKGROUND_COLOR_ON_BOARD},t.prototype.getOffsetX=function(){return 5},t.prototype.getOffsetY=function(){return 5},t.prototype.getPaddingTop=function(){return 5},t.prototype.getPaddingBottom=function(){return 5},t.prototype.getWidth=function(){return 200},t.prototype.getHeight=function(){return"auto"},t.prototype.getMargin=function(){return 0},t.prototype.getShadow=function(){return this.newShadowWeak()},t.prototype.getInteractive=function(){return o.BOTH},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusRoot=!0},t}(Sr),bu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return n.inDisabled?null:n.isActive?this.getBackgroundColorActive(n):n.isHovered?s.WEAK_HIGHLIGHT_COLOR:null},t.prototype.getBackgroundColorActive=function(n){return s.HIGHLIGHT_COLOR},t.prototype.getBackgroundAlpha=function(n){return n.inDisabled?s.WEAK_HIGHLIGHT_ALPHA:n.isActive?this.getBackgroundAlphaActive(n):s.WEAK_HIGHLIGHT_ALPHA},t.prototype.getBackgroundAlphaActive=function(n){return s.HIGHLIGHT_ALPHA},t.prototype.getColor=function(n){return n.inDisabled?s.COLOR:n.isActive?this.getColorActive(n):s.COLOR},t.prototype.getColorActive=function(n){return s.COLOR},t.prototype.getBorderColor=function(n){return null},t.prototype.getHeight=function(){return 30},t.prototype.getWidth=function(){return"padding"},t.prototype.getTextAlignHorizontal=function(){return W.LEFT},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t.prototype.getCornerMask=function(){return f.ALL},t.prototype.getCursor=function(n){return n.isActionable?"pointer":""},t}(Gr),yu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColorActive=function(n){return s.HIGHLIGHT_COLOR},t.prototype.getBackgroundAlphaActive=function(n){return 1},t.prototype.getColorActive=function(n){return s.ACTIVE_COLOR},t.prototype.getPaddingLeft=function(){return this.getPaddingRight()},t.prototype.getPaddingRight=function(){return 26},t}(bu),Iu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getShortcutTextMargin=function(){return this.getPaddingRight()},t.prototype.getShortcutColor=function(n){return this.getColor(n)},t.prototype.getShortcutAlpha=function(n){return.5*this.getAlpha(n)},t}(yu);t.add("menu_item_mark_check_active",14,14,'<g><polyline fill="none" stroke="#fff" stroke-width="1" points="1 6.5 5 11 13 2.5"></polyline></g>'),t.add("menu_item_mark_check_inactive",14,14,"<g></g>");var vu=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getBackgroundColorActive=function(n){return n.isHovered?s.WEAK_HIGHLIGHT_COLOR:null},r.prototype.getBackgroundAlphaActive=function(n){return s.WEAK_HIGHLIGHT_ALPHA},r.prototype.getColorActive=function(n){return s.COLOR},r.prototype.getImageSource=function(n){return n.isActive?t.mappings.menu_item_mark_check_active:t.mappings.menu_item_mark_check_inactive},r.prototype.getImageAlignWith=function(){return b.BORDER},r.prototype.getImageMarginHorizontal=function(){return 7},r}(Iu),xu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return n.isActive?15792383:null},t.prototype.getBackgroundAlpha=function(n){return n.isActive?.1:0},t.prototype.getMargin=function(){return 0},t.prototype.getWidth=function(){return"padding"},t.prototype.getHeight=function(){return"auto"},t.prototype.getCornerMask=function(){return f.ALL},t}(Sr),Cu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return"padding"},t.prototype.getHeight=function(){return"auto"},t.prototype.getCornerMask=function(){return f.ALL},t}(Sr),Bu=function(){function n(){}return n.init=function(){t.add("expandable_closed",14,14,'<g transform="scale(1, 0.7)"><polyline fill="none" stroke="#fff" stroke-width="1" points="6 16 10 10 6 4"></polyline></g>'),t.add("expandable_opened",14,14,'<g transform="scale(0.7, 1)"><polyline fill="none" stroke="#fff" stroke-width="1" points="16 6 10 10 4 6"></polyline></g>')},n.getImageOpened=function(){return t.mappings.expandable_opened},n.getImageClosed=function(){return t.mappings.expandable_closed},n}();Bu.init();var Su=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getPaddingLeft=function(){return this.getPaddingRight()},t.prototype.getPaddingRight=function(){return 26},t.prototype.getImageSource=function(n){return n.inActive?Bu.getImageOpened():Bu.getImageClosed()},t.prototype.getImageAlignWith=function(){return b.BORDER},t.prototype.getImageMarginHorizontal=function(){return 7},t}(bu),Mu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getPaddingLeft=function(){return n.prototype.getPaddingLeft.call(this)+16},t.prototype.getImageMarginHorizontal=function(){return n.prototype.getImageMarginHorizontal.call(this)+16},t}(vu);const _u=wcardinal.ui.DBaseState;var Lu=function(t){function r(){var r=t.call(this)||this;return r.M=n.getInstance().get("DLink"),r}return i(r,t),r.prototype.getImageSource=function(n){return n.is(_u.NEW_WINDOW)?this.M.getImageSource(n):null},r.prototype.getImageTintAlpha=function(n){return n.isHovered?t.prototype.getImageTintAlpha.call(this,n):0},r.prototype.getImageAlignWith=function(){return b.BORDER},r.prototype.getImageAlignHorizontal=function(){return W.RIGHT},r}(Iu),Eu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getPaddingLeft=function(){return n.prototype.getPaddingLeft.call(this)+16},t}(Lu);t.add("menu_item_mark_next",14,20,'<g><polyline fill="none" stroke="#fff" stroke-width="1" points="5 16 11 10 5 4"></polyline></g>');var Pu=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getImageSource=function(n){return t.mappings.menu_item_mark_next},r.prototype.getImageAlignWith=function(){return b.BORDER},r.prototype.getImageAlignHorizontal=function(){return W.RIGHT},r.prototype.getImageMarginHorizontal=function(){return 12},r}(yu),Fu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getPaddingLeft=function(){return n.prototype.getPaddingLeft.call(this)+16},t}(Pu),Nu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBorderColor=function(n){return s.WEAK_HIGHLIGHT_COLOR},t.prototype.getBorderAlpha=function(n){return s.WEAK_HIGHLIGHT_ALPHA},t.prototype.getHeight=function(){return 15},t.prototype.getWidth=function(){return"padding"},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t.prototype.getInteractive=function(){return o.NONE},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(bu),Au=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getPaddingLeft=function(){return n.prototype.getPaddingLeft.call(this)+16},t}(Nu),Hu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(mu),Ru=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getPaddingLeft=function(){return n.prototype.getPaddingLeft.call(this)+16},t}(Hu),zu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getPaddingLeft=function(){return n.prototype.getPaddingLeft.call(this)+16},t}(Iu),Gu=function(){r.set("DMenu",ku),r.set("DMenuItem",yu),r.set("DMenuItemCheck",vu),r.set("DMenuItemLink",Lu),r.set("DMenuItemMenu",Pu),r.set("DMenuItemSeparator",Nu),r.set("DMenuItemSpace",Hu),r.set("DMenuItemText",Iu),r.set("DMenuItemExpandableBody",Cu),r.set("DMenuItemExpandableHeader",Su),r.set("DMenuItemExpandableItemCheck",Mu),r.set("DMenuItemExpandableItemLink",Eu),r.set("DMenuItemExpandableItemMenu",Fu),r.set("DMenuItemExpandableItemSeparator",Au),r.set("DMenuItemExpandableItemSpace",Ru),r.set("DMenuItemExpandableItemText",zu),r.set("DMenuItemExpandable",xu)},Vu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(){return 16645629},t.prototype.getBorderColor=function(n){return null},t.prototype.getHeight=function(){return 30},t.prototype.getMargin=function(){return 0},t.prototype.getPaddingLeft=function(){return 5},t.prototype.getPaddingRight=function(){return 5},t.prototype.getInteractive=function(){return o.BOTH},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusRoot=!0},t}(_r),Ou=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return n.inDisabled?null:n.isActive?s.HIGHLIGHT_COLOR:n.isHovered?s.WEAK_HIGHLIGHT_COLOR:null},t.prototype.getBackgroundAlpha=function(n){return s.WEAK_HIGHLIGHT_ALPHA},t.prototype.getBorderColor=function(){return null},t.prototype.getWidth=function(){return"auto"},t.prototype.getHeight=function(){return"100%"},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t.prototype.getCornerMask=function(){return f.ALL},t.prototype.getTextAlignHorizontal=function(){return W.LEFT},t.prototype.getTextStyleClipping=function(){return!1},t}(B),ju=function(){r.set("DMenuBarItem",Ou),r.set("DMenuBar",Vu),Gu()},Yu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return s.BACKGROUND_COLOR_ON_BOARD},t.prototype.getBorderColor=function(n){return null},t.prototype.getInteractive=function(){return o.BOTH},t}(et),Xu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return"100%"},t.prototype.getHeight=function(){return"auto"},t.prototype.getPaddingTop=function(){return 16},t.prototype.getPaddingBottom=function(){return 16},t.prototype.getMargin=function(){return 0},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(Sr),Ku=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(vu),Uu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(xu),Ju=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Mu),qu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Eu),Qu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Fu),Zu=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Au),$u=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Ru),ni=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(zu),ti=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Lu),ri=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Pu),ei=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Nu),ui=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Hu),ii=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Iu),oi=function(){r.set("DMenuSided",Yu),r.set("DMenuSidedContent",Xu),r.set("DMenuSidedItemCheck",Ku),r.set("DMenuSidedItemLink",ti),r.set("DMenuSidedItemMenu",ri),r.set("DMenuSidedItemSeparator",ei),r.set("DMenuSidedItemSpace",ui),r.set("DMenuSidedItemText",ii),r.set("DMenuSidedItemExpandable",Uu),r.set("DMenuSidedItemExpandableItemCheck",Ju),r.set("DMenuSidedItemExpandableItemLink",qu),r.set("DMenuSidedItemExpandableItemMenu",Qu),r.set("DMenuSidedItemExpandableItemSeparator",Zu),r.set("DMenuSidedItemExpandableItemSpace",$u),r.set("DMenuSidedItemExpandableItemText",ni)},ci=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return"100%"},t.prototype.getHeight=function(){return"100%"},t.prototype.getTextAlignHorizontal=function(){return W.CENTER},t.prototype.getInteractive=function(){return o.NONE},t.prototype.getAlpha=function(){return.2},t.prototype.getFontSize=function(){return 26},t.prototype.getFontWeight=function(){return"bold"},t.prototype.getImageTintAlpha=function(n){return.2},t.prototype.getImageAlignWith=function(){return b.TEXT},t.prototype.getImageAlignHorizontal=function(){return W.LEFT},t.prototype.getImageAlignVertical=function(){return k.MIDDLE},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(x),fi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.newTextValue=function(){return"Something went wrong"},t}(ci),li=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.newTextValue=function(){return"No items found"},t}(ci),hi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.newTextValue=function(){return"Searching"},t}(ci),ai=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getFontSize=function(){return 18},t}(ci),si=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.newTextValue=function(){return"Something went wrong"},t}(ai),di=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.newTextValue=function(){return"No items found"},t}(ai),mi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.newTextValue=function(){return"Searching"},t}(ai),Di=function(){r.set("DNote",ci),r.set("DNoteError",fi),r.set("DNoteNoItemsFound",li),r.set("DNoteSearching",hi),r.set("DNoteSmallError",si),r.set("DNoteSmallNoItemsFound",di),r.set("DNoteSmallSearching",mi)},Ti=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return"auto"},t.prototype.getMargin=function(){return 10},t.prototype.getButtonSpace=function(){return 10},t}(_r);t.add("pagination_dots",21,21,'<g><circle cx="2" cy="15" r="1.1" fill="#fff" stroke="none" /><circle cx="10.5" cy="15" r="1.1" fill="#fff" stroke="none" /><circle cx="19" cy="15" r="1.1" fill="#fff" stroke="none" /></g>');var pi=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getWidth=function(){return 30},r.prototype.getHeight=function(){return 30},r.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},r.prototype.getImageSource=function(n){return t.mappings.pagination_dots},r}(x);t.add("pagination_button_last",21,21,'<g><polyline fill="none" stroke="#fff" stroke-width="1" points="9 15 15 10 9 5"></polyline><polyline fill="none" stroke="#fff" stroke-width="1" points="5 15 11 10 5 5"></polyline></g>');var gi=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getWidth=function(){return 30},r.prototype.getImageSource=function(n){return t.mappings.pagination_button_last},r}(M);t.add("pagination_button_next",21,21,'<g><polyline fill="none" stroke="#fff" stroke-width="1" points="7 15 13 10 7 5"></polyline></g>');var Wi=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getWidth=function(){return 30},r.prototype.getImageSource=function(n){return t.mappings.pagination_button_next},r}(M),wi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return 30},t.prototype.newTextValue=function(){return 0},t.prototype.getTextStyleClipping=function(){return!1},t}(M);t.add("pagination_button_previous",21,21,'<g><polyline fill="none" stroke="#fff" stroke-width="1" points="13 15 7 10 13 5"></polyline></g>');var ki=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getWidth=function(){return 30},r.prototype.getImageSource=function(n){return t.mappings.pagination_button_previous},r}(M);t.add("pagination_button_top",21,21,'<g><polyline fill="none" stroke="#fff" stroke-width="1" points="11 15 5 10 11 5"></polyline><polyline fill="none" stroke="#fff" stroke-width="1" points="15 15 9 10 15 5"></polyline></g>');var bi=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getWidth=function(){return 30},r.prototype.getImageSource=function(n){return t.mappings.pagination_button_top},r}(M),yi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return s.HIGHLIGHT_COLOR},t.prototype.getColor=function(n){return s.ACTIVE_COLOR},t.prototype.getWidth=function(){return 30},t.prototype.getHeight=function(){return 30},t.prototype.getTextStyleClipping=function(){return!1},t.prototype.getTextAlignHorizontal=function(){return W.CENTER},t}(x),Ii=function(){r.set("DPagination",Ti),r.set("DPaginationPage",yi),r.set("DPaginationDots",pi),r.set("DPaginationButtonLast",gi),r.set("DPaginationButtonNext",Wi),r.set("DPaginationButtonPage",wi),r.set("DPaginationButtonPrevious",ki),r.set("DPaginationButtonTop",bi)},vi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return"100%"},t.prototype.getBorderColor=function(n){return null},t.prototype.getInteractive=function(){return o.BOTH},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(D),xi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return 16777215},t.prototype.getBackgroundAlpha=function(n){return 0},t.prototype.getWidth=function(){return 13},t.prototype.getHeight=function(){return 13},t.prototype.getInteractive=function(){return o.BOTH},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t.prototype.getFadeOutDelay=function(){return 1500},t}(D),Ci=function(n){function t(){var t=null!==n&&n.apply(this,arguments)||this;return t.BORDER_COLOR=a.darken(s.WEAK_HIGHLIGHT_COLOR,.25),t}return i(t,n),t.prototype.getBackgroundColor=function(n){return null},t.prototype.getBackgroundAlpha=function(n){return 1},t.prototype.getBorderColor=function(n){return this.BORDER_COLOR},t.prototype.getBorderAlpha=function(n){return n.inDisabled?.25:n.isHovered||n.isGesturing?.75:.5},t.prototype.getBorderWidth=function(n){return 3},t.prototype.getBorderAlign=function(n){return.5},t.prototype.getWidth=function(){return 13},t.prototype.getHeight=function(){return 13},t.prototype.getThumbMinimumLength=function(){return 16},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(D),Bi=function(){r.set("DScrollBar",xi),r.set("DScrollBarThumb",Ci)},Si=function(){r.set("DPane",et),r.set("DContent",vi),Bi()};const Mi=wcardinal.ui.isString;t.add("dropdown_mark",20,14,'<g><polyline fill="none" stroke="#fff" stroke-width="1" points="16 5 10 11 4 5"></polyline></g>');var _i=function(n){function r(){return n.call(this,s.BACKGROUND_COLOR_ON_BOARD)||this}return i(r,n),r.prototype.getSecondaryImageAlignHorizontal=function(){return W.RIGHT},r.prototype.getSecondaryImageAlignWith=function(){return b.PADDING},r.prototype.getSecondaryImageMarginHorizontal=function(){return-20},r.prototype.getPaddingLeft=function(){return 25},r.prototype.getPaddingRight=function(){return 25},r.prototype.getSecondaryImageSource=function(n){return t.mappings.dropdown_mark},r}(C),Li=function(n){if(n){var t=n.text;if(Mi(t))return t;if(null!=t){var r=t(n.state);if(null!=r)return r}}return""},Ei=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextFormatter=function(){return Li},t.prototype.newTextValue=function(){return null},t}(_i),Pi=function(n){if(n){for(var t="",r="",e=0,u=n.length;e<u;++e){var i=n[e],o=i.text;if(Mi(o))t+=r+o,r=", ";else if(null!=o){var c=o(i.state);null!=c&&(t+=r+c,r=", ")}}return t}return""},Fi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextFormatter=function(){return Pi},t.prototype.newTextValue=function(){return[]},t}(_i),Ni=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.newTextValue=function(){return""},t}(_i),Ai=function(){r.set("DDropdown",Ni)},Hi=function(){r.set("DSelectMultiple",Fi),r.set("DSelect",Ei),Ai()},Ri=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getInteractive=function(){return o.CHILDREN},t.prototype.getOutlineColor=function(n){return null},t}(D),zi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getHeight=function(){return 33},t.prototype.getWidth=function(){return 300},t.prototype.getX=function(){return"CENTER"},t}(Ri),Gi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getHeight=function(){return 15},t.prototype.getWidth=function(){return 30},t.prototype.getTextAlignHorizontal=function(){return W.CENTER},t.prototype.getTextAlignVertical=function(){return k.MIDDLE},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(v),Vi=function(){function n(){}return n.getBackgroundColor=function(n,t){return n.isActive||t?n.inDisabled?this.BACKGROUND_COLOR:n.isPressed&&n.isHovered?this.BACKGROUND_COLOR_ACTIVE_PRESSED:n.isPressed||n.isHovered?this.BACKGROUND_COLOR_ACTIVE_HOVERED:this.BACKGROUND_COLOR_ACTIVE:n.inDisabled?this.BACKGROUND_COLOR_DISABLED:n.isPressed&&n.isHovered?this.BACKGROUND_COLOR_PRESSED:n.isPressed||n.isHovered?this.BACKGROUND_COLOR_HOVERED:this.BACKGROUND_COLOR},n.BACKGROUND_COLOR_ACTIVE=s.HIGHLIGHT_COLOR,n.BACKGROUND_COLOR_ACTIVE_HOVERED=a.darken(n.BACKGROUND_COLOR_ACTIVE,.1),n.BACKGROUND_COLOR_ACTIVE_PRESSED=a.darken(n.BACKGROUND_COLOR_ACTIVE,.2),n.BACKGROUND_COLOR=s.WEAK_HIGHLIGHT_COLOR,n.BACKGROUND_COLOR_HOVERED=a.darken(n.BACKGROUND_COLOR,.1),n.BACKGROUND_COLOR_PRESSED=a.darken(n.BACKGROUND_COLOR,.2),n.BACKGROUND_COLOR_DISABLED=a.blend(n.BACKGROUND_COLOR,s.BACKGROUND_COLOR_ON_BOARD,.5),n}();t.add("slider_thumb",16,16,'<circle cx="8" cy="8" r="7.5" stroke="none" fill="#ffffff" />');var Oi=function(n){function r(){return null!==n&&n.apply(this,arguments)||this}return i(r,n),r.prototype.getX=function(){return"CENTER"},r.prototype.getY=function(){return"CENTER"},r.prototype.getWidth=function(){return 16},r.prototype.getHeight=function(){return 16},r.prototype.getBackgroundColor=function(n){return null},r.prototype.getBorderColor=function(n){return null},r.prototype.getImageSource=function(n){return t.mappings.slider_thumb},r.prototype.getImageTintColor=function(n){return Vi.getBackgroundColor(n,!0)},r.prototype.getImageTintAlpha=function(n){return 1},r.prototype.getImageAlignHorizontal=function(){return W.CENTER},r.prototype.getOutlineColor=function(n){return null},r}(B),ji=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return Vi.getBackgroundColor(n)},t.prototype.getBorderColor=function(n){return null},t.prototype.getOutlineColor=function(t){return n.prototype.getOutlineColorNonActive.call(this,t)},t.prototype.getOutlineOffset=function(t){return n.prototype.getOutlineOffsetNonActive.call(this,t)},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(B),Yi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getX=function(){return 0},t.prototype.getY=function(){return"CENTER"},t.prototype.getWidth=function(){return"100%"},t.prototype.getHeight=function(){return 5},t}(ji),Xi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getX=function(){return"CENTER"},t.prototype.getY=function(){return 0},t.prototype.getWidth=function(){return 5},t.prototype.getHeight=function(){return"100%"},t}(ji),Ki=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getX=function(){return"CENTER"},t.prototype.getY=function(){return"CENTER"},t.prototype.getWidth=function(){return 2*this.getLineHeight()},t.prototype.getHeight=function(){return this.getLineHeight()},t.prototype.getBackgroundColor=function(n){return n.inDisabled?11184810:s.HIGHLIGHT_COLOR},t.prototype.getBorderColor=function(n){return null},t.prototype.getColor=function(n){return s.ACTIVE_COLOR},t.prototype.getTextAlignHorizontal=function(){return W.CENTER},t.prototype.getTextAlignVertical=function(){return k.TOP},t.prototype.getPrecision=function(){return 0},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(v),Ui=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getHeight=function(){return 322},t.prototype.getWidth=function(){return 35},t}(Ri),Ji=function(){r.set("DSlider",Ri),r.set("DSliderValue",Ki),r.set("DSliderLabel",Gi),r.set("DSliderThumb",Oi),r.set("DSliderVertical",Ui),r.set("DSliderHorizontal",zi),r.set("DSliderTrack",ji),r.set("DSliderTrackVertical",Xi),r.set("DSliderTrackHorizontal",Yi)},qi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(){return s.BACKGROUND_COLOR},t.prototype.getBorderColor=function(n){return null},t.prototype.getMargin=function(){return 0},t.prototype.getInteractive=function(){return o.BOTH},t}(et),Qi=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getWidth=function(){return"100%"},t.prototype.getCornerMask=function(){return f.TOP},t.prototype.getBorderColor=function(n){return null},t.prototype.getRowHeight=function(){return 30},t.prototype.getInteractive=function(){return o.BOTH},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1},t}(D);const Zi=wcardinal.ui.DTableState;var $i=function(){function n(){}var t;return n.getBackgroundColor=function(n){return n.inDisabled?n.is(Zi.FROZEN)?n.onAlternated?this.BACKGROUND_COLOR_FROZEN_ODD:this.BACKGROUND_COLOR_FROZEN_EVEN:null:n.isInvalid?s.INVALID_BLENDED_ON_BOARD:n.underActive?s.HIGHLIGHT_BLENDED_ON_BOARD:n.onHovered||n.isHovered?s.WEAK_HIGHLIGHT_BLENDED_ON_BOARD:n.is(Zi.FROZEN)?n.onAlternated?this.BACKGROUND_COLOR_FROZEN_ODD:this.BACKGROUND_COLOR_FROZEN_EVEN:null},n.getBackgroundAlpha=function(n){return 1},n.getBorderColor=function(n){return n.is(Zi.FROZEN_END)?this.BORDER_COLOR_FROZEN:this.BORDER_COLOR},n.getBorderMask=function(n){return n.is(Zi.END)?c.ALL:c.NOT_RIGHT},n.getColor=function(n){return s.COLOR},n.getAlpha=function(n){return n.inEnabled?1:0},n.getImageTintColor=function(n,t){return n.inDisabled||n.inReadOnly||!n.isActive&&!t?s.WEAK_HIGHLIGHT_COLOR:s.HIGHLIGHT_COLOR},n.getHeight=function(){return"padding"},n.getCornerMask=function(){return f.ALL},t=n,n.BACKGROUND_COLOR=s.BACKGROUND_COLOR_ON_BOARD,n.BACKGROUND_COLOR_FROZEN_EVEN=a.darken(t.BACKGROUND_COLOR,.01),n.BACKGROUND_COLOR_FROZEN_ODD=a.darken(t.BACKGROUND_COLOR_FROZEN_EVEN,.01),n.BORDER_COLOR=a.darken(t.BACKGROUND_COLOR,.035),n.BORDER_COLOR_FROZEN=a.darken(t.BORDER_COLOR,.035),n}(),no=function(){function n(){}return n.init=function(){t.add("action_mark",21,21,'<g transform="scale(0.875,0.875)"><path d="M14.06 9.02l.92.92L5.92 19H5v-.92l9.06-9.06M17.66 3c-.25 0-.51.1-.7.29l-1.83 1.83 3.75 3.75 1.83-1.83c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.2-.2-.45-.29-.71-.29zm-3.6 3.19L3 17.25V21h3.75L17.81 9.94l-3.75-3.75z" fill="#fff"/></g>')},n.getImageSource=function(n){return t.mappings.action_mark},n.getImageTintColor=function(n){return $i.getImageTintColor(n,!0)},n}(),to=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t.prototype.isSyncEnabled=function(){return!0},t.prototype.newTextValue=function(){return null},t}(B);no.init();var ro=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getImageTintColor=function(n){return no.getImageTintColor(n)},t.prototype.getImageSource=function(n){return no.getImageSource(n)},t.prototype.isSyncEnabled=function(){return!1},t}(to);no.init();var eo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t.prototype.getSecondaryImageSource=function(n){return null},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t.prototype.getImageTintColor=function(n){return no.getImageTintColor(n)},t.prototype.getImageSource=function(n){return no.getImageSource(n)},t}(Ni),uo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t.prototype.isSyncEnabled=function(){return!0},t.prototype.newTextValue=function(){return null},t}(B);no.init();var io=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getImageTintColor=function(n){return no.getImageTintColor(n)},t.prototype.getImageSource=function(n){return no.getImageSource(n)},t.prototype.isSyncEnabled=function(){return!1},t}(uo),oo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t.prototype.getImageTintColor=function(n){return $i.getImageTintColor(n)},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t.prototype.newTextValue=function(){},t}(x),co=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getCursor=function(n){return n.isActionable?"pointer":""},t}(oo),fo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getImageTintColor=function(n){return $i.getImageTintColor(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t}(E),lo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t}(H),ho=function(n){return an.format(n)},ao=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t.prototype.getTextFormatter=function(){return ho},t.prototype.newTextValue=function(){return new Date},t}(B),so=function(n,t){return Fn.format(n,t.getDatetimeMask())},mo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t.prototype.getTextFormatter=function(){return so},t.prototype.newTextValue=function(){return new Date},t}(B),Do=function(n){return String(Number(n)+1)},To=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t.prototype.getTextFormatter=function(){return Do},t.prototype.newTextValue=function(){return 0},t}(x),po=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextAlignHorizontal=function(){return W.RIGHT},t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t}(je),go=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getTextAlignHorizontal=function(){return W.RIGHT},t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t}(Je),Wo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t}(Qe),wo=function(){function n(){}return n.init=function(){Bu.init()},n.getImageSource=function(n){return n.is(Zi.HAS_CHILDREN)?n.is(Zi.OPENED)?Bu.getImageOpened():Bu.getImageClosed():null},n}();wo.init();var ko=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getBackgroundColor=function(n){return null},t.prototype.getBorderColor=function(n){return null},t.prototype.getLevelPadding=function(n){return 24+20*n},t.prototype.getInteractive=function(){return o.CHILDREN},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusable=!1,t.isFocusReverse=!0},t}(D),bo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getX=function(){return"padding"},t.prototype.getY=function(){return"padding"},t.prototype.getWidth=function(){return"padding"},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t.prototype.getPaddingLeft=function(){return 0},t}(Qe),yo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getX=function(){return"padding"},t.prototype.getY=function(){return"padding"},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getBackgroundColor=function(n){return null},t.prototype.getBackgroundAlpha=function(n){return 1},t.prototype.getBorderColor=function(n){return null},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t.prototype.getImageAlignWith=function(){return b.BORDER},t.prototype.getImageAlignHorizontal=function(){return W.RIGHT},t.prototype.getImageSource=function(n){return wo.getImageSource(n)},t.prototype.getImageTintColor=function(n){return this.getColor(n)},t.prototype.getImageTintAlpha=function(n){return.5*this.getAlpha(n)},t}(C),Io=function(t){function r(){var r=t.call(this)||this;return r.M=n.getInstance().get("DLink"),r}return i(r,t),r.prototype.getImageTintColor=function(n){return $i.getImageTintColor(n,!0)},r.prototype.getImageSource=function(n){return this.M.getImageSource(n)},r}(co),vo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t.prototype.getSecondaryImageSource=function(n){return null},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t}(Ei),xo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t.prototype.getSecondaryImageSource=function(n){return null},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t}(Fi),Co=function(n,t){return ht.format(n,t.getDatetimeMask())},Bo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBackgroundColor=function(n){return $i.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return $i.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return $i.getBorderColor(n)},t.prototype.getBorderMask=function(n){return $i.getBorderMask(n)},t.prototype.getColor=function(n){return $i.getColor(n)},t.prototype.getAlpha=function(n){return $i.getAlpha(n)},t.prototype.getHeight=function(){return $i.getHeight()},t.prototype.getCornerMask=function(){return $i.getCornerMask()},t.prototype.getTextFormatter=function(){return Co},t.prototype.newTextValue=function(){return new Date},t}(B);wo.init();var So=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getLevelPadding=function(n){return 24+20*n-this.getPaddingLeft()},t.prototype.getImageAlignWith=function(){return b.PADDING},t.prototype.getImageMarginHorizontal=function(){return-19},t.prototype.getImageSource=function(n){return wo.getImageSource(n)},t.prototype.getImageTintColor=function(n){return this.getColor(n)},t.prototype.getImageTintAlpha=function(n){return.5*this.getAlpha(n)},t}(co),Mo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getBorderColor=function(n){return null},t.prototype.getCornerMask=function(){return f.ALL},t.prototype.getMargin=function(){return 0},t.prototype.getInteractive=function(){return o.BOTH},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isFocusReverse=!0},t}(_r),_o=function(n){function t(){var t=null!==n&&n.apply(this,arguments)||this;return t.BACKGROUND_COLOR_EVEN=s.BACKGROUND_COLOR_ON_BOARD,t.BACKGROUND_COLOR_ODD=a.darken(s.BACKGROUND_COLOR_ON_BOARD,.01),t}return i(t,n),t.prototype.getBackgroundColor=function(n){return n.inDisabled?n.isAlternated?this.BACKGROUND_COLOR_ODD:this.BACKGROUND_COLOR_EVEN:n.isActive?s.HIGHLIGHT_BLENDED_ON_BOARD:n.isHovered?s.WEAK_HIGHLIGHT_BLENDED_ON_BOARD:n.isAlternated?this.BACKGROUND_COLOR_ODD:this.BACKGROUND_COLOR_EVEN},t.prototype.getWidth=function(){return"100%"},t}(Mo),Lo=function(n){function t(){var t=null!==n&&n.apply(this,arguments)||this;return t.BACKGROUND_COLOR=a.darken(s.BACKGROUND_COLOR_ON_BOARD,.02),t.BORDER_COLOR=a.darken(s.BACKGROUND_COLOR_ON_BOARD,.055),t}return i(t,n),t.prototype.getBackgroundColor=function(n){return n.inDisabled?null:this.BACKGROUND_COLOR},t.prototype.getBorderColor=function(n){return this.BORDER_COLOR},t.prototype.getBorderMask=function(n){return c.NOT_BOTTOM},t.prototype.getWidth=function(){return"100%"},t.prototype.getHeight=function(){return 30},t}(Mo),Eo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Lo);t.add("sorted_descending",16,16,'<g transform="scale(0.875,0.875)"><path d="M3 12l5-5 5 5H3z" fill="#fff"/></g>'),t.add("sorted_ascending",16,16,'<g transform="scale(0.875,0.875)"><path d="M3 8l5 5 5-5H3z" fill="#fff"/></g>');var Po=function(n){function r(){var t=null!==n&&n.apply(this,arguments)||this;return t.BACKGROUND_COLOR=a.darken(s.BACKGROUND_COLOR_ON_BOARD,.02),t.BACKGROUND_COLOR_HOVERED=a.darken(t.BACKGROUND_COLOR,.017),t.BACKGROUND_COLOR_PRESSED=a.darken(t.BACKGROUND_COLOR,.034),t.BACKGROUND_COLOR_FROZEN=a.darken(t.BACKGROUND_COLOR,.02),t.BORDER_COLOR=a.darken(s.BACKGROUND_COLOR_ON_BOARD,.055),t.BORDER_COLOR_FROZEN=a.darken(t.BORDER_COLOR,.055),t}return i(r,n),r.prototype.getBackgroundColor=function(n){return n.inDisabled?n.is(Zi.FROZEN)?this.BACKGROUND_COLOR_FROZEN:null:n.isPressed?this.BACKGROUND_COLOR_PRESSED:n.isHovered?this.BACKGROUND_COLOR_HOVERED:n.is(Zi.FROZEN)?this.BACKGROUND_COLOR_FROZEN:null},r.prototype.getBackgroundAlpha=function(n){return 1},r.prototype.getBorderColor=function(n){return n.is(Zi.FROZEN_END)?this.BORDER_COLOR_FROZEN:this.BORDER_COLOR},r.prototype.getBorderMask=function(n){return n.is(Zi.END)?c.ALL:c.NOT_RIGHT},r.prototype.getTextAlignHorizontal=function(){return W.CENTER},r.prototype.getCornerMask=function(){return f.ALL},r.prototype.getHeight=function(){return"padding"},r.prototype.getPaddingLeft=function(){return 10},r.prototype.getPaddingRight=function(){return 10},r.prototype.newTextValue=function(){return null},r.prototype.getImageTintColor=function(n,t){return n.inDisabled||n.inReadOnly||!n.isActive&&!t?s.WEAK_HIGHLIGHT_COLOR:s.HIGHLIGHT_COLOR},r.prototype.getSecondaryImageTintColor=function(t){return t.is(Zi.CHECKABLE)?L.getImageTintColor(t):n.prototype.getSecondaryImageTintColor.call(this,t)},r.prototype.getSecondaryImageSource=function(n){return n.is(Zi.CHECKABLE)?L.getImageSource(n):null},r.prototype.getSecondaryImageAlignHorizontal=function(){return W.LEFT},r.prototype.getSecondaryImageAlignVertical=function(){return k.MIDDLE},r.prototype.getSecondaryImageAlignWith=function(){return b.TEXT},r.prototype.getTertiaryImageSource=function(n){return n.is(Zi.SORTED_ASCENDING)?t.mappings.sorted_ascending:n.is(Zi.SORTED_DESCENDING)?t.mappings.sorted_descending:null},r.prototype.getTertiaryImageTintColor=function(t){return n.prototype.getImageTintColor.call(this,t)},r.prototype.getTertiaryImageAlignHorizontal=function(){return W.RIGHT},r.prototype.getTertiaryImageAlignWith=function(){return b.BORDER},r.prototype.getCursor=function(n){return n.isActionable&&(n.is(Zi.CHECKABLE)||n.is(Zi.SORTABLE))?"pointer":""},r}(Gr),Fo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t}(Po),No=function(){r.set("DTableBodyCellActionDialog",ro),r.set("DTableBodyCellActionMenu",eo),r.set("DTableBodyCellActionPromise",io),r.set("DTableBodyCellButton",co),r.set("DTableBodyCellCheck",fo),r.set("DTableBodyCellColor",lo),r.set("DTableBodyCellDate",ao),r.set("DTableBodyCellDatetime",mo),r.set("DTableBodyCellIndex",To),r.set("DTableBodyCellInputInteger",po),r.set("DTableBodyCellInputReal",go),r.set("DTableBodyCellInputText",Wo),r.set("DTableBodyCellInputTreeMarker",yo),r.set("DTableBodyCellInputTreeInput",bo),r.set("DTableBodyCellInputTree",ko),r.set("DTableBodyCellLink",Io),r.set("DTableBodyCellSelectDialog",to),r.set("DTableBodyCellSelectMenu",vo),r.set("DTableBodyCellSelectMultiple",xo),r.set("DTableBodyCellSelectPromise",uo),r.set("DTableBodyCellText",oo),r.set("DTableBodyCellTree",So),r.set("DTableBodyCellTime",Bo),r.set("DTableBodyRow",_o),r.set("DTableBody",Qi),r.set("DTableCategoryCell",Fo),r.set("DTableCategory",Eo),r.set("DTableHeaderCell",Po),r.set("DTableHeader",Lo),r.set("DTableRow",Mo),r.set("DTable",qi),P(),$(),Pn(),zn(),Ye(),qe(),nu(),lt(),Gu()},Ao=function(){r.set("DText",xn)};wo.init();var Ho=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getSecondaryImageSource=function(n){return wo.getImageSource(n)},t.prototype.getSecondaryImageTintColor=function(n){return this.getColor(n)},t.prototype.getSecondaryImageTintAlpha=function(n){return.5*this.getAlpha(n)},t.prototype.getSecondaryImageAlignWith=function(){return b.PADDING},t.prototype.getSecondaryImageMarginHorizontal=function(){return-19},t}(ot),Ro=function(n){function t(){var t=n.call(this)||this;return t.S=t.newStyle(),t}return i(t,n),t.prototype.newStyle=function(){return new Ho(null,!0,!1)},t.prototype.getBackgroundColor=function(n){return s.BACKGROUND_COLOR_ON_BOARD},t}(et),zo=function(n){function t(){var t=n.call(this)||this;return t.S=t.newStyle(),t}return i(t,n),t.prototype.newStyle=function(){return new Ho(null,!0,!1)},t.prototype.getBackgroundColor=function(n){return this.S.getBackgroundColor(n)},t.prototype.getBackgroundAlpha=function(n){return this.S.getBackgroundAlpha(n)},t.prototype.getBorderColor=function(n){return this.S.getBorderColor(n)},t.prototype.getBorderMask=function(n){return this.S.getBorderMask(n)},t.prototype.getColor=function(n){return this.S.getColor(n)},t.prototype.getAlpha=function(n){return this.S.getAlpha(n)},t.prototype.getHeight=function(){return this.S.getHeight()},t.prototype.getCornerMask=function(){return this.S.getCornerMask()},t.prototype.getImageTintColor=function(n){return this.S.getImageTintColor(n)},t.prototype.getCursor=function(n){return this.S.getCursor(n)},t.prototype.getPaddingLeft=function(){return 10},t.prototype.getPaddingRight=function(){return 10},t.prototype.newTextValue=function(){},t.prototype.getWidth=function(){return"padding"},t.prototype.getLevelPadding=function(n){return 24+20*n-this.getPaddingLeft()},t.prototype.newState=function(t){n.prototype.newState.call(this,t),t.isDisabled=!0},t}(x),Go=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getCursor=function(n){return n.isActionable?"pointer":""},t}(zo);wo.init();var Vo=function(n){function t(){return null!==n&&n.apply(this,arguments)||this}return i(t,n),t.prototype.getSecondaryImageSource=function(n){return this.S.getSecondaryImageSource(n)},t.prototype.getSecondaryImageTintColor=function(n){return this.S.getSecondaryImageTintColor(n)},t.prototype.getSecondaryImageTintAlpha=function(n){return this.S.getSecondaryImageTintAlpha(n)},t.prototype.getSecondaryImageAlignWith=function(){return this.S.getSecondaryImageAlignWith()},t.prototype.getSecondaryImageMarginHorizontal=function(){return this.S.getSecondaryImageMarginHorizontal()},t}(Go),Oo=function(){r.set("DTree",Ro),r.set("DTreeItemText",zo),r.set("DTreeItemButton",Go),r.set("DTreeItemNonEditable",Vo)};const jo=wcardinal.ui.UtilGestureModifier;var Yo=function(){function n(){}return n.prototype.isWheelZoomEnabled=function(){return!0},n.prototype.getWheelZoomSpeed=function(){return.004},n.prototype.getWheelZoomModifier=function(){return jo.NOT_NONE},n.prototype.isWheelTranslationEnabled=function(){return!0},n.prototype.getWheelTranslationSpeed=function(){return 2.24},n.prototype.getWheelTranslationModifier=function(){return jo.NONE},n.prototype.isDblClickZoomEnabled=function(){return!0},n.prototype.getDblClickZoomSpeed=function(){return 2},n.prototype.getDblClickZoomModifier=function(){return jo.NONE},n.prototype.getDblClickZoomDuration=function(){return 333},n.prototype.getZoomMin=function(){return.05},n.prototype.getZoomMax=function(){return 20},n.prototype.getZoomKeepRatio=function(){return!0},n.prototype.getGestureMode=function(){return rt.ON},n.prototype.getGestureModifier=function(){return jo.NONE},n.prototype.getGestureDuration=function(){return 1},n}(),Xo=function(){e(),T(),g(),Tt(),r.set("DView",Yo),Wt(),r.set("DChart",wt),r.set("DChartAxisX",Ct),r.set("DChartAxisXDatetime",St),r.set("DChartAxisY",Mt),r.set("DChartCoordinate",_t),r.set("DChartCoordinateTick",Lt),r.set("DChartCoordinateTransform",Et),r.set("DChartLegend",Pt),r.set("DChartLegendItem",Ft),r.set("DChartOverview",Nt),r.set("DChartPlotArea",At),r.set("DChartSelectionGridlineX",Gt),r.set("DChartSelectionGridlineY",Vt),r.set("DChartSelectionMarker",jt),vr(),$t(),de(),Te(),r.set("DHtmlElement",we),ke(),du(),Du(),gu(),wu(),Oo(),ju(),oi(),Gu(),Di(),Si(),Ii(),on(),Q(),Ln(),_n(),Mn(),Hi(),No(),Ao(),Ji()},Ko={__proto__:null,loadThemeWhiteAll:Xo,loadThemeWhiteBase:T,loadThemeWhiteBoard:g,loadThemeWhiteButtonAll:Tt,loadThemeWhiteButtonAmbient:_,loadThemeWhiteButtonCheckRight:N,loadThemeWhiteButtonCheck:P,loadThemeWhiteButtonColorGradient:fn,loadThemeWhiteButtonColor:$,loadThemeWhiteButtonDanger:hn,loadThemeWhiteButtonDate:Pn,loadThemeWhiteButtonDatetime:zn,loadThemeWhiteButtonFile:Vn,loadThemeWhiteButtonLink:jn,loadThemeWhiteButtonPrimary:Xn,loadThemeWhiteButtonRadioRight:qn,loadThemeWhiteButtonRadio:Un,loadThemeWhiteButtonSecondary:Zn,loadThemeWhiteButtonTime:Dt,loadThemeWhiteButton:S,loadThemeWhiteCanvasContainer:Wt,loadThemeWhiteDiagramEditor:vr,loadThemeWhiteDiagram:$t,loadThemeWhiteDialogAll:de,loadThemeWhiteDialogColorGradient:cn,loadThemeWhiteDialogColor:Z,loadThemeWhiteDialogConfirmDelete:Yr,loadThemeWhiteDialogConfirmDiscard:Kr,loadThemeWhiteDialogConfirm:Or,loadThemeWhiteDialogDate:En,loadThemeWhiteDialogDatetime:Rn,loadThemeWhiteDialogFitted:se,loadThemeWhiteDialogInputBoolean:qr,loadThemeWhiteDialogInputInteger:Zr,loadThemeWhiteDialogInputReal:ne,loadThemeWhiteDialogInputText:re,loadThemeWhiteDialogLayered:Rr,loadThemeWhiteDialogMessage:ue,loadThemeWhiteDialogProcessing:fe,loadThemeWhiteDialogSaveAs:he,loadThemeWhiteDialogSelect:lt,loadThemeWhiteDialogTime:mt,loadThemeWhiteDialog:xr,loadThemeWhiteDropdown:Ai,loadThemeWhiteExpandable:Te,loadThemeWhiteImage:ke,loadThemeWhiteInputAll:du,loadThemeWhiteInputAndLabel:ye,loadThemeWhiteInputBoolean:Ce,loadThemeWhiteInputInteger:Ye,loadThemeWhiteInputLabel:Ke,loadThemeWhiteInputReal:qe,loadThemeWhiteInputSearch:$e,loadThemeWhiteInputTextArea:su,loadThemeWhiteInputText:nu,loadThemeWhiteLayout:Du,loadThemeWhiteLink:gu,loadThemeWhiteList:wu,loadThemeWhiteTree:Oo,loadThemeWhiteMenuBar:ju,loadThemeWhiteMenuSided:oi,loadThemeWhiteMenu:Gu,loadThemeWhiteNote:Di,loadThemeWhitePane:Si,loadThemeWhitePagination:Ii,loadThemeWhitePickerColorGradient:on,loadThemeWhitePickerColor:Q,loadThemeWhitePickerDate:Ln,loadThemeWhitePickerDatetime:_n,loadThemeWhitePickerTime:Mn,loadThemeWhiteScrollBar:Bi,loadThemeWhiteSelect:Hi,loadThemeWhiteShapeActionValue:Ir,loadThemeWhiteShape:Zt,loadThemeWhiteSlider:Ji,loadThemeWhiteTable:No,loadThemeWhiteText:Ao,loadThemeWhite:e,DThemeWhiteAtlas:t,DThemeWhiteBase:D,DThemeWhiteBoard:p,DThemeWhiteButtonAmbient:M,DThemeWhiteButtonBase:C,DThemeWhiteButtonCheck:E,DThemeWhiteButtonCheckRight:F,DThemeWhiteButtonChecks:L,DThemeWhiteButtonColorGradient:rn,DThemeWhiteButtonColor:H,DThemeWhiteButtonDanger:ln,DThemeWhiteButtonDate:dn,DThemeWhiteButtonDatetime:An,DThemeWhiteButtonFile:Gn,DThemeWhiteButtonLink:On,DThemeWhiteButtonPrimary:Yn,DThemeWhiteButtonRadioRight:Jn,DThemeWhiteButtonRadio:Kn,DThemeWhiteButtonSecondary:Qn,DThemeWhiteButtonTime:st,DThemeWhiteButton:B,DThemeWhiteCanvasContainer:gt,DThemeWhiteCanvas:pt,DThemeWhiteChartAxisBase:xt,DThemeWhiteChartAxisXDatetime:St,DThemeWhiteChartAxisX:Ct,DThemeWhiteChartAxisY:Mt,DThemeWhiteChartCoordinateTick:Lt,DThemeWhiteChartCoordinateTransform:Et,DThemeWhiteChartCoordinate:_t,DThemeWhiteChartLegendItem:Ft,DThemeWhiteChartLegend:Pt,DThemeWhiteChartOverview:Nt,DThemeWhiteChartPlotArea:At,DThemeWhiteChart:wt,DThemeWhiteContent:vi,DThemeWhiteDiagramBase:Yt,DThemeWhiteDiagramCanvasBase:Kt,DThemeWhiteDiagramCanvasEditor:tr,DThemeWhiteDiagramCanvas:Ut,DThemeWhiteDiagramEditor:rr,DThemeWhiteDiagram:Xt,DThemeWhiteDialogColorGradient:en,DThemeWhiteDialogColor:U,DThemeWhiteDialogConfirmDelete:jr,DThemeWhiteDialogConfirmDiscard:Xr,DThemeWhiteDialogConfirmMessage:Vr,DThemeWhiteDialogConfirm:zr,DThemeWhiteDialogDate:mn,DThemeWhiteDialogDatetime:Hn,DThemeWhiteDialogFittedContent:ae,DThemeWhiteDialogFitted:K,DThemeWhiteDialogInputBoolean:Jr,DThemeWhiteDialogInputInteger:Qr,DThemeWhiteDialogInputReal:$r,DThemeWhiteDialogInputText:te,DThemeWhiteDialogInput:Ur,DThemeWhiteDialogLayeredContent:Mr,DThemeWhiteDialogLayeredFooter:Lr,DThemeWhiteDialogLayeredHeaderButtonClose:Fr,DThemeWhiteDialogLayeredHeaderSeparator:Hr,DThemeWhiteDialogLayeredHeader:Er,DThemeWhiteDialogLayered:X,DThemeWhiteDialogMessage:ee,DThemeWhiteDialogProcessingMessage:ce,DThemeWhiteDialogProcessing:oe,DThemeWhiteDialogSaveAs:le,DThemeWhiteDialogSelectListItem:ft,DThemeWhiteDialogSelectList:it,DThemeWhiteDialogSelect:tt,DThemeWhiteDialogTime:dt,DThemeWhiteDialog:Y,DThemeWhiteDropdown:Ni,DThemeWhiteExpandableHeader:De,DThemeWhiteExpandable:me,DThemeWhiteFont:d,DThemeWhiteHtmlElement:we,DThemeWhiteImageBase:x,DThemeWhiteImage:Gr,DThemeWhiteInputAndLabel:be,DThemeWhiteInputBooleanButtonOff:ve,DThemeWhiteInputBooleanButtonOn:xe,DThemeWhiteInputBoolean:Ie,DThemeWhiteInputInput:Ge,DThemeWhiteInputInteger:je,DThemeWhiteInputLabel:Xe,DThemeWhiteInputNumber:Ve,DThemeWhiteInputReal:Je,DThemeWhiteInputSearch:Ze,DThemeWhiteInputTextArea:au,DThemeWhiteInputText:Qe,DThemeWhiteInput:Me,DThemeWhiteLayoutHorizontal:_r,DThemeWhiteLayoutSpace:mu,DThemeWhiteLayoutVertical:Sr,DThemeWhiteLayout:Br,DThemeWhiteLink:pu,DThemeWhiteListItemAmbient:Wu,DThemeWhiteListItem:ct,DThemeWhiteListItems:ot,DThemeWhiteList:ut,DThemeWhiteMenuBarItem:Ou,DThemeWhiteMenuBar:Vu,DThemeWhiteMenuItemBase:bu,DThemeWhiteMenuItemCheck:vu,DThemeWhiteMenuItemExpandableBody:Cu,DThemeWhiteMenuItemExpandableHeader:Su,DThemeWhiteMenuItemExpandableItemCheck:Mu,DThemeWhiteMenuItemExpandableItemLink:Eu,DThemeWhiteMenuItemExpandableItemMenu:Fu,DThemeWhiteMenuItemExpandableItemSeparator:Au,DThemeWhiteMenuItemExpandableItemSpace:Ru,DThemeWhiteMenuItemExpandableItemText:zu,DThemeWhiteMenuItemExpandable:xu,DThemeWhiteMenuItemLink:Lu,DThemeWhiteMenuItemMenu:Pu,DThemeWhiteMenuItemSeparator:Nu,DThemeWhiteMenuItemSpace:Hu,DThemeWhiteMenuItemText:Iu,DThemeWhiteMenuItem:yu,DThemeWhiteMenuSidedContent:Xu,DThemeWhiteMenuSidedItemCheck:Ku,DThemeWhiteMenuSidedItemExpandableItemCheck:Ju,DThemeWhiteMenuSidedItemExpandableItemLink:qu,DThemeWhiteMenuSidedItemExpandableItemMenu:Qu,DThemeWhiteMenuSidedItemExpandableItemSeparator:Zu,DThemeWhiteMenuSidedItemExpandableItemSpace:$u,DThemeWhiteMenuSidedItemExpandableItemText:ni,DThemeWhiteMenuSidedItemExpandable:Uu,DThemeWhiteMenuSidedItemLink:ti,DThemeWhiteMenuSidedItemMenu:ri,DThemeWhiteMenuSidedItemSeparator:ei,DThemeWhiteMenuSidedItemSpace:ui,DThemeWhiteMenuSidedItemText:ii,DThemeWhiteMenuSided:Yu,DThemeWhiteMenu:ku,DThemeWhiteNoteError:fi,DThemeWhiteNoteNoItemsFound:li,DThemeWhiteNoteSearching:hi,DThemeWhiteNoteSmallError:si,DThemeWhiteNoteSmallNoItemsFound:di,DThemeWhiteNoteSmallSearching:mi,DThemeWhiteNoteSmall:ai,DThemeWhiteNote:ci,DThemeWhitePaginationButtonLast:gi,DThemeWhitePaginationButtonNext:Wi,DThemeWhitePaginationButtonPage:wi,DThemeWhitePaginationButtonPrevious:ki,DThemeWhitePaginationButtonTop:bi,DThemeWhitePaginationDots:pi,DThemeWhitePaginationPage:yi,DThemeWhitePagination:Ti,DThemeWhitePane:et,DThemeWhitePickerColorGradient:un,DThemeWhitePickerColor:q,DThemeWhitePickerDate:bn,DThemeWhitePickerDatetimeButtonBack:yn,DThemeWhitePickerDatetimeButtonDate:In,DThemeWhitePickerDatetimeButtonNext:vn,DThemeWhitePickerDatetimeLabelDate:Bn,DThemeWhitePickerDatetimeLabel:Cn,DThemeWhitePickerDatetimeSpace:Sn,DThemeWhitePickerDatetime:kn,DThemeWhitePickerTime:Tn,DThemeWhiteScrollBarThumb:Ci,DThemeWhiteScrollBar:xi,DThemeWhiteSelectMultiple:Fi,DThemeWhiteSelect:Ei,DThemeWhiteSlider:Ri,DThemeWhiteSliderHorizontal:zi,DThemeWhiteSliderLabel:Gi,DThemeWhiteSliderThumb:Oi,DThemeWhiteSliderTrack:ji,DThemeWhiteSliderTrackHorizontal:Yi,DThemeWhiteSliderTrackVertical:Xi,DThemeWhiteSliderValue:Ki,DThemeWhiteSliderVertical:Ui,DThemeWhiteTableBodyCellButton:co,DThemeWhiteTableBodyCellCheck:fo,DThemeWhiteTableBodyCellColor:lo,DThemeWhiteTableBodyCellDate:ao,DThemeWhiteTableBodyCellDatetime:mo,DThemeWhiteTableBodyCellIndex:To,DThemeWhiteTableBodyCellInputInteger:po,DThemeWhiteTableBodyCellInputReal:go,DThemeWhiteTableBodyCellInputText:Wo,DThemeWhiteTableBodyCellLink:Io,DThemeWhiteTableBodyCellSelectDialog:to,DThemeWhiteTableBodyCellSelectMenu:vo,DThemeWhiteTableBodyCellSelectPromise:uo,DThemeWhiteTableBodyCellText:oo,DThemeWhiteTableBodyCellTime:Bo,DThemeWhiteTableBodyCells:$i,DThemeWhiteTableBodyRow:_o,DThemeWhiteTableBody:Qi,DThemeWhiteTableCategoryCell:Fo,DThemeWhiteTableCategory:Eo,DThemeWhiteTableHeaderCell:Po,DThemeWhiteTableHeader:Lo,DThemeWhiteTableRow:Mo,DThemeWhiteTable:qi,DThemeWhiteTextBase:v,DThemeWhiteText:xn,DThemeWhiteTreeItemButton:Go,DThemeWhiteTreeItemNonEditable:Vo,DThemeWhiteTreeItemText:zo,DThemeWhiteTreeItems:Ho,DThemeWhiteTree:Ro,DThemeWhiteView:Yo,DThemeWhite:r,EThemeWhiteShapeActionValue:yr,EThemeWhiteShape:Qt};Xo();var Uo=window;Uo.wcardinal=Uo.wcardinal||{};var Jo=Uo.wcardinal.ui=Uo.wcardinal.ui||{},qo=Ko;for(var Qo in qo)Jo[Qo]=qo[Qo]}();
10
10
  //# sourceMappingURL=wcardinal-ui-theme-white.min.js.map