@wastedondestiny/destiny-library 1.5.5 → 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/README.md +57 -11
- package/dist/components/DialogWindow.vue.d.ts +10 -0
- package/dist/components/FallbackImage.vue.d.ts +9 -0
- package/dist/components/MarkdownContent.vue.d.ts +5 -0
- package/dist/destiny-library.js +3419 -1822
- package/dist/destiny-library.umd.cjs +57 -2
- package/dist/example.md +12 -0
- package/dist/index.d.ts +4 -1
- package/dist/style.css +1 -0
- package/package.json +3 -2
package/dist/example.md
ADDED
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import Collapsible from './components/Collapsible.vue';
|
|
2
|
+
import DialogWindow from './components/DialogWindow.vue';
|
|
2
3
|
import Dropdown from './components/Dropdown.vue';
|
|
3
4
|
import ErrorToast from './components/ErrorToast.vue';
|
|
5
|
+
import FallbackImage from './components/FallbackImage.vue';
|
|
6
|
+
import MarkdownContent from './components/MarkdownContent.vue';
|
|
4
7
|
import PlatformIcon from './components/PlatformIcon.vue';
|
|
5
8
|
import TheFooter from './components/TheFooter.vue';
|
|
6
9
|
import TheTooltip from './components/TheTooltip.vue';
|
|
@@ -13,5 +16,5 @@ import { usePlaywire, addPlaywireUnit, destroyPlaywireUnits } from './composable
|
|
|
13
16
|
export * from './types';
|
|
14
17
|
export * from './utils';
|
|
15
18
|
export * from './testUtils';
|
|
16
|
-
export { Collapsible, Dropdown, ErrorToast, PlatformIcon, TheFooter, TheTooltip, Popup, ProjectMenu };
|
|
19
|
+
export { Collapsible, DialogWindow, Dropdown, ErrorToast, FallbackImage, MarkdownContent, PlatformIcon, TheFooter, TheTooltip, Popup, ProjectMenu };
|
|
17
20
|
export { useClickOutside, useKonamiCode, useMediaQuery, usePlaywire, addPlaywireUnit, destroyPlaywireUnits };
|
package/dist/style.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.markdown-content[data-v-86d05de7] h1{margin-top:1rem;margin-bottom:1rem;font-size:1.875rem;line-height:2.25rem;font-weight:700}.markdown-content[data-v-86d05de7] h2{margin-top:.5rem;margin-bottom:.5rem;font-size:1.5rem;line-height:2rem}.markdown-content[data-v-86d05de7] h3{margin-top:.5rem;margin-bottom:.5rem;font-size:1.25rem;line-height:1.75rem}.markdown-content[data-v-86d05de7] p{margin-top:.5rem;margin-bottom:.5rem}.markdown-content[data-v-86d05de7] ul{list-style-position:inside;list-style-type:disc;padding-bottom:.5rem}.markdown-content[data-v-86d05de7] a{text-decoration-line:underline}.markdown-content[data-v-86d05de7] hr{margin-left:auto;margin-right:auto;margin-top:1rem;margin-bottom:1rem;max-width:24rem;--tw-border-opacity: 1;border-color:rgb(113 113 122 / var(--tw-border-opacity, 1))}.markdown-content[data-v-86d05de7] em{font-style:italic}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wastedondestiny/destiny-library",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -19,9 +19,10 @@
|
|
|
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
|
+
"marked": "^14.1.4",
|
|
25
26
|
"vue-tippy": "^6.3.1"
|
|
26
27
|
},
|
|
27
28
|
"devDependencies": {
|