@florid-kit/components 0.10.42 → 0.10.44
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/assets/icons/icons.d.ts +54 -0
- package/components/popin.d.ts +3 -1
- package/index.js +858 -218
- package/index.mjs +2243 -1529
- package/package.json +1 -1
package/assets/icons/icons.d.ts
CHANGED
|
@@ -1,4 +1,58 @@
|
|
|
1
1
|
declare const iconRegistry: {
|
|
2
|
+
readonly "occ-address": string;
|
|
3
|
+
readonly "occ-back": string;
|
|
4
|
+
readonly "occ-bag-filled": string;
|
|
5
|
+
readonly "occ-bag-outlined": string;
|
|
6
|
+
readonly "occ-bag-strike": string;
|
|
7
|
+
readonly "occ-bottle": string;
|
|
8
|
+
readonly "occ-briefcase": string;
|
|
9
|
+
readonly "occ-burger": string;
|
|
10
|
+
readonly "occ-card": string;
|
|
11
|
+
readonly "occ-career": string;
|
|
12
|
+
readonly "occ-check-filled": string;
|
|
13
|
+
readonly "occ-check-outlined": string;
|
|
14
|
+
readonly "occ-chevron-bottom": string;
|
|
15
|
+
readonly "occ-chevron-double": string;
|
|
16
|
+
readonly "occ-chevron-left": string;
|
|
17
|
+
readonly "occ-chevron-right": string;
|
|
18
|
+
readonly "occ-chevron-top": string;
|
|
19
|
+
readonly "occ-close-filled": string;
|
|
20
|
+
readonly "occ-close-outlined": string;
|
|
21
|
+
readonly "occ-cream": string;
|
|
22
|
+
readonly "occ-cream-tube": string;
|
|
23
|
+
readonly "occ-eye-hide": string;
|
|
24
|
+
readonly "occ-eye-show": string;
|
|
25
|
+
readonly "occ-geoloc": string;
|
|
26
|
+
readonly "occ-gift": string;
|
|
27
|
+
readonly "occ-hand-shake": string;
|
|
28
|
+
readonly "occ-info": string;
|
|
29
|
+
readonly "occ-location": string;
|
|
30
|
+
readonly "occ-mail": string;
|
|
31
|
+
readonly "occ-message": string;
|
|
32
|
+
readonly "occ-minus": string;
|
|
33
|
+
readonly "occ-order": string;
|
|
34
|
+
readonly "occ-order-sent": string;
|
|
35
|
+
readonly "occ-padlock": string;
|
|
36
|
+
readonly "occ-pause": string;
|
|
37
|
+
readonly "occ-play": string;
|
|
38
|
+
readonly "occ-plus": string;
|
|
39
|
+
readonly "occ-product": string;
|
|
40
|
+
readonly "occ-profil-filled": string;
|
|
41
|
+
readonly "occ-profil-outlined": string;
|
|
42
|
+
readonly "occ-refill": string;
|
|
43
|
+
readonly "occ-refine": string;
|
|
44
|
+
readonly "occ-reward-card": string;
|
|
45
|
+
readonly "occ-samples": string;
|
|
46
|
+
readonly "occ-search": string;
|
|
47
|
+
readonly "occ-star-0": string;
|
|
48
|
+
readonly "occ-star-100": string;
|
|
49
|
+
readonly "occ-star-25": string;
|
|
50
|
+
readonly "occ-star-50": string;
|
|
51
|
+
readonly "occ-star-75": string;
|
|
52
|
+
readonly "occ-store": string;
|
|
53
|
+
readonly "occ-warning": string;
|
|
54
|
+
readonly "occ-wishlist-filled": string;
|
|
55
|
+
readonly "occ-wishlist-outlined": string;
|
|
2
56
|
readonly wishlist: string;
|
|
3
57
|
readonly playerv: string;
|
|
4
58
|
readonly chevronRight: string;
|
package/components/popin.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
|
+
import { IconLogicalSize } from '../assets/icons/icons';
|
|
2
3
|
|
|
3
4
|
export declare class OPopin extends LitElement {
|
|
4
5
|
ispagedesigner: boolean;
|
|
@@ -15,7 +16,7 @@ export declare class OPopin extends LitElement {
|
|
|
15
16
|
maxWidth: string;
|
|
16
17
|
showBackButton: boolean;
|
|
17
18
|
contrast: boolean;
|
|
18
|
-
iconSize:
|
|
19
|
+
iconSize: IconLogicalSize;
|
|
19
20
|
hideHeaderOnScroll: boolean;
|
|
20
21
|
private _labelId;
|
|
21
22
|
private _headerHidden;
|
|
@@ -28,6 +29,7 @@ export declare class OPopin extends LitElement {
|
|
|
28
29
|
private _setupScrollListener;
|
|
29
30
|
private _removeScrollListener;
|
|
30
31
|
private _onBackClick;
|
|
32
|
+
private _resolvedIconSize;
|
|
31
33
|
private _requestClose;
|
|
32
34
|
private _renderCloseButton;
|
|
33
35
|
private _renderBackButton;
|