@devtable/dashboard 10.49.0 → 10.50.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 (33) hide show
  1. package/dist/components/panel/panel-render/full-screen-render/use-panel-full-screen.d.ts +456 -0
  2. package/dist/components/panel/settings/common/aggregation-selector.d.ts +1 -0
  3. package/dist/components/plugins/plugin-context.d.ts +455 -0
  4. package/dist/contexts/panel-context.d.ts +910 -0
  5. package/dist/dashboard-editor/model/panels/panel.d.ts +209 -0
  6. package/dist/dashboard-editor/model/views/index.d.ts +857 -857
  7. package/dist/dashboard-editor/model/views/view.d.ts +14 -14
  8. package/dist/dashboard-editor/ui/settings/content/edit-panel/variable-config/index.d.ts +2 -0
  9. package/dist/dashboard-editor/ui/settings/content/edit-panel/variable-config/model.d.ts +86 -81
  10. package/dist/dashboard-editor/ui/settings/content/edit-panel/variable-config/preview-variables.d.ts +3 -0
  11. package/dist/dashboard-editor/ui/settings/content/edit-panel/variable-config/variable-editor.d.ts +8 -0
  12. package/dist/dashboard-editor/ui/settings/content/edit-panel/variable-config/variable-field.d.ts +1 -1
  13. package/dist/{utils/template/editor → dashboard-editor/ui/settings/content/edit-panel/variable-config}/variable-style.d.ts +1 -1
  14. package/dist/dashboard-editor/ui/settings/content/edit-panel/variable-config/variables-editor.d.ts +11 -0
  15. package/dist/dashboard-editor/ui/settings/content/edit-view/edit-view-form/index.d.ts +141 -141
  16. package/dist/dashboard.es.js +9719 -9703
  17. package/dist/dashboard.umd.js +82 -82
  18. package/dist/model/meta-model/dashboard/content/panel/panel.d.ts +69 -0
  19. package/dist/model/meta-model/dashboard/content/panel/variable.d.ts +39 -0
  20. package/dist/model/meta-model/dashboard/content/view/view.d.ts +12 -12
  21. package/dist/model/render-model/dashboard/content/panels/panel.d.ts +209 -0
  22. package/dist/model/render-model/dashboard/content/views/view.d.ts +12 -12
  23. package/dist/model/render-model/dashboard/content/views/views.d.ts +586 -586
  24. package/dist/model/utils/draft.d.ts +1 -0
  25. package/dist/stats.html +1 -1
  26. package/dist/utils/aggregation.d.ts +11 -7
  27. package/dist/utils/template/editor/index.d.ts +0 -1
  28. package/dist/utils/template/render/render-string.d.ts +3 -0
  29. package/package.json +1 -1
  30. package/dist/dashboard-editor/ui/settings/content/edit-panel/variable-config/styles.d.ts +0 -8
  31. package/dist/dashboard-editor/ui/settings/content/edit-panel/variable-config/variable-config-panel.d.ts +0 -10
  32. package/dist/model/render-model/dashboard/content/panels/panels.d.ts +0 -15393
  33. package/dist/utils/template/editor/variable-field.d.ts +0 -9
@@ -1,9 +0,0 @@
1
- import React from './react';
2
- import { ITemplateVariable } from '../types';
3
- interface ITemplateVariableField {
4
- value: ITemplateVariable;
5
- onChange: (v: ITemplateVariable) => void;
6
- withStyle?: boolean;
7
- }
8
- export declare const TemplateVariableField: React.ForwardRefExoticComponent<ITemplateVariableField & React.RefAttributes<unknown>>;
9
- export {};