@sit-onyx/mdc 0.0.0
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/LICENSE.txt +190 -0
- package/README.md +9 -0
- package/dist/MDCRenderer-BiRlLs6r.js +290 -0
- package/dist/components/OnyxMarkdownRenderer/OnyxMarkdownRenderer.d.vue.ts +29 -0
- package/dist/components/OnyxMarkdownRenderer/types.d.ts +12 -0
- package/dist/components/prose/ProseA.d.vue.ts +26 -0
- package/dist/components/prose/ProseBr.d.vue.ts +2 -0
- package/dist/components/prose/ProseCode.d.vue.ts +19 -0
- package/dist/components/prose/ProseDetails.d.vue.ts +23 -0
- package/dist/components/prose/ProseH1.d.vue.ts +22 -0
- package/dist/components/prose/ProseH2.d.vue.ts +22 -0
- package/dist/components/prose/ProseH3.d.vue.ts +22 -0
- package/dist/components/prose/ProseH4.d.vue.ts +22 -0
- package/dist/components/prose/ProseH5.d.vue.ts +22 -0
- package/dist/components/prose/ProseH6.d.vue.ts +22 -0
- package/dist/components/prose/ProseHr.d.vue.ts +2 -0
- package/dist/components/prose/ProseOl.d.vue.ts +19 -0
- package/dist/components/prose/ProseP.d.vue.ts +19 -0
- package/dist/components/prose/ProsePre.d.vue.ts +49 -0
- package/dist/components/prose/ProseSummary.d.vue.ts +19 -0
- package/dist/components/prose/ProseTable.d.vue.ts +25 -0
- package/dist/components/prose/ProseTbody.d.vue.ts +19 -0
- package/dist/components/prose/ProseThead.d.vue.ts +19 -0
- package/dist/components/prose/ProseUl.d.vue.ts +19 -0
- package/dist/components/prose/utils.d.ts +20 -0
- package/dist/index.d.ts +21 -0
- package/dist/index.js +285 -0
- package/dist/node-B8w0U_XJ.js +1172 -0
- package/dist/runtime-C6LZeuX2.js +17896 -0
- package/dist/style.css +2 -0
- package/package.json +51 -0
package/dist/style.css
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
:root{--onyx-markdown-renderer-margin-block:var(--onyx-density-md)}br[data-v-d52859e7]{height:1lh;display:block}code[data-v-3d53c5e9]{background-color:var(--onyx-color-base-background-blank);border:var(--onyx-1px-in-rem) solid var(--onyx-color-component-border-neutral);border-radius:var(--onyx-radius-sm);padding:var(--onyx-density-3xs) var(--onyx-density-2xs)}.accordion[data-v-4178c16e]{margin-block:var(--onyx-markdown-renderer-margin-block)}.header:has(.header__content:not(:empty)) .header__placeholder[data-v-4178c16e]{display:none}.onyx-headline[data-v-c5760f34]{margin-bottom:var(--onyx-density-lg)}.onyx-headline[data-v-ca207127]{margin-top:var(--onyx-density-2xl);margin-bottom:var(--onyx-density-xs)}.onyx-headline[data-v-bd6aac0c]{margin-top:var(--onyx-density-xl);margin-bottom:var(--onyx-density-2xs)}.onyx-headline[data-v-2fae4049],.onyx-headline[data-v-be90357a],.onyx-headline[data-v-e10c9588]{margin-top:var(--onyx-density-lg);margin-bottom:var(--onyx-density-3xs)}.separator[data-v-88aee9af]{margin-block:var(--onyx-markdown-renderer-margin-block)}ol[data-v-5adc6f71]{margin-block:var(--onyx-density-xs)}p[data-v-8d5bfaf8],.code[data-v-2364b0e9],.table[data-v-52d1d2c2]{margin-block:var(--onyx-markdown-renderer-margin-block)}ul[data-v-17a11577]{margin-block:var(--onyx-density-xs)}@layer onyx.component{.onyx-markdown-renderer{font-family:var(--onyx-font-family-paragraph)}}
|
|
2
|
+
/*$vite$:1*/
|
package/package.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sit-onyx/mdc",
|
|
3
|
+
"description": "Wrapper for the @nuxtjs/mdc package using the onyx design system created by Schwarz IT",
|
|
4
|
+
"version": "0.0.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"author": "Schwarz IT KG",
|
|
7
|
+
"license": "Apache-2.0",
|
|
8
|
+
"engines": {
|
|
9
|
+
"node": ">=20"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
14
|
+
"module": "./dist/index.js",
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./dist/index.d.ts",
|
|
19
|
+
"node": "./dist/index.js",
|
|
20
|
+
"default": "./dist/index.js"
|
|
21
|
+
},
|
|
22
|
+
"./style.css": "./dist/style.css"
|
|
23
|
+
},
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "https://github.com/SchwarzIT/onyx",
|
|
27
|
+
"directory": "packages/mdc"
|
|
28
|
+
},
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/SchwarzIT/onyx/issues"
|
|
31
|
+
},
|
|
32
|
+
"peerDependencies": {
|
|
33
|
+
"@nuxtjs/mdc": ">= 0.20.2",
|
|
34
|
+
"vue": ">= 3.5.0",
|
|
35
|
+
"sit-onyx": "^1.11.0"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@axe-core/playwright": "^4.11.1",
|
|
39
|
+
"@nuxtjs/mdc": "~0.21.0",
|
|
40
|
+
"@playwright/experimental-ct-vue": "1.57.0",
|
|
41
|
+
"@playwright/test": "1.57.0",
|
|
42
|
+
"@vue/compiler-dom": "3.5.31",
|
|
43
|
+
"@sit-onyx/playwright-utils": "^1.2.1",
|
|
44
|
+
"@sit-onyx/shared": "^0.1.0",
|
|
45
|
+
"sit-onyx": "^1.11.0"
|
|
46
|
+
},
|
|
47
|
+
"scripts": {
|
|
48
|
+
"build": "vite build",
|
|
49
|
+
"test:playwright": "playwright install && playwright test"
|
|
50
|
+
}
|
|
51
|
+
}
|