@schneideress/dashboardframework 0.0.1

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 (110) hide show
  1. package/README.md +24 -0
  2. package/bundles/schneideress-dashboardframework.umd.js +5666 -0
  3. package/bundles/schneideress-dashboardframework.umd.js.map +1 -0
  4. package/bundles/schneideress-dashboardframework.umd.min.js +2 -0
  5. package/bundles/schneideress-dashboardframework.umd.min.js.map +1 -0
  6. package/esm2015/gridster/index.js +18 -0
  7. package/esm2015/gridster/lib/gridster.component.js +695 -0
  8. package/esm2015/gridster/lib/gridster.interface.js +84 -0
  9. package/esm2015/gridster/lib/gridster.module.js +27 -0
  10. package/esm2015/gridster/lib/gridsterCompact.service.js +223 -0
  11. package/esm2015/gridster/lib/gridsterConfig.constant.js +179 -0
  12. package/esm2015/gridster/lib/gridsterConfig.interface.js +219 -0
  13. package/esm2015/gridster/lib/gridsterConfigS.interface.js +161 -0
  14. package/esm2015/gridster/lib/gridsterDraggable.service.js +510 -0
  15. package/esm2015/gridster/lib/gridsterEmptyCell.service.js +317 -0
  16. package/esm2015/gridster/lib/gridsterItem.component.js +213 -0
  17. package/esm2015/gridster/lib/gridsterItem.interface.js +46 -0
  18. package/esm2015/gridster/lib/gridsterItemComponent.interface.js +48 -0
  19. package/esm2015/gridster/lib/gridsterPreview.component.js +66 -0
  20. package/esm2015/gridster/lib/gridsterPush.service.js +467 -0
  21. package/esm2015/gridster/lib/gridsterPushResize.service.js +358 -0
  22. package/esm2015/gridster/lib/gridsterRenderer.service.js +277 -0
  23. package/esm2015/gridster/lib/gridsterResizable.service.js +552 -0
  24. package/esm2015/gridster/lib/gridsterResizeEventType.interface.js +19 -0
  25. package/esm2015/gridster/lib/gridsterScroll.service.js +195 -0
  26. package/esm2015/gridster/lib/gridsterSwap.service.js +134 -0
  27. package/esm2015/gridster/lib/gridsterUtils.service.js +137 -0
  28. package/esm2015/lib/ra-dashboard-area/ra.dashboard.area.js +258 -0
  29. package/esm2015/lib/ra-widget-container/ra.widget.container.component.js +216 -0
  30. package/esm2015/lib/ra.base.dashboard.filter.js +35 -0
  31. package/esm2015/lib/ra.base.dashboard.template.js +63 -0
  32. package/esm2015/lib/ra.dashbard.event.bus.js +85 -0
  33. package/esm2015/lib/ra.dashboard.module.js +31 -0
  34. package/esm2015/lib/ra.dashboard.service.js +213 -0
  35. package/esm2015/lib/ra.event.enum.js +33 -0
  36. package/esm2015/lib/ra.gridster.config.js +63 -0
  37. package/esm2015/public-api.js +16 -0
  38. package/esm2015/schneideress-dashboardframework.js +13 -0
  39. package/esm5/gridster/index.js +18 -0
  40. package/esm5/gridster/lib/gridster.component.js +798 -0
  41. package/esm5/gridster/lib/gridster.interface.js +94 -0
  42. package/esm5/gridster/lib/gridster.module.js +31 -0
  43. package/esm5/gridster/lib/gridsterCompact.service.js +253 -0
  44. package/esm5/gridster/lib/gridsterConfig.constant.js +179 -0
  45. package/esm5/gridster/lib/gridsterConfig.interface.js +219 -0
  46. package/esm5/gridster/lib/gridsterConfigS.interface.js +161 -0
  47. package/esm5/gridster/lib/gridsterDraggable.service.js +549 -0
  48. package/esm5/gridster/lib/gridsterEmptyCell.service.js +358 -0
  49. package/esm5/gridster/lib/gridsterItem.component.js +238 -0
  50. package/esm5/gridster/lib/gridsterItem.interface.js +46 -0
  51. package/esm5/gridster/lib/gridsterItemComponent.interface.js +58 -0
  52. package/esm5/gridster/lib/gridsterPreview.component.js +70 -0
  53. package/esm5/gridster/lib/gridsterPush.service.js +547 -0
  54. package/esm5/gridster/lib/gridsterPushResize.service.js +423 -0
  55. package/esm5/gridster/lib/gridsterRenderer.service.js +323 -0
  56. package/esm5/gridster/lib/gridsterResizable.service.js +629 -0
  57. package/esm5/gridster/lib/gridsterResizeEventType.interface.js +19 -0
  58. package/esm5/gridster/lib/gridsterScroll.service.js +195 -0
  59. package/esm5/gridster/lib/gridsterSwap.service.js +152 -0
  60. package/esm5/gridster/lib/gridsterUtils.service.js +177 -0
  61. package/esm5/lib/ra-dashboard-area/ra.dashboard.area.js +307 -0
  62. package/esm5/lib/ra-widget-container/ra.widget.container.component.js +277 -0
  63. package/esm5/lib/ra.base.dashboard.filter.js +38 -0
  64. package/esm5/lib/ra.base.dashboard.template.js +63 -0
  65. package/esm5/lib/ra.dashbard.event.bus.js +125 -0
  66. package/esm5/lib/ra.dashboard.module.js +35 -0
  67. package/esm5/lib/ra.dashboard.service.js +295 -0
  68. package/esm5/lib/ra.event.enum.js +33 -0
  69. package/esm5/lib/ra.gridster.config.js +63 -0
  70. package/esm5/public-api.js +16 -0
  71. package/esm5/schneideress-dashboardframework.js +13 -0
  72. package/fesm2015/schneideress-dashboardframework.js +4811 -0
  73. package/fesm2015/schneideress-dashboardframework.js.map +1 -0
  74. package/fesm5/schneideress-dashboardframework.js +5613 -0
  75. package/fesm5/schneideress-dashboardframework.js.map +1 -0
  76. package/gridster/index.d.ts +11 -0
  77. package/gridster/lib/gridster.component.d.ts +67 -0
  78. package/gridster/lib/gridster.interface.d.ts +46 -0
  79. package/gridster/lib/gridster.module.d.ts +2 -0
  80. package/gridster/lib/gridsterCompact.service.d.ts +15 -0
  81. package/gridster/lib/gridsterConfig.constant.d.ts +2 -0
  82. package/gridster/lib/gridsterConfig.interface.d.ts +133 -0
  83. package/gridster/lib/gridsterConfigS.interface.d.ts +93 -0
  84. package/gridster/lib/gridsterDraggable.service.d.ts +59 -0
  85. package/gridster/lib/gridsterEmptyCell.service.d.ts +29 -0
  86. package/gridster/lib/gridsterItem.component.d.ts +32 -0
  87. package/gridster/lib/gridsterItem.interface.d.ts +21 -0
  88. package/gridster/lib/gridsterItemComponent.interface.d.ts +25 -0
  89. package/gridster/lib/gridsterPreview.component.d.ts +10 -0
  90. package/gridster/lib/gridsterPush.service.d.ts +33 -0
  91. package/gridster/lib/gridsterPushResize.service.d.ts +26 -0
  92. package/gridster/lib/gridsterRenderer.service.d.ts +38 -0
  93. package/gridster/lib/gridsterResizable.service.d.ts +67 -0
  94. package/gridster/lib/gridsterResizeEventType.interface.d.ts +6 -0
  95. package/gridster/lib/gridsterScroll.service.d.ts +4 -0
  96. package/gridster/lib/gridsterSwap.service.d.ts +13 -0
  97. package/gridster/lib/gridsterUtils.service.d.ts +16 -0
  98. package/lib/ra-dashboard-area/ra.dashboard.area.d.ts +37 -0
  99. package/lib/ra-widget-container/ra.widget.container.component.d.ts +37 -0
  100. package/lib/ra.base.dashboard.filter.d.ts +4 -0
  101. package/lib/ra.base.dashboard.template.d.ts +14 -0
  102. package/lib/ra.dashbard.event.bus.d.ts +20 -0
  103. package/lib/ra.dashboard.module.d.ts +2 -0
  104. package/lib/ra.dashboard.service.d.ts +73 -0
  105. package/lib/ra.event.enum.d.ts +24 -0
  106. package/lib/ra.gridster.config.d.ts +2 -0
  107. package/package.json +25 -0
  108. package/public-api.d.ts +8 -0
  109. package/schneideress-dashboardframework.d.ts +8 -0
  110. package/schneideress-dashboardframework.metadata.json +1 -0
@@ -0,0 +1,219 @@
1
+ /**
2
+ * @fileoverview added by tsickle
3
+ * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
4
+ */
5
+ /** @enum {string} */
6
+ var GridType = {
7
+ Fit: 'fit',
8
+ ScrollVertical: 'scrollVertical',
9
+ ScrollHorizontal: 'scrollHorizontal',
10
+ Fixed: 'fixed',
11
+ VerticalFixed: 'verticalFixed',
12
+ HorizontalFixed: 'horizontalFixed',
13
+ };
14
+ export { GridType };
15
+ /** @enum {string} */
16
+ var DisplayGrid = {
17
+ Always: 'always',
18
+ OnDragAndResize: 'onDrag&Resize',
19
+ None: 'none',
20
+ };
21
+ export { DisplayGrid };
22
+ /** @enum {string} */
23
+ var CompactType = {
24
+ None: 'none',
25
+ CompactUp: 'compactUp',
26
+ CompactLeft: 'compactLeft',
27
+ CompactUpAndLeft: 'compactUp&Left',
28
+ CompactLeftAndUp: 'compactLeft&Up',
29
+ CompactRight: 'compactRight',
30
+ CompactUpAndRight: 'compactUp&Right',
31
+ CompactRightAndUp: 'compactRight&Up',
32
+ };
33
+ export { CompactType };
34
+ /**
35
+ * @record
36
+ */
37
+ export function GridsterConfig() { }
38
+ if (false) {
39
+ /** @type {?|undefined} */
40
+ GridsterConfig.prototype.gridType;
41
+ /** @type {?|undefined} */
42
+ GridsterConfig.prototype.fixedColWidth;
43
+ /** @type {?|undefined} */
44
+ GridsterConfig.prototype.fixedRowHeight;
45
+ /** @type {?|undefined} */
46
+ GridsterConfig.prototype.keepFixedHeightInMobile;
47
+ /** @type {?|undefined} */
48
+ GridsterConfig.prototype.keepFixedWidthInMobile;
49
+ /** @type {?|undefined} */
50
+ GridsterConfig.prototype.setGridSize;
51
+ /** @type {?|undefined} */
52
+ GridsterConfig.prototype.compactType;
53
+ /** @type {?|undefined} */
54
+ GridsterConfig.prototype.mobileBreakpoint;
55
+ /** @type {?|undefined} */
56
+ GridsterConfig.prototype.minCols;
57
+ /** @type {?|undefined} */
58
+ GridsterConfig.prototype.maxCols;
59
+ /** @type {?|undefined} */
60
+ GridsterConfig.prototype.minRows;
61
+ /** @type {?|undefined} */
62
+ GridsterConfig.prototype.maxRows;
63
+ /** @type {?|undefined} */
64
+ GridsterConfig.prototype.defaultItemCols;
65
+ /** @type {?|undefined} */
66
+ GridsterConfig.prototype.defaultItemRows;
67
+ /** @type {?|undefined} */
68
+ GridsterConfig.prototype.maxItemCols;
69
+ /** @type {?|undefined} */
70
+ GridsterConfig.prototype.maxItemRows;
71
+ /** @type {?|undefined} */
72
+ GridsterConfig.prototype.minItemCols;
73
+ /** @type {?|undefined} */
74
+ GridsterConfig.prototype.minItemRows;
75
+ /** @type {?|undefined} */
76
+ GridsterConfig.prototype.minItemArea;
77
+ /** @type {?|undefined} */
78
+ GridsterConfig.prototype.maxItemArea;
79
+ /** @type {?|undefined} */
80
+ GridsterConfig.prototype.margin;
81
+ /** @type {?|undefined} */
82
+ GridsterConfig.prototype.outerMargin;
83
+ /** @type {?|undefined} */
84
+ GridsterConfig.prototype.outerMarginTop;
85
+ /** @type {?|undefined} */
86
+ GridsterConfig.prototype.outerMarginRight;
87
+ /** @type {?|undefined} */
88
+ GridsterConfig.prototype.outerMarginBottom;
89
+ /** @type {?|undefined} */
90
+ GridsterConfig.prototype.outerMarginLeft;
91
+ /** @type {?|undefined} */
92
+ GridsterConfig.prototype.useTransformPositioning;
93
+ /** @type {?|undefined} */
94
+ GridsterConfig.prototype.scrollSensitivity;
95
+ /** @type {?|undefined} */
96
+ GridsterConfig.prototype.scrollSpeed;
97
+ /** @type {?|undefined} */
98
+ GridsterConfig.prototype.initCallback;
99
+ /** @type {?|undefined} */
100
+ GridsterConfig.prototype.destroyCallback;
101
+ /** @type {?|undefined} */
102
+ GridsterConfig.prototype.gridSizeChangedCallback;
103
+ /** @type {?|undefined} */
104
+ GridsterConfig.prototype.itemChangeCallback;
105
+ /** @type {?|undefined} */
106
+ GridsterConfig.prototype.itemResizeCallback;
107
+ /** @type {?|undefined} */
108
+ GridsterConfig.prototype.itemInitCallback;
109
+ /** @type {?|undefined} */
110
+ GridsterConfig.prototype.itemRemovedCallback;
111
+ /** @type {?|undefined} */
112
+ GridsterConfig.prototype.itemValidateCallback;
113
+ /** @type {?|undefined} */
114
+ GridsterConfig.prototype.draggable;
115
+ /** @type {?|undefined} */
116
+ GridsterConfig.prototype.resizable;
117
+ /** @type {?|undefined} */
118
+ GridsterConfig.prototype.swap;
119
+ /** @type {?|undefined} */
120
+ GridsterConfig.prototype.pushItems;
121
+ /** @type {?|undefined} */
122
+ GridsterConfig.prototype.disablePushOnDrag;
123
+ /** @type {?|undefined} */
124
+ GridsterConfig.prototype.disablePushOnResize;
125
+ /** @type {?|undefined} */
126
+ GridsterConfig.prototype.disableAutoPositionOnConflict;
127
+ /** @type {?|undefined} */
128
+ GridsterConfig.prototype.pushDirections;
129
+ /** @type {?|undefined} */
130
+ GridsterConfig.prototype.pushResizeItems;
131
+ /** @type {?|undefined} */
132
+ GridsterConfig.prototype.displayGrid;
133
+ /** @type {?|undefined} */
134
+ GridsterConfig.prototype.disableWindowResize;
135
+ /** @type {?|undefined} */
136
+ GridsterConfig.prototype.disableWarnings;
137
+ /** @type {?|undefined} */
138
+ GridsterConfig.prototype.scrollToNewItems;
139
+ /** @type {?|undefined} */
140
+ GridsterConfig.prototype.enableEmptyCellClick;
141
+ /** @type {?|undefined} */
142
+ GridsterConfig.prototype.enableEmptyCellContextMenu;
143
+ /** @type {?|undefined} */
144
+ GridsterConfig.prototype.enableEmptyCellDrop;
145
+ /** @type {?|undefined} */
146
+ GridsterConfig.prototype.enableEmptyCellDrag;
147
+ /** @type {?|undefined} */
148
+ GridsterConfig.prototype.emptyCellClickCallback;
149
+ /** @type {?|undefined} */
150
+ GridsterConfig.prototype.emptyCellContextMenuCallback;
151
+ /** @type {?|undefined} */
152
+ GridsterConfig.prototype.emptyCellDropCallback;
153
+ /** @type {?|undefined} */
154
+ GridsterConfig.prototype.emptyCellDragCallback;
155
+ /** @type {?|undefined} */
156
+ GridsterConfig.prototype.emptyCellDragMaxCols;
157
+ /** @type {?|undefined} */
158
+ GridsterConfig.prototype.emptyCellDragMaxRows;
159
+ /** @type {?|undefined} */
160
+ GridsterConfig.prototype.ignoreMarginInRow;
161
+ /** @type {?|undefined} */
162
+ GridsterConfig.prototype.autoResizeonDrag;
163
+ /** @type {?|undefined} */
164
+ GridsterConfig.prototype.api;
165
+ /* Skipping unhandled member: [propName: string]: any;*/
166
+ }
167
+ /**
168
+ * @record
169
+ */
170
+ export function DragBase() { }
171
+ if (false) {
172
+ /** @type {?|undefined} */
173
+ DragBase.prototype.enabled;
174
+ /** @type {?|undefined} */
175
+ DragBase.prototype.stop;
176
+ /** @type {?|undefined} */
177
+ DragBase.prototype.start;
178
+ /** @type {?|undefined} */
179
+ DragBase.prototype.delayStart;
180
+ }
181
+ /**
182
+ * @record
183
+ */
184
+ export function Draggable() { }
185
+ if (false) {
186
+ /** @type {?|undefined} */
187
+ Draggable.prototype.ignoreContentClass;
188
+ /** @type {?|undefined} */
189
+ Draggable.prototype.ignoreContent;
190
+ /** @type {?|undefined} */
191
+ Draggable.prototype.dragHandleClass;
192
+ /** @type {?|undefined} */
193
+ Draggable.prototype.dropOverItems;
194
+ /** @type {?|undefined} */
195
+ Draggable.prototype.dropOverItemsCallback;
196
+ }
197
+ /**
198
+ * @record
199
+ */
200
+ export function Resizable() { }
201
+ if (false) {
202
+ /** @type {?|undefined} */
203
+ Resizable.prototype.handles;
204
+ }
205
+ /**
206
+ * @record
207
+ */
208
+ export function PushDirections() { }
209
+ if (false) {
210
+ /** @type {?} */
211
+ PushDirections.prototype.north;
212
+ /** @type {?} */
213
+ PushDirections.prototype.east;
214
+ /** @type {?} */
215
+ PushDirections.prototype.south;
216
+ /** @type {?} */
217
+ PushDirections.prototype.west;
218
+ }
219
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ3JpZHN0ZXJDb25maWcuaW50ZXJmYWNlLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQHNjaG5laWRlcmVzcy9kYXNoYm9hcmRmcmFtZXdvcmsvIiwic291cmNlcyI6WyJncmlkc3Rlci9saWIvZ3JpZHN0ZXJDb25maWcuaW50ZXJmYWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7OztJQWlCRSxLQUFNLEtBQUs7SUFDWCxnQkFBaUIsZ0JBQWdCO0lBQ2pDLGtCQUFtQixrQkFBa0I7SUFDckMsT0FBUSxPQUFPO0lBQ2YsZUFBZ0IsZUFBZTtJQUMvQixpQkFBa0IsaUJBQWlCOzs7OztJQUluQyxRQUFTLFFBQVE7SUFDakIsaUJBQWtCLGVBQWU7SUFDakMsTUFBTyxNQUFNOzs7OztJQUliLE1BQU8sTUFBTTtJQUNiLFdBQVksV0FBVztJQUN2QixhQUFjLGFBQWE7SUFDM0Isa0JBQW1CLGdCQUFnQjtJQUNuQyxrQkFBbUIsZ0JBQWdCO0lBQ25DLGNBQWUsY0FBYztJQUM3QixtQkFBb0IsaUJBQWlCO0lBQ3JDLG1CQUFvQixpQkFBaUI7Ozs7OztBQUd2QyxvQ0F5RUM7OztJQXhFQyxrQ0FBcUI7O0lBQ3JCLHVDQUF1Qjs7SUFDdkIsd0NBQXdCOztJQUN4QixpREFBa0M7O0lBQ2xDLGdEQUFpQzs7SUFDakMscUNBQXNCOztJQUN0QixxQ0FBMkI7O0lBQzNCLDBDQUEwQjs7SUFDMUIsaUNBQWlCOztJQUNqQixpQ0FBaUI7O0lBQ2pCLGlDQUFpQjs7SUFDakIsaUNBQWlCOztJQUNqQix5Q0FBeUI7O0lBQ3pCLHlDQUF5Qjs7SUFDekIscUNBQXFCOztJQUNyQixxQ0FBcUI7O0lBQ3JCLHFDQUFxQjs7SUFDckIscUNBQXFCOztJQUNyQixxQ0FBcUI7O0lBQ3JCLHFDQUFxQjs7SUFDckIsZ0NBQWdCOztJQUNoQixxQ0FBc0I7O0lBQ3RCLHdDQUErQjs7SUFDL0IsMENBQWlDOztJQUNqQywyQ0FBa0M7O0lBQ2xDLHlDQUFnQzs7SUFDaEMsaURBQWtDOztJQUNsQywyQ0FBa0M7O0lBQ2xDLHFDQUFxQjs7SUFDckIsc0NBQThEOztJQUM5RCx5Q0FBaUU7O0lBQ2pFLGlEQUF5RTs7SUFDekUsNENBQWlHOztJQUNqRyw0Q0FBaUc7O0lBQ2pHLDBDQUErRjs7SUFDL0YsNkNBQWtHOztJQUNsRyw4Q0FBdUQ7O0lBQ3ZELG1DQUFzQjs7SUFDdEIsbUNBQXNCOztJQUN0Qiw4QkFBZTs7SUFDZixtQ0FBb0I7O0lBQ3BCLDJDQUE0Qjs7SUFDNUIsNkNBQThCOztJQUM5Qix1REFBd0M7O0lBQ3hDLHdDQUFnQzs7SUFDaEMseUNBQTBCOztJQUMxQixxQ0FBMkI7O0lBQzNCLDZDQUE4Qjs7SUFDOUIseUNBQTBCOztJQUMxQiwwQ0FBMkI7O0lBQzNCLDhDQUErQjs7SUFDL0Isb0RBQXFDOztJQUNyQyw2Q0FBOEI7O0lBQzlCLDZDQUE4Qjs7SUFDOUIsZ0RBQXlFOztJQUN6RSxzREFBK0U7O0lBQy9FLCtDQUF3RTs7SUFDeEUsK0NBQXdFOztJQUN4RSw4Q0FBOEI7O0lBQzlCLDhDQUE4Qjs7SUFDOUIsMkNBQTRCOztJQUM1QiwwQ0FBMEI7O0lBQzFCLDZCQU9FOzs7Ozs7QUFLSiw4QkFLQzs7O0lBSkMsMkJBQWtCOztJQUNsQix3QkFBcUg7O0lBQ3JILHlCQUF1Rzs7SUFDdkcsOEJBQW9COzs7OztBQUd0QiwrQkFNQzs7O0lBTEMsdUNBQTRCOztJQUM1QixrQ0FBd0I7O0lBQ3hCLG9DQUF5Qjs7SUFDekIsa0NBQXdCOztJQUN4QiwwQ0FBZ0g7Ozs7O0FBR2xILCtCQVdDOzs7SUFWQyw0QkFTRTs7Ozs7QUFHSixvQ0FLQzs7O0lBSkMsK0JBQWU7O0lBQ2YsOEJBQWM7O0lBQ2QsK0JBQWU7O0lBQ2YsOEJBQWMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0dyaWRzdGVySXRlbX0gZnJvbSAnLi9ncmlkc3Rlckl0ZW0uaW50ZXJmYWNlJztcclxuaW1wb3J0IHtHcmlkc3Rlckl0ZW1Db21wb25lbnRJbnRlcmZhY2V9IGZyb20gJy4vZ3JpZHN0ZXJJdGVtQ29tcG9uZW50LmludGVyZmFjZSc7XHJcbmltcG9ydCB7R3JpZHN0ZXJDb21wb25lbnRJbnRlcmZhY2V9IGZyb20gJy4vZ3JpZHN0ZXIuaW50ZXJmYWNlJztcclxuXHJcbmV4cG9ydCB0eXBlIGdyaWRUeXBlcyA9ICdmaXQnIHwgJ3Njcm9sbFZlcnRpY2FsJyB8ICdzY3JvbGxIb3Jpem9udGFsJyB8ICdmaXhlZCcgfCAndmVydGljYWxGaXhlZCcgfCAnaG9yaXpvbnRhbEZpeGVkJztcclxuZXhwb3J0IHR5cGUgZGlzcGxheUdyaWRzID0gJ2Fsd2F5cycgfCAnb25EcmFnJlJlc2l6ZScgfCAnbm9uZSc7XHJcbmV4cG9ydCB0eXBlIGNvbXBhY3RUeXBlcyA9XHJcbiAgJ25vbmUnXHJcbiAgfCAnY29tcGFjdFVwJ1xyXG4gIHwgJ2NvbXBhY3RMZWZ0J1xyXG4gIHwgJ2NvbXBhY3RVcCZMZWZ0J1xyXG4gIHwgJ2NvbXBhY3RMZWZ0JlVwJ1xyXG4gIHwgJ2NvbXBhY3RSaWdodCdcclxuICB8ICdjb21wYWN0VXAmUmlnaHQnXHJcbiAgfCAnY29tcGFjdFJpZ2h0JlVwJztcclxuXHJcbmV4cG9ydCBlbnVtIEdyaWRUeXBlIHtcclxuICBGaXQgPSAnZml0JyxcclxuICBTY3JvbGxWZXJ0aWNhbCA9ICdzY3JvbGxWZXJ0aWNhbCcsXHJcbiAgU2Nyb2xsSG9yaXpvbnRhbCA9ICdzY3JvbGxIb3Jpem9udGFsJyxcclxuICBGaXhlZCA9ICdmaXhlZCcsXHJcbiAgVmVydGljYWxGaXhlZCA9ICd2ZXJ0aWNhbEZpeGVkJyxcclxuICBIb3Jpem9udGFsRml4ZWQgPSAnaG9yaXpvbnRhbEZpeGVkJ1xyXG59XHJcblxyXG5leHBvcnQgZW51bSBEaXNwbGF5R3JpZCB7XHJcbiAgQWx3YXlzID0gJ2Fsd2F5cycsXHJcbiAgT25EcmFnQW5kUmVzaXplID0gJ29uRHJhZyZSZXNpemUnLFxyXG4gIE5vbmUgPSAnbm9uZSdcclxufVxyXG5cclxuZXhwb3J0IGVudW0gQ29tcGFjdFR5cGUge1xyXG4gIE5vbmUgPSAnbm9uZScsXHJcbiAgQ29tcGFjdFVwID0gJ2NvbXBhY3RVcCcsXHJcbiAgQ29tcGFjdExlZnQgPSAnY29tcGFjdExlZnQnLFxyXG4gIENvbXBhY3RVcEFuZExlZnQgPSAnY29tcGFjdFVwJkxlZnQnLFxyXG4gIENvbXBhY3RMZWZ0QW5kVXAgPSAnY29tcGFjdExlZnQmVXAnLFxyXG4gIENvbXBhY3RSaWdodCA9ICdjb21wYWN0UmlnaHQnLFxyXG4gIENvbXBhY3RVcEFuZFJpZ2h0ID0gJ2NvbXBhY3RVcCZSaWdodCcsXHJcbiAgQ29tcGFjdFJpZ2h0QW5kVXAgPSAnY29tcGFjdFJpZ2h0JlVwJyxcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBHcmlkc3RlckNvbmZpZyB7XHJcbiAgZ3JpZFR5cGU/OiBncmlkVHlwZXM7XHJcbiAgZml4ZWRDb2xXaWR0aD86IG51bWJlcjtcclxuICBmaXhlZFJvd0hlaWdodD86IG51bWJlcjtcclxuICBrZWVwRml4ZWRIZWlnaHRJbk1vYmlsZT86IGJvb2xlYW47XHJcbiAga2VlcEZpeGVkV2lkdGhJbk1vYmlsZT86IGJvb2xlYW47XHJcbiAgc2V0R3JpZFNpemU/OiBib29sZWFuO1xyXG4gIGNvbXBhY3RUeXBlPzogY29tcGFjdFR5cGVzO1xyXG4gIG1vYmlsZUJyZWFrcG9pbnQ/OiBudW1iZXI7XHJcbiAgbWluQ29scz86IG51bWJlcjtcclxuICBtYXhDb2xzPzogbnVtYmVyO1xyXG4gIG1pblJvd3M/OiBudW1iZXI7XHJcbiAgbWF4Um93cz86IG51bWJlcjtcclxuICBkZWZhdWx0SXRlbUNvbHM/OiBudW1iZXI7XHJcbiAgZGVmYXVsdEl0ZW1Sb3dzPzogbnVtYmVyO1xyXG4gIG1heEl0ZW1Db2xzPzogbnVtYmVyO1xyXG4gIG1heEl0ZW1Sb3dzPzogbnVtYmVyO1xyXG4gIG1pbkl0ZW1Db2xzPzogbnVtYmVyO1xyXG4gIG1pbkl0ZW1Sb3dzPzogbnVtYmVyO1xyXG4gIG1pbkl0ZW1BcmVhPzogbnVtYmVyO1xyXG4gIG1heEl0ZW1BcmVhPzogbnVtYmVyO1xyXG4gIG1hcmdpbj86IG51bWJlcjtcclxuICBvdXRlck1hcmdpbj86IGJvb2xlYW47XHJcbiAgb3V0ZXJNYXJnaW5Ub3A/OiBudW1iZXIgfCBudWxsO1xyXG4gIG91dGVyTWFyZ2luUmlnaHQ/OiBudW1iZXIgfCBudWxsO1xyXG4gIG91dGVyTWFyZ2luQm90dG9tPzogbnVtYmVyIHwgbnVsbDtcclxuICBvdXRlck1hcmdpbkxlZnQ/OiBudW1iZXIgfCBudWxsO1xyXG4gIHVzZVRyYW5zZm9ybVBvc2l0aW9uaW5nPzogYm9vbGVhbjtcclxuICBzY3JvbGxTZW5zaXRpdml0eT86IG51bWJlciB8IG51bGw7XHJcbiAgc2Nyb2xsU3BlZWQ/OiBudW1iZXI7XHJcbiAgaW5pdENhbGxiYWNrPzogKGdyaWRzdGVyOiBHcmlkc3RlckNvbXBvbmVudEludGVyZmFjZSkgPT4gdm9pZDtcclxuICBkZXN0cm95Q2FsbGJhY2s/OiAoZ3JpZHN0ZXI6IEdyaWRzdGVyQ29tcG9uZW50SW50ZXJmYWNlKSA9PiB2b2lkO1xyXG4gIGdyaWRTaXplQ2hhbmdlZENhbGxiYWNrPzogKGdyaWRzdGVyOiBHcmlkc3RlckNvbXBvbmVudEludGVyZmFjZSkgPT4gdm9pZDtcclxuICBpdGVtQ2hhbmdlQ2FsbGJhY2s/OiAoaXRlbTogR3JpZHN0ZXJJdGVtLCBpdGVtQ29tcG9uZW50OiBHcmlkc3Rlckl0ZW1Db21wb25lbnRJbnRlcmZhY2UpID0+IHZvaWQ7XHJcbiAgaXRlbVJlc2l6ZUNhbGxiYWNrPzogKGl0ZW06IEdyaWRzdGVySXRlbSwgaXRlbUNvbXBvbmVudDogR3JpZHN0ZXJJdGVtQ29tcG9uZW50SW50ZXJmYWNlKSA9PiB2b2lkO1xyXG4gIGl0ZW1Jbml0Q2FsbGJhY2s/OiAoaXRlbTogR3JpZHN0ZXJJdGVtLCBpdGVtQ29tcG9uZW50OiBHcmlkc3Rlckl0ZW1Db21wb25lbnRJbnRlcmZhY2UpID0+IHZvaWQ7XHJcbiAgaXRlbVJlbW92ZWRDYWxsYmFjaz86IChpdGVtOiBHcmlkc3Rlckl0ZW0sIGl0ZW1Db21wb25lbnQ6IEdyaWRzdGVySXRlbUNvbXBvbmVudEludGVyZmFjZSkgPT4gdm9pZDtcclxuICBpdGVtVmFsaWRhdGVDYWxsYmFjaz86IChpdGVtOiBHcmlkc3Rlckl0ZW0pID0+IGJvb2xlYW47XHJcbiAgZHJhZ2dhYmxlPzogRHJhZ2dhYmxlO1xyXG4gIHJlc2l6YWJsZT86IFJlc2l6YWJsZTtcclxuICBzd2FwPzogYm9vbGVhbjtcclxuICBwdXNoSXRlbXM/OiBib29sZWFuO1xyXG4gIGRpc2FibGVQdXNoT25EcmFnPzogYm9vbGVhbjtcclxuICBkaXNhYmxlUHVzaE9uUmVzaXplPzogYm9vbGVhbjtcclxuICBkaXNhYmxlQXV0b1Bvc2l0aW9uT25Db25mbGljdD86IGJvb2xlYW47XHJcbiAgcHVzaERpcmVjdGlvbnM/OiBQdXNoRGlyZWN0aW9ucztcclxuICBwdXNoUmVzaXplSXRlbXM/OiBib29sZWFuO1xyXG4gIGRpc3BsYXlHcmlkPzogZGlzcGxheUdyaWRzO1xyXG4gIGRpc2FibGVXaW5kb3dSZXNpemU/OiBib29sZWFuO1xyXG4gIGRpc2FibGVXYXJuaW5ncz86IGJvb2xlYW47XHJcbiAgc2Nyb2xsVG9OZXdJdGVtcz86IGJvb2xlYW47XHJcbiAgZW5hYmxlRW1wdHlDZWxsQ2xpY2s/OiBib29sZWFuO1xyXG4gIGVuYWJsZUVtcHR5Q2VsbENvbnRleHRNZW51PzogYm9vbGVhbjtcclxuICBlbmFibGVFbXB0eUNlbGxEcm9wPzogYm9vbGVhbjtcclxuICBlbmFibGVFbXB0eUNlbGxEcmFnPzogYm9vbGVhbjtcclxuICBlbXB0eUNlbGxDbGlja0NhbGxiYWNrPzogKGV2ZW50OiBNb3VzZUV2ZW50LCBpdGVtOiBHcmlkc3Rlckl0ZW0pID0+IHZvaWQ7XHJcbiAgZW1wdHlDZWxsQ29udGV4dE1lbnVDYWxsYmFjaz86IChldmVudDogTW91c2VFdmVudCwgaXRlbTogR3JpZHN0ZXJJdGVtKSA9PiB2b2lkO1xyXG4gIGVtcHR5Q2VsbERyb3BDYWxsYmFjaz86IChldmVudDogTW91c2VFdmVudCwgaXRlbTogR3JpZHN0ZXJJdGVtKSA9PiB2b2lkO1xyXG4gIGVtcHR5Q2VsbERyYWdDYWxsYmFjaz86IChldmVudDogTW91c2VFdmVudCwgaXRlbTogR3JpZHN0ZXJJdGVtKSA9PiB2b2lkO1xyXG4gIGVtcHR5Q2VsbERyYWdNYXhDb2xzPzogbnVtYmVyO1xyXG4gIGVtcHR5Q2VsbERyYWdNYXhSb3dzPzogbnVtYmVyO1xyXG4gIGlnbm9yZU1hcmdpbkluUm93PzogYm9vbGVhbjtcclxuICBhdXRvUmVzaXplb25EcmFnPzpib29sZWFuO1xyXG4gIGFwaT86IHtcclxuICAgIHJlc2l6ZT86ICgpID0+IHZvaWQsXHJcbiAgICBvcHRpb25zQ2hhbmdlZD86ICgpID0+IHZvaWQsXHJcbiAgICBnZXROZXh0UG9zc2libGVQb3NpdGlvbj86IChuZXdJdGVtOiBHcmlkc3Rlckl0ZW0pID0+IGJvb2xlYW4sXHJcbiAgICBnZXRGaXJzdFBvc3NpYmxlUG9zaXRpb24/OiAoaXRlbTogR3JpZHN0ZXJJdGVtKSA9PiBHcmlkc3Rlckl0ZW0sXHJcbiAgICBnZXRMYXN0UG9zc2libGVQb3NpdGlvbj86IChpdGVtOiBHcmlkc3Rlckl0ZW0pID0+IEdyaWRzdGVySXRlbSxcclxuICAgIGdldEN1cnJlbnRSb3dIZWlnaHQ/OigpPT5udW1iZXJcclxuICB9O1xyXG5cclxuICBbcHJvcE5hbWU6IHN0cmluZ106IGFueTtcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBEcmFnQmFzZSB7XHJcbiAgZW5hYmxlZD86IGJvb2xlYW47XHJcbiAgc3RvcD86IChpdGVtOiBHcmlkc3Rlckl0ZW0sIGl0ZW1Db21wb25lbnQ6IEdyaWRzdGVySXRlbUNvbXBvbmVudEludGVyZmFjZSwgZXZlbnQ6IE1vdXNlRXZlbnQpID0+IFByb21pc2U8YW55PiB8IHZvaWQ7XHJcbiAgc3RhcnQ/OiAoaXRlbTogR3JpZHN0ZXJJdGVtLCBpdGVtQ29tcG9uZW50OiBHcmlkc3Rlckl0ZW1Db21wb25lbnRJbnRlcmZhY2UsIGV2ZW50OiBNb3VzZUV2ZW50KSA9PiB2b2lkO1xyXG4gIGRlbGF5U3RhcnQ/OiBudW1iZXI7XHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgRHJhZ2dhYmxlIGV4dGVuZHMgRHJhZ0Jhc2Uge1xyXG4gIGlnbm9yZUNvbnRlbnRDbGFzcz86IHN0cmluZztcclxuICBpZ25vcmVDb250ZW50PzogYm9vbGVhbjtcclxuICBkcmFnSGFuZGxlQ2xhc3M/OiBzdHJpbmc7XHJcbiAgZHJvcE92ZXJJdGVtcz86IGJvb2xlYW47XHJcbiAgZHJvcE92ZXJJdGVtc0NhbGxiYWNrPzogKHNvdXJjZTogR3JpZHN0ZXJJdGVtLCB0YXJnZXQ6IEdyaWRzdGVySXRlbSwgZ3JpZD86IEdyaWRzdGVyQ29tcG9uZW50SW50ZXJmYWNlKSA9PiB2b2lkO1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIFJlc2l6YWJsZSBleHRlbmRzIERyYWdCYXNlIHtcclxuICBoYW5kbGVzPzoge1xyXG4gICAgczogYm9vbGVhbixcclxuICAgIGU6IGJvb2xlYW4sXHJcbiAgICBuOiBib29sZWFuLFxyXG4gICAgdzogYm9vbGVhbixcclxuICAgIHNlOiBib29sZWFuLFxyXG4gICAgbmU6IGJvb2xlYW4sXHJcbiAgICBzdzogYm9vbGVhbixcclxuICAgIG53OiBib29sZWFuXHJcbiAgfTtcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBQdXNoRGlyZWN0aW9ucyB7XHJcbiAgbm9ydGg6IGJvb2xlYW47XHJcbiAgZWFzdDogYm9vbGVhbjtcclxuICBzb3V0aDogYm9vbGVhbjtcclxuICB3ZXN0OiBib29sZWFuO1xyXG59XHJcbiJdfQ==
@@ -0,0 +1,161 @@
1
+ /**
2
+ * @fileoverview added by tsickle
3
+ * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
4
+ */
5
+ /**
6
+ * @record
7
+ */
8
+ export function GridsterConfigS() { }
9
+ if (false) {
10
+ /** @type {?} */
11
+ GridsterConfigS.prototype.gridType;
12
+ /** @type {?} */
13
+ GridsterConfigS.prototype.fixedColWidth;
14
+ /** @type {?} */
15
+ GridsterConfigS.prototype.fixedRowHeight;
16
+ /** @type {?} */
17
+ GridsterConfigS.prototype.keepFixedHeightInMobile;
18
+ /** @type {?} */
19
+ GridsterConfigS.prototype.keepFixedWidthInMobile;
20
+ /** @type {?} */
21
+ GridsterConfigS.prototype.setGridSize;
22
+ /** @type {?} */
23
+ GridsterConfigS.prototype.compactType;
24
+ /** @type {?} */
25
+ GridsterConfigS.prototype.mobileBreakpoint;
26
+ /** @type {?} */
27
+ GridsterConfigS.prototype.minCols;
28
+ /** @type {?} */
29
+ GridsterConfigS.prototype.maxCols;
30
+ /** @type {?} */
31
+ GridsterConfigS.prototype.minRows;
32
+ /** @type {?} */
33
+ GridsterConfigS.prototype.maxRows;
34
+ /** @type {?} */
35
+ GridsterConfigS.prototype.defaultItemCols;
36
+ /** @type {?} */
37
+ GridsterConfigS.prototype.defaultItemRows;
38
+ /** @type {?} */
39
+ GridsterConfigS.prototype.maxItemCols;
40
+ /** @type {?} */
41
+ GridsterConfigS.prototype.maxItemRows;
42
+ /** @type {?} */
43
+ GridsterConfigS.prototype.minItemCols;
44
+ /** @type {?} */
45
+ GridsterConfigS.prototype.minItemRows;
46
+ /** @type {?} */
47
+ GridsterConfigS.prototype.minItemArea;
48
+ /** @type {?} */
49
+ GridsterConfigS.prototype.maxItemArea;
50
+ /** @type {?} */
51
+ GridsterConfigS.prototype.margin;
52
+ /** @type {?} */
53
+ GridsterConfigS.prototype.outerMargin;
54
+ /** @type {?} */
55
+ GridsterConfigS.prototype.outerMarginTop;
56
+ /** @type {?} */
57
+ GridsterConfigS.prototype.outerMarginRight;
58
+ /** @type {?} */
59
+ GridsterConfigS.prototype.outerMarginBottom;
60
+ /** @type {?} */
61
+ GridsterConfigS.prototype.outerMarginLeft;
62
+ /** @type {?} */
63
+ GridsterConfigS.prototype.useTransformPositioning;
64
+ /** @type {?} */
65
+ GridsterConfigS.prototype.scrollSensitivity;
66
+ /** @type {?} */
67
+ GridsterConfigS.prototype.scrollSpeed;
68
+ /** @type {?} */
69
+ GridsterConfigS.prototype.draggable;
70
+ /** @type {?} */
71
+ GridsterConfigS.prototype.resizable;
72
+ /** @type {?} */
73
+ GridsterConfigS.prototype.swap;
74
+ /** @type {?} */
75
+ GridsterConfigS.prototype.pushItems;
76
+ /** @type {?} */
77
+ GridsterConfigS.prototype.disablePushOnDrag;
78
+ /** @type {?} */
79
+ GridsterConfigS.prototype.disablePushOnResize;
80
+ /** @type {?} */
81
+ GridsterConfigS.prototype.disableAutoPositionOnConflict;
82
+ /** @type {?} */
83
+ GridsterConfigS.prototype.pushDirections;
84
+ /** @type {?} */
85
+ GridsterConfigS.prototype.pushResizeItems;
86
+ /** @type {?} */
87
+ GridsterConfigS.prototype.displayGrid;
88
+ /** @type {?} */
89
+ GridsterConfigS.prototype.disableWindowResize;
90
+ /** @type {?} */
91
+ GridsterConfigS.prototype.disableWarnings;
92
+ /** @type {?} */
93
+ GridsterConfigS.prototype.scrollToNewItems;
94
+ /** @type {?} */
95
+ GridsterConfigS.prototype.enableEmptyCellClick;
96
+ /** @type {?} */
97
+ GridsterConfigS.prototype.enableEmptyCellContextMenu;
98
+ /** @type {?} */
99
+ GridsterConfigS.prototype.enableEmptyCellDrop;
100
+ /** @type {?} */
101
+ GridsterConfigS.prototype.enableEmptyCellDrag;
102
+ /** @type {?} */
103
+ GridsterConfigS.prototype.emptyCellDragMaxCols;
104
+ /** @type {?} */
105
+ GridsterConfigS.prototype.emptyCellDragMaxRows;
106
+ /** @type {?} */
107
+ GridsterConfigS.prototype.ignoreMarginInRow;
108
+ /** @type {?} */
109
+ GridsterConfigS.prototype.api;
110
+ /* Skipping unhandled member: [propName: string]: any;*/
111
+ }
112
+ /**
113
+ * @record
114
+ */
115
+ export function DragBase() { }
116
+ if (false) {
117
+ /** @type {?} */
118
+ DragBase.prototype.enabled;
119
+ /** @type {?} */
120
+ DragBase.prototype.delayStart;
121
+ /* Skipping unhandled member: [propName: string]: any;*/
122
+ }
123
+ /**
124
+ * @record
125
+ */
126
+ export function Draggable() { }
127
+ if (false) {
128
+ /** @type {?} */
129
+ Draggable.prototype.ignoreContentClass;
130
+ /** @type {?} */
131
+ Draggable.prototype.ignoreContent;
132
+ /** @type {?} */
133
+ Draggable.prototype.dragHandleClass;
134
+ /** @type {?} */
135
+ Draggable.prototype.dropOverItems;
136
+ /** @type {?} */
137
+ Draggable.prototype.dropOverItemsCallback;
138
+ }
139
+ /**
140
+ * @record
141
+ */
142
+ export function Resizable() { }
143
+ if (false) {
144
+ /** @type {?} */
145
+ Resizable.prototype.handles;
146
+ }
147
+ /**
148
+ * @record
149
+ */
150
+ export function PushDirections() { }
151
+ if (false) {
152
+ /** @type {?} */
153
+ PushDirections.prototype.north;
154
+ /** @type {?} */
155
+ PushDirections.prototype.east;
156
+ /** @type {?} */
157
+ PushDirections.prototype.south;
158
+ /** @type {?} */
159
+ PushDirections.prototype.west;
160
+ }
161
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ3JpZHN0ZXJDb25maWdTLmludGVyZmFjZS5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BzY2huZWlkZXJlc3MvZGFzaGJvYXJkZnJhbWV3b3JrLyIsInNvdXJjZXMiOlsiZ3JpZHN0ZXIvbGliL2dyaWRzdGVyQ29uZmlnUy5pbnRlcmZhY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7OztBQUlBLHFDQTREQzs7O0lBM0RDLG1DQUFvQjs7SUFDcEIsd0NBQXNCOztJQUN0Qix5Q0FBdUI7O0lBQ3ZCLGtEQUFpQzs7SUFDakMsaURBQWdDOztJQUNoQyxzQ0FBcUI7O0lBQ3JCLHNDQUEwQjs7SUFDMUIsMkNBQXlCOztJQUN6QixrQ0FBZ0I7O0lBQ2hCLGtDQUFnQjs7SUFDaEIsa0NBQWdCOztJQUNoQixrQ0FBZ0I7O0lBQ2hCLDBDQUF3Qjs7SUFDeEIsMENBQXdCOztJQUN4QixzQ0FBb0I7O0lBQ3BCLHNDQUFvQjs7SUFDcEIsc0NBQW9COztJQUNwQixzQ0FBb0I7O0lBQ3BCLHNDQUFvQjs7SUFDcEIsc0NBQW9COztJQUNwQixpQ0FBZTs7SUFDZixzQ0FBcUI7O0lBQ3JCLHlDQUE4Qjs7SUFDOUIsMkNBQWdDOztJQUNoQyw0Q0FBaUM7O0lBQ2pDLDBDQUErQjs7SUFDL0Isa0RBQWlDOztJQUNqQyw0Q0FBMEI7O0lBQzFCLHNDQUFvQjs7SUFDcEIsb0NBQXFCOztJQUNyQixvQ0FBcUI7O0lBQ3JCLCtCQUFjOztJQUNkLG9DQUFtQjs7SUFDbkIsNENBQTJCOztJQUMzQiw4Q0FBNkI7O0lBQzdCLHdEQUF1Qzs7SUFDdkMseUNBQStCOztJQUMvQiwwQ0FBeUI7O0lBQ3pCLHNDQUEwQjs7SUFDMUIsOENBQTZCOztJQUM3QiwwQ0FBeUI7O0lBQ3pCLDJDQUEwQjs7SUFDMUIsK0NBQThCOztJQUM5QixxREFBb0M7O0lBQ3BDLDhDQUE2Qjs7SUFDN0IsOENBQTZCOztJQUM3QiwrQ0FBNkI7O0lBQzdCLCtDQUE2Qjs7SUFDN0IsNENBQTJCOztJQUMzQiw4QkFPRTs7Ozs7O0FBS0osOEJBS0M7OztJQUpDLDJCQUFpQjs7SUFDakIsOEJBQW1COzs7Ozs7QUFLckIsK0JBTUM7OztJQUxDLHVDQUEyQjs7SUFDM0Isa0NBQXVCOztJQUN2QixvQ0FBd0I7O0lBQ3hCLGtDQUF1Qjs7SUFDdkIsMENBQStHOzs7OztBQUdqSCwrQkFXQzs7O0lBVkMsNEJBU0U7Ozs7O0FBR0osb0NBS0M7OztJQUpDLCtCQUFlOztJQUNmLDhCQUFjOztJQUNkLCtCQUFlOztJQUNmLDhCQUFjIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtjb21wYWN0VHlwZXMsIGRpc3BsYXlHcmlkcywgZ3JpZFR5cGVzfSBmcm9tICcuL2dyaWRzdGVyQ29uZmlnLmludGVyZmFjZSc7XHJcbmltcG9ydCB7R3JpZHN0ZXJJdGVtfSBmcm9tICcuL2dyaWRzdGVySXRlbS5pbnRlcmZhY2UnO1xyXG5pbXBvcnQge0dyaWRzdGVyQ29tcG9uZW50SW50ZXJmYWNlfSBmcm9tICcuL2dyaWRzdGVyLmludGVyZmFjZSc7XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIEdyaWRzdGVyQ29uZmlnUyB7XHJcbiAgZ3JpZFR5cGU6IGdyaWRUeXBlcztcclxuICBmaXhlZENvbFdpZHRoOiBudW1iZXI7XHJcbiAgZml4ZWRSb3dIZWlnaHQ6IG51bWJlcjtcclxuICBrZWVwRml4ZWRIZWlnaHRJbk1vYmlsZTogYm9vbGVhbjtcclxuICBrZWVwRml4ZWRXaWR0aEluTW9iaWxlOiBib29sZWFuO1xyXG4gIHNldEdyaWRTaXplOiBib29sZWFuO1xyXG4gIGNvbXBhY3RUeXBlOiBjb21wYWN0VHlwZXM7XHJcbiAgbW9iaWxlQnJlYWtwb2ludDogbnVtYmVyO1xyXG4gIG1pbkNvbHM6IG51bWJlcjtcclxuICBtYXhDb2xzOiBudW1iZXI7XHJcbiAgbWluUm93czogbnVtYmVyO1xyXG4gIG1heFJvd3M6IG51bWJlcjtcclxuICBkZWZhdWx0SXRlbUNvbHM6IG51bWJlcjtcclxuICBkZWZhdWx0SXRlbVJvd3M6IG51bWJlcjtcclxuICBtYXhJdGVtQ29sczogbnVtYmVyO1xyXG4gIG1heEl0ZW1Sb3dzOiBudW1iZXI7XHJcbiAgbWluSXRlbUNvbHM6IG51bWJlcjtcclxuICBtaW5JdGVtUm93czogbnVtYmVyO1xyXG4gIG1pbkl0ZW1BcmVhOiBudW1iZXI7XHJcbiAgbWF4SXRlbUFyZWE6IG51bWJlcjtcclxuICBtYXJnaW46IG51bWJlcjtcclxuICBvdXRlck1hcmdpbjogYm9vbGVhbjtcclxuICBvdXRlck1hcmdpblRvcDogbnVtYmVyIHwgbnVsbDtcclxuICBvdXRlck1hcmdpblJpZ2h0OiBudW1iZXIgfCBudWxsO1xyXG4gIG91dGVyTWFyZ2luQm90dG9tOiBudW1iZXIgfCBudWxsO1xyXG4gIG91dGVyTWFyZ2luTGVmdDogbnVtYmVyIHwgbnVsbDtcclxuICB1c2VUcmFuc2Zvcm1Qb3NpdGlvbmluZzogYm9vbGVhbjtcclxuICBzY3JvbGxTZW5zaXRpdml0eTogbnVtYmVyO1xyXG4gIHNjcm9sbFNwZWVkOiBudW1iZXI7XHJcbiAgZHJhZ2dhYmxlOiBEcmFnZ2FibGU7XHJcbiAgcmVzaXphYmxlOiBSZXNpemFibGU7XHJcbiAgc3dhcDogYm9vbGVhbjtcclxuICBwdXNoSXRlbXM6IGJvb2xlYW47XHJcbiAgZGlzYWJsZVB1c2hPbkRyYWc6IGJvb2xlYW47XHJcbiAgZGlzYWJsZVB1c2hPblJlc2l6ZTogYm9vbGVhbjtcclxuICBkaXNhYmxlQXV0b1Bvc2l0aW9uT25Db25mbGljdDogYm9vbGVhbjtcclxuICBwdXNoRGlyZWN0aW9uczogUHVzaERpcmVjdGlvbnM7XHJcbiAgcHVzaFJlc2l6ZUl0ZW1zOiBib29sZWFuO1xyXG4gIGRpc3BsYXlHcmlkOiBkaXNwbGF5R3JpZHM7XHJcbiAgZGlzYWJsZVdpbmRvd1Jlc2l6ZTogYm9vbGVhbjtcclxuICBkaXNhYmxlV2FybmluZ3M6IGJvb2xlYW47XHJcbiAgc2Nyb2xsVG9OZXdJdGVtczogYm9vbGVhbjtcclxuICBlbmFibGVFbXB0eUNlbGxDbGljazogYm9vbGVhbjtcclxuICBlbmFibGVFbXB0eUNlbGxDb250ZXh0TWVudTogYm9vbGVhbjtcclxuICBlbmFibGVFbXB0eUNlbGxEcm9wOiBib29sZWFuO1xyXG4gIGVuYWJsZUVtcHR5Q2VsbERyYWc6IGJvb2xlYW47XHJcbiAgZW1wdHlDZWxsRHJhZ01heENvbHM6IG51bWJlcjtcclxuICBlbXB0eUNlbGxEcmFnTWF4Um93czogbnVtYmVyO1xyXG4gIGlnbm9yZU1hcmdpbkluUm93OiBib29sZWFuO1xyXG4gIGFwaToge1xyXG4gICAgcmVzaXplOiAoKSA9PiB2b2lkLFxyXG4gICAgb3B0aW9uc0NoYW5nZWQ6ICgpID0+IHZvaWQsXHJcbiAgICBnZXROZXh0UG9zc2libGVQb3NpdGlvbjogKG5ld0l0ZW06IEdyaWRzdGVySXRlbSkgPT4gYm9vbGVhbixcclxuICAgIGdldEZpcnN0UG9zc2libGVQb3NpdGlvbjogKGl0ZW06IEdyaWRzdGVySXRlbSkgPT4gR3JpZHN0ZXJJdGVtLFxyXG4gICAgZ2V0TGFzdFBvc3NpYmxlUG9zaXRpb246IChpdGVtOiBHcmlkc3Rlckl0ZW0pID0+IEdyaWRzdGVySXRlbSxcclxuICAgIGdldEN1cnJlbnRSb3dIZWlnaHQ6KCk9Pm51bWJlclxyXG4gIH07XHJcblxyXG4gIFtwcm9wTmFtZTogc3RyaW5nXTogYW55O1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIERyYWdCYXNlIHtcclxuICBlbmFibGVkOiBib29sZWFuO1xyXG4gIGRlbGF5U3RhcnQ6IG51bWJlcjtcclxuXHJcbiAgW3Byb3BOYW1lOiBzdHJpbmddOiBhbnk7XHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgRHJhZ2dhYmxlIGV4dGVuZHMgRHJhZ0Jhc2Uge1xyXG4gIGlnbm9yZUNvbnRlbnRDbGFzczogc3RyaW5nO1xyXG4gIGlnbm9yZUNvbnRlbnQ6IGJvb2xlYW47XHJcbiAgZHJhZ0hhbmRsZUNsYXNzOiBzdHJpbmc7XHJcbiAgZHJvcE92ZXJJdGVtczogYm9vbGVhbjtcclxuICBkcm9wT3Zlckl0ZW1zQ2FsbGJhY2s6IChzb3VyY2U6IEdyaWRzdGVySXRlbSwgdGFyZ2V0OiBHcmlkc3Rlckl0ZW0sIGdyaWQ/OiBHcmlkc3RlckNvbXBvbmVudEludGVyZmFjZSkgPT4gdm9pZDtcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBSZXNpemFibGUgZXh0ZW5kcyBEcmFnQmFzZSB7XHJcbiAgaGFuZGxlczoge1xyXG4gICAgczogYm9vbGVhbixcclxuICAgIGU6IGJvb2xlYW4sXHJcbiAgICBuOiBib29sZWFuLFxyXG4gICAgdzogYm9vbGVhbixcclxuICAgIHNlOiBib29sZWFuLFxyXG4gICAgbmU6IGJvb2xlYW4sXHJcbiAgICBzdzogYm9vbGVhbixcclxuICAgIG53OiBib29sZWFuXHJcbiAgfTtcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBQdXNoRGlyZWN0aW9ucyB7XHJcbiAgbm9ydGg6IGJvb2xlYW47XHJcbiAgZWFzdDogYm9vbGVhbjtcclxuICBzb3V0aDogYm9vbGVhbjtcclxuICB3ZXN0OiBib29sZWFuO1xyXG59XHJcbiJdfQ==