tvuikit 0.1.2 → 0.3.0
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 +28 -22
- package/dist/assets/checkbutton.d.ts +0 -1
- package/dist/assets/checker.svg.d.ts +0 -1
- package/dist/assets/round.svg.d.ts +0 -1
- package/dist/components/active/active.d.ts +0 -1
- package/dist/components/background/background.d.ts +0 -1
- package/dist/components/background/index.stories.d.ts +0 -1
- package/dist/components/button/button.d.ts +0 -1
- package/dist/components/button/index.stories.d.ts +0 -1
- package/dist/components/button/story.d.ts +0 -1
- package/dist/components/checkbox/checkbox.d.ts +0 -1
- package/dist/components/checkbox/index.stories.d.ts +0 -1
- package/dist/components/guideline/index.stories.d.ts +0 -1
- package/dist/components/index.d.ts +4 -4
- package/dist/components/input/index.stories.d.ts +0 -1
- package/dist/components/input/input.d.ts +0 -1
- package/dist/components/input/textarea.d.ts +0 -1
- package/dist/components/modal/modal.d.ts +0 -1
- package/dist/components/radio/index.stories.d.ts +0 -1
- package/dist/components/radio/radio.d.ts +0 -1
- package/dist/components/switch/index.stories.d.ts +0 -1
- package/dist/components/switch/switch.d.ts +0 -1
- package/dist/components/wrapper/wrapper.d.ts +0 -1
- package/dist/tvuikit.es.d.ts +1 -0
- package/dist/tvuikit.es.js +3465 -733
- package/dist/tvuikit.umd.js +3 -35
- package/dist/utils/cn.d.ts +2 -0
- package/package.json +36 -17
package/README.md
CHANGED
|
@@ -1,30 +1,36 @@
|
|
|
1
|
-
#
|
|
1
|
+
# tvuikit
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
- UI кит от The Void!
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## Разработчик
|
|
6
6
|
|
|
7
|
-
- [
|
|
8
|
-
- [
|
|
7
|
+
- [The Void Community](https://github.com/The-Void-Community)
|
|
8
|
+
- ([FOCKUSTY](https://github.com/FOCKUSTY))
|
|
9
9
|
|
|
10
|
-
##
|
|
10
|
+
## Репозиторий
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
- [tvuikit](https://github.com/The-Void-Community/tvuikit)
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
### У нас есть
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
tsconfigRootDir: __dirname,
|
|
24
|
-
},
|
|
25
|
-
};
|
|
26
|
-
```
|
|
16
|
+
- `Active` — Аналог `Activity` из React, но более удобный
|
|
17
|
+
- `Background` — idk зачем, но пусть будет :)
|
|
18
|
+
- `Button` — Очень крутая кнопка!
|
|
19
|
+
- `Checkbox`, `Radio` и `Switch`
|
|
20
|
+
- `Input` и `Textarea`
|
|
21
|
+
- `Wrapper` — Это для storybook больше, но вдруг пригодится
|
|
22
|
+
- `Modal` — Удобное модальное окно, наверное, надо тестить
|
|
27
23
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
-
|
|
24
|
+
#### Используем
|
|
25
|
+
|
|
26
|
+
- [Tailwind CSS](https://tailwindcss.com)
|
|
27
|
+
- [Vite](https://vite.dev)
|
|
28
|
+
- [React](https://react.dev)
|
|
29
|
+
- [Storybook](https://storybook.js.org)
|
|
30
|
+
- [Eslint](https://eslint.org)
|
|
31
|
+
- [Prettier](https://prettier.io)
|
|
32
|
+
|
|
33
|
+
#### Вдохновение
|
|
34
|
+
|
|
35
|
+
- [HeroUI](https://www.heroui.com)
|
|
36
|
+
- [MaterialUI](https://mui.com)
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export * from './
|
|
1
|
+
export * from './active';
|
|
2
2
|
export * from './background';
|
|
3
|
+
export * from './button';
|
|
4
|
+
export * from './checkbox';
|
|
3
5
|
export * from './input';
|
|
4
|
-
export * from './wrapper';
|
|
5
6
|
export * from './modal';
|
|
6
|
-
export * from './active';
|
|
7
|
-
export * from './checkbox';
|
|
8
7
|
export * from './switch';
|
|
8
|
+
export * from './wrapper';
|
|
9
9
|
export * as Guildline from './guideline';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { DetailedHTMLProps, InputHTMLAttributes } from 'react';
|
|
2
|
-
|
|
3
2
|
export type InputProps = DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
|
|
4
3
|
export declare const Input: ({ className, ...props }: InputProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
4
|
export default Input;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { DetailedHTMLProps, TextareaHTMLAttributes } from 'react';
|
|
2
|
-
|
|
3
2
|
export type TextareaProps = DetailedHTMLProps<TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>;
|
|
4
3
|
export declare const Textarea: ({ className, ...props }: TextareaProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
4
|
export default Textarea;
|
package/dist/tvuikit.es.d.ts
CHANGED