obeyaka-ui 0.1.6 → 0.1.8
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 +2 -2
- package/dist/index.d.ts +3 -3
- package/dist/types/index.d.ts +3 -3
- package/package.json +11 -4
package/README.md
CHANGED
|
@@ -30,13 +30,13 @@ Professional UI component library built with React, TypeScript, Storybook, and M
|
|
|
30
30
|
### Installation
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
|
-
npm install
|
|
33
|
+
npm install obeyaka-ui
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
### Basic Usage
|
|
37
37
|
|
|
38
38
|
```tsx
|
|
39
|
-
import { ActionButton, BoxAvatar, GenericTable } from '
|
|
39
|
+
import { ActionButton, BoxAvatar, GenericTable } from 'obeyaka-ui';
|
|
40
40
|
import { IconPlus, IconUser } from '@tabler/icons-react';
|
|
41
41
|
|
|
42
42
|
function MyComponent() {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from '
|
|
2
|
-
export * from '
|
|
3
|
-
export { ThemeProvider } from '
|
|
1
|
+
export * from './components';
|
|
2
|
+
export * from './theme';
|
|
3
|
+
export { ThemeProvider } from './theme/ThemeProvider';
|
|
4
4
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from '
|
|
2
|
-
export * from '
|
|
3
|
-
export { ThemeProvider } from '
|
|
1
|
+
export * from './components';
|
|
2
|
+
export * from './theme';
|
|
3
|
+
export { ThemeProvider } from './theme/ThemeProvider';
|
|
4
4
|
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "obeyaka-ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Professional UI component library with React, TypeScript, Storybook, and Mantine",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.es.js",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
},
|
|
14
14
|
"repository": {
|
|
15
15
|
"type": "git",
|
|
16
|
-
"url": "https://github.com/
|
|
16
|
+
"url": "https://github.com/obeyaka/ui.git"
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
19
|
"dev": "storybook dev -p 8080",
|
|
@@ -22,7 +22,8 @@
|
|
|
22
22
|
"build:storybook": "storybook build",
|
|
23
23
|
"build:app": "vite build",
|
|
24
24
|
"build:lib": "vite build --config vite.config.lib.ts",
|
|
25
|
-
"build:types": "tsc --project tsconfig.build.json
|
|
25
|
+
"build:types": "tsc --project tsconfig.build.json",
|
|
26
|
+
"postbuild:types": "cp dist/types/index.d.ts dist/index.d.ts && cp dist/types/index.d.ts.map dist/index.d.ts.map 2>/dev/null || true",
|
|
26
27
|
"prepublishOnly": "npm run build",
|
|
27
28
|
"preview": "vite preview",
|
|
28
29
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
@@ -36,10 +37,16 @@
|
|
|
36
37
|
"storybook",
|
|
37
38
|
"mantine",
|
|
38
39
|
"ui",
|
|
39
|
-
"components"
|
|
40
|
+
"components",
|
|
41
|
+
"atomic-design",
|
|
42
|
+
"component-library"
|
|
40
43
|
],
|
|
41
44
|
"author": "Rodolfo Peña",
|
|
42
45
|
"license": "MIT",
|
|
46
|
+
"homepage": "https://github.com/obeyaka/ui#readme",
|
|
47
|
+
"bugs": {
|
|
48
|
+
"url": "https://github.com/obeyaka/ui/issues"
|
|
49
|
+
},
|
|
43
50
|
"dependencies": {
|
|
44
51
|
"@mantine/carousel": "^8.0.0",
|
|
45
52
|
"@mantine/code-highlight": "^8.0.0",
|