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.
Files changed (2) hide show
  1. package/README.md +2 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,29 +1,25 @@
1
1
  # This.GUI
2
2
 
3
- ###### A collection of components and building blocks enabling GUI generation powered by AI.
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
  ---
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "this.gui",
3
3
  "private": false,
4
- "version": "1.1.27",
4
+ "version": "1.1.29",
5
5
  "type": "module",
6
6
  "main": "dist/this-gui.umd.js",
7
7
  "module": "dist/this-gui.es.js",