daisy-ui-kit 5.2.4 → 5.2.7

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 (57) hide show
  1. package/README.md +3 -1
  2. package/app/components/Avatar.vue +1 -1
  3. package/app/components/MenuItem.vue +10 -5
  4. package/app/components/Prose.vue +7 -7
  5. package/app/composables/use-toast.ts +2 -6
  6. package/package.json +52 -44
  7. package/app/components/content/CodeWrapper.vue +0 -8
  8. package/app/components/content/ColorBadge.vue +0 -24
  9. package/app/components/content/ComponentsTree.vue +0 -39
  10. package/app/components/content/DarkToggle.vue +0 -13
  11. package/app/components/content/DemoExampleResponsive.vue +0 -67
  12. package/app/components/content/IframeRenderer.ts +0 -57
  13. package/app/components/content/Indent.vue +0 -3
  14. package/app/components/content/LocalLinks.vue +0 -30
  15. package/app/components/content/Logo.vue +0 -8
  16. package/app/components/content/NotFound.vue +0 -38
  17. package/app/components/content/PageNext.vue +0 -25
  18. package/app/components/content/PagePrevious.vue +0 -25
  19. package/app/components/content/ProseA.vue +0 -19
  20. package/app/components/content/ProseAlert.vue +0 -11
  21. package/app/components/content/ProseBlockquote.vue +0 -11
  22. package/app/components/content/ProseCode.vue +0 -3
  23. package/app/components/content/ProseEm.vue +0 -5
  24. package/app/components/content/ProseH1.vue +0 -22
  25. package/app/components/content/ProseH2.vue +0 -22
  26. package/app/components/content/ProseH3.vue +0 -22
  27. package/app/components/content/ProseH4.vue +0 -22
  28. package/app/components/content/ProseH5.vue +0 -22
  29. package/app/components/content/ProseH6.vue +0 -22
  30. package/app/components/content/ProseHr.vue +0 -3
  31. package/app/components/content/ProseImg.vue +0 -40
  32. package/app/components/content/ProseLi.vue +0 -3
  33. package/app/components/content/ProseOl.vue +0 -5
  34. package/app/components/content/ProseP.vue +0 -3
  35. package/app/components/content/ProsePre.vue +0 -38
  36. package/app/components/content/ProsePre2.vue +0 -68
  37. package/app/components/content/ProseStrong.vue +0 -5
  38. package/app/components/content/ProseTable.vue +0 -7
  39. package/app/components/content/ProseTbody.vue +0 -5
  40. package/app/components/content/ProseTd.vue +0 -5
  41. package/app/components/content/ProseTh.vue +0 -5
  42. package/app/components/content/ProseThead.vue +0 -5
  43. package/app/components/content/ProseTr.vue +0 -5
  44. package/app/components/content/ProseUl.vue +0 -5
  45. package/app/components/content/Search.vue +0 -171
  46. package/app/components/content/SearchButton.vue +0 -14
  47. package/app/components/content/SearchModal.vue +0 -292
  48. package/app/components/content/Sidebar.vue +0 -87
  49. package/app/components/content/SidebarMenuSection.vue +0 -43
  50. package/app/components/content/SigninForm.vue +0 -34
  51. package/app/components/content/TableOfContents.vue +0 -304
  52. package/app/components/content/TocTree.vue +0 -66
  53. package/app/components/content/TypeBadge.vue +0 -18
  54. package/app/components/content/UserMenu.vue +0 -48
  55. package/app/composables/__tests__/use-calendar.test.ts +0 -239
  56. package/app/composables/useSearch.ts +0 -24
  57. package/app/utils/debug-shim.mjs +0 -23
@@ -1,23 +0,0 @@
1
- // ESM shim for the 'debug' package (CJS-only).
2
- // micromark's dev build does `import createDebug from 'debug'` which fails
3
- // when Vite serves the raw CJS file as ESM in the browser.
4
- // This provides a no-op replacement for client-side use.
5
- function debug() {
6
- return function noop() {}
7
- }
8
- debug.enable = function () {}
9
- debug.disable = function () {}
10
- debug.enabled = function () { return false }
11
- debug.log = function () {}
12
- debug.formatArgs = function () {}
13
- debug.save = function () {}
14
- debug.load = function () { return undefined }
15
- debug.useColors = function () { return false }
16
- debug.destroy = function () {}
17
- debug.colors = []
18
- debug.names = []
19
- debug.skips = []
20
- debug.formatters = {}
21
-
22
- export default debug
23
- export { debug }