@devtable/dashboard 14.24.0 → 14.25.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 (62) hide show
  1. package/dist/components/panel/panel-render/full-screen-render/use-panel-full-screen.d.ts +1 -14820
  2. package/dist/components/plugins/index.d.ts +3 -0
  3. package/dist/components/plugins/plugin-context.d.ts +354 -390
  4. package/dist/contexts/index.d.ts +1 -0
  5. package/dist/contexts/panel-context.d.ts +708 -780
  6. package/dist/contexts/render-content-model-context.d.ts +2 -0
  7. package/dist/dashboard-editor/model/filters/index.d.ts +2 -12
  8. package/dist/dashboard-editor/model/panels/panel.d.ts +177 -195
  9. package/dist/dashboard-editor/model/queries/queries.d.ts +339 -378
  10. package/dist/dashboard-editor/model/queries/query.d.ts +15 -18
  11. package/dist/dashboard-editor/model/views/index.d.ts +69 -27
  12. package/dist/dashboard-editor/model/views/view.d.ts +17 -3
  13. package/dist/dashboard-render/model/index.d.ts +1 -0
  14. package/dist/dashboard-render/model/types.d.ts +32 -0
  15. package/dist/dashboard.es.js +9 -5
  16. package/dist/dashboard.umd.js +43 -43
  17. package/dist/index.d.ts +3 -1
  18. package/dist/model/meta-model/dashboard/content/filter/filter.d.ts +49 -0
  19. package/dist/model/meta-model/dashboard/content/filter/widgets/checkbox.d.ts +13 -0
  20. package/dist/model/meta-model/dashboard/content/filter/widgets/date-range.d.ts +32 -0
  21. package/dist/model/meta-model/dashboard/content/filter/widgets/multi-select.d.ts +33 -6
  22. package/dist/model/meta-model/dashboard/content/filter/widgets/select-base.d.ts +30 -0
  23. package/dist/model/meta-model/dashboard/content/filter/widgets/select.d.ts +32 -6
  24. package/dist/model/meta-model/dashboard/content/filter/widgets/text-input.d.ts +13 -0
  25. package/dist/model/meta-model/dashboard/content/filter/widgets/tree-select-base.d.ts +11 -0
  26. package/dist/model/meta-model/dashboard/content/filter/widgets/tree-select.d.ts +29 -0
  27. package/dist/model/meta-model/dashboard/content/filter/widgets/tree-single-select.d.ts +26 -0
  28. package/dist/model/meta-model/dashboard/content/layout/layout-item.d.ts +28 -0
  29. package/dist/model/meta-model/dashboard/content/layout/layout-set.d.ts +32 -1
  30. package/dist/model/meta-model/dashboard/content/mock-context/mock-context.d.ts +10 -0
  31. package/dist/model/meta-model/dashboard/content/panel/panel.d.ts +38 -5
  32. package/dist/model/meta-model/dashboard/content/panel/style/border.d.ts +7 -0
  33. package/dist/model/meta-model/dashboard/content/panel/style/index.d.ts +7 -0
  34. package/dist/model/meta-model/dashboard/content/panel/title.d.ts +7 -0
  35. package/dist/model/meta-model/dashboard/content/panel/variable.d.ts +93 -0
  36. package/dist/model/meta-model/dashboard/content/panel/viz.d.ts +10 -0
  37. package/dist/model/meta-model/dashboard/content/query/db-query.d.ts +17 -6
  38. package/dist/model/meta-model/dashboard/content/query/http-query.d.ts +11 -0
  39. package/dist/model/meta-model/dashboard/content/query/merico-metric-query.d.ts +66 -6
  40. package/dist/model/meta-model/dashboard/content/query/query.d.ts +42 -10
  41. package/dist/model/meta-model/dashboard/content/query/transform-query.d.ts +11 -0
  42. package/dist/model/meta-model/dashboard/content/sql-snippet/sql-snippet.d.ts +10 -0
  43. package/dist/model/meta-model/dashboard/content/view/view.d.ts +23 -0
  44. package/dist/model/meta-model/dashboard/content/view/widgets/division.d.ts +6 -0
  45. package/dist/model/meta-model/dashboard/content/view/widgets/modal.d.ts +32 -0
  46. package/dist/model/meta-model/dashboard/content/view/widgets/tabs.d.ts +46 -0
  47. package/dist/model/render-model/dashboard/content/filters/filters.d.ts +77 -37
  48. package/dist/model/render-model/dashboard/content/layouts/layouts.d.ts +40 -2
  49. package/dist/model/render-model/dashboard/content/panels/index.d.ts +1 -0
  50. package/dist/model/render-model/dashboard/content/panels/panel.d.ts +138 -1561
  51. package/dist/model/render-model/dashboard/content/panels/types.d.ts +37 -0
  52. package/dist/model/render-model/dashboard/content/queries/mute-query.d.ts +55 -19
  53. package/dist/model/render-model/dashboard/content/queries/queries.d.ts +302 -296
  54. package/dist/model/render-model/dashboard/content/queries/query.d.ts +60 -37
  55. package/dist/model/render-model/dashboard/content/sql-snippets/sql-snippet.d.ts +4 -0
  56. package/dist/model/render-model/dashboard/content/sql-snippets/sql-snippets.d.ts +18 -0
  57. package/dist/model/render-model/dashboard/content/views/view.d.ts +19 -3
  58. package/dist/model/render-model/dashboard/content/views/views.d.ts +249 -231
  59. package/dist/stats.html +1 -1
  60. package/dist/types/utils.d.ts +3 -0
  61. package/dist/version.json +2 -2
  62. package/package.json +1 -1
@@ -4,3 +4,6 @@ export * from './plugin-data-migrator';
4
4
  export * from './hooks';
5
5
  export * from './color-manager';
6
6
  export { onVizRendered, notifyVizRendered } from './viz-components/viz-instance-api';
7
+ export { ServiceLocator, Token } from './service/service-locator';
8
+ export { useServiceLocator } from './service/service-locator/use-service-locator';
9
+ export type { IServiceLocator, IDisposable } from './service/service-locator';