@grazziotin/react-components 1.0.4 → 1.0.6
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/theme.css +25 -7
- package/package.json +17 -14
package/dist/theme.css
CHANGED
|
@@ -267,6 +267,24 @@
|
|
|
267
267
|
.float-right {
|
|
268
268
|
float: right !important;
|
|
269
269
|
}
|
|
270
|
+
.\!container {
|
|
271
|
+
width: 100% !important;
|
|
272
|
+
@media (width >= 40rem) {
|
|
273
|
+
max-width: 40rem !important;
|
|
274
|
+
}
|
|
275
|
+
@media (width >= 48rem) {
|
|
276
|
+
max-width: 48rem !important;
|
|
277
|
+
}
|
|
278
|
+
@media (width >= 64rem) {
|
|
279
|
+
max-width: 64rem !important;
|
|
280
|
+
}
|
|
281
|
+
@media (width >= 80rem) {
|
|
282
|
+
max-width: 80rem !important;
|
|
283
|
+
}
|
|
284
|
+
@media (width >= 87.5rem) {
|
|
285
|
+
max-width: 87.5rem !important;
|
|
286
|
+
}
|
|
287
|
+
}
|
|
270
288
|
.container {
|
|
271
289
|
width: 100% !important;
|
|
272
290
|
@media (width >= 40rem) {
|
|
@@ -306,6 +324,9 @@
|
|
|
306
324
|
.mb-4 {
|
|
307
325
|
margin-bottom: var(--spacing-4) !important;
|
|
308
326
|
}
|
|
327
|
+
.\!hidden {
|
|
328
|
+
display: none !important;
|
|
329
|
+
}
|
|
309
330
|
.block {
|
|
310
331
|
display: block !important;
|
|
311
332
|
}
|
|
@@ -369,19 +390,12 @@
|
|
|
369
390
|
.table-row-group {
|
|
370
391
|
display: table-row-group !important;
|
|
371
392
|
}
|
|
372
|
-
.size-1 {
|
|
373
|
-
width: calc(var(--spacing) * 1) !important;
|
|
374
|
-
height: calc(var(--spacing) * 1) !important;
|
|
375
|
-
}
|
|
376
393
|
.h-5 {
|
|
377
394
|
height: calc(var(--spacing) * 5) !important;
|
|
378
395
|
}
|
|
379
396
|
.h-6 {
|
|
380
397
|
height: var(--spacing-6) !important;
|
|
381
398
|
}
|
|
382
|
-
.h-7 {
|
|
383
|
-
height: calc(var(--spacing) * 7) !important;
|
|
384
|
-
}
|
|
385
399
|
.h-9 {
|
|
386
400
|
height: calc(var(--spacing) * 9) !important;
|
|
387
401
|
}
|
|
@@ -955,6 +969,10 @@
|
|
|
955
969
|
--tw-ease: var(--ease-out) !important;
|
|
956
970
|
transition-timing-function: var(--ease-out) !important;
|
|
957
971
|
}
|
|
972
|
+
.select-all {
|
|
973
|
+
-webkit-user-select: all !important;
|
|
974
|
+
user-select: all !important;
|
|
975
|
+
}
|
|
958
976
|
.select-none {
|
|
959
977
|
-webkit-user-select: none !important;
|
|
960
978
|
user-select: none !important;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grazziotin/react-components",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Biblioteca de componentes React em TypeScript desenvolvida para uso interno",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"storybook": "storybook dev -p 6006",
|
|
18
18
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
19
19
|
"tsc": "tsc -d",
|
|
20
|
-
"
|
|
20
|
+
"patch:storybook-exports": "node scripts/patch-storybook-package-exports.mjs",
|
|
21
21
|
"prepublishOnly": "npm run tsc && npm run build && npm run build:css && npm run build:fonts"
|
|
22
22
|
},
|
|
23
23
|
"repository": {
|
|
@@ -25,12 +25,11 @@
|
|
|
25
25
|
"url": "git+https://github.com/GrazziotinSA/react-components.git"
|
|
26
26
|
},
|
|
27
27
|
"keywords": [
|
|
28
|
+
"grazziotin",
|
|
28
29
|
"react",
|
|
29
30
|
"typescript",
|
|
30
31
|
"components",
|
|
31
|
-
"library"
|
|
32
|
-
"input",
|
|
33
|
-
"mui"
|
|
32
|
+
"library"
|
|
34
33
|
],
|
|
35
34
|
"author": "GrazziotinSA",
|
|
36
35
|
"contributors": [
|
|
@@ -47,30 +46,34 @@
|
|
|
47
46
|
"bugs": {
|
|
48
47
|
"url": "https://github.com/GrazziotinSA/react-components/issues"
|
|
49
48
|
},
|
|
50
|
-
"homepage": "https://github.
|
|
49
|
+
"homepage": "https://grazziotinsa.github.io/react-components/",
|
|
51
50
|
"publishConfig": {
|
|
52
51
|
"registry": "https://registry.npmjs.org/"
|
|
53
52
|
},
|
|
54
|
-
"dependencies": {
|
|
55
|
-
"@mantine/core": "^8.3.14",
|
|
56
|
-
"@mantine/hooks": "^8.3.14",
|
|
57
|
-
"exceljs": "^4.4.0",
|
|
58
|
-
"quagga": "^0.6.16",
|
|
59
|
-
"react-imask": "^7.6.1"
|
|
60
|
-
},
|
|
53
|
+
"dependencies": {},
|
|
61
54
|
"peerDependencies": {
|
|
55
|
+
"@mantine/core": ">=8.0.0",
|
|
56
|
+
"@mantine/hooks": ">=8.0.0",
|
|
62
57
|
"@mui/icons-material": ">=7.0.0",
|
|
63
58
|
"@mui/material": ">=7.0.0",
|
|
64
59
|
"@mui/x-data-grid": ">=7.0.0",
|
|
60
|
+
"exceljs": ">=4.0.0",
|
|
61
|
+
"quagga": ">=0.6.0",
|
|
65
62
|
"react": ">=17.0.0",
|
|
66
|
-
"react-dom": ">=17.0.0"
|
|
63
|
+
"react-dom": ">=17.0.0",
|
|
64
|
+
"react-imask": ">=7.0.0"
|
|
67
65
|
},
|
|
68
66
|
"devDependencies": {
|
|
67
|
+
"@mantine/core": "^8.3.14",
|
|
68
|
+
"@mantine/hooks": "^8.3.14",
|
|
69
69
|
"@emotion/react": "^11.14.0",
|
|
70
70
|
"@emotion/styled": "^11.14.0",
|
|
71
71
|
"@mui/icons-material": "^7.3.7",
|
|
72
72
|
"@mui/material": "^7.3.7",
|
|
73
73
|
"@mui/x-data-grid": "^7.22.0",
|
|
74
|
+
"exceljs": "^4.4.0",
|
|
75
|
+
"quagga": "^0.6.16",
|
|
76
|
+
"react-imask": "^7.6.1",
|
|
74
77
|
"@rocketseat/eslint-config": "^2.2.2",
|
|
75
78
|
"@storybook/addon-docs": "^10.2.8",
|
|
76
79
|
"@storybook/react": "^10.2.8",
|