@grupor5/raya 0.2.4 → 0.2.5
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/normalize.css +35 -0
- package/package.json +3 -2
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/* normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
|
|
2
|
+
html{line-height:1.15;-webkit-text-size-adjust:100%}
|
|
3
|
+
body{margin:0}
|
|
4
|
+
main{display:block}
|
|
5
|
+
h1{font-size:2em;margin:0.67em 0}
|
|
6
|
+
hr{box-sizing:content-box;height:0;overflow:visible}
|
|
7
|
+
pre{font-family:monospace,monospace;font-size:1em}
|
|
8
|
+
a{background-color:transparent}
|
|
9
|
+
abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}
|
|
10
|
+
b,strong{font-weight:bolder}
|
|
11
|
+
code,kbd,samp{font-family:monospace,monospace;font-size:1em}
|
|
12
|
+
small{font-size:80%}
|
|
13
|
+
sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
|
|
14
|
+
sup{top:-0.5em}
|
|
15
|
+
sub{bottom:-0.25em}
|
|
16
|
+
img{border-style:none}
|
|
17
|
+
button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}
|
|
18
|
+
button,input{overflow:visible}
|
|
19
|
+
button,select{text-transform:none}
|
|
20
|
+
button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}
|
|
21
|
+
button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}
|
|
22
|
+
button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}
|
|
23
|
+
fieldset{padding:0.35em 0.75em 0.625em}
|
|
24
|
+
legend{box-sizing:border-box;display:table;max-width:100%;padding:0;color:inherit;white-space:normal}
|
|
25
|
+
progress{vertical-align:baseline}
|
|
26
|
+
textarea{overflow:auto}
|
|
27
|
+
[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}
|
|
28
|
+
[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}
|
|
29
|
+
[type=search]{-webkit-appearance:textfield;outline-offset:-2px}
|
|
30
|
+
[type=search]::-webkit-search-decoration{-webkit-appearance:none}
|
|
31
|
+
::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}
|
|
32
|
+
details{display:block}
|
|
33
|
+
summary{display:list-item}
|
|
34
|
+
template{display:none}
|
|
35
|
+
[hidden]{display:none}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grupor5/raya",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.mjs",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
},
|
|
38
38
|
"./styles/*": "./dist/styles/*",
|
|
39
39
|
"./dist/tailwind.css": "./dist/tailwind.css",
|
|
40
|
+
"./dist/normalize.css": "./dist/normalize.css",
|
|
40
41
|
"./tailwind.config.js": "./tailwind.config.js"
|
|
41
42
|
},
|
|
42
43
|
"files": [
|
|
@@ -56,7 +57,7 @@
|
|
|
56
57
|
],
|
|
57
58
|
"scripts": {
|
|
58
59
|
"dev": "tsup --watch",
|
|
59
|
-
"build": "tsup && tailwindcss -i ./src/styles/globals.css -o ./dist/tailwind.css --minify",
|
|
60
|
+
"build": "tsup && tailwindcss -i ./src/styles/globals.css -o ./dist/tailwind.css --minify && cp ./src/styles/normalize.css ./dist/normalize.css",
|
|
60
61
|
"clean": "rm -rf dist",
|
|
61
62
|
"storybook": "storybook dev -p 6006",
|
|
62
63
|
"build-storybook": "storybook build",
|