ui.shipaid.com 0.3.50 → 0.3.52
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/widget.es.js
CHANGED
|
@@ -3088,6 +3088,7 @@ const _ShipAidWidget = class _ShipAidWidget extends s$1 {
|
|
|
3088
3088
|
background-color: #fff;
|
|
3089
3089
|
border: 1px solid #ccc;
|
|
3090
3090
|
border-radius: 4px;
|
|
3091
|
+
margin: var(--shipaid-checkmark-margin, auto);
|
|
3091
3092
|
}
|
|
3092
3093
|
|
|
3093
3094
|
.shipaid-checkbox input:checked ~ .shipaid-checkMark {
|
package/dist/widget.iife.js
CHANGED
|
@@ -1209,6 +1209,7 @@ function Tt(t,e,i){return t?e():null==i?void 0:i()}const jt=h`
|
|
|
1209
1209
|
background-color: #fff;
|
|
1210
1210
|
border: 1px solid #ccc;
|
|
1211
1211
|
border-radius: 4px;
|
|
1212
|
+
margin: var(--shipaid-checkmark-margin, auto);
|
|
1212
1213
|
}
|
|
1213
1214
|
|
|
1214
1215
|
.shipaid-checkbox input:checked ~ .shipaid-checkMark {
|
package/dist/widget.umd.js
CHANGED
|
@@ -1209,6 +1209,7 @@ function Tt(t,e,i){return t?e():null==i?void 0:i()}const jt=h`
|
|
|
1209
1209
|
background-color: #fff;
|
|
1210
1210
|
border: 1px solid #ccc;
|
|
1211
1211
|
border-radius: 4px;
|
|
1212
|
+
margin: var(--shipaid-checkmark-margin, auto);
|
|
1212
1213
|
}
|
|
1213
1214
|
|
|
1214
1215
|
.shipaid-checkbox input:checked ~ .shipaid-checkMark {
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { LitElement } from 'lit'
|
|
2
|
+
declare class ProductAddConfirmation extends LitElement {
|
|
3
|
+
static styles: import('lit').CSSResult
|
|
4
|
+
open: boolean
|
|
5
|
+
product: null
|
|
6
|
+
imageUrl: null
|
|
7
|
+
priceOfVariant: null
|
|
8
|
+
quantity: number
|
|
9
|
+
handleDismiss(): void
|
|
10
|
+
handleConfirm(): void
|
|
11
|
+
render(): import('lit-html').TemplateResult<1>
|
|
12
|
+
}
|
|
13
|
+
export default ProductAddConfirmation
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { LitElement } from 'lit'
|
|
2
|
+
declare class ShipAidCartConfirmation extends LitElement {
|
|
3
|
+
static styles: import('lit').CSSResult
|
|
4
|
+
open: boolean
|
|
5
|
+
product: null
|
|
6
|
+
imageUrl: null
|
|
7
|
+
priceOfVariant: null
|
|
8
|
+
quantity: number
|
|
9
|
+
handleDismiss(): void
|
|
10
|
+
handleDontShowAgain(ev: any): void
|
|
11
|
+
handleConfirm(): void
|
|
12
|
+
private dontShowAgain
|
|
13
|
+
render(): import('lit-html').TemplateResult<1>
|
|
14
|
+
}
|
|
15
|
+
export default ShipAidCartConfirmation
|