@megafon/ui-shared 6.13.0 → 6.14.0
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/es/components/BenefitsIcons/style/BenefitsIcons.css +2 -0
- package/dist/es/components/BenefitsIcons/style/BenefitsIconsTile.css +7 -1
- package/dist/es/components/BenefitsIcons/types.d.ts +2 -0
- package/dist/es/components/BenefitsIcons/types.js +3 -1
- package/dist/es/components/Container/Container.css +376 -0
- package/dist/es/components/PictureBox/PictureBox.css +88 -0
- package/dist/es/components/PictureBox/PictureBox.d.ts +46 -0
- package/dist/es/components/PictureBox/PictureBox.js +134 -0
- package/dist/es/components/PictureBox/img/mac-book-1x.png +0 -0
- package/dist/es/components/PictureBox/img/mac-book-2x.png +0 -0
- package/dist/es/index.d.ts +1 -0
- package/dist/es/index.js +1 -0
- package/dist/lib/components/BenefitsIcons/style/BenefitsIcons.css +2 -0
- package/dist/lib/components/BenefitsIcons/style/BenefitsIconsTile.css +7 -1
- package/dist/lib/components/BenefitsIcons/types.d.ts +2 -0
- package/dist/lib/components/BenefitsIcons/types.js +3 -1
- package/dist/lib/components/Container/Container.css +376 -0
- package/dist/lib/components/PictureBox/PictureBox.css +88 -0
- package/dist/lib/components/PictureBox/PictureBox.d.ts +46 -0
- package/dist/lib/components/PictureBox/PictureBox.js +155 -0
- package/dist/lib/components/PictureBox/img/mac-book-1x.png +0 -0
- package/dist/lib/components/PictureBox/img/mac-book-2x.png +0 -0
- package/dist/lib/index.d.ts +1 -0
- package/dist/lib/index.js +8 -0
- package/package.json +2 -2
@@ -8,7 +8,7 @@ h5 {
|
|
8
8
|
.mfui-v6-benefits-icons-tile {
|
9
9
|
min-height: 100%;
|
10
10
|
padding: 24px;
|
11
|
-
border-radius:
|
11
|
+
border-radius: 24px;
|
12
12
|
}
|
13
13
|
.mfui-v6-benefits-icons-tile_background_transparent {
|
14
14
|
padding: 0;
|
@@ -22,6 +22,12 @@ h5 {
|
|
22
22
|
.mfui-v6-benefits-icons-tile_background_purple {
|
23
23
|
background-color: var(--brandPurple20);
|
24
24
|
}
|
25
|
+
.mfui-v6-benefits-icons-tile_background_white {
|
26
|
+
background-color: var(--base);
|
27
|
+
}
|
28
|
+
.mfui-v6-benefits-icons-tile_background_stroke {
|
29
|
+
border: 1px solid var(--spbSky2);
|
30
|
+
}
|
25
31
|
.mfui-v6-benefits-icons-tile .mfui-v6-benefits-icons-tile__svg-icon {
|
26
32
|
margin-bottom: 10px;
|
27
33
|
}
|
@@ -38,6 +38,8 @@ export declare const BackgroundEnum: {
|
|
38
38
|
readonly GRAY: "gray";
|
39
39
|
readonly GREEN: "green";
|
40
40
|
readonly PURPLE: "purple";
|
41
|
+
readonly WHITE: "white";
|
42
|
+
readonly STROKE: "stroke";
|
41
43
|
};
|
42
44
|
export declare type BackgroundType = typeof BackgroundEnum[keyof typeof BackgroundEnum];
|
43
45
|
export declare type GridConfig = {
|