@obolnetwork/obol-ui 1.0.1
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 +34 -0
- package/dist/components/atoms/Box/Box.d.ts +472 -0
- package/dist/components/atoms/Button/Button.d.ts +495 -0
- package/dist/components/atoms/Link/Link.d.ts +493 -0
- package/dist/components/atoms/LoadingButton/LoadingButton.d.ts +8 -0
- package/dist/components/atoms/Spin/Spin.d.ts +476 -0
- package/dist/components/atoms/SvgIcon/SvgIcon.d.ts +480 -0
- package/dist/components/atoms/Tabs/Tabs.d.ts +1890 -0
- package/dist/components/atoms/Text/Text.d.ts +503 -0
- package/dist/components/atoms/index.d.ts +7 -0
- package/dist/components/icons/ArrowForward.d.ts +2 -0
- package/dist/components/icons/Download.d.ts +2 -0
- package/dist/components/icons/OpenInNew.d.ts +2 -0
- package/dist/components/icons/index.d.ts +11 -0
- package/dist/components/icons/static-icons/CodeIcon.d.ts +1 -0
- package/dist/components/icons/static-icons/MenuIcon.d.ts +1 -0
- package/dist/components/icons/static-icons/PublicGoodIcon.d.ts +1 -0
- package/dist/components/icons/static-icons/TrustMinimisedIcon.d.ts +1 -0
- package/dist/components/icons/static-icons/obol/circle/ObolDarkCircle.d.ts +1 -0
- package/dist/components/icons/static-icons/obol/circle/ObolLightCircle.d.ts +1 -0
- package/dist/components/icons/static-icons/obol/circle/index.d.ts +2 -0
- package/dist/components/icons/static-icons/obol/horizontal/ObolDarkBgH.d.ts +1 -0
- package/dist/components/icons/static-icons/obol/horizontal/ObolLightBgH.d.ts +1 -0
- package/dist/components/icons/static-icons/obol/horizontal/ObolSolidDarkBgH.d.ts +1 -0
- package/dist/components/icons/static-icons/obol/horizontal/ObolSolidLightBgH.d.ts +1 -0
- package/dist/components/icons/static-icons/obol/horizontal/index.d.ts +4 -0
- package/dist/components/icons/static-icons/obol/mark/ObolDarkBgMark.d.ts +1 -0
- package/dist/components/icons/static-icons/obol/mark/ObolLightBgMark.d.ts +1 -0
- package/dist/components/icons/static-icons/obol/mark/ObolSolidDarkBgMark.d.ts +1 -0
- package/dist/components/icons/static-icons/obol/mark/ObolSolidLightBgMark.d.ts +1 -0
- package/dist/components/icons/static-icons/obol/mark/index.d.ts +4 -0
- package/dist/components/icons/static-icons/obol/vertical/ObolDarkBgV.d.ts +1 -0
- package/dist/components/icons/static-icons/obol/vertical/ObolLightBgV.d.ts +1 -0
- package/dist/components/icons/static-icons/obol/vertical/ObolSolidDarkBgV.d.ts +1 -0
- package/dist/components/icons/static-icons/obol/vertical/ObolSolidLightBgV.d.ts +1 -0
- package/dist/components/icons/static-icons/obol/vertical/index.d.ts +4 -0
- package/dist/components/molecules/Card/Card.d.ts +9 -0
- package/dist/components/molecules/index.d.ts +1 -0
- package/dist/components/organisms/HeroSection/HeroSection.d.ts +14 -0
- package/dist/components/organisms/hero-section/hero-section.d.ts +14 -0
- package/dist/components/organisms/index.d.ts +1 -0
- package/dist/components/utils/color-variants.d.ts +59 -0
- package/dist/components/utils/hooks/index.d.ts +1 -0
- package/dist/components/utils/hooks/use-media-query.d.ts +10 -0
- package/dist/components/utils/styles.d.ts +472 -0
- package/dist/components/utils/types.d.ts +13 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.es.js +933 -0
- package/dist/index.js +1002 -0
- package/dist/scripts/figma-colors.d.ts +1 -0
- package/dist/stitches.config.d.ts +3199 -0
- package/package.json +55 -0
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@obolnetwork/obol-ui",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"main": "dist/index.js",
|
|
5
|
+
"module": "dist/index.es.js",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"types": "dist/index.d.ts",
|
|
11
|
+
"scripts": {
|
|
12
|
+
"dev": "next dev",
|
|
13
|
+
"build": "next build",
|
|
14
|
+
"start": "next start",
|
|
15
|
+
"lint": "next lint",
|
|
16
|
+
"storybook": "start-storybook -p 6006",
|
|
17
|
+
"build-storybook": "build-storybook",
|
|
18
|
+
"ds:build": "rollup -c",
|
|
19
|
+
"ds:release": "yarn ds:build && np"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@radix-ui/react-accordion": "^0.1.6",
|
|
23
|
+
"@radix-ui/react-tabs": "^0.1.5",
|
|
24
|
+
"@radix-ui/react-toggle-group": "^0.1.5",
|
|
25
|
+
"@stitches/react": "~1.2.8",
|
|
26
|
+
"next": "12.1.0",
|
|
27
|
+
"react": "17.0.2",
|
|
28
|
+
"react-dom": "17.0.2"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@babel/core": "^7.17.8",
|
|
32
|
+
"@storybook/addon-actions": "^6.4.20",
|
|
33
|
+
"@storybook/addon-essentials": "^6.4.20",
|
|
34
|
+
"@storybook/addon-interactions": "^6.4.20",
|
|
35
|
+
"@storybook/addon-links": "^6.4.20",
|
|
36
|
+
"@storybook/react": "^6.4.20",
|
|
37
|
+
"@storybook/testing-library": "^0.0.9",
|
|
38
|
+
"@types/node": "17.0.21",
|
|
39
|
+
"@types/react": "17.0.40",
|
|
40
|
+
"babel-loader": "^8.2.4",
|
|
41
|
+
"eslint": "8.11.0",
|
|
42
|
+
"eslint-config-next": "12.1.0",
|
|
43
|
+
"figma-api": "^1.10.1",
|
|
44
|
+
"np": "^7.6.1",
|
|
45
|
+
"rollup": "^2.70.1",
|
|
46
|
+
"rollup-plugin-typescript2": "^0.31.2",
|
|
47
|
+
"storybook-addon-designs": "^6.2.1",
|
|
48
|
+
"tslib": "^2.3.1",
|
|
49
|
+
"typescript": "^4.6.3"
|
|
50
|
+
},
|
|
51
|
+
"publishConfig": {
|
|
52
|
+
"registry": "https://registry.npmjs.org/",
|
|
53
|
+
"access": "public"
|
|
54
|
+
}
|
|
55
|
+
}
|