@vuetify/v0 0.0.9 → 0.0.11
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/dist/browser/index.js +1497 -466
- package/dist/components/index.d.mts +4 -0
- package/dist/components/index.mjs +7 -0
- package/dist/components-DFGu8N2g.mjs +947 -0
- package/dist/composables/index.d.mts +4 -0
- package/dist/composables/{index.js → index.mjs} +3 -3
- package/dist/{composables-DTW0WfTC.js → composables-TCjvMHyU.mjs} +590 -162
- package/dist/constants/{index.d.ts → index.d.mts} +1 -1
- package/dist/constants/{index.js → index.mjs} +3 -3
- package/dist/{globals-Cfd1Dr_o.js → globals-y0mJ6Eg7.mjs} +2 -2
- package/dist/{index-DWx3x9vE.d.ts → index-CQjOW_w5.d.mts} +101 -846
- package/dist/{index-DIX3zaZG.d.ts → index-CSdGoUCI.d.mts} +3 -2
- package/dist/index-D-EP6KrS.d.mts +812 -0
- package/dist/index-DbBHGczA.d.mts +815 -0
- package/dist/index.d.mts +7 -0
- package/dist/index.mjs +8 -0
- package/dist/types/{index.d.ts → index.d.mts} +1 -1
- package/dist/utilities/index.d.mts +3 -0
- package/dist/utilities/index.mjs +3 -0
- package/dist/{utilities-rsKHgU2m.js → utilities-C26nB74O.mjs} +5 -1
- package/package.json +15 -15
- package/dist/components/index.d.ts +0 -4
- package/dist/components/index.js +0 -7
- package/dist/components-BfI4Pf1x.js +0 -350
- package/dist/composables/index.d.ts +0 -3
- package/dist/index-TlH7dtTg.d.ts +0 -241
- package/dist/index.d.ts +0 -6
- package/dist/index.js +0 -8
- package/dist/utilities/index.d.ts +0 -3
- package/dist/utilities/index.js +0 -3
- /package/dist/{constants-De5c3_aB.js → constants-Xfszzyok.mjs} +0 -0
- /package/dist/{htmlElements-lF7PGahL.js → htmlElements-BYo-fMlZ.mjs} +0 -0
- /package/dist/{index-BKc0YiL1.d.ts → index-8AIxAM2d.d.mts} +0 -0
- /package/dist/{index-C_lAPFXS.d.ts → index-DY7-T630.d.mts} +0 -0
- /package/dist/types/{index.js → index.mjs} +0 -0
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as isSelfClosingTag, c as SUPPORTS_MATCH_MEDIA, d as SUPPORTS_TOUCH, f as __LOGGER_ENABLED__, i as SelfClosingElement, l as SUPPORTS_MUTATION_OBSERVER, n as HTMLElementName, o as IN_BROWSER, p as version, r as SELF_CLOSING_TAGS, s as SUPPORTS_INTERSECTION_OBSERVER, t as COMMON_ELEMENTS, u as SUPPORTS_OBSERVER } from "../index-
|
|
1
|
+
import { a as isSelfClosingTag, c as SUPPORTS_MATCH_MEDIA, d as SUPPORTS_TOUCH, f as __LOGGER_ENABLED__, i as SelfClosingElement, l as SUPPORTS_MUTATION_OBSERVER, n as HTMLElementName, o as IN_BROWSER, p as version, r as SELF_CLOSING_TAGS, s as SUPPORTS_INTERSECTION_OBSERVER, t as COMMON_ELEMENTS, u as SUPPORTS_OBSERVER } from "../index-8AIxAM2d.mjs";
|
|
2
2
|
export { COMMON_ELEMENTS, HTMLElementName, IN_BROWSER, SELF_CLOSING_TAGS, SUPPORTS_INTERSECTION_OBSERVER, SUPPORTS_MATCH_MEDIA, SUPPORTS_MUTATION_OBSERVER, SUPPORTS_OBSERVER, SUPPORTS_TOUCH, SelfClosingElement, __LOGGER_ENABLED__, isSelfClosingTag, version };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { n as SELF_CLOSING_TAGS, r as isSelfClosingTag, t as COMMON_ELEMENTS } from "../htmlElements-
|
|
2
|
-
import { a as SUPPORTS_OBSERVER, c as version, i as SUPPORTS_MUTATION_OBSERVER, n as SUPPORTS_INTERSECTION_OBSERVER, o as SUPPORTS_TOUCH, r as SUPPORTS_MATCH_MEDIA, s as __LOGGER_ENABLED__, t as IN_BROWSER } from "../globals-
|
|
3
|
-
import "../constants-
|
|
1
|
+
import { n as SELF_CLOSING_TAGS, r as isSelfClosingTag, t as COMMON_ELEMENTS } from "../htmlElements-BYo-fMlZ.mjs";
|
|
2
|
+
import { a as SUPPORTS_OBSERVER, c as version, i as SUPPORTS_MUTATION_OBSERVER, n as SUPPORTS_INTERSECTION_OBSERVER, o as SUPPORTS_TOUCH, r as SUPPORTS_MATCH_MEDIA, s as __LOGGER_ENABLED__, t as IN_BROWSER } from "../globals-y0mJ6Eg7.mjs";
|
|
3
|
+
import "../constants-Xfszzyok.mjs";
|
|
4
4
|
|
|
5
5
|
export { COMMON_ELEMENTS, IN_BROWSER, SELF_CLOSING_TAGS, SUPPORTS_INTERSECTION_OBSERVER, SUPPORTS_MATCH_MEDIA, SUPPORTS_MUTATION_OBSERVER, SUPPORTS_OBSERVER, SUPPORTS_TOUCH, __LOGGER_ENABLED__, isSelfClosingTag, version };
|
|
@@ -5,8 +5,8 @@ const SUPPORTS_MATCH_MEDIA = IN_BROWSER && "matchMedia" in window && typeof wind
|
|
|
5
5
|
const SUPPORTS_OBSERVER = IN_BROWSER && "ResizeObserver" in window;
|
|
6
6
|
const SUPPORTS_INTERSECTION_OBSERVER = IN_BROWSER && "IntersectionObserver" in window;
|
|
7
7
|
const SUPPORTS_MUTATION_OBSERVER = IN_BROWSER && "MutationObserver" in window;
|
|
8
|
-
const version =
|
|
9
|
-
const __LOGGER_ENABLED__ =
|
|
8
|
+
const version = __VERSION__;
|
|
9
|
+
const __LOGGER_ENABLED__ = __DEV__ || __VITE_LOGGER_ENABLED__ === "true";
|
|
10
10
|
|
|
11
11
|
//#endregion
|
|
12
12
|
export { SUPPORTS_OBSERVER as a, version as c, SUPPORTS_MUTATION_OBSERVER as i, SUPPORTS_INTERSECTION_OBSERVER as n, SUPPORTS_TOUCH as o, SUPPORTS_MATCH_MEDIA as r, __LOGGER_ENABLED__ as s, IN_BROWSER as t };
|