@sri-xml-viewer/vue 1.0.1 → 1.0.2
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/VisorXml.vue.d.ts +6 -0
- package/dist/components/barCode.vue.d.ts +12 -0
- package/dist/components/factura.vue.d.ts +43 -0
- package/dist/components/guiaRemision.vue.d.ts +43 -0
- package/dist/components/headDoc.vue.d.ts +41 -0
- package/dist/components/notaCredito.vue.d.ts +43 -0
- package/dist/components/retencion.vue.d.ts +32 -0
- package/dist/components/tableSubtotals.vue.d.ts +20 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +7 -0
- package/dist/index.js +1073 -1075
- package/dist/style.css +1 -0
- package/dist/utils.d.ts +3 -0
- package/package.json +3 -3
package/dist/style.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@media print{.visor-xml-container,.visor-xml-container *{-webkit-print-color-adjust:exact!important;print-color-adjust:exact!important}html,body,.dark,:root,.visor-xml-container,.visor-xml-container *{--ui-bg: white !important;--ui-bg-muted: #f9fafb !important;--ui-bg-elevated: #f3f4f6 !important;--ui-bg-accented: #e5e7eb !important;--ui-bg-inverted: #111827 !important;--ui-text-dimmed: #9ca3af !important;--ui-text-muted: #6b7280 !important;--ui-text-toned: #4b5563 !important;--ui-text: #374151 !important;--ui-text-highlighted: #111827 !important;--ui-text-inverted: white !important;--ui-border: #e5e7eb !important;--ui-border-muted: #f3f4f6 !important;--ui-border-accented: #d1d5db !important;--ui-primary: #15803d !important}.visor-xml-container,.visor-xml-container th,.visor-xml-container td,.visor-xml-container div,.visor-xml-container span,.visor-xml-container p,.visor-xml-container strong,.visor-xml-container label,.visor-xml-container a,.visor-xml-container strong *,.visor-xml-container div *{color:#111827!important}.visor-xml-container table{border-collapse:collapse!important;width:100%!important}.visor-xml-container th,.visor-xml-container td{border:1px solid #e5e7eb!important;padding:4px 6px!important}}
|
package/dist/utils.d.ts
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sri-xml-viewer/vue",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Vue 3 viewer components for SRI Ecuador XML electronic vouchers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"jsbarcode": "^3.12.3",
|
|
23
|
-
"@sri-xml-viewer/core": "^1.0.
|
|
23
|
+
"@sri-xml-viewer/core": "^1.0.2"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@vitejs/plugin-vue": "^5.0.0",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"vue-tsc": "^2.0.0"
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
|
-
"build": "vite build",
|
|
33
|
+
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly --declarationDir dist",
|
|
34
34
|
"dev": "vite build --watch"
|
|
35
35
|
}
|
|
36
36
|
}
|