pipesol-button 1.0.0-beta.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 +31 -0
- package/dist/app/layout.d.ts +6 -0
- package/dist/app/layout.js +19 -0
- package/dist/app/layout.js.map +1 -0
- package/dist/app/page.d.ts +1 -0
- package/dist/app/page.js +6 -0
- package/dist/app/page.js.map +1 -0
- package/dist/components/ButtonStyled.d.ts +18 -0
- package/dist/components/ButtonStyled.js +56 -0
- package/dist/components/ButtonStyled.js.map +1 -0
- package/dist/components/NavigationButton.d.ts +19 -0
- package/dist/components/NavigationButton.js +55 -0
- package/dist/components/NavigationButton.js.map +1 -0
- package/dist/components/NavigationButtonMotion.d.ts +19 -0
- package/dist/components/NavigationButtonMotion.js +64 -0
- package/dist/components/NavigationButtonMotion.js.map +1 -0
- package/dist/components/NavigationHamburguerButton.d.ts +17 -0
- package/dist/components/NavigationHamburguerButton.js +33 -0
- package/dist/components/NavigationHamburguerButton.js.map +1 -0
- package/dist/components/ScrollToTopButton.d.ts +10 -0
- package/dist/components/ScrollToTopButton.js +44 -0
- package/dist/components/ScrollToTopButton.js.map +1 -0
- package/dist/components/WhatsAppButton.d.ts +6 -0
- package/dist/components/WhatsAppButton.js +24 -0
- package/dist/components/WhatsAppButton.js.map +1 -0
- package/dist/components/WhatsAppIcon.d.ts +6 -0
- package/dist/components/WhatsAppIcon.js +18 -0
- package/dist/components/WhatsAppIcon.js.map +1 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -0
- package/dist/pages/_app.d.ts +2 -0
- package/dist/pages/_app.js +20 -0
- package/dist/pages/_app.js.map +1 -0
- package/dist/pages/_document.d.ts +9 -0
- package/dist/pages/_document.js +33 -0
- package/dist/pages/_document.js.map +1 -0
- package/dist/theme.d.ts +35 -0
- package/dist/theme.js +142 -0
- package/dist/theme.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/types/DataCard.d.ts +6 -0
- package/dist/types/DataCard.js +2 -0
- package/dist/types/DataCard.js.map +1 -0
- package/dist/types/ShadowConfig.d.ts +6 -0
- package/dist/types/ShadowConfig.js +2 -0
- package/dist/types/ShadowConfig.js.map +1 -0
- package/package.json +50 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DataCard.js","sourceRoot":"","sources":["../../src/types/DataCard.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ShadowConfig.js","sourceRoot":"","sources":["../../src/types/ShadowConfig.tsx"],"names":[],"mappings":""}
|
package/package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pipesol-button",
|
|
3
|
+
"version": "1.0.0-beta.1",
|
|
4
|
+
"main": "dist/index.js",
|
|
5
|
+
"module": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"require": "./dist/index.js"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "tsc",
|
|
18
|
+
"prepare": "npm run build",
|
|
19
|
+
"start": "next start",
|
|
20
|
+
"lint": "next lint",
|
|
21
|
+
"release-beta": "npm run build && npm publish --tag beta",
|
|
22
|
+
"release": "npm run build && npm publish"
|
|
23
|
+
},
|
|
24
|
+
"peerDependencies": {
|
|
25
|
+
"@emotion/react": "^11.14.0",
|
|
26
|
+
"@emotion/styled": "^11.14.1",
|
|
27
|
+
"@mui/icons-material": "^6.4.4 || ^7.3.0",
|
|
28
|
+
"@mui/material": "^6.4.4 || ^7.3.0",
|
|
29
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
30
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@emotion/css": "^11.13.5",
|
|
34
|
+
"@emotion/react": "^11.14.0",
|
|
35
|
+
"@emotion/server": "^11.11.0",
|
|
36
|
+
"@emotion/styled": "^11.14.1",
|
|
37
|
+
"@eslint/eslintrc": "^3",
|
|
38
|
+
"@mui/icons-material": "^7.3.0",
|
|
39
|
+
"@mui/material": "^7.3.0",
|
|
40
|
+
"@types/node": "^20",
|
|
41
|
+
"@types/react": "^19.0.8",
|
|
42
|
+
"@types/react-dom": "^19",
|
|
43
|
+
"@types/react-input-mask": "^3.0.6",
|
|
44
|
+
"eslint": "^9",
|
|
45
|
+
"eslint-config-next": "15.1.6",
|
|
46
|
+
"framer-motion": "^12.9.4",
|
|
47
|
+
"next": "^15.2.3",
|
|
48
|
+
"typescript": "^5"
|
|
49
|
+
}
|
|
50
|
+
}
|