@wastedondestiny/destiny-library 1.6.0 → 1.6.1
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/example.md
ADDED
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import Collapsible from './components/Collapsible.vue';
|
|
2
|
-
import
|
|
2
|
+
import DialogWindow from './components/DialogWindow.vue';
|
|
3
3
|
import Dropdown from './components/Dropdown.vue';
|
|
4
4
|
import ErrorToast from './components/ErrorToast.vue';
|
|
5
5
|
import FallbackImage from './components/FallbackImage.vue';
|
|
@@ -16,5 +16,5 @@ import { usePlaywire, addPlaywireUnit, destroyPlaywireUnits } from './composable
|
|
|
16
16
|
export * from './types';
|
|
17
17
|
export * from './utils';
|
|
18
18
|
export * from './testUtils';
|
|
19
|
-
export { Collapsible,
|
|
19
|
+
export { Collapsible, DialogWindow, Dropdown, ErrorToast, FallbackImage, MarkdownContent, PlatformIcon, TheFooter, TheTooltip, Popup, ProjectMenu };
|
|
20
20
|
export { useClickOutside, useKonamiCode, useMediaQuery, usePlaywire, addPlaywireUnit, destroyPlaywireUnits };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wastedondestiny/destiny-library",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"dev": "vite",
|
|
20
20
|
"build": "vite build && vue-tsc --emitDeclarationOnly",
|
|
21
21
|
"test": "vitest",
|
|
22
|
-
"
|
|
22
|
+
"publish": "npm run build && npm publish"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"marked": "^14.1.4",
|
|
File without changes
|