@itcase/ui 1.8.118 → 1.8.120
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/{Button_cjs_CvczxroQ.js → Button_cjs_3BTD8Mlm.js} +63 -63
- package/dist/{Button_es_BmbsQu5F.js → Button_es_B_k-SP92.js} +63 -63
- package/dist/{DatePicker_cjs_DYXNxuUF.js → DatePicker_cjs_BLkZB0S0.js} +1 -1
- package/dist/{DatePicker_es_lMIvYFM6.js → DatePicker_es_CKrgRUWu.js} +1 -1
- package/dist/cjs/components/Button.js +1 -1
- package/dist/cjs/components/Checkbox.js +2 -2
- package/dist/cjs/components/CookiesWarning.js +1 -1
- package/dist/cjs/components/DatePeriod.js +2 -2
- package/dist/cjs/components/DatePicker.js +2 -2
- package/dist/cjs/components/Response.js +1 -1
- package/dist/cjs/components/Swiper.js +12 -6
- package/dist/components/Button.js +1 -1
- package/dist/components/Checkbox.js +2 -2
- package/dist/components/CookiesWarning.js +1 -1
- package/dist/components/DatePeriod.js +2 -2
- package/dist/components/DatePicker.js +2 -2
- package/dist/components/Response.js +1 -1
- package/dist/components/Swiper.js +12 -6
- package/dist/types/components/Button/Button.appearance.d.ts +2612 -2
- package/dist/types/components/Button/Button.d.ts +71 -2
- package/dist/types/components/Button/Button.interface.d.ts +67 -60
- package/dist/types/components/Button/appearance/buttonAccent.d.ts +2 -35
- package/dist/types/components/Button/appearance/buttonDanger.d.ts +2 -23
- package/dist/types/components/Button/appearance/buttonError.d.ts +2 -33
- package/dist/types/components/Button/appearance/buttonInfo.d.ts +2 -46
- package/dist/types/components/Button/appearance/buttonPrimary.d.ts +2 -30
- package/dist/types/components/Button/appearance/buttonSecondary.d.ts +2 -30
- package/dist/types/components/Button/appearance/buttonShape.d.ts +2 -24
- package/dist/types/components/Button/appearance/buttonSize.d.ts +2 -65
- package/dist/types/components/Button/appearance/buttonStyle.d.ts +2 -13
- package/dist/types/components/Button/appearance/buttonSuccess.d.ts +2 -33
- package/dist/types/components/Button/appearance/buttonSurface.d.ts +2 -51
- package/dist/types/components/Button/appearance/buttonWarning.d.ts +2 -33
- package/dist/types/components/Checkbox/appearance/checkboxRequire.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1,34 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
fill: string;
|
|
4
|
-
fillHover: string;
|
|
5
|
-
labelTextColor: string;
|
|
6
|
-
labelTextColorHover: string;
|
|
7
|
-
iconAfterFillIcon: string;
|
|
8
|
-
iconBeforeFillIcon: string;
|
|
9
|
-
iconFillIcon: string;
|
|
10
|
-
loaderAppearance: string;
|
|
11
|
-
};
|
|
12
|
-
warningMutedPrimary: {
|
|
13
|
-
fill: string;
|
|
14
|
-
fillHover: string;
|
|
15
|
-
labelTextColor: string;
|
|
16
|
-
labelTextColorHover: string;
|
|
17
|
-
borderColor: string;
|
|
18
|
-
iconAfterFillIcon: string;
|
|
19
|
-
iconBeforeFillIcon: string;
|
|
20
|
-
iconFillIcon: string;
|
|
21
|
-
loaderAppearance: string;
|
|
22
|
-
};
|
|
23
|
-
warningPrimary: {
|
|
24
|
-
fill: string;
|
|
25
|
-
fillHover: string;
|
|
26
|
-
labelTextColor: string;
|
|
27
|
-
labelTextColorHover: string;
|
|
28
|
-
iconAfterFillIcon: string;
|
|
29
|
-
iconBeforeFillIcon: string;
|
|
30
|
-
iconFillIcon: string;
|
|
31
|
-
loaderAppearance: string;
|
|
32
|
-
};
|
|
33
|
-
};
|
|
1
|
+
import { ButtonAppearance } from '../Button.interface';
|
|
2
|
+
declare const buttonAppearanceWarning: ButtonAppearance;
|
|
34
3
|
export { buttonAppearanceWarning };
|
|
@@ -5,12 +5,12 @@ declare const checkboxAppearanceRequire: {
|
|
|
5
5
|
fillCheckboxActiveHover: string;
|
|
6
6
|
fillCheckboxHover: string;
|
|
7
7
|
fillCheckmark: string;
|
|
8
|
-
labelTextColor: string;
|
|
9
|
-
descTextColor: string;
|
|
10
8
|
borderColorCheckbox: string;
|
|
11
9
|
borderColorCheckboxActive: string;
|
|
12
10
|
borderColorCheckboxActiveHover: string;
|
|
13
11
|
borderColorCheckboxHover: string;
|
|
12
|
+
labelTextColor: string;
|
|
13
|
+
descTextColor: string;
|
|
14
14
|
};
|
|
15
15
|
requireSecondary: {
|
|
16
16
|
fill: string;
|