kewti_components 0.0.1 → 0.0.3

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.
Files changed (34) hide show
  1. package/dist/App.d.ts +2 -0
  2. package/dist/components/theme-provider.d.ts +15 -0
  3. package/dist/components/ui/alert.d.ts +10 -0
  4. package/dist/components/ui/button.d.ts +10 -0
  5. package/dist/components/ui/card.d.ts +11 -0
  6. package/dist/components/ui/command.d.ts +18 -0
  7. package/dist/components/ui/dialog.d.ts +17 -0
  8. package/dist/components/ui/input-group.d.ts +16 -0
  9. package/dist/components/ui/input.d.ts +3 -0
  10. package/dist/components/ui/label.d.ts +4 -0
  11. package/dist/components/ui/popover.d.ts +10 -0
  12. package/dist/components/ui/select.d.ts +15 -0
  13. package/dist/components/ui/textarea.d.ts +3 -0
  14. package/dist/index.d.ts +7 -0
  15. package/dist/kewti-banks/component.d.ts +16 -0
  16. package/dist/kewti-banks/index.d.ts +19 -0
  17. package/dist/kewti-banks/parse.d.ts +19 -0
  18. package/dist/kewti-calender/DateInput.d.ts +6 -0
  19. package/dist/kewti-calender/EthiopianCalendar.d.ts +6 -0
  20. package/dist/kewti-calender/try.d.ts +1 -0
  21. package/dist/kewti-calender/useEthiopianCalendar.d.ts +20 -0
  22. package/dist/kewti-calender/utils.d.ts +14 -0
  23. package/dist/kewti-inputs/component.d.ts +26 -0
  24. package/dist/kewti-inputs/transliterate.d.ts +4 -0
  25. package/dist/kewti-maps/component.d.ts +17 -0
  26. package/dist/kewti-passwords/component.d.ts +21 -0
  27. package/dist/kewti-regions/component.d.ts +4 -0
  28. package/dist/kewti.es.js +6469 -7844
  29. package/dist/kewti.umd.js +32 -37
  30. package/dist/kewtiDemo/component.d.ts +1 -0
  31. package/dist/kewtiPage/KewtiPage.d.ts +1 -0
  32. package/dist/lib/utils.d.ts +2 -0
  33. package/dist/main.d.ts +0 -0
  34. package/package.json +13 -7
@@ -0,0 +1 @@
1
+ export default function KewtiDemo(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import { ClassValue } from 'clsx';
2
+ export declare function cn(...inputs: ClassValue[]): string;
package/dist/main.d.ts ADDED
File without changes
package/package.json CHANGED
@@ -1,21 +1,26 @@
1
1
  {
2
2
  "name": "kewti_components",
3
3
  "private": false,
4
- "version": "0.0.1",
4
+ "version": "0.0.3",
5
5
  "type": "module",
6
6
  "main": "./dist/kewti.umd.js",
7
7
  "module": "./dist/kewti.es.js",
8
8
  "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/kewti.es.js",
13
+ "require": "./dist/kewti.umd.js"
14
+ }
15
+ },
9
16
  "files": [
10
17
  "dist"
11
18
  ],
12
19
  "scripts": {
13
20
  "dev": "vite --host",
14
- "build": "tsc -b && vite build",
15
- "lint": "eslint .",
16
- "format": "prettier --write \"**/*.{ts,tsx}\"",
21
+ "build": "vite build",
17
22
  "typecheck": "tsc --noEmit",
18
- "preview": "vite preview"
23
+ "publish-pkg": "npm run build && npm version patch && npm publish"
19
24
  },
20
25
  "peerDependencies": {
21
26
  "react": "^19.0.0",
@@ -60,6 +65,7 @@
60
65
  "react-dom": "^19.2.4",
61
66
  "typescript": "~5.9.3",
62
67
  "typescript-eslint": "^8.57.1",
63
- "vite": "^7.3.1"
68
+ "vite": "^7.3.1",
69
+ "vite-plugin-dts": "^5.0.0"
64
70
  }
65
- }
71
+ }