@livepeer/design-system 0.0.0-beta.0
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/dist/components/Accordian.d.ts +4 -0
- package/dist/components/AlertDialog.d.ts +13 -0
- package/dist/components/Badge.d.ts +991 -0
- package/dist/components/Banner.d.ts +1 -0
- package/dist/components/Button.d.ts +1 -0
- package/dist/components/Card.d.ts +989 -0
- package/dist/components/Dialog.d.ts +12 -0
- package/dist/components/DropdownMenu.d.ts +3 -0
- package/dist/components/Label.d.ts +1 -0
- package/dist/components/Link.d.ts +989 -0
- package/dist/components/Promo.d.ts +1 -0
- package/dist/components/RadioCard.d.ts +998 -0
- package/dist/components/Select.d.ts +1 -0
- package/dist/components/Snackbar/SnackbarProvider.d.ts +15 -0
- package/dist/components/Snackbar/index.d.ts +2 -0
- package/dist/components/Snackbar/transitionStyles.d.ts +87 -0
- package/dist/components/Snackbar/useSnackbar.d.ts +5 -0
- package/dist/components/Switch.d.ts +1 -0
- package/dist/components/Table.d.ts +7904 -0
- package/dist/components/Tabs.d.ts +4 -0
- package/dist/components/Text.d.ts +1 -0
- package/dist/components/TextField.d.ts +1 -0
- package/dist/custom/AppBar.d.ts +993 -0
- package/dist/custom/Avatars.d.ts +1 -0
- package/dist/custom/DarkThemeButton.d.ts +1 -0
- package/dist/custom/Kbds.d.ts +1 -0
- package/dist/custom/Snackbar.d.ts +1 -0
- package/dist/custom/Toolbar.d.ts +1 -0
- package/dist/index.d.ts +24 -0
- package/dist/index.es.js +2270 -0
- package/dist/index.js +2701 -0
- package/dist/stitches.config.d.ts +24 -0
- package/package.json +93 -0
@@ -0,0 +1,24 @@
|
|
1
|
+
export declare const naturalPairings: {
|
2
|
+
tomato: string;
|
3
|
+
red: string;
|
4
|
+
crimson: string;
|
5
|
+
pink: string;
|
6
|
+
plum: string;
|
7
|
+
purple: string;
|
8
|
+
violet: string;
|
9
|
+
indigo: string;
|
10
|
+
blue: string;
|
11
|
+
sky: string;
|
12
|
+
cyan: string;
|
13
|
+
teal: string;
|
14
|
+
mint: string;
|
15
|
+
green: string;
|
16
|
+
grass: string;
|
17
|
+
lime: string;
|
18
|
+
yellow: string;
|
19
|
+
amber: string;
|
20
|
+
orange: string;
|
21
|
+
brown: string;
|
22
|
+
};
|
23
|
+
export declare const themes: any;
|
24
|
+
export { styled, css, getCssText, globalCss, keyframes, } from "@modulz/design-system";
|
package/package.json
ADDED
@@ -0,0 +1,93 @@
|
|
1
|
+
{
|
2
|
+
"name": "@livepeer/design-system",
|
3
|
+
"version": "0.0.0-beta.0",
|
4
|
+
"license": "MIT",
|
5
|
+
"main": "dist/index.js",
|
6
|
+
"module": "dist/index.es.js",
|
7
|
+
"files": [
|
8
|
+
"dist"
|
9
|
+
],
|
10
|
+
"types": "dist/index.d.ts",
|
11
|
+
"scripts": {
|
12
|
+
"dev": "next dev -p 3001",
|
13
|
+
"build": "next build",
|
14
|
+
"start": "next start",
|
15
|
+
"lint": "next lint",
|
16
|
+
"test": "echo \"Error: no test specified\" && exit 0",
|
17
|
+
"postinstall": "yarn ds:build",
|
18
|
+
"ds:build": "rollup -c",
|
19
|
+
"ds:release": "yarn ds:build && np"
|
20
|
+
},
|
21
|
+
"peerDependencies": {
|
22
|
+
"react": "17.0.1",
|
23
|
+
"react-dom": "17.0.1"
|
24
|
+
},
|
25
|
+
"dependencies": {
|
26
|
+
"@modulz/design-system": "0.6.1",
|
27
|
+
"@radix-ui/colors": "0.1.7",
|
28
|
+
"@radix-ui/react-accessible-icon": "^0.0.15",
|
29
|
+
"@radix-ui/react-accordion": "0.1.1",
|
30
|
+
"@radix-ui/react-alert-dialog": "0.1.1",
|
31
|
+
"@radix-ui/react-aspect-ratio": "0.1.1",
|
32
|
+
"@radix-ui/react-avatar": "0.1.1",
|
33
|
+
"@radix-ui/react-checkbox": "0.1.1",
|
34
|
+
"@radix-ui/react-collapsible": "^0.1.1",
|
35
|
+
"@radix-ui/react-context-menu": "0.1.1",
|
36
|
+
"@radix-ui/react-dialog": "0.1.1",
|
37
|
+
"@radix-ui/react-dropdown-menu": "0.1.1",
|
38
|
+
"@radix-ui/react-hover-card": "0.0.3",
|
39
|
+
"@radix-ui/react-icons": "1.0.3",
|
40
|
+
"@radix-ui/react-id": "^0.1.1",
|
41
|
+
"@radix-ui/react-label": "^0.0.13",
|
42
|
+
"@radix-ui/react-menu": "0.1.1",
|
43
|
+
"@radix-ui/react-polymorphic": "0.0.12",
|
44
|
+
"@radix-ui/react-popover": "0.1.1",
|
45
|
+
"@radix-ui/react-portal": "0.1.1",
|
46
|
+
"@radix-ui/react-primitive": "^0.1.1",
|
47
|
+
"@radix-ui/react-progress": "0.1.1",
|
48
|
+
"@radix-ui/react-radio-group": "0.1.1",
|
49
|
+
"@radix-ui/react-scroll-area": "^0.1.3",
|
50
|
+
"@radix-ui/react-separator": "0.1.1",
|
51
|
+
"@radix-ui/react-slider": "0.1.1",
|
52
|
+
"@radix-ui/react-slot": "0.0.4",
|
53
|
+
"@radix-ui/react-switch": "0.1.1",
|
54
|
+
"@radix-ui/react-tabs": "0.1.1",
|
55
|
+
"@radix-ui/react-toggle": "0.1.1",
|
56
|
+
"@radix-ui/react-toggle-button": "0.0.6",
|
57
|
+
"@radix-ui/react-tooltip": "0.1.1",
|
58
|
+
"@radix-ui/react-use-layout-effect": "0.1.0",
|
59
|
+
"@stitches/react": "1.2.5",
|
60
|
+
"next-themes": "^0.0.14",
|
61
|
+
"react-transition-group": "4.4.2",
|
62
|
+
"tslib": "^2.3.1"
|
63
|
+
},
|
64
|
+
"devDependencies": {
|
65
|
+
"@next/mdx": "^10.2.2",
|
66
|
+
"@rollup/plugin-commonjs": "^21.0.1",
|
67
|
+
"@rollup/plugin-node-resolve": "^13.0.6",
|
68
|
+
"@types/bezier-easing": "^2.1.2",
|
69
|
+
"@types/chroma-js": "^2.1.3",
|
70
|
+
"@types/node": "14.6.4",
|
71
|
+
"@types/react": "^16.12.0",
|
72
|
+
"@types/react-transition-group": "4.4.1",
|
73
|
+
"bezier-easing": "^2.1.0",
|
74
|
+
"chroma-js": "^2.1.1",
|
75
|
+
"eslint": "8.5.0",
|
76
|
+
"eslint-config-next": "12.0.7",
|
77
|
+
"husky": "^4.0.0",
|
78
|
+
"lint-staged": "^9.5.0",
|
79
|
+
"next": "^12.0.4",
|
80
|
+
"np": "^7.3.0",
|
81
|
+
"prettier": "^2.0.5",
|
82
|
+
"react": "^17.0.2",
|
83
|
+
"react-bezier-curve-editor": "^1.0.0",
|
84
|
+
"react-dom": "^17.0.2",
|
85
|
+
"rollup": "^2.33.1",
|
86
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
87
|
+
"rollup-plugin-typescript2": "^0.31.0",
|
88
|
+
"typescript": "^4.5.2"
|
89
|
+
},
|
90
|
+
"publishConfig": {
|
91
|
+
"registry": "https://registry.npmjs.org"
|
92
|
+
}
|
93
|
+
}
|