@mongodb-js/compass-query-history 9.3.0 → 9.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (68) hide show
  1. package/README.md +0 -1
  2. package/dist/browser.js +1 -1
  3. package/dist/browser.js.LICENSE.txt +0 -6
  4. package/dist/index.html +1 -1
  5. package/dist/index.js +1 -1
  6. package/dist/index.js.LICENSE.txt +0 -6
  7. package/dist/src/actions/actions.d.ts +3 -0
  8. package/dist/src/actions/actions.d.ts.map +1 -0
  9. package/dist/src/actions/index.d.ts +3 -0
  10. package/dist/src/actions/index.d.ts.map +1 -0
  11. package/dist/src/components/favorite/favorite-list-item.d.ts +22 -0
  12. package/dist/src/components/favorite/favorite-list-item.d.ts.map +1 -0
  13. package/dist/src/components/favorite/index.d.ts +91 -0
  14. package/dist/src/components/favorite/index.d.ts.map +1 -0
  15. package/dist/src/components/list/index.d.ts +4 -0
  16. package/dist/src/components/list/index.d.ts.map +1 -0
  17. package/dist/src/components/list/list.d.ts +92 -0
  18. package/dist/src/components/list/list.d.ts.map +1 -0
  19. package/dist/src/components/query/index.d.ts +3 -0
  20. package/dist/src/components/query/index.d.ts.map +1 -0
  21. package/dist/src/components/query/query.d.ts +10 -0
  22. package/dist/src/components/query/query.d.ts.map +1 -0
  23. package/dist/src/components/query-history/index.d.ts +4 -0
  24. package/dist/src/components/query-history/index.d.ts.map +1 -0
  25. package/dist/src/components/query-history/query-history.d.ts +42 -0
  26. package/dist/src/components/query-history/query-history.d.ts.map +1 -0
  27. package/dist/src/components/recent/index.d.ts +91 -0
  28. package/dist/src/components/recent/index.d.ts.map +1 -0
  29. package/dist/src/components/recent/recent-list-item.d.ts +21 -0
  30. package/dist/src/components/recent/recent-list-item.d.ts.map +1 -0
  31. package/dist/src/components/toolbar/toolbar.d.ts +15 -0
  32. package/dist/src/components/toolbar/toolbar.d.ts.map +1 -0
  33. package/dist/src/components/zero-graphic.d.ts +4 -0
  34. package/dist/src/components/zero-graphic.d.ts.map +1 -0
  35. package/dist/src/index.d.ts +11 -0
  36. package/dist/src/index.d.ts.map +1 -0
  37. package/dist/src/models/favorite-query-collection.d.ts +3 -0
  38. package/dist/src/models/favorite-query-collection.d.ts.map +1 -0
  39. package/dist/src/models/favorite-query.d.ts +3 -0
  40. package/dist/src/models/favorite-query.d.ts.map +1 -0
  41. package/dist/src/models/index.d.ts +7 -0
  42. package/dist/src/models/index.d.ts.map +1 -0
  43. package/dist/src/models/query.d.ts +3 -0
  44. package/dist/src/models/query.d.ts.map +1 -0
  45. package/dist/src/models/recent-query-collection.d.ts +3 -0
  46. package/dist/src/models/recent-query-collection.d.ts.map +1 -0
  47. package/dist/src/models/recent-query.d.ts +3 -0
  48. package/dist/src/models/recent-query.d.ts.map +1 -0
  49. package/dist/src/plugin.d.ts +15 -0
  50. package/dist/src/plugin.d.ts.map +1 -0
  51. package/dist/src/stores/favorite-list-store.d.ts +4 -0
  52. package/dist/src/stores/favorite-list-store.d.ts.map +1 -0
  53. package/dist/src/stores/index.d.ts +3 -0
  54. package/dist/src/stores/index.d.ts.map +1 -0
  55. package/dist/src/stores/query-history-store.d.ts +4 -0
  56. package/dist/src/stores/query-history-store.d.ts.map +1 -0
  57. package/dist/src/stores/recent-list-store.d.ts +4 -0
  58. package/dist/src/stores/recent-list-store.d.ts.map +1 -0
  59. package/dist/src/utils/comparable-query.d.ts +3 -0
  60. package/dist/src/utils/comparable-query.d.ts.map +1 -0
  61. package/dist/src/utils/favorite-query-storage.d.ts +6 -0
  62. package/dist/src/utils/favorite-query-storage.d.ts.map +1 -0
  63. package/dist/src/utils/format-query.d.ts +4 -0
  64. package/dist/src/utils/format-query.d.ts.map +1 -0
  65. package/dist/src/utils/index.d.ts +5 -0
  66. package/dist/src/utils/index.d.ts.map +1 -0
  67. package/package.json +11 -12
  68. package/dist/index.css +0 -144
package/README.md CHANGED
@@ -53,7 +53,6 @@ For completeness, below is a list of directories present in this module:
53
53
  - `deleteRecent` - delete a recent query.
54
54
  - `deleteFavorite` - delete a favorite query.
55
55
  - `addRecent` - add a recent query, this is triggered from the `onQueryChanged` lifecycle method.
56
- - `saveRecent` - move a recent query into the saving state.
57
56
  - `saveFavorite` - the user has added a name to the query being saved and pressed 'save'.
58
57
  - `cancelSave` - the user has pressed 'cancel' on the currently being saved query.
59
58
  - `runQuery` - the user has clicked on the query card and wants to populate the query bar with the contents of this saved query. This action is listened to by Compass.