analytica-frontend-lib 1.0.68 → 1.0.71
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/Accordation/index.d.mts +12 -0
- package/dist/Accordation/index.d.ts +12 -0
- package/dist/Accordation/index.js +1663 -0
- package/dist/Accordation/index.js.map +1 -0
- package/dist/Accordation/index.mjs +1654 -0
- package/dist/Accordation/index.mjs.map +1 -0
- package/dist/AlertDialog/index.d.mts +40 -0
- package/dist/AlertDialog/index.d.ts +40 -0
- package/dist/AlertDialog/index.js +233 -0
- package/dist/AlertDialog/index.js.map +1 -0
- package/dist/AlertDialog/index.mjs +212 -0
- package/dist/AlertDialog/index.mjs.map +1 -0
- package/dist/Alternative/index.d.mts +81 -0
- package/dist/Alternative/index.d.ts +81 -0
- package/dist/Alternative/index.js +745 -0
- package/dist/Alternative/index.js.map +1 -0
- package/dist/Alternative/index.mjs +728 -0
- package/dist/Alternative/index.mjs.map +1 -0
- package/dist/Auth/index.d.mts +218 -0
- package/dist/Auth/index.d.ts +218 -0
- package/dist/Auth/index.js +190 -0
- package/dist/Auth/index.js.map +1 -0
- package/dist/Auth/index.mjs +166 -0
- package/dist/Auth/index.mjs.map +1 -0
- package/dist/Badge/index.js +1 -1
- package/dist/Badge/index.js.map +1 -1
- package/dist/Badge/index.mjs +1 -1
- package/dist/Badge/index.mjs.map +1 -1
- package/dist/Card/index.js +1 -1
- package/dist/Card/index.js.map +1 -1
- package/dist/Card/index.mjs +1 -1
- package/dist/Card/index.mjs.map +1 -1
- package/dist/Radio/index.d.mts +120 -2
- package/dist/Radio/index.d.ts +120 -2
- package/dist/Radio/index.js +176 -3
- package/dist/Radio/index.js.map +1 -1
- package/dist/Radio/index.mjs +176 -4
- package/dist/Radio/index.mjs.map +1 -1
- package/dist/Skeleton/index.d.mts +10 -9
- package/dist/Skeleton/index.d.ts +10 -9
- package/dist/Skeleton/index.js.map +1 -1
- package/dist/Skeleton/index.mjs.map +1 -1
- package/dist/Tab/index.d.mts +37 -0
- package/dist/Tab/index.d.ts +37 -0
- package/dist/Tab/index.js +182 -0
- package/dist/Tab/index.js.map +1 -0
- package/dist/Tab/index.mjs +161 -0
- package/dist/Tab/index.mjs.map +1 -0
- package/dist/index.css +261 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +6 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +2655 -1736
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2712 -1790
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +261 -0
- package/dist/styles.css.map +1 -1
- package/package.json +9 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "analytica-frontend-lib",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.71",
|
|
4
4
|
"description": "Repositório público dos componentes utilizados nas plataformas da Analytica Ensino",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -20,7 +20,11 @@
|
|
|
20
20
|
"require": "./dist/index.js"
|
|
21
21
|
},
|
|
22
22
|
"./styles.css": "./dist/styles.css",
|
|
23
|
+
"./accordation": "./dist/Accordation/index.js",
|
|
23
24
|
"./alert": "./dist/Alert/index.js",
|
|
25
|
+
"./alert-dialog": "./dist/AlertDialog/index.js",
|
|
26
|
+
"./alternative": "./dist/Alternative/index.js",
|
|
27
|
+
"./auth": "./dist/Auth/index.js",
|
|
24
28
|
"./badge": "./dist/Badge/index.js",
|
|
25
29
|
"./button": "./dist/Button/index.js",
|
|
26
30
|
"./calendar": "./dist/Calendar/index.js",
|
|
@@ -42,6 +46,7 @@
|
|
|
42
46
|
"./selection-button": "./dist/SelectionButton/index.js",
|
|
43
47
|
"./skeleton": "./dist/Skeleton/index.js",
|
|
44
48
|
"./stepper": "./dist/Stepper/index.js",
|
|
49
|
+
"./tab": "./dist/Tab/index.js",
|
|
45
50
|
"./table": "./dist/Table/index.js",
|
|
46
51
|
"./text": "./dist/Text/index.js",
|
|
47
52
|
"./text-area": "./dist/TextArea/index.js",
|
|
@@ -94,7 +99,8 @@
|
|
|
94
99
|
},
|
|
95
100
|
"peerDependencies": {
|
|
96
101
|
"react": ">=19.0.0",
|
|
97
|
-
"react-dom": ">=19.0.0"
|
|
102
|
+
"react-dom": ">=19.0.0",
|
|
103
|
+
"react-router-dom": "^7.6.2"
|
|
98
104
|
},
|
|
99
105
|
"dependencies": {
|
|
100
106
|
"phosphor-react": "^1.4.1",
|
|
@@ -131,6 +137,7 @@
|
|
|
131
137
|
"prettier": "^3.5.3",
|
|
132
138
|
"react": "^19.1.0",
|
|
133
139
|
"react-dom": "^19.1.0",
|
|
140
|
+
"react-router-dom": "^7.6.2",
|
|
134
141
|
"sonarqube-scanner": "^4.3.0",
|
|
135
142
|
"tailwindcss": "^4.1.8",
|
|
136
143
|
"ts-jest": "^29.3.4",
|