@symbo.ls/uikit 0.4.14 → 0.5.3
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/package.json +3 -27
- package/src/index.js +1 -1
- package/README.md +0 -22
- package/src/index copy.js +0 -35
- package/src/styles.js +0 -7
package/package.json
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@symbo.ls/uikit",
|
|
3
3
|
"description": "UI Library built on Scratch and DOMQL",
|
|
4
|
-
"
|
|
5
|
-
"author": "rackai",
|
|
6
|
-
"version": "0.4.14",
|
|
4
|
+
"version": "0.5.3",
|
|
7
5
|
"repository": "https://github.com/rackai/symbols",
|
|
8
6
|
"main": "src/index.js",
|
|
9
7
|
"files": [
|
|
@@ -42,28 +40,6 @@
|
|
|
42
40
|
"@symbo.ls/tooltip": "latest",
|
|
43
41
|
"@symbo.ls/user": "latest"
|
|
44
42
|
},
|
|
45
|
-
"
|
|
46
|
-
|
|
47
|
-
"build": "parcel build showcase/index.html --public-url .",
|
|
48
|
-
"deploy": "yarn build && gh-pages -d dist",
|
|
49
|
-
"clean": "rm yarn.lock && rm -rf node_modules && rm -rf dist && rm -rf .cache",
|
|
50
|
-
"reinstall": "rm yarn.lock && rm -rf node_modules/rackai && yarn",
|
|
51
|
-
"vpatch": "npm version patch && npm publish",
|
|
52
|
-
"vpush": "git add . && git commit -am 'version update' && git push",
|
|
53
|
-
"publish-all": "lerna publish && yarn vpatch && yarn vpush"
|
|
54
|
-
},
|
|
55
|
-
"devDependencies": {
|
|
56
|
-
"@babel/core": "^7.14.6",
|
|
57
|
-
"babel-eslint": "^10.0.3",
|
|
58
|
-
"emotion": "^10.0.27",
|
|
59
|
-
"lerna": "^4.0.0",
|
|
60
|
-
"np": "^7.2.0",
|
|
61
|
-
"parcel": "^2.0.1",
|
|
62
|
-
"parcel-plugin-svg-sprite": "^1.4.1",
|
|
63
|
-
"standard": "^13.1.0"
|
|
64
|
-
},
|
|
65
|
-
"standard": {
|
|
66
|
-
"parser": "babel-eslint"
|
|
67
|
-
},
|
|
68
|
-
"browserslist": "> 0.5%, last 2 versions, not dead"
|
|
43
|
+
"browserslist": "> 0.5%, last 2 versions, not dead",
|
|
44
|
+
"gitHead": "f0c29fae632536241c4e803b880991748344f7c5"
|
|
69
45
|
}
|
package/src/index.js
CHANGED
package/README.md
DELETED
|
@@ -1,22 +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)
|
|
4
|
-
|
|
5
|
-
[](https://badge.fury.io/js/%40symbo.ls%2Fuikit)
|
|
6
|
-
|
|
7
|
-
### Setup
|
|
8
|
-
|
|
9
|
-
1. Clone the repo
|
|
10
|
-
```
|
|
11
|
-
git clone git@github.com:symbo.ls/uikit.git
|
|
12
|
-
```
|
|
13
|
-
|
|
14
|
-
2. Install scripts
|
|
15
|
-
```
|
|
16
|
-
yarn
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
3. Run the project
|
|
20
|
-
```
|
|
21
|
-
yarn start
|
|
22
|
-
```
|
package/src/index copy.js
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
'use strict'
|
|
2
|
-
|
|
3
|
-
export * from './styles'
|
|
4
|
-
|
|
5
|
-
export * from './Text'
|
|
6
|
-
export * from './Block'
|
|
7
|
-
export * from './Shape'
|
|
8
|
-
export * from './Flex'
|
|
9
|
-
export * from './Grid'
|
|
10
|
-
export * from './Direction'
|
|
11
|
-
export * from './Position'
|
|
12
|
-
export * from './Overflow'
|
|
13
|
-
|
|
14
|
-
export * from './Box'
|
|
15
|
-
|
|
16
|
-
export * from './SVG'
|
|
17
|
-
export * from './Icon'
|
|
18
|
-
export * from './Img'
|
|
19
|
-
export * from './Link'
|
|
20
|
-
export * from './IconText'
|
|
21
|
-
export * from './Input'
|
|
22
|
-
export * from './Field'
|
|
23
|
-
export * from './Button'
|
|
24
|
-
|
|
25
|
-
export * from './ButtonSet'
|
|
26
|
-
export * from './User'
|
|
27
|
-
export * from './Banner'
|
|
28
|
-
export * from './Slider'
|
|
29
|
-
export * from './Notification'
|
|
30
|
-
export * from './Dropdown'
|
|
31
|
-
export * from './DatePicker'
|
|
32
|
-
export * from './Tooltip'
|
|
33
|
-
export * from './Label'
|
|
34
|
-
export * from './Pills'
|
|
35
|
-
export * from './Select'
|