@digital-b2c/coreui-kit 0.7.2 → 0.7.4
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/index.cjs +123 -63
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +128 -19
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.mjs +124 -64
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -81,6 +81,17 @@ html {
|
|
|
81
81
|
--line-height-tight-4: 1.2;
|
|
82
82
|
--line-height-tight-5: 1.17;
|
|
83
83
|
}
|
|
84
|
+
.sr-only {
|
|
85
|
+
position: absolute;
|
|
86
|
+
width: 1px;
|
|
87
|
+
height: 1px;
|
|
88
|
+
padding: 0;
|
|
89
|
+
margin: -1px;
|
|
90
|
+
overflow: hidden;
|
|
91
|
+
clip: rect(0, 0, 0, 0);
|
|
92
|
+
white-space: nowrap;
|
|
93
|
+
border: 0;
|
|
94
|
+
}
|
|
84
95
|
@font-face {
|
|
85
96
|
font-family: "Instrument Sans";
|
|
86
97
|
font-weight: 400 700;
|
|
@@ -833,6 +844,11 @@ a:hover.Card_module_card {
|
|
|
833
844
|
transform: translateX(-50%);
|
|
834
845
|
z-index: 10;
|
|
835
846
|
}
|
|
847
|
+
@media (max-width: 1024px) {
|
|
848
|
+
.CardCollection_module_card-collection.CardCollection_module_fourCols .CardCollection_module_cardWrapper {
|
|
849
|
+
grid-template-columns: 1fr;
|
|
850
|
+
}
|
|
851
|
+
}
|
|
836
852
|
@media (max-width: 768px) {
|
|
837
853
|
.CardCollection_module_card-collection {
|
|
838
854
|
padding: var(--spacing-lg) var(--spacing-md);
|
|
@@ -1584,7 +1600,7 @@ a:hover.Card_module_card {
|
|
|
1584
1600
|
display: flex;
|
|
1585
1601
|
flex-direction: column;
|
|
1586
1602
|
align-items: center;
|
|
1587
|
-
gap: var(--spacing-
|
|
1603
|
+
gap: var(--spacing-lg);
|
|
1588
1604
|
}
|
|
1589
1605
|
.MiniBanner_module_minibanner .MiniBanner_module_wrapper .MiniBanner_module_textContainer {
|
|
1590
1606
|
position: relative;
|
|
@@ -1650,10 +1666,20 @@ a:hover.Card_module_card {
|
|
|
1650
1666
|
.MiniBanner_module_minibanner.MiniBanner_module_miniBannerNoBG .MiniBanner_module_wrapper .MiniBanner_module_textContainer {
|
|
1651
1667
|
padding: var(--spacing-5xl) var(--spacing-md);
|
|
1652
1668
|
}
|
|
1669
|
+
.MiniBanner_module_minibanner.MiniBanner_module_miniBannerTextLeft {
|
|
1670
|
+
padding: 0;
|
|
1671
|
+
}
|
|
1653
1672
|
.MiniBanner_module_minibanner.MiniBanner_module_miniBannerTextLeft .MiniBanner_module_wrapper .MiniBanner_module_textContainer {
|
|
1654
|
-
padding: var(--spacing-
|
|
1673
|
+
padding: var(--spacing-lg) var(--spacing-md);
|
|
1655
1674
|
gap: var(--spacing-xl);
|
|
1656
1675
|
}
|
|
1676
|
+
.MiniBanner_module_minibanner.MiniBanner_module_miniBannerTextLeft .MiniBanner_module_wrapper .MiniBanner_module_textContainer .MiniBanner_module_title {
|
|
1677
|
+
overflow-wrap: anywhere;
|
|
1678
|
+
}
|
|
1679
|
+
.MiniBanner_module_minibanner.MiniBanner_module_miniBannerTextLeft .MiniBanner_module_wrapper .MiniBanner_module_ctaContainer {
|
|
1680
|
+
margin: 0 var(--spacing-md) var(--spacing-lg) var(--spacing-md);
|
|
1681
|
+
width: calc(100% - var(--spacing-xl));
|
|
1682
|
+
}
|
|
1657
1683
|
}
|
|
1658
1684
|
|
|
1659
1685
|
/* src/widgets/MiniSectionCta/MiniSectionCta.module.scss */
|
|
@@ -1989,17 +2015,50 @@ a:hover.Card_module_card {
|
|
|
1989
2015
|
.UpcomingEventCard_module_event-card.UpcomingEventCard_module_horizontal {
|
|
1990
2016
|
flex-direction: row-reverse;
|
|
1991
2017
|
align-items: center;
|
|
2018
|
+
width: 100%;
|
|
2019
|
+
padding-right: 1rem;
|
|
2020
|
+
}
|
|
2021
|
+
@media (max-width: 768px) {
|
|
2022
|
+
.UpcomingEventCard_module_event-card.UpcomingEventCard_module_horizontal {
|
|
2023
|
+
flex-direction: column;
|
|
2024
|
+
padding-right: 0;
|
|
2025
|
+
}
|
|
1992
2026
|
}
|
|
1993
2027
|
.UpcomingEventCard_module_event-card.UpcomingEventCard_module_horizontal .UpcomingEventCard_module_event-card-content {
|
|
1994
2028
|
flex-direction: row-reverse;
|
|
1995
2029
|
align-items: center;
|
|
1996
2030
|
gap: 1rem;
|
|
1997
|
-
|
|
2031
|
+
width: 100%;
|
|
2032
|
+
justify-content: space-between;
|
|
2033
|
+
}
|
|
2034
|
+
@media (max-width: 768px) {
|
|
2035
|
+
.UpcomingEventCard_module_event-card.UpcomingEventCard_module_horizontal .UpcomingEventCard_module_event-card-content {
|
|
2036
|
+
flex-direction: column;
|
|
2037
|
+
padding: 0;
|
|
2038
|
+
}
|
|
1998
2039
|
}
|
|
1999
2040
|
.UpcomingEventCard_module_event-card.UpcomingEventCard_module_horizontal .UpcomingEventCard_module_event-card-content .UpcomingEventCard_module_event-card-image {
|
|
2000
2041
|
min-width: 346px;
|
|
2001
2042
|
height: 153px;
|
|
2002
2043
|
}
|
|
2044
|
+
@media (max-width: 768px) {
|
|
2045
|
+
.UpcomingEventCard_module_event-card.UpcomingEventCard_module_horizontal .UpcomingEventCard_module_event-card-content .UpcomingEventCard_module_event-card-image {
|
|
2046
|
+
width: 100%;
|
|
2047
|
+
height: 228.61px;
|
|
2048
|
+
}
|
|
2049
|
+
}
|
|
2050
|
+
.UpcomingEventCard_module_event-card.UpcomingEventCard_module_horizontal .UpcomingEventCard_module_event-card-content .UpcomingEventCard_module_event-card-text-content {
|
|
2051
|
+
padding: 1rem;
|
|
2052
|
+
}
|
|
2053
|
+
.UpcomingEventCard_module_event-card.UpcomingEventCard_module_horizontal .UpcomingEventCard_module_event-card-content .UpcomingEventCard_module_event-card-text-content.UpcomingEventCard_module_event-card-show-image {
|
|
2054
|
+
padding-top: 1rem;
|
|
2055
|
+
}
|
|
2056
|
+
@media (max-width: 768px) {
|
|
2057
|
+
.UpcomingEventCard_module_event-card.UpcomingEventCard_module_horizontal .UpcomingEventCard_module_event-card-content .UpcomingEventCard_module_event-card-text-content {
|
|
2058
|
+
padding: 1rem;
|
|
2059
|
+
padding-top: 0;
|
|
2060
|
+
}
|
|
2061
|
+
}
|
|
2003
2062
|
.UpcomingEventCard_module_event-card.UpcomingEventCard_module_horizontal .UpcomingEventCard_module_event-card-content .UpcomingEventCard_module_event-card-text-content .UpcomingEventCard_module_event-card-cta {
|
|
2004
2063
|
margin-top: auto;
|
|
2005
2064
|
}
|
|
@@ -2015,10 +2074,22 @@ a:hover.Card_module_card {
|
|
|
2015
2074
|
.UpcomingEventCard_module_event-card.UpcomingEventCard_module_horizontal.UpcomingEventCard_module_cta-without-image {
|
|
2016
2075
|
flex-direction: row;
|
|
2017
2076
|
}
|
|
2077
|
+
@media (max-width: 768px) {
|
|
2078
|
+
.UpcomingEventCard_module_event-card.UpcomingEventCard_module_horizontal.UpcomingEventCard_module_cta-without-image {
|
|
2079
|
+
flex-direction: column;
|
|
2080
|
+
align-items: flex-start;
|
|
2081
|
+
}
|
|
2082
|
+
}
|
|
2018
2083
|
.UpcomingEventCard_module_event-card.UpcomingEventCard_module_horizontal.UpcomingEventCard_module_cta-without-image .UpcomingEventCard_module_event-card-footer {
|
|
2019
2084
|
padding: 0;
|
|
2020
2085
|
padding-right: 1rem;
|
|
2021
2086
|
}
|
|
2087
|
+
@media (max-width: 768px) {
|
|
2088
|
+
.UpcomingEventCard_module_event-card.UpcomingEventCard_module_horizontal.UpcomingEventCard_module_cta-without-image .UpcomingEventCard_module_event-card-footer {
|
|
2089
|
+
padding: 1rem;
|
|
2090
|
+
padding-top: 0;
|
|
2091
|
+
}
|
|
2092
|
+
}
|
|
2022
2093
|
.UpcomingEventCard_module_event-card.UpcomingEventCard_module_vertical {
|
|
2023
2094
|
flex-direction: column;
|
|
2024
2095
|
}
|
|
@@ -2037,6 +2108,9 @@ a:hover.Card_module_card {
|
|
|
2037
2108
|
.UpcomingEventCard_module_event-card.UpcomingEventCard_module_vertical .UpcomingEventCard_module_event-card-content .UpcomingEventCard_module_event-card-cta {
|
|
2038
2109
|
display: none;
|
|
2039
2110
|
}
|
|
2111
|
+
.UpcomingEventCard_module_event-card.UpcomingEventCard_module_vertical .UpcomingEventCard_module_event-card-footer {
|
|
2112
|
+
padding-top: 0;
|
|
2113
|
+
}
|
|
2040
2114
|
|
|
2041
2115
|
/* src/components/Carousel/Carousel.module.scss */
|
|
2042
2116
|
|
|
@@ -2048,6 +2122,9 @@ a:hover.Card_module_card {
|
|
|
2048
2122
|
gap: 12px var(--spacing-md);
|
|
2049
2123
|
margin-bottom: var(--spacing-xl);
|
|
2050
2124
|
}
|
|
2125
|
+
.EventList_module_event-list-module .EventList_module_event-list-header-container .EventList_module_event-list-title {
|
|
2126
|
+
color: var(--color-black);
|
|
2127
|
+
}
|
|
2051
2128
|
.EventList_module_event-list-module .EventList_module_event-list-wrapper {
|
|
2052
2129
|
display: flex;
|
|
2053
2130
|
gap: var(--spacing-md);
|
|
@@ -2056,16 +2133,30 @@ a:hover.Card_module_card {
|
|
|
2056
2133
|
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_vertical {
|
|
2057
2134
|
flex-direction: column;
|
|
2058
2135
|
}
|
|
2059
|
-
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_vertical
|
|
2136
|
+
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_vertical .EventList_module_card-list-item .EventList_module_card-item {
|
|
2137
|
+
flex: 1;
|
|
2138
|
+
}
|
|
2139
|
+
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_vertical .EventList_module_card-list-item .EventList_module_card-item .card-content {
|
|
2140
|
+
flex: 1;
|
|
2141
|
+
}
|
|
2142
|
+
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_vertical .EventList_module_card-list-item .EventList_module_card-item .card-content .card-text-content {
|
|
2143
|
+
flex: 1;
|
|
2144
|
+
}
|
|
2145
|
+
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_vertical .EventList_module_card-list-item .EventList_module_card-item .card-content .card-image {
|
|
2146
|
+
width: 346px;
|
|
2147
|
+
height: auto;
|
|
2148
|
+
max-height: 233px;
|
|
2149
|
+
}
|
|
2150
|
+
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_vertical.EventList_module_internalEventList.EventList_module_events-page .EventList_module_card-list-item .EventList_module_card-item {
|
|
2060
2151
|
flex: 1;
|
|
2061
2152
|
}
|
|
2062
|
-
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_vertical.
|
|
2153
|
+
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_vertical.EventList_module_internalEventList.EventList_module_events-page .EventList_module_card-list-item .EventList_module_card-item .card-content {
|
|
2063
2154
|
flex: 1;
|
|
2064
2155
|
}
|
|
2065
|
-
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_vertical.
|
|
2156
|
+
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_vertical.EventList_module_internalEventList.EventList_module_events-page .EventList_module_card-list-item .EventList_module_card-item .card-content .card-text-content {
|
|
2066
2157
|
flex: 1;
|
|
2067
2158
|
}
|
|
2068
|
-
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_vertical.
|
|
2159
|
+
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_vertical.EventList_module_internalEventList.EventList_module_events-page .EventList_module_card-list-item .EventList_module_card-item .card-content .card-image {
|
|
2069
2160
|
width: 346px;
|
|
2070
2161
|
height: auto;
|
|
2071
2162
|
max-height: 233px;
|
|
@@ -2073,49 +2164,67 @@ a:hover.Card_module_card {
|
|
|
2073
2164
|
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_horizontal {
|
|
2074
2165
|
flex-direction: row;
|
|
2075
2166
|
}
|
|
2076
|
-
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_horizontal.
|
|
2167
|
+
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_horizontal.EventList_module_internalEventList .EventList_module_card-list-item {
|
|
2077
2168
|
flex: 1;
|
|
2078
2169
|
}
|
|
2079
|
-
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_horizontal.
|
|
2170
|
+
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_horizontal.EventList_module_internalEventList .EventList_module_card-list-item .EventList_module_card-item {
|
|
2080
2171
|
justify-content: space-between;
|
|
2081
2172
|
}
|
|
2082
|
-
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_horizontal.
|
|
2173
|
+
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_horizontal.EventList_module_internalEventList .EventList_module_card-list-item .EventList_module_card-item .card-image {
|
|
2083
2174
|
min-width: auto;
|
|
2084
2175
|
}
|
|
2085
|
-
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_horizontal.
|
|
2176
|
+
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_horizontal.EventList_module_internalEventList .EventList_module_card-list-item .EventList_module_card-item .card-text-title {
|
|
2086
2177
|
display: -webkit-box;
|
|
2087
2178
|
-webkit-line-clamp: 2;
|
|
2088
2179
|
-webkit-box-orient: vertical;
|
|
2089
2180
|
overflow: hidden;
|
|
2090
2181
|
}
|
|
2091
|
-
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_horizontal.
|
|
2182
|
+
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_horizontal.EventList_module_internalEventList .EventList_module_card-list-item .EventList_module_card-item .card-text-description {
|
|
2092
2183
|
display: -webkit-box;
|
|
2093
2184
|
-webkit-line-clamp: 4;
|
|
2094
2185
|
-webkit-box-orient: vertical;
|
|
2095
2186
|
overflow: hidden;
|
|
2096
2187
|
}
|
|
2097
|
-
.EventList_module_event-list-module.
|
|
2098
|
-
|
|
2188
|
+
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_horizontal.EventList_module_internalEventList .EventList_module_card-list-item {
|
|
2189
|
+
flex: 1;
|
|
2190
|
+
}
|
|
2191
|
+
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_horizontal.EventList_module_internalEventList .EventList_module_card-list-item .EventList_module_card-item {
|
|
2192
|
+
justify-content: space-between;
|
|
2193
|
+
}
|
|
2194
|
+
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_horizontal.EventList_module_internalEventList .EventList_module_card-list-item .EventList_module_card-item .card-image {
|
|
2195
|
+
min-width: auto;
|
|
2196
|
+
}
|
|
2197
|
+
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_horizontal.EventList_module_internalEventList .EventList_module_card-list-item .EventList_module_card-item .card-text-title {
|
|
2198
|
+
display: -webkit-box;
|
|
2199
|
+
-webkit-line-clamp: 2;
|
|
2200
|
+
-webkit-box-orient: vertical;
|
|
2201
|
+
overflow: hidden;
|
|
2202
|
+
}
|
|
2203
|
+
.EventList_module_event-list-module .EventList_module_event-list-wrapper.EventList_module_horizontal.EventList_module_internalEventList .EventList_module_card-list-item .EventList_module_card-item .card-text-description {
|
|
2204
|
+
display: -webkit-box;
|
|
2205
|
+
-webkit-line-clamp: 4;
|
|
2206
|
+
-webkit-box-orient: vertical;
|
|
2207
|
+
overflow: hidden;
|
|
2099
2208
|
}
|
|
2100
|
-
.EventList_module_event-list-module
|
|
2209
|
+
.EventList_module_event-list-module .EventList_module_carousel-wrapper.EventList_module_internalEventList {
|
|
2101
2210
|
display: flex !important;
|
|
2102
2211
|
align-items: stretch !important;
|
|
2103
2212
|
}
|
|
2104
|
-
.EventList_module_event-list-module
|
|
2213
|
+
.EventList_module_event-list-module .EventList_module_carousel-wrapper.EventList_module_internalEventList .EventList_module_carousel-list-item {
|
|
2105
2214
|
height: auto !important;
|
|
2106
2215
|
display: flex !important;
|
|
2107
2216
|
max-width: 258px !important;
|
|
2108
2217
|
}
|
|
2109
|
-
.EventList_module_event-list-module
|
|
2218
|
+
.EventList_module_event-list-module .EventList_module_carousel-wrapper.EventList_module_internalEventList .EventList_module_carousel-list-item .EventList_module_event-card .card-content {
|
|
2110
2219
|
flex: 1;
|
|
2111
2220
|
}
|
|
2112
|
-
.EventList_module_event-list-module
|
|
2221
|
+
.EventList_module_event-list-module .EventList_module_carousel-wrapper.EventList_module_internalEventList .EventList_module_carousel-list-item .EventList_module_event-card .card-content .card-text-title {
|
|
2113
2222
|
display: -webkit-box;
|
|
2114
2223
|
-webkit-line-clamp: 2;
|
|
2115
2224
|
-webkit-box-orient: vertical;
|
|
2116
2225
|
overflow: hidden;
|
|
2117
2226
|
}
|
|
2118
|
-
.EventList_module_event-list-module
|
|
2227
|
+
.EventList_module_event-list-module .EventList_module_carousel-wrapper.EventList_module_internalEventList .EventList_module_carousel-list-item .EventList_module_event-card .card-content .card-text-description {
|
|
2119
2228
|
display: -webkit-box;
|
|
2120
2229
|
-webkit-line-clamp: 3;
|
|
2121
2230
|
-webkit-box-orient: vertical;
|