@symbo.ls/uikit 2.10.72 → 2.10.121

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/package.json +2 -2
  2. package/README.md +0 -38
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@symbo.ls/uikit",
3
3
  "description": "UI Library built on Scratch and DOMQL",
4
- "version": "2.10.72",
4
+ "version": "2.10.121",
5
5
  "author": "symbo.ls",
6
6
  "repository": "https://github.com/symbo-ls/smbls",
7
7
  "main": "index.js",
@@ -42,6 +42,6 @@
42
42
  "prepublish": "rm -rf dist && npx esbuild index.js --target=es2020 --format=cjs --bundle --sourcemap=external --outfile=dist/index.cjs.js"
43
43
  },
44
44
  "browserslist": "> 0.5%, last 2 versions, not dead",
45
- "gitHead": "a85e1214d361a34282504ca033755e7c854cc00f",
45
+ "gitHead": "056cc9dcdadcc2022ec2b400eb1a8a3909d42380",
46
46
  "source": "src/index.js"
47
47
  }
package/README.md DELETED
@@ -1,38 +0,0 @@
1
- # Symbols
2
-
3
- UI Library in composition of [Scratch](https://github.com/symbo.ls/scratch) and [DOMQL](https://github.com/symbo.ls/domql) or [DOMQL](https://github.com/symbo-ls/smbls/tree/main/packages/all/packages/react)
4
-
5
- Check out the [documentation page](https://docs.symbols.app/).
6
-
7
- [![npm version](https://badge.fury.io/js/smbls.svg)](https://badge.fury.io/js/smbls)
8
-
9
- ### UI Components
10
-
11
- Library consists with packages. Components can be invoked individually.
12
-
13
-
14
- ### Setup
15
-
16
- 1. Installation
17
- ```
18
- yarn add 'smbls'
19
- ```
20
-
21
- 2. Import the component from Symbols
22
- ```
23
- import { Box } from 'smbls'
24
- ```
25
-
26
- 3. Use it inside your DOMQL code
27
- ### DOMQL
28
- ```javascript
29
- const Header = {
30
- proto: Box,
31
- // ...Other Properties
32
- }
33
- ```
34
-
35
- ### React
36
- ```javascript
37
- <Box {...props} />
38
- ```