@ordergroove/offers 2.28.9 → 2.28.10
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 +11 -0
- package/dist/bundle-report.html +3 -3
- package/dist/offers.js +3 -3
- package/dist/offers.js.map +1 -1
- package/package.json +2 -2
- package/src/components/Modal.js +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.28.10](https://github.com/ordergroove/plush-toys/compare/@ordergroove/offers@2.28.9...@ordergroove/offers@2.28.10) (2022-11-22)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **offers:** Support modal css vars ([69e588b](https://github.com/ordergroove/plush-toys/commit/69e588b7fc9b74b7c12c84d09600647efca88bc2))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [2.28.9](https://github.com/ordergroove/plush-toys/compare/@ordergroove/offers@2.28.8...@ordergroove/offers@2.28.9) (2022-11-11)
|
|
7
18
|
|
|
8
19
|
|
package/dist/bundle-report.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
│ └ examples/index.js
|
|
5
5
|
└ examples/index.js ───────────────────────────────────────── 8.5kb ─── 3.3%
|
|
6
6
|
|
|
7
|
-
dist/offers.js ───────────────────────────────────────────── 127.
|
|
7
|
+
dist/offers.js ───────────────────────────────────────────── 127.9kb ─ 100.0%
|
|
8
8
|
├ src/components/Offer.js ─────────────────────────────────── 8.2kb ─── 6.4%
|
|
9
9
|
│ └ src/make-api.js
|
|
10
10
|
│ └ src/index.js
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
│ └ src/components/Price.js
|
|
32
32
|
│ └ src/make-api.js
|
|
33
33
|
│ └ src/index.js
|
|
34
|
-
├ src/components/Modal.js ─────────────────────────────────── 4.
|
|
34
|
+
├ src/components/Modal.js ─────────────────────────────────── 4.8kb ─── 3.8%
|
|
35
35
|
│ └ src/make-api.js
|
|
36
36
|
│ └ src/index.js
|
|
37
37
|
├ src/shopify/shopifyMiddleware.ts ────────────────────────── 4.6kb ─── 3.6%
|
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
│ └ src/shopify/shopifyTrackingMiddleware.ts
|
|
120
120
|
│ └ src/index.js
|
|
121
121
|
├ src/index.js ────────────────────────────────────────────── 1.1kb ─── 0.9%
|
|
122
|
-
├ src/components/UpsellButton.js ──────────────────────────── 1.1kb ─── 0.
|
|
122
|
+
├ src/components/UpsellButton.js ──────────────────────────── 1.1kb ─── 0.8%
|
|
123
123
|
│ └ src/make-api.js
|
|
124
124
|
│ └ src/index.js
|
|
125
125
|
├ src/shopify/shopifyTrackingMiddleware.ts ────────────────── 1.1kb ─── 0.8%
|
package/dist/offers.js
CHANGED
|
@@ -541,11 +541,11 @@ var lib=(()=>{var aa=Object.create;var Ze=Object.defineProperty;var ca=Object.ge
|
|
|
541
541
|
}
|
|
542
542
|
|
|
543
543
|
.og-modal__container {
|
|
544
|
-
background-color: #fff;
|
|
545
|
-
padding: 30px;
|
|
544
|
+
background-color: var(--og-modal-background-color, #fff);
|
|
545
|
+
padding: var(--og-modal-padding, 30px);
|
|
546
546
|
max-width: 500px;
|
|
547
547
|
max-height: 100vh;
|
|
548
|
-
border-radius: 4px;
|
|
548
|
+
border-radius: var(--og-modal-border-radius, 4px);
|
|
549
549
|
box-sizing: border-box;
|
|
550
550
|
}
|
|
551
551
|
|