@eclass/ui-kit 1.5.1 → 1.5.2
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/atoms/Icons/ArrowRight.d.ts +1 -1
- package/dist/atoms/Icons/{Icon.d.ts → Base.d.ts} +1 -1
- package/dist/atoms/Icons/Certificate.d.ts +1 -1
- package/dist/atoms/Icons/CircularCheck.d.ts +1 -1
- package/dist/atoms/Icons/CircularInformation.d.ts +1 -1
- package/dist/atoms/Icons/Profile.d.ts +1 -1
- package/dist/atoms/Icons/Schedule.d.ts +1 -1
- package/dist/eclass-ui-kit.es.js +65 -54
- package/dist/eclass-ui-kit.es.js.map +1 -1
- package/dist/eclass-ui-kit.umd.js +6 -6
- package/dist/eclass-ui-kit.umd.js.map +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/theme/colors.d.ts +8 -2
- package/dist/theme/index.d.ts +0 -5
- package/dist/theme/typography.d.ts +11 -0
- package/dist/theme/utils.d.ts +30 -0
- package/package.json +6 -5
- package/dist/components/TestVars.d.ts +0 -6
package/dist/index.d.ts
CHANGED
package/dist/theme/colors.d.ts
CHANGED
|
@@ -1,9 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Valores definidos en el sistema de diseños eclass.
|
|
3
|
+
* @see https://zeroheight.com/15698077d/p/435a07-paleta-de-colores
|
|
4
|
+
*/
|
|
1
5
|
export declare const colors: {
|
|
2
6
|
main: {
|
|
3
|
-
blueGrey: string;
|
|
4
7
|
deepSkyBlue: string;
|
|
5
|
-
|
|
8
|
+
azureRadiance: string;
|
|
9
|
+
blueGrey: string;
|
|
6
10
|
veryLightBlue: string;
|
|
11
|
+
linkWater: string;
|
|
12
|
+
ziggurat: string;
|
|
7
13
|
};
|
|
8
14
|
secondary: {
|
|
9
15
|
pumpkin: string;
|
package/dist/theme/index.d.ts
CHANGED
|
@@ -1,7 +1,2 @@
|
|
|
1
|
-
import '@fontsource/roboto/700.css';
|
|
2
|
-
import '@fontsource/roboto/500.css';
|
|
3
|
-
import '@fontsource/roboto/400.css';
|
|
4
|
-
import '@fontsource/roboto/300.css';
|
|
5
|
-
import '@fontsource/lora/400.css';
|
|
6
1
|
export declare const theme: import("@chakra-ui/utils").Dict<any>;
|
|
7
2
|
export declare const vars: (value: string) => string;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import '@fontsource/roboto/700.css';
|
|
2
|
+
import '@fontsource/roboto/500.css';
|
|
3
|
+
import '@fontsource/roboto/400.css';
|
|
4
|
+
import '@fontsource/roboto/300.css';
|
|
5
|
+
import '@fontsource/lora/400.css';
|
|
6
|
+
export declare const typography: {
|
|
7
|
+
fonts: {
|
|
8
|
+
body: string;
|
|
9
|
+
outstanding: string;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export declare const borders: {
|
|
2
|
+
normal: string;
|
|
3
|
+
light: string;
|
|
4
|
+
active: string;
|
|
5
|
+
success: string;
|
|
6
|
+
error: string;
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* Valores definidos en el sistema de diseños eclass.
|
|
10
|
+
* @see https://zeroheight.com/15698077d/p/48fae4-eclass-sistema-de-diseo
|
|
11
|
+
*/
|
|
12
|
+
export declare const radii: {
|
|
13
|
+
small: string;
|
|
14
|
+
big: string;
|
|
15
|
+
rounded: string;
|
|
16
|
+
};
|
|
17
|
+
export declare const utils: {
|
|
18
|
+
borders: {
|
|
19
|
+
normal: string;
|
|
20
|
+
light: string;
|
|
21
|
+
active: string;
|
|
22
|
+
success: string;
|
|
23
|
+
error: string;
|
|
24
|
+
};
|
|
25
|
+
radii: {
|
|
26
|
+
small: string;
|
|
27
|
+
big: string;
|
|
28
|
+
rounded: string;
|
|
29
|
+
};
|
|
30
|
+
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eclass/ui-kit",
|
|
3
3
|
"description": "Elementos UI transversales eClass",
|
|
4
|
-
"version": "1.5.
|
|
4
|
+
"version": "1.5.2",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
7
7
|
],
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@babel/core": "7.15.8",
|
|
62
|
-
"@commitlint/cli": "
|
|
63
|
-
"@commitlint/config-conventional": "
|
|
62
|
+
"@commitlint/cli": "13.2.1",
|
|
63
|
+
"@commitlint/config-conventional": "13.2.0",
|
|
64
64
|
"@semantic-release/changelog": "5.0.1",
|
|
65
65
|
"@semantic-release/git": "9.0.1",
|
|
66
66
|
"@storybook/addon-actions": "6.3.12",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"@testing-library/user-event": "13.5.0",
|
|
75
75
|
"@types/jest": "27.0.2",
|
|
76
76
|
"@types/react": "17.0.30",
|
|
77
|
-
"@types/react-dom": "17.0.
|
|
77
|
+
"@types/react-dom": "17.0.10",
|
|
78
78
|
"@typescript-eslint/eslint-plugin": "4.33.0",
|
|
79
79
|
"@typescript-eslint/parser": "4.33.0",
|
|
80
80
|
"@vitejs/plugin-react": "1.0.5",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"eslint-plugin-jest": "24.7.0",
|
|
91
91
|
"eslint-plugin-jest-dom": "3.9.2",
|
|
92
92
|
"eslint-plugin-jsx-a11y": "6.4.1",
|
|
93
|
-
"eslint-plugin-mdx": "1.
|
|
93
|
+
"eslint-plugin-mdx": "1.16.0",
|
|
94
94
|
"eslint-plugin-node": "11.1.0",
|
|
95
95
|
"eslint-plugin-prettier": "4.0.0",
|
|
96
96
|
"eslint-plugin-promise": "5.1.0",
|
|
@@ -100,6 +100,7 @@
|
|
|
100
100
|
"eslint-plugin-testing-library": "4.12.4",
|
|
101
101
|
"husky": "7.0.2",
|
|
102
102
|
"jest": "27.3.1",
|
|
103
|
+
"identity-obj-proxy": "3.0.0",
|
|
103
104
|
"jest-watch-typeahead": "1.0.0",
|
|
104
105
|
"lint-staged": "11.2.3",
|
|
105
106
|
"prettier": "2.4.1",
|