@trafilea/afrodita-components 5.0.0-beta.48 → 5.0.0-beta.49
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 +29 -4
- package/build/index.esm.js +76 -36
- package/build/index.esm.js.map +1 -1
- package/build/index.js +76 -35
- package/build/index.js.map +1 -1
- package/build/theme/shapermint.theme.d.ts +6 -0
- package/build/theme/shapermint.theme.js +6 -0
- package/build/theme/truekind.theme.d.ts +6 -0
- package/build/theme/truekind.theme.js +6 -0
- package/package.json +1 -1
|
@@ -138,6 +138,12 @@ declare type ThemeComponent = {
|
|
|
138
138
|
lineHeight: string;
|
|
139
139
|
border: string;
|
|
140
140
|
boxShadow: string;
|
|
141
|
+
errorBorder: string;
|
|
142
|
+
};
|
|
143
|
+
inputPlaceholder: {
|
|
144
|
+
fontSize: string;
|
|
145
|
+
padding: string;
|
|
146
|
+
focusBorder: string;
|
|
141
147
|
};
|
|
142
148
|
inputCustom: {
|
|
143
149
|
button: {
|
|
@@ -234,6 +234,12 @@ var shapermint = {
|
|
|
234
234
|
lineHeight: '1.5rem',
|
|
235
235
|
border: '0.063rem solid var(--colors-shades-200-color)',
|
|
236
236
|
boxShadow: 'none',
|
|
237
|
+
errorBorder: '0.09375rem solid #d3373c',
|
|
238
|
+
},
|
|
239
|
+
inputPlaceholder: {
|
|
240
|
+
fontSize: '0.875rem',
|
|
241
|
+
padding: '1.125rem 0.9375rem 0 0.9375rem',
|
|
242
|
+
focusBorder: '0.09375rem solid #1990c6',
|
|
237
243
|
},
|
|
238
244
|
inputCustom: {
|
|
239
245
|
button: {
|
|
@@ -138,6 +138,12 @@ declare type ThemeComponent = {
|
|
|
138
138
|
lineHeight: string;
|
|
139
139
|
border: string;
|
|
140
140
|
boxShadow: string;
|
|
141
|
+
errorBorder: string;
|
|
142
|
+
};
|
|
143
|
+
inputPlaceholder: {
|
|
144
|
+
fontSize: string;
|
|
145
|
+
padding: string;
|
|
146
|
+
focusBorder: string;
|
|
141
147
|
};
|
|
142
148
|
inputCustom: {
|
|
143
149
|
button: {
|
|
@@ -315,6 +315,12 @@ var truekind = {
|
|
|
315
315
|
lineHeight: '1.5rem',
|
|
316
316
|
border: '0.063rem solid #BBBBBB',
|
|
317
317
|
boxShadow: '0 0 0 0.25rem #D9EEFF',
|
|
318
|
+
errorBorder: '0.09375rem solid #d3373c',
|
|
319
|
+
},
|
|
320
|
+
inputPlaceholder: {
|
|
321
|
+
fontSize: '0.875rem',
|
|
322
|
+
padding: '1.125rem 0.9375rem 0 0.9375rem',
|
|
323
|
+
focusBorder: '0.09375rem solid #1990c6',
|
|
318
324
|
},
|
|
319
325
|
inputCustom: {
|
|
320
326
|
button: {
|
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": "5.0.0-beta.
|
|
6
|
+
"version": "5.0.0-beta.49",
|
|
7
7
|
"private": false,
|
|
8
8
|
"main": "build/index.js",
|
|
9
9
|
"style": "build/index.css",
|