@erplora/outfitkit 0.1.4 → 0.1.6
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/erplora.css +56 -57
- package/dist/outfitkit.bundle.js +27135 -0
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@erplora/outfitkit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "OutfitKit — librería de Web Components (Lit) que CONSTRUYE lo que Ionic no tiene (tree, data-table rica, inline-feedback, kpi/stat, stepper/wizard, calendar, kanban…) sobre primitivos de Ionic. Ionic es la base; OutfitKit cubre los huecos. npm + CDN, imports individuales, CSP-safe. Tema vía tokens --ok-* (fallback a --ion-*).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -125,7 +125,8 @@
|
|
|
125
125
|
"./theme.css": "./dist/theme.example.css",
|
|
126
126
|
"./erplora.css": "./dist/erplora.css",
|
|
127
127
|
"./layout.css": "./dist/layout.css",
|
|
128
|
-
"./cdn": "./dist/outfitkit.js"
|
|
128
|
+
"./cdn": "./dist/outfitkit.js",
|
|
129
|
+
"./bundle": "./dist/outfitkit.bundle.js"
|
|
129
130
|
},
|
|
130
131
|
"files": [
|
|
131
132
|
"dist"
|
|
@@ -134,7 +135,7 @@
|
|
|
134
135
|
"access": "public"
|
|
135
136
|
},
|
|
136
137
|
"scripts": {
|
|
137
|
-
"build": "vite build && tsc -p tsconfig.build.json --emitDeclarationOnly",
|
|
138
|
+
"build": "vite build && vite build --config vite.config.cdn.ts && tsc -p tsconfig.build.json --emitDeclarationOnly",
|
|
138
139
|
"dev": "vite build --watch",
|
|
139
140
|
"typecheck": "tsc --noEmit",
|
|
140
141
|
"verify:csp": "node scripts/assert-csp-safe.mjs dist",
|