daisy-ui-kit 5.2.6 → 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 (53) hide show
  1. package/README.md +3 -1
  2. package/package.json +32 -24
  3. package/app/components/content/CodeWrapper.vue +0 -8
  4. package/app/components/content/ColorBadge.vue +0 -24
  5. package/app/components/content/ComponentsTree.vue +0 -39
  6. package/app/components/content/DarkToggle.vue +0 -13
  7. package/app/components/content/DemoExampleResponsive.vue +0 -67
  8. package/app/components/content/IframeRenderer.ts +0 -57
  9. package/app/components/content/Indent.vue +0 -3
  10. package/app/components/content/LocalLinks.vue +0 -30
  11. package/app/components/content/Logo.vue +0 -8
  12. package/app/components/content/NotFound.vue +0 -38
  13. package/app/components/content/PageNext.vue +0 -25
  14. package/app/components/content/PagePrevious.vue +0 -25
  15. package/app/components/content/ProseA.vue +0 -19
  16. package/app/components/content/ProseAlert.vue +0 -11
  17. package/app/components/content/ProseBlockquote.vue +0 -11
  18. package/app/components/content/ProseCode.vue +0 -3
  19. package/app/components/content/ProseEm.vue +0 -5
  20. package/app/components/content/ProseH1.vue +0 -22
  21. package/app/components/content/ProseH2.vue +0 -22
  22. package/app/components/content/ProseH3.vue +0 -22
  23. package/app/components/content/ProseH4.vue +0 -22
  24. package/app/components/content/ProseH5.vue +0 -22
  25. package/app/components/content/ProseH6.vue +0 -22
  26. package/app/components/content/ProseHr.vue +0 -3
  27. package/app/components/content/ProseImg.vue +0 -40
  28. package/app/components/content/ProseLi.vue +0 -3
  29. package/app/components/content/ProseOl.vue +0 -5
  30. package/app/components/content/ProseP.vue +0 -3
  31. package/app/components/content/ProsePre.vue +0 -38
  32. package/app/components/content/ProsePre2.vue +0 -68
  33. package/app/components/content/ProseStrong.vue +0 -5
  34. package/app/components/content/ProseTable.vue +0 -7
  35. package/app/components/content/ProseTbody.vue +0 -5
  36. package/app/components/content/ProseTd.vue +0 -5
  37. package/app/components/content/ProseTh.vue +0 -5
  38. package/app/components/content/ProseThead.vue +0 -5
  39. package/app/components/content/ProseTr.vue +0 -5
  40. package/app/components/content/ProseUl.vue +0 -5
  41. package/app/components/content/Search.vue +0 -171
  42. package/app/components/content/SearchButton.vue +0 -14
  43. package/app/components/content/SearchModal.vue +0 -292
  44. package/app/components/content/Sidebar.vue +0 -87
  45. package/app/components/content/SidebarMenuSection.vue +0 -43
  46. package/app/components/content/SigninForm.vue +0 -34
  47. package/app/components/content/TableOfContents.vue +0 -304
  48. package/app/components/content/TocTree.vue +0 -66
  49. package/app/components/content/TypeBadge.vue +0 -18
  50. package/app/components/content/UserMenu.vue +0 -48
  51. package/app/composables/__tests__/use-calendar.test.ts +0 -239
  52. package/app/composables/useSearch.ts +0 -24
  53. 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 }