@pb33f/cowboy-components 0.1.11 → 0.1.13

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 (32) hide show
  1. package/dist/assets/css.worker-B_qZXUzt.js +84 -0
  2. package/dist/assets/html.worker-D3WUrk8Q.js +458 -0
  3. package/dist/assets/json.worker-CAhUaBo4.js +42 -0
  4. package/dist/components/editor/editor.js +14 -20
  5. package/dist/components/footer/footer.js +1 -1
  6. package/dist/components/paginator/paginator-navigator.d.ts +2 -2
  7. package/dist/components/paginator/paginator-navigator.js +3 -3
  8. package/dist/components/percent-bar/percent-bar.js +1 -2
  9. package/dist/components/problem-list/details-drawer.js +1 -2
  10. package/dist/components/problem-list/problem-item.js +0 -1
  11. package/dist/components/problem-list/problem-label-view-filter.js +1 -2
  12. package/dist/components/problem-list/problem-list.d.ts +2 -2
  13. package/dist/components/problem-list/problem-list.js +11 -11
  14. package/dist/components/problem-list/problem-mainview.js +1 -2
  15. package/dist/components/problem-list/problem-search-filter.js +1 -2
  16. package/dist/components/problem-list/problem-sort-filter.js +1 -2
  17. package/dist/components/problem-list/problem-toolbar.js +1 -2
  18. package/dist/components/problems-overview/diagnostic-evaluation.js +1 -2
  19. package/dist/components/problems-overview/document-statistic.js +1 -2
  20. package/dist/components/problems-overview/problem-overview-group.js +1 -2
  21. package/dist/components/problems-overview/problem-statistics.d.ts +0 -1
  22. package/dist/components/problems-overview/problem-statistics.js +1 -10
  23. package/dist/components/render-json-path/render-json-path.js +1 -1
  24. package/dist/components/the-doctor/feedback.js +12 -2
  25. package/dist/components/the-doctor/settings.js +1 -3
  26. package/dist/components/the-doctor/status-bar.js +1 -1
  27. package/dist/components/the-doctor/the-doctor.d.ts +2 -2
  28. package/dist/components/the-doctor/the-doctor.js +18 -16
  29. package/dist/cowboy-components.umd.cjs +70 -70
  30. package/dist/services/linting-service.d.ts +4 -4
  31. package/dist/services/linting-service.js +1 -1
  32. package/package.json +1 -1
@@ -1,7 +1,7 @@
1
- import { Problem } from "../model/problem";
2
- import { HowToFix } from "../model/how_to_fix";
3
- import { DrDiagnostics } from "../model/document-statistics";
4
- import { Session } from "../model/session";
1
+ import { Problem } from "../model/problem.js";
2
+ import { HowToFix } from "../model/how_to_fix.js";
3
+ import { DrDiagnostics } from "../model/document-statistics.js";
4
+ import { Session } from "../model/session.js";
5
5
  export declare class LintingService {
6
6
  static doctorEndpoint: string;
7
7
  static compareProblems(a: Problem, b: Problem): number;
@@ -1,4 +1,4 @@
1
- import { Problem } from "../model/problem";
1
+ import { Problem } from "../model/problem.js";
2
2
  export class LintingService {
3
3
  static compareProblems(a, b) {
4
4
  if (a.startLineNumber < b.startLineNumber) {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Princess Beef Heavy Industries Cowboy Components",
4
4
  "private": false,
5
5
  "license": "BUSL-1.1",
6
- "version": "0.1.11",
6
+ "version": "0.1.13",
7
7
  "type": "module",
8
8
  "main": "./dist/cowboy-components.umd.cjs",
9
9
  "module": "./dist/cowboy-components.js",