@trafilea/afrodita-components 4.4.0-beta.7 → 5.0.0-beta.10
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/build/index.d.ts +59 -10
- package/build/index.esm.js +4397 -516
- package/build/index.esm.js.map +1 -1
- package/build/index.js +4493 -610
- package/build/index.js.map +1 -1
- package/build/theme/shapermint.theme.d.ts +4 -2
- package/build/theme/shapermint.theme.js +4 -2
- package/build/theme/truekind.theme.d.ts +4 -2
- package/build/theme/truekind.theme.js +4 -2
- package/package.json +2 -1
|
@@ -376,8 +376,10 @@ declare type ThemeComponent = {
|
|
|
376
376
|
packSelector: {
|
|
377
377
|
borderRadius: string;
|
|
378
378
|
borderColor: string;
|
|
379
|
-
|
|
380
|
-
|
|
379
|
+
highlightColor: string;
|
|
380
|
+
selectedColor: string;
|
|
381
|
+
selectedContrast: string;
|
|
382
|
+
tagColor: string;
|
|
381
383
|
};
|
|
382
384
|
};
|
|
383
385
|
declare type ThemeTypography = {
|
|
@@ -472,8 +472,10 @@ var shapermint = {
|
|
|
472
472
|
packSelector: {
|
|
473
473
|
borderRadius: '8px',
|
|
474
474
|
borderColor: '--colors-shades-100-color',
|
|
475
|
-
|
|
476
|
-
|
|
475
|
+
highlightColor: '--colors-pallete-creamy-soft-color',
|
|
476
|
+
selectedColor: '--colors-semantic-positive-color',
|
|
477
|
+
selectedContrast: '--colors-semantic-positive-contrast',
|
|
478
|
+
tagColor: '--colors-semantic-attention-color',
|
|
477
479
|
},
|
|
478
480
|
},
|
|
479
481
|
typography: {
|
|
@@ -376,8 +376,10 @@ declare type ThemeComponent = {
|
|
|
376
376
|
packSelector: {
|
|
377
377
|
borderRadius: string;
|
|
378
378
|
borderColor: string;
|
|
379
|
-
|
|
380
|
-
|
|
379
|
+
highlightColor: string;
|
|
380
|
+
selectedColor: string;
|
|
381
|
+
selectedContrast: string;
|
|
382
|
+
tagColor: string;
|
|
381
383
|
};
|
|
382
384
|
};
|
|
383
385
|
declare type ThemeTypography = {
|
|
@@ -553,8 +553,10 @@ var truekind = {
|
|
|
553
553
|
packSelector: {
|
|
554
554
|
borderRadius: '8px',
|
|
555
555
|
borderColor: '--colors-shades-100-color',
|
|
556
|
-
|
|
557
|
-
|
|
556
|
+
highlightColor: '--colors-pallete-creamy-soft-color',
|
|
557
|
+
selectedColor: '--colors-semantic-positive-color',
|
|
558
|
+
selectedContrast: '--colors-semantic-positive-contrast',
|
|
559
|
+
tagColor: '--colors-semantic-attention-color',
|
|
558
560
|
},
|
|
559
561
|
},
|
|
560
562
|
fonts: {
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Trafilea's Design System",
|
|
4
4
|
"author": "Trafilea",
|
|
5
5
|
"repository": "https://github.com/trafilea/afrodita-components",
|
|
6
|
-
"version": "
|
|
6
|
+
"version": "5.0.0-beta.10",
|
|
7
7
|
"private": false,
|
|
8
8
|
"main": "build/index.js",
|
|
9
9
|
"style": "build/index.css",
|
|
@@ -90,6 +90,7 @@
|
|
|
90
90
|
"eslint": "^7.31.0",
|
|
91
91
|
"eslint-config-prettier": "^8.3.0",
|
|
92
92
|
"eslint-config-react-app": "^6.0.0",
|
|
93
|
+
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
93
94
|
"eslint-plugin-prettier": "^3.4.0",
|
|
94
95
|
"eslint-plugin-react": "^7.24.0",
|
|
95
96
|
"eslint-plugin-react-hooks": "^4.2.0",
|