@schneideress/dashboardframework 0.0.279 → 17.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 (159) hide show
  1. package/README.md +2 -2
  2. package/esm2022/gridster/index.mjs +12 -0
  3. package/esm2022/gridster/lib/gridster.component.mjs +627 -0
  4. package/esm2022/gridster/lib/gridster.interface.mjs +3 -0
  5. package/esm2022/gridster/lib/gridster.module.mjs +17 -0
  6. package/esm2022/gridster/lib/gridsterCompact.service.mjs +126 -0
  7. package/esm2022/gridster/lib/gridsterConfig.constant.mjs +118 -0
  8. package/esm2022/gridster/lib/gridsterConfig.interface.mjs +37 -0
  9. package/esm2022/gridster/lib/gridsterConfigS.interface.mjs +2 -0
  10. package/esm2022/gridster/lib/gridsterDraggable.service.mjs +405 -0
  11. package/esm2022/gridster/lib/gridsterEmptyCell.service.mjs +255 -0
  12. package/esm2022/gridster/lib/gridsterItem.component.mjs +228 -0
  13. package/esm2022/gridster/lib/gridsterItem.interface.mjs +3 -0
  14. package/esm2022/gridster/lib/gridsterPreview.component.mjs +36 -0
  15. package/esm2022/gridster/lib/gridsterPush.service.mjs +316 -0
  16. package/esm2022/gridster/lib/gridsterPushResize.service.mjs +225 -0
  17. package/esm2022/gridster/lib/gridsterRenderer.interface.mjs +2 -0
  18. package/esm2022/gridster/lib/gridsterRenderer.service.mjs +274 -0
  19. package/esm2022/gridster/lib/gridsterResizable.service.mjs +470 -0
  20. package/esm2022/gridster/lib/gridsterResizeEventType.interface.mjs +2 -0
  21. package/esm2022/gridster/lib/gridsterScroll.service.mjs +134 -0
  22. package/esm2022/gridster/lib/gridsterSwap.service.mjs +87 -0
  23. package/esm2022/gridster/lib/gridsterUtils.service.mjs +92 -0
  24. package/esm2022/lib/custom.notifier.options.mjs +41 -0
  25. package/esm2022/lib/ra-dashboard-area/ra.dashboard.area.mjs +460 -0
  26. package/esm2022/lib/ra-widget-container/lock-tooltip/lock.tooltip.component.mjs +43 -0
  27. package/esm2022/lib/ra-widget-container/ra.widget.container.component.mjs +767 -0
  28. package/esm2022/lib/ra.base.dashboard.filter.mjs +41 -0
  29. package/esm2022/lib/ra.base.dashboard.template.mjs +33 -0
  30. package/esm2022/lib/ra.dashbard.event.bus.mjs +46 -0
  31. package/esm2022/lib/ra.dashboard.module.mjs +55 -0
  32. package/esm2022/lib/ra.dashboard.responsive.service.mjs +139 -0
  33. package/esm2022/lib/ra.dashboard.service.mjs +77 -0
  34. package/esm2022/lib/ra.event.enum.mjs +60 -0
  35. package/esm2022/lib/ra.gridster.config.mjs +56 -0
  36. package/esm2022/public-api.mjs +13 -0
  37. package/esm2022/schneideress-dashboardframework.mjs +5 -0
  38. package/fesm2022/schneideress-dashboardframework.mjs +5198 -0
  39. package/fesm2022/schneideress-dashboardframework.mjs.map +1 -0
  40. package/gridster/index.d.ts +9 -11
  41. package/gridster/lib/gridster.component.d.ts +79 -67
  42. package/gridster/lib/gridster.interface.d.ts +49 -46
  43. package/gridster/lib/gridster.module.d.ts +8 -2
  44. package/gridster/lib/gridsterCompact.service.d.ts +11 -15
  45. package/gridster/lib/gridsterConfig.constant.d.ts +2 -2
  46. package/gridster/lib/gridsterConfig.interface.d.ts +155 -133
  47. package/gridster/lib/gridsterConfigS.interface.d.ts +107 -93
  48. package/gridster/lib/gridsterDraggable.service.d.ts +68 -59
  49. package/gridster/lib/gridsterEmptyCell.service.d.ts +31 -29
  50. package/gridster/lib/gridsterItem.component.d.ts +61 -32
  51. package/gridster/lib/gridsterItem.interface.d.ts +64 -21
  52. package/gridster/lib/gridsterPreview.component.d.ts +17 -10
  53. package/gridster/lib/gridsterPush.service.d.ts +34 -33
  54. package/gridster/lib/gridsterPushResize.service.d.ts +26 -26
  55. package/gridster/lib/gridsterRenderer.interface.d.ts +14 -0
  56. package/gridster/lib/gridsterRenderer.service.d.ts +37 -38
  57. package/gridster/lib/gridsterResizable.service.d.ts +86 -67
  58. package/gridster/lib/gridsterResizeEventType.interface.d.ts +6 -6
  59. package/gridster/lib/gridsterScroll.service.d.ts +7 -4
  60. package/gridster/lib/gridsterSwap.service.d.ts +13 -13
  61. package/gridster/lib/gridsterUtils.service.d.ts +16 -16
  62. package/index.d.ts +5 -0
  63. package/lib/custom.notifier.options.d.ts +2 -2
  64. package/lib/ra-dashboard-area/ra.dashboard.area.d.ts +88 -86
  65. package/lib/ra-widget-container/lock-tooltip/lock.tooltip.component.d.ts +20 -17
  66. package/lib/ra-widget-container/ra.widget.container.component.d.ts +142 -140
  67. package/lib/ra.base.dashboard.filter.d.ts +17 -16
  68. package/lib/ra.base.dashboard.template.d.ts +18 -16
  69. package/lib/ra.dashbard.event.bus.d.ts +23 -20
  70. package/lib/ra.dashboard.module.d.ts +16 -2
  71. package/lib/ra.dashboard.responsive.service.d.ts +24 -21
  72. package/lib/ra.dashboard.service.d.ts +25 -23
  73. package/lib/ra.event.enum.d.ts +57 -57
  74. package/lib/ra.gridster.config.d.ts +2 -2
  75. package/package.json +19 -19
  76. package/public-api.d.ts +9 -9
  77. package/bundles/schneideress-dashboardframework.umd.js +0 -5103
  78. package/bundles/schneideress-dashboardframework.umd.js.map +0 -1
  79. package/bundles/schneideress-dashboardframework.umd.min.js +0 -16
  80. package/bundles/schneideress-dashboardframework.umd.min.js.map +0 -1
  81. package/esm2015/gridster/index.js +0 -14
  82. package/esm2015/gridster/lib/gridster.component.js +0 -471
  83. package/esm2015/gridster/lib/gridster.interface.js +0 -3
  84. package/esm2015/gridster/lib/gridster.module.js +0 -25
  85. package/esm2015/gridster/lib/gridsterCompact.service.js +0 -162
  86. package/esm2015/gridster/lib/gridsterConfig.constant.js +0 -104
  87. package/esm2015/gridster/lib/gridsterConfig.interface.js +0 -27
  88. package/esm2015/gridster/lib/gridsterConfigS.interface.js +0 -1
  89. package/esm2015/gridster/lib/gridsterDraggable.service.js +0 -351
  90. package/esm2015/gridster/lib/gridsterEmptyCell.service.js +0 -216
  91. package/esm2015/gridster/lib/gridsterItem.component.js +0 -141
  92. package/esm2015/gridster/lib/gridsterItem.interface.js +0 -1
  93. package/esm2015/gridster/lib/gridsterItemComponent.interface.js +0 -3
  94. package/esm2015/gridster/lib/gridsterPreview.component.js +0 -45
  95. package/esm2015/gridster/lib/gridsterPush.service.js +0 -296
  96. package/esm2015/gridster/lib/gridsterPushResize.service.js +0 -225
  97. package/esm2015/gridster/lib/gridsterRenderer.service.js +0 -208
  98. package/esm2015/gridster/lib/gridsterResizable.service.js +0 -368
  99. package/esm2015/gridster/lib/gridsterResizeEventType.interface.js +0 -1
  100. package/esm2015/gridster/lib/gridsterScroll.service.js +0 -119
  101. package/esm2015/gridster/lib/gridsterSwap.service.js +0 -85
  102. package/esm2015/gridster/lib/gridsterUtils.service.js +0 -89
  103. package/esm2015/lib/custom.notifier.options.js +0 -41
  104. package/esm2015/lib/ra-dashboard-area/ra.dashboard.area.js +0 -492
  105. package/esm2015/lib/ra-widget-container/lock-tooltip/lock.tooltip.component.js +0 -48
  106. package/esm2015/lib/ra-widget-container/ra.widget.container.component.js +0 -829
  107. package/esm2015/lib/ra.base.dashboard.filter.js +0 -54
  108. package/esm2015/lib/ra.base.dashboard.template.js +0 -33
  109. package/esm2015/lib/ra.dashbard.event.bus.js +0 -46
  110. package/esm2015/lib/ra.dashboard.module.js +0 -44
  111. package/esm2015/lib/ra.dashboard.responsive.service.js +0 -140
  112. package/esm2015/lib/ra.dashboard.service.js +0 -82
  113. package/esm2015/lib/ra.event.enum.js +0 -60
  114. package/esm2015/lib/ra.gridster.config.js +0 -56
  115. package/esm2015/public-api.js +0 -13
  116. package/esm2015/schneideress-dashboardframework.js +0 -11
  117. package/esm5/gridster/index.js +0 -14
  118. package/esm5/gridster/lib/gridster.component.js +0 -474
  119. package/esm5/gridster/lib/gridster.interface.js +0 -7
  120. package/esm5/gridster/lib/gridster.module.js +0 -28
  121. package/esm5/gridster/lib/gridsterCompact.service.js +0 -163
  122. package/esm5/gridster/lib/gridsterConfig.constant.js +0 -104
  123. package/esm5/gridster/lib/gridsterConfig.interface.js +0 -27
  124. package/esm5/gridster/lib/gridsterConfigS.interface.js +0 -1
  125. package/esm5/gridster/lib/gridsterDraggable.service.js +0 -356
  126. package/esm5/gridster/lib/gridsterEmptyCell.service.js +0 -220
  127. package/esm5/gridster/lib/gridsterItem.component.js +0 -142
  128. package/esm5/gridster/lib/gridsterItem.interface.js +0 -1
  129. package/esm5/gridster/lib/gridsterItemComponent.interface.js +0 -7
  130. package/esm5/gridster/lib/gridsterPreview.component.js +0 -46
  131. package/esm5/gridster/lib/gridsterPush.service.js +0 -297
  132. package/esm5/gridster/lib/gridsterPushResize.service.js +0 -226
  133. package/esm5/gridster/lib/gridsterRenderer.service.js +0 -209
  134. package/esm5/gridster/lib/gridsterResizable.service.js +0 -373
  135. package/esm5/gridster/lib/gridsterResizeEventType.interface.js +0 -1
  136. package/esm5/gridster/lib/gridsterScroll.service.js +0 -119
  137. package/esm5/gridster/lib/gridsterSwap.service.js +0 -86
  138. package/esm5/gridster/lib/gridsterUtils.service.js +0 -93
  139. package/esm5/lib/custom.notifier.options.js +0 -41
  140. package/esm5/lib/ra-dashboard-area/ra.dashboard.area.js +0 -503
  141. package/esm5/lib/ra-widget-container/lock-tooltip/lock.tooltip.component.js +0 -50
  142. package/esm5/lib/ra-widget-container/ra.widget.container.component.js +0 -891
  143. package/esm5/lib/ra.base.dashboard.filter.js +0 -57
  144. package/esm5/lib/ra.base.dashboard.template.js +0 -36
  145. package/esm5/lib/ra.dashbard.event.bus.js +0 -47
  146. package/esm5/lib/ra.dashboard.module.js +0 -47
  147. package/esm5/lib/ra.dashboard.responsive.service.js +0 -151
  148. package/esm5/lib/ra.dashboard.service.js +0 -85
  149. package/esm5/lib/ra.event.enum.js +0 -60
  150. package/esm5/lib/ra.gridster.config.js +0 -56
  151. package/esm5/public-api.js +0 -13
  152. package/esm5/schneideress-dashboardframework.js +0 -11
  153. package/fesm2015/schneideress-dashboardframework.js +0 -4749
  154. package/fesm2015/schneideress-dashboardframework.js.map +0 -1
  155. package/fesm5/schneideress-dashboardframework.js +0 -4883
  156. package/fesm5/schneideress-dashboardframework.js.map +0 -1
  157. package/gridster/lib/gridsterItemComponent.interface.d.ts +0 -25
  158. package/schneideress-dashboardframework.d.ts +0 -10
  159. package/schneideress-dashboardframework.metadata.json +0 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # RaDashboardFramework
2
2
 
3
- This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 7.2.0.
3
+ This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.1.0.
4
4
 
5
5
  ## Code scaffolding
6
6
 
@@ -21,4 +21,4 @@ Run `ng test ra-dashboard-framework` to execute the unit tests via [Karma](https
21
21
 
22
22
  ## Further help
23
23
 
24
- To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).
24
+ To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
@@ -0,0 +1,12 @@
1
+ /*
2
+ * Public API Surface of gridster
3
+ */
4
+ export { GridsterComponent } from './lib/gridster.component';
5
+ export { GridsterItemComponent } from './lib/gridsterItem.component';
6
+ export { GridsterComponentInterface } from './lib/gridster.interface';
7
+ export { GridType, DisplayGrid, CompactType } from './lib/gridsterConfig.interface';
8
+ export { GridsterConfigService } from './lib/gridsterConfig.constant';
9
+ export { GridsterModule } from './lib/gridster.module';
10
+ export { GridsterPush } from './lib/gridsterPush.service';
11
+ export { GridsterPushResize } from './lib/gridsterPushResize.service';
12
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9yYS1kYXNoYm9hcmQtZnJhbWV3b3JrL3NyYy9ncmlkc3Rlci9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQzdELE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBRXJFLE9BQU8sRUFBRSwwQkFBMEIsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQ3RFLE9BQU8sRUFBa0IsUUFBUSxFQUFFLFdBQVcsRUFBRSxXQUFXLEVBQXdDLE1BQU0sZ0NBQWdDLENBQUM7QUFDMUksT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFDdEUsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBQ3ZELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQztBQUMxRCxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxrQ0FBa0MsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qXHJcbiAqIFB1YmxpYyBBUEkgU3VyZmFjZSBvZiBncmlkc3RlclxyXG4gKi9cclxuXHJcbmV4cG9ydCB7IEdyaWRzdGVyQ29tcG9uZW50IH0gZnJvbSAnLi9saWIvZ3JpZHN0ZXIuY29tcG9uZW50JztcclxuZXhwb3J0IHsgR3JpZHN0ZXJJdGVtQ29tcG9uZW50IH0gZnJvbSAnLi9saWIvZ3JpZHN0ZXJJdGVtLmNvbXBvbmVudCc7XHJcbmV4cG9ydCB7IEdyaWRzdGVySXRlbSB9IGZyb20gJy4vbGliL2dyaWRzdGVySXRlbS5pbnRlcmZhY2UnO1xyXG5leHBvcnQgeyBHcmlkc3RlckNvbXBvbmVudEludGVyZmFjZSB9IGZyb20gJy4vbGliL2dyaWRzdGVyLmludGVyZmFjZSc7XHJcbmV4cG9ydCB7IEdyaWRzdGVyQ29uZmlnLCBHcmlkVHlwZSwgRGlzcGxheUdyaWQsIENvbXBhY3RUeXBlLCBEcmFnZ2FibGUsIFJlc2l6YWJsZSwgUHVzaERpcmVjdGlvbnMgfSBmcm9tICcuL2xpYi9ncmlkc3RlckNvbmZpZy5pbnRlcmZhY2UnO1xyXG5leHBvcnQgeyBHcmlkc3RlckNvbmZpZ1NlcnZpY2UgfSBmcm9tICcuL2xpYi9ncmlkc3RlckNvbmZpZy5jb25zdGFudCc7XHJcbmV4cG9ydCB7IEdyaWRzdGVyTW9kdWxlIH0gZnJvbSAnLi9saWIvZ3JpZHN0ZXIubW9kdWxlJztcclxuZXhwb3J0IHsgR3JpZHN0ZXJQdXNoIH0gZnJvbSAnLi9saWIvZ3JpZHN0ZXJQdXNoLnNlcnZpY2UnO1xyXG5leHBvcnQgeyBHcmlkc3RlclB1c2hSZXNpemUgfSBmcm9tICcuL2xpYi9ncmlkc3RlclB1c2hSZXNpemUuc2VydmljZSc7XHJcbiJdfQ==