@ordergroove/offers 2.26.7-alpha-PR-620-2.51 → 2.26.9

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/CHANGELOG.md CHANGED
@@ -3,6 +3,33 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.26.9](https://github.com/ordergroove/plush-toys/compare/@ordergroove/offers@2.26.8...@ordergroove/offers@2.26.9) (2022-07-22)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **offers:** Support css variables for the radio button ([9cc1b67](https://github.com/ordergroove/plush-toys/commit/9cc1b672116ff9c19abb62b2389b98c650c9ed18))
12
+
13
+
14
+
15
+
16
+
17
+ ## [2.26.8](https://github.com/ordergroove/plush-toys/compare/@ordergroove/offers@2.26.7...@ordergroove/offers@2.26.8) (2022-07-21)
18
+
19
+ **Note:** Version bump only for package @ordergroove/offers
20
+
21
+
22
+
23
+
24
+
25
+ ## [2.26.7](https://github.com/ordergroove/plush-toys/compare/@ordergroove/offers@2.26.6...@ordergroove/offers@2.26.7) (2022-07-19)
26
+
27
+ **Note:** Version bump only for package @ordergroove/offers
28
+
29
+
30
+
31
+
32
+
6
33
  ## [2.26.6](https://github.com/ordergroove/plush-toys/compare/@ordergroove/offers@2.26.5...@ordergroove/offers@2.26.6) (2022-07-12)
7
34
 
8
35
  **Note:** Version bump only for package @ordergroove/offers
@@ -1,10 +1,10 @@
1
1
  <pre id="esbuild-metadata">
2
- dist/examples.js ─────────────────────────────────────────── 257.7kb ─ 100.0%
3
- ├ ../offers-templates/dist/main.js ──────────────────────── 248.3kb ── 96.3%
2
+ dist/examples.js ─────────────────────────────────────────── 257.9kb ─ 100.0%
3
+ ├ ../offers-templates/dist/main.js ──────────────────────── 248.5kb ── 96.3%
4
4
  │ └ examples/index.js
5
5
  └ examples/index.js ───────────────────────────────────────── 8.4kb ─── 3.3%
6
6
 
7
- dist/offers.js ───────────────────────────────────────────── 109.0kb ─ 100.0%
7
+ dist/offers.js ───────────────────────────────────────────── 109.1kb ─ 100.0%
8
8
  ├ src/components/Offer.js ─────────────────────────────────── 7.9kb ─── 7.2%
9
9
  │ └ src/index.js
10
10
  ├ node_modules/redux/es/redux.js ──────────────────────────── 6.7kb ─── 6.1%
@@ -32,14 +32,14 @@
32
32
  ├ node_modules/lodash.memoize/index.js ────────────────────── 4.0kb ─── 3.7%
33
33
  │ └ src/core/api.js
34
34
  │ └ src/index.js
35
- ├ src/core/actions.js ─────────────────────────────────────── 3.7kb ─── 3.4%
35
+ ├ src/core/actions.js ─────────────────────────────────────── 3.7kb ─── 3.3%
36
36
  │ └ src/index.js
37
37
  ├ src/index.js ────────────────────────────────────────────── 3.4kb ─── 3.1%
38
38
  ├ src/core/api.js ─────────────────────────────────────────── 2.5kb ─── 2.3%
39
39
  │ └ src/index.js
40
40
  ├ src/components/UpsellModal.js ───────────────────────────── 2.4kb ─── 2.2%
41
41
  │ └ src/index.js
42
- ├ src/components/OptinStatus.js ───────────────────────────── 2.2kb ─── 2.1%
42
+ ├ src/components/OptinStatus.js ───────────────────────────── 2.4kb ─── 2.2%
43
43
  │ └ src/index.js
44
44
  ├ src/core/actions-preview.js ─────────────────────────────── 2.2kb ─── 2.0%
45
45
  │ └ src/components/Offer.js
package/dist/examples.js CHANGED
@@ -125,6 +125,7 @@ og-incentive-text {
125
125
  --og-tooltip-text-align: center;
126
126
  --og-tooltip-placement: bottom;
127
127
  --og-tooltip-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
128
+ --og-checkbox-border: 2px solid #090909;
128
129
  }
129
130
 
130
131
  og-offer {
@@ -193,7 +194,9 @@ button {
193
194
  }
194
195
 
195
196
  .og-button-toggle {
197
+ border: var(--og-checkbox-border, 2px solid #090909);
196
198
  padding: 2px;
199
+ line-height: 11px;
197
200
  border-radius: 3px;
198
201
  margin: 0 5px 0 0;
199
202
  background: #fff;
@@ -204,6 +207,11 @@ og-optin-toggle > div {
204
207
  align-items: center;
205
208
  }
206
209
 
210
+ og-price[regular] {
211
+ margin-left: 12px;
212
+ margin-right: 6px;
213
+ }
214
+
207
215
  og-optin-toggle + div {
208
216
  height: 0;
209
217
  margin: 10px 0 10px 30px;
@@ -290,7 +298,7 @@ og-optin-button button {
290
298
  }
291
299
 
292
300
  og-tooltip {
293
- transform: translateY(3px);
301
+ vertical-align: middle;
294
302
  }
295
303
 
296
304
  .og-offer-incentive {
@@ -315,6 +323,10 @@ og-select-frequency {
315
323
  border-radius: 0;
316
324
  }
317
325
 
326
+ og-price {
327
+ display: inline-flex;
328
+ }
329
+
318
330
  og-price[regular] {
319
331
  font-size: 14px;
320
332
  opacity: 67.5%;