smbls 1.1.0 → 1.1.5

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 (3) hide show
  1. package/README.md +3 -3
  2. package/package.json +3 -3
  3. package/react.js +2 -0
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Symbols
2
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)
3
+ UI Library in composition of [Scratch](https://github.com/symbo.ls/scratch) and [DOMQL](https://github.com/symbo.ls/domql) or [React](https://github.com/symbo-ls/smbls/tree/main/packages/all/packages/react.js)
4
4
 
5
5
  Check out the [documentation page](https://docs.symbols.app/).
6
6
 
@@ -15,7 +15,7 @@ Library consists with packages. Components can be invoked individually.
15
15
 
16
16
  1. Installation
17
17
  ```
18
- yarn add 'smbls'
18
+ yarn add 'smbls@^1.1.1'
19
19
  ```
20
20
 
21
21
  2. Import the component from Symbols
@@ -27,7 +27,7 @@ import { Box } from 'smbls'
27
27
  ### DOMQL
28
28
  ```javascript
29
29
  const Header = {
30
- proto: Box,
30
+ extends: Box,
31
31
  // ...Other Properties
32
32
  }
33
33
  ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "smbls",
3
3
  "description": "UI Library built on Scratch and DOMQL",
4
- "version": "1.1.0",
4
+ "version": "1.1.5",
5
5
  "author": "symbo.ls",
6
6
  "repository": "https://github.com/symbo-ls/smbls",
7
7
  "main": "index.js",
@@ -37,8 +37,8 @@
37
37
  "@symbo.ls/pills": "latest",
38
38
  "@symbo.ls/position": "latest",
39
39
  "@symbo.ls/react-box": "symbo-ls/react-box",
40
+ "@symbo.ls/react-provider": "latest",
40
41
  "@symbo.ls/responsive": "latest",
41
- "@symbo.ls/scratch-init": "latest",
42
42
  "@symbo.ls/select": "latest",
43
43
  "@symbo.ls/shape": "latest",
44
44
  "@symbo.ls/slider": "latest",
@@ -48,6 +48,6 @@
48
48
  "@symbo.ls/user": "latest"
49
49
  },
50
50
  "browserslist": "> 0.5%, last 2 versions, not dead",
51
- "gitHead": "f70e3ed520d8f5419235b2ad355ed579e4df3435",
51
+ "gitHead": "8590863dfd2c60cbe59db0b4bb8239c8a7585259",
52
52
  "source": "src/index.js"
53
53
  }
package/react.js CHANGED
@@ -1,8 +1,10 @@
1
1
  'use strict'
2
2
 
3
3
  import Box from '@symbo.ls/react-box'
4
+ import { SymbolsProvider } from '@symbo.ls/react-provider'
4
5
 
5
6
  export * from '@symbo.ls/init'
6
7
  export { Box }
8
+ export { SymbolsProvider }
7
9
 
8
10
  // export * from './styles'