kewti_components 0.0.4 → 0.0.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/README.md +62 -21
- package/dist/fonts/Abinet_3038426dc8.ttf +0 -0
- package/dist/fonts/Bela_Hidase_Extra_Bold_9020959aee.ttf +0 -0
- package/dist/fonts/Font.et - AbnetZethion - John Hudson and Geraldine Wade/Font.et - AbnetZethion - John Hudson and Geraldine Wade/license.txt +13 -0
- package/dist/fonts/Font.et - Bela Hidase ExtBd - Abel Daniel/Font.et - Bela Hidase ExtBd - Abel Daniel/license.txt +13 -0
- package/dist/fonts/Font.et - Geez Digital - Yikunoamlak Ayalew/Font.et - Geez Digital - Yikunoamlak Ayalew/license.txt +13 -0
- package/dist/fonts/Geez_Digital_V1_5be0497d4c.ttf +0 -0
- package/dist/kewti-documentation/component.d.ts +3 -0
- package/dist/kewti-fonts/component.d.ts +10 -0
- package/dist/kewti-mascot/component.d.ts +10 -0
- package/dist/kewti-regions/component.d.ts +1 -1
- package/dist/kewti.es.js +12 -9
- package/dist/kewti.umd.js +1 -1
- package/dist/kewti_components.css +1 -1
- package/package.json +4 -2
- package/dist/kewtiPage/KewtiPage.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kewti_components",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.6",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/kewti.umd.js",
|
|
7
7
|
"module": "./dist/kewti.es.js",
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
"types": "./dist/index.d.ts",
|
|
12
12
|
"import": "./dist/kewti.es.js",
|
|
13
13
|
"require": "./dist/kewti.umd.js"
|
|
14
|
-
}
|
|
14
|
+
},
|
|
15
|
+
"./style.css": "./dist/kewti_components.css"
|
|
15
16
|
},
|
|
16
17
|
"files": [
|
|
17
18
|
"dist"
|
|
@@ -19,6 +20,7 @@
|
|
|
19
20
|
"scripts": {
|
|
20
21
|
"dev": "vite --host",
|
|
21
22
|
"build": "vite build",
|
|
23
|
+
"build:site": "vite build --config vite.config.site.js",
|
|
22
24
|
"typecheck": "tsc --noEmit",
|
|
23
25
|
"publish-pkg": "npm run build && npm version patch && npm publish"
|
|
24
26
|
},
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|