ui.shipaid.com 0.3.49 → 0.3.51

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.
@@ -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
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ui.shipaid.com",
3
3
  "private": false,
4
- "version": "0.3.49",
4
+ "version": "0.3.51",
5
5
  "type": "module",
6
6
  "main": "dist/widget.umd.js",
7
7
  "unpkg": "dist/widget.iife.js",