@livepeer/design-system 0.0.0-beta.4 → 0.0.0-beta.7
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 +13 -0
- package/dist/index.es.js +0 -4
- package/dist/index.js +0 -4
- package/package.json +6 -6
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Documentation
|
|
2
|
+
|
|
3
|
+
Design system for Livepeer VS products
|
|
4
|
+
|
|
5
|
+
## Documentation
|
|
6
|
+
|
|
7
|
+
Visit [https://livepeer-design-system.vercel.app/](https://livepeer-design-system.vercel.app/) to view the design system reference components.
|
|
8
|
+
|
|
9
|
+
## Usage
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
yarn add @livepeer/design-system
|
|
13
|
+
```
|
package/dist/index.es.js
CHANGED
|
@@ -404,7 +404,6 @@ var Button = styled(DEFAULT_TAG$5, {
|
|
|
404
404
|
fontFamily: "$body",
|
|
405
405
|
fontSize: "$2",
|
|
406
406
|
fontWeight: 600,
|
|
407
|
-
fontVariantNumeric: "tabular-nums",
|
|
408
407
|
ai: "center",
|
|
409
408
|
cursor: "pointer",
|
|
410
409
|
px: "$3",
|
|
@@ -841,7 +840,6 @@ var Text = styled(DEFAULT_TAG$1, {
|
|
|
841
840
|
lineHeight: 1.5,
|
|
842
841
|
margin: "0",
|
|
843
842
|
fontWeight: 400,
|
|
844
|
-
fontVariantNumeric: "tabular-nums",
|
|
845
843
|
display: "block",
|
|
846
844
|
variants: {
|
|
847
845
|
size: {
|
|
@@ -1097,7 +1095,6 @@ var StyledTextField = styled(DEFAULT_TAG, {
|
|
|
1097
1095
|
backgroundColor: "$loContrast",
|
|
1098
1096
|
boxShadow: "inset 0 0 0 1px $colors$neutral7",
|
|
1099
1097
|
color: "$hiContrast",
|
|
1100
|
-
fontVariantNumeric: "tabular-nums",
|
|
1101
1098
|
"&:-webkit-autofill": {
|
|
1102
1099
|
boxShadow: "inset 0 0 0 1px $colors$primary6, inset 0 0 0 100px $colors$primary3",
|
|
1103
1100
|
},
|
|
@@ -1373,7 +1370,6 @@ var Badge = styled("span", {
|
|
|
1373
1370
|
borderRadius: "$pill",
|
|
1374
1371
|
color: "$slate11",
|
|
1375
1372
|
whiteSpace: "nowrap",
|
|
1376
|
-
fontVariantNumeric: "tabular-nums",
|
|
1377
1373
|
variants: {
|
|
1378
1374
|
size: {
|
|
1379
1375
|
"1": {
|
package/dist/index.js
CHANGED
|
@@ -434,7 +434,6 @@ var Button = designSystem.styled(DEFAULT_TAG$5, {
|
|
|
434
434
|
fontFamily: "$body",
|
|
435
435
|
fontSize: "$2",
|
|
436
436
|
fontWeight: 600,
|
|
437
|
-
fontVariantNumeric: "tabular-nums",
|
|
438
437
|
ai: "center",
|
|
439
438
|
cursor: "pointer",
|
|
440
439
|
px: "$3",
|
|
@@ -871,7 +870,6 @@ var Text = designSystem.styled(DEFAULT_TAG$1, {
|
|
|
871
870
|
lineHeight: 1.5,
|
|
872
871
|
margin: "0",
|
|
873
872
|
fontWeight: 400,
|
|
874
|
-
fontVariantNumeric: "tabular-nums",
|
|
875
873
|
display: "block",
|
|
876
874
|
variants: {
|
|
877
875
|
size: {
|
|
@@ -1127,7 +1125,6 @@ var StyledTextField = designSystem.styled(DEFAULT_TAG, {
|
|
|
1127
1125
|
backgroundColor: "$loContrast",
|
|
1128
1126
|
boxShadow: "inset 0 0 0 1px $colors$neutral7",
|
|
1129
1127
|
color: "$hiContrast",
|
|
1130
|
-
fontVariantNumeric: "tabular-nums",
|
|
1131
1128
|
"&:-webkit-autofill": {
|
|
1132
1129
|
boxShadow: "inset 0 0 0 1px $colors$primary6, inset 0 0 0 100px $colors$primary3",
|
|
1133
1130
|
},
|
|
@@ -1403,7 +1400,6 @@ var Badge = designSystem.styled("span", {
|
|
|
1403
1400
|
borderRadius: "$pill",
|
|
1404
1401
|
color: "$slate11",
|
|
1405
1402
|
whiteSpace: "nowrap",
|
|
1406
|
-
fontVariantNumeric: "tabular-nums",
|
|
1407
1403
|
variants: {
|
|
1408
1404
|
size: {
|
|
1409
1405
|
"1": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@livepeer/design-system",
|
|
3
|
-
"version": "0.0.0-beta.
|
|
3
|
+
"version": "0.0.0-beta.7",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.es.js",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@radix-ui/react-context-menu": "0.1.1",
|
|
35
35
|
"@radix-ui/react-dialog": "0.1.1",
|
|
36
36
|
"@radix-ui/react-dropdown-menu": "0.1.1",
|
|
37
|
-
"@radix-ui/react-hover-card": "0.
|
|
37
|
+
"@radix-ui/react-hover-card": "0.1.5",
|
|
38
38
|
"@radix-ui/react-icons": "1.0.3",
|
|
39
39
|
"@radix-ui/react-id": "^0.1.1",
|
|
40
40
|
"@radix-ui/react-label": "^0.0.13",
|
|
@@ -75,16 +75,16 @@
|
|
|
75
75
|
"eslint-config-next": "12.0.7",
|
|
76
76
|
"husky": "^4.0.0",
|
|
77
77
|
"lint-staged": "^9.5.0",
|
|
78
|
-
"next": "^12.
|
|
78
|
+
"next": "^12.1.5",
|
|
79
79
|
"np": "^7.3.0",
|
|
80
80
|
"prettier": "^2.0.5",
|
|
81
|
-
"react": "^
|
|
81
|
+
"react": "^18.1.0",
|
|
82
82
|
"react-bezier-curve-editor": "^1.0.0",
|
|
83
|
-
"react-dom": "^
|
|
83
|
+
"react-dom": "^18.1.0",
|
|
84
84
|
"rollup": "^2.33.1",
|
|
85
85
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
86
86
|
"rollup-plugin-typescript2": "^0.31.0",
|
|
87
|
-
"typescript": "
|
|
87
|
+
"typescript": "4.5.5"
|
|
88
88
|
},
|
|
89
89
|
"publishConfig": {
|
|
90
90
|
"registry": "https://registry.npmjs.org"
|