@devtable/dashboard 10.44.3 → 10.45.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 (43) hide show
  1. package/dist/components/filter/filter-settings/filter-setting.d.ts +8 -0
  2. package/dist/components/panel/panel-render/full-screen-render/use-panel-full-screen.d.ts +604 -58
  3. package/dist/components/plugins/plugin-context.d.ts +604 -58
  4. package/dist/contexts/panel-context.d.ts +1208 -116
  5. package/dist/dashboard-editor/model/editor/index.d.ts +2 -2
  6. package/dist/dashboard-editor/model/filters/index.d.ts +279 -0
  7. package/dist/dashboard-editor/model/panels/panel.d.ts +302 -29
  8. package/dist/dashboard-editor/model/queries/index.d.ts +74 -49
  9. package/dist/dashboard-editor/model/sql-snippets/index.d.ts +39 -0
  10. package/dist/dashboard-editor/model/views/index.d.ts +23 -12
  11. package/dist/dashboard-editor/ui/header/add-a-panel/index.d.ts +3 -0
  12. package/dist/dashboard-editor/ui/header/import-with-schema/explain-json-schema.d.ts +4 -0
  13. package/dist/dashboard-editor/ui/header/import-with-schema/form.d.ts +9 -0
  14. package/dist/dashboard-editor/ui/header/import-with-schema/index.d.ts +3 -0
  15. package/dist/dashboard-editor/ui/header/import-with-schema/validate.d.ts +1 -0
  16. package/dist/dashboard-editor/ui/settings/content/edit-filters/index.d.ts +3 -0
  17. package/dist/dashboard-editor/ui/settings/content/edit-query/query-editor-form/tabs/sql/edit-sql.d.ts +5 -4
  18. package/dist/dashboard-editor/ui/settings/content/edit-query/query-editor-form/tabs/sql/query-dependency.d.ts +6 -0
  19. package/dist/dashboard-editor/ui/settings/content/edit-view/edit-view-form/index.d.ts +9 -2
  20. package/dist/dashboard-editor/ui/settings/content/utils.d.ts +1 -0
  21. package/dist/dashboard-editor/ui/settings/navbar/action-button/filters-settings-button.d.ts +3 -0
  22. package/dist/dashboard.es.js +7166 -6586
  23. package/dist/dashboard.umd.js +103 -103
  24. package/dist/model/meta-model/dashboard/content/filter/widgets/multi-select.d.ts +3 -0
  25. package/dist/model/meta-model/dashboard/content/filter/widgets/select-base.d.ts +1 -0
  26. package/dist/model/meta-model/dashboard/content/filter/widgets/select.d.ts +3 -0
  27. package/dist/model/meta-model/dashboard/content/filter/widgets/tree-select.d.ts +3 -0
  28. package/dist/model/meta-model/dashboard/content/mock-context/mock-context.d.ts +2 -0
  29. package/dist/model/meta-model/dashboard/content/panel/panel.d.ts +1 -15
  30. package/dist/model/meta-model/dashboard/content/view/view.d.ts +2 -1
  31. package/dist/model/render-model/dashboard/content/filters/filters.d.ts +169 -24
  32. package/dist/model/render-model/dashboard/content/panels/panel.d.ts +302 -29
  33. package/dist/model/render-model/dashboard/content/panels/panels.d.ts +2395 -498
  34. package/dist/model/render-model/dashboard/content/queries/mute-query.d.ts +13 -3
  35. package/dist/model/render-model/dashboard/content/queries/queries.d.ts +57 -35
  36. package/dist/model/render-model/dashboard/content/queries/query.d.ts +11 -11
  37. package/dist/model/render-model/dashboard/content/sql-snippets/sql-snippets.d.ts +38 -0
  38. package/dist/model/render-model/dashboard/content/views/view.d.ts +2 -1
  39. package/dist/model/render-model/dashboard/content/views/views.d.ts +19 -10
  40. package/dist/stats.html +1 -1
  41. package/dist/utils/usage.d.ts +10 -0
  42. package/package.json +1 -1
  43. package/dist/dashboard-editor/model/panels/panels.d.ts +0 -15255
@@ -0,0 +1,10 @@
1
+ export declare const UsageRegs: {
2
+ sqlSnippet: RegExp;
3
+ context: RegExp;
4
+ filter: RegExp;
5
+ };
6
+ export type DependencyInfo = {
7
+ type: 'SQL Snippet' | 'Context' | 'Filter';
8
+ key: string;
9
+ valid: boolean;
10
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devtable/dashboard",
3
- "version": "10.44.3",
3
+ "version": "10.45.0",
4
4
  "license": "Apache-2.0",
5
5
  "publishConfig": {
6
6
  "access": "public",