@sima-land/moleculas 13.4.0 → 14.0.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/common/constants.d.ts +2 -5
- package/common/constants.js +2 -2
- package/common/types.d.ts +1 -0
- package/common/types.js +2 -0
- package/desktop/components/modifiers/button/index.d.ts +5 -3
- package/desktop/components/modifiers/button/index.js +5 -7
- package/desktop/components/modifiers/button/modifier-button.module.scss +4 -0
- package/desktop/components/modifiers/group/index.d.ts +11 -81
- package/desktop/components/modifiers/group/index.js +29 -133
- package/desktop/components/modifiers/group/modifiers-group.module.scss +19 -31
- package/desktop/components/modifiers/group/utils.d.ts +20 -0
- package/desktop/components/modifiers/group/utils.js +73 -0
- package/desktop/components/modifiers/modifiers.scss +5 -0
- package/desktop/components/product-carousel/index.js +1 -1
- package/mobile/components/modifiers-list/modifier-item/index.d.ts +2 -1
- package/mobile/components/modifiers-list/modifier-item/index.js +3 -3
- package/package.json +1 -1
- package/desktop/components/item-image/index.d.ts +0 -88
- package/desktop/components/item-image/index.js +0 -135
- package/desktop/components/item-image/item-image.module.scss +0 -158
- package/desktop/components/modifiers/widget/index.d.ts +0 -18
- package/desktop/components/modifiers/widget/index.js +0 -36
- package/desktop/components/modifiers/widget/modifiers-widget.module.scss +0 -10
- package/desktop/components/modifiers/widget/readme.md +0 -53
- package/mobile/components/item-image/index.d.ts +0 -56
- package/mobile/components/item-image/index.js +0 -88
- package/mobile/components/item-image/item-image.module.scss +0 -79
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
.wrapper {
|
|
2
|
-
min-width: 1px;
|
|
3
|
-
position: relative;
|
|
4
|
-
display: flex;
|
|
5
|
-
flex-flow: column;
|
|
6
|
-
&.row {
|
|
7
|
-
.image-wrapper {
|
|
8
|
-
min-height: 108px;
|
|
9
|
-
@media (min-width: 600px) {
|
|
10
|
-
min-height: 200px;
|
|
11
|
-
}
|
|
12
|
-
@media (min-width: 960px) {
|
|
13
|
-
min-height: 256px;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
.badges {
|
|
17
|
-
margin-top: 4px;
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.image-wrapper {
|
|
23
|
-
background: #fafafa;
|
|
24
|
-
overflow: hidden;
|
|
25
|
-
position: relative;
|
|
26
|
-
box-sizing: border-box;
|
|
27
|
-
padding-bottom: 100%;
|
|
28
|
-
height: 0;
|
|
29
|
-
.with-filter-blur {
|
|
30
|
-
filter: blur(24px);
|
|
31
|
-
}
|
|
32
|
-
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
|
33
|
-
a {
|
|
34
|
-
display: block;
|
|
35
|
-
position: relative;
|
|
36
|
-
}
|
|
37
|
-
a::before {
|
|
38
|
-
content: '';
|
|
39
|
-
display: block;
|
|
40
|
-
position: absolute;
|
|
41
|
-
top: 0;
|
|
42
|
-
left: 0;
|
|
43
|
-
right: 0;
|
|
44
|
-
bottom: 0;
|
|
45
|
-
background-color: rgba(0, 0, 0, 0.04);
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.badges {
|
|
51
|
-
margin-top: 4px;
|
|
52
|
-
margin-bottom: 8px;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.image {
|
|
56
|
-
display: block;
|
|
57
|
-
filter: brightness(96%);
|
|
58
|
-
width: 100%;
|
|
59
|
-
height: auto;
|
|
60
|
-
font-size: 14px;
|
|
61
|
-
min-height: 1px;
|
|
62
|
-
min-width: 1px;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.with-blur {
|
|
66
|
-
position: absolute;
|
|
67
|
-
top: -5px;
|
|
68
|
-
left: -5px;
|
|
69
|
-
width: calc(100% + 10px);
|
|
70
|
-
height: calc(100% + 10px);
|
|
71
|
-
background: rgba(255, 255, 255, 0.5);
|
|
72
|
-
z-index: 10;
|
|
73
|
-
display: flex;
|
|
74
|
-
justify-content: center;
|
|
75
|
-
align-items: center;
|
|
76
|
-
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
|
77
|
-
background: rgba(255, 255, 255, 0.95);
|
|
78
|
-
}
|
|
79
|
-
}
|