this.gui 1.1.27 → 1.1.29
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 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,29 +1,25 @@
|
|
|
1
1
|
# This.GUI
|
|
2
2
|
|
|
3
|
-
######
|
|
4
|
-
|
|
3
|
+
###### A collection of components and building blocks enabling GUI generation powered by AI.
|
|
4
|
+
Go Algorithmic.
|
|
5
5
|
<img src="https://res.cloudinary.com/dkwnxf6gm/image/upload/v1761276578/this.gui.npm.png" style="zoom:34%;" />
|
|
6
6
|
|
|
7
7
|
**Install** via:
|
|
8
|
-
|
|
9
8
|
```bash
|
|
10
9
|
npm install this.gui
|
|
11
10
|
```
|
|
12
11
|
|
|
13
12
|
or with **yarn:**
|
|
14
|
-
|
|
15
13
|
```bash
|
|
16
14
|
yarn add this.gui
|
|
17
15
|
```
|
|
18
16
|
|
|
19
17
|
**Use** as an **exportable React library**:
|
|
20
|
-
|
|
21
18
|
```ts
|
|
22
19
|
import { TopBar } from 'this.gui'
|
|
23
20
|
```
|
|
24
21
|
|
|
25
22
|
**.GUI** provides a rich collection of **atomic** and **composite** **components** ready to use:
|
|
26
|
-
|
|
27
23
|
```tsx
|
|
28
24
|
import { Button, Card, Text } from 'this.gui';
|
|
29
25
|
export function Example() {
|
|
@@ -37,13 +33,11 @@ export function Example() {
|
|
|
37
33
|
```
|
|
38
34
|
|
|
39
35
|
**OR**
|
|
40
|
-
|
|
41
36
|
```ts
|
|
42
37
|
import GUI from 'this.gui'.”
|
|
43
38
|
```
|
|
44
39
|
|
|
45
40
|
All components are theme-aware and automatically inherit styles and tokens from the `GuiProvider`
|
|
46
|
-
|
|
47
41
|
<img src="https://res.cloudinary.com/dkwnxf6gm/image/upload/v1761281165/geometry_shapes-removebg-preview_anrdke.png" style="zoom:34%;" />
|
|
48
42
|
|
|
49
43
|
## Initialization
|
|
@@ -65,7 +59,6 @@ function App() {
|
|
|
65
59
|
|
|
66
60
|
export default App;
|
|
67
61
|
```
|
|
68
|
-
|
|
69
62
|
This structure sets up the reactive theme system, context, and global styles needed by all This.GUI components.
|
|
70
63
|
|
|
71
64
|
---
|