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.
- package/README.md +3 -1
- package/app/components/Avatar.vue +1 -1
- package/app/components/MenuItem.vue +10 -5
- package/app/components/Prose.vue +7 -7
- package/app/composables/use-toast.ts +2 -6
- package/package.json +52 -44
- package/app/components/content/CodeWrapper.vue +0 -8
- package/app/components/content/ColorBadge.vue +0 -24
- package/app/components/content/ComponentsTree.vue +0 -39
- package/app/components/content/DarkToggle.vue +0 -13
- package/app/components/content/DemoExampleResponsive.vue +0 -67
- package/app/components/content/IframeRenderer.ts +0 -57
- package/app/components/content/Indent.vue +0 -3
- package/app/components/content/LocalLinks.vue +0 -30
- package/app/components/content/Logo.vue +0 -8
- package/app/components/content/NotFound.vue +0 -38
- package/app/components/content/PageNext.vue +0 -25
- package/app/components/content/PagePrevious.vue +0 -25
- package/app/components/content/ProseA.vue +0 -19
- package/app/components/content/ProseAlert.vue +0 -11
- package/app/components/content/ProseBlockquote.vue +0 -11
- package/app/components/content/ProseCode.vue +0 -3
- package/app/components/content/ProseEm.vue +0 -5
- package/app/components/content/ProseH1.vue +0 -22
- package/app/components/content/ProseH2.vue +0 -22
- package/app/components/content/ProseH3.vue +0 -22
- package/app/components/content/ProseH4.vue +0 -22
- package/app/components/content/ProseH5.vue +0 -22
- package/app/components/content/ProseH6.vue +0 -22
- package/app/components/content/ProseHr.vue +0 -3
- package/app/components/content/ProseImg.vue +0 -40
- package/app/components/content/ProseLi.vue +0 -3
- package/app/components/content/ProseOl.vue +0 -5
- package/app/components/content/ProseP.vue +0 -3
- package/app/components/content/ProsePre.vue +0 -38
- package/app/components/content/ProsePre2.vue +0 -68
- package/app/components/content/ProseStrong.vue +0 -5
- package/app/components/content/ProseTable.vue +0 -7
- package/app/components/content/ProseTbody.vue +0 -5
- package/app/components/content/ProseTd.vue +0 -5
- package/app/components/content/ProseTh.vue +0 -5
- package/app/components/content/ProseThead.vue +0 -5
- package/app/components/content/ProseTr.vue +0 -5
- package/app/components/content/ProseUl.vue +0 -5
- package/app/components/content/Search.vue +0 -171
- package/app/components/content/SearchButton.vue +0 -14
- package/app/components/content/SearchModal.vue +0 -292
- package/app/components/content/Sidebar.vue +0 -87
- package/app/components/content/SidebarMenuSection.vue +0 -43
- package/app/components/content/SigninForm.vue +0 -34
- package/app/components/content/TableOfContents.vue +0 -304
- package/app/components/content/TocTree.vue +0 -66
- package/app/components/content/TypeBadge.vue +0 -18
- package/app/components/content/UserMenu.vue +0 -48
- package/app/composables/__tests__/use-calendar.test.ts +0 -239
- package/app/composables/useSearch.ts +0 -24
- package/app/utils/debug-shim.mjs +0 -23
package/app/utils/debug-shim.mjs
DELETED
|
@@ -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 }
|