aptechka 0.47.1 → 0.47.2
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,10 @@
|
|
|
1
|
+
export declare class BillboardBulletsElement extends HTMLElement {
|
|
2
|
+
#private;
|
|
3
|
+
protected connectedCallback(): void;
|
|
4
|
+
protected disconnectedCallback(): void;
|
|
5
|
+
}
|
|
6
|
+
declare global {
|
|
7
|
+
interface HTMLElementTagNameMap {
|
|
8
|
+
'e-billboard-bullets': BillboardBulletsElement;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export interface BillboardEvents {
|
|
2
|
+
billboardChange: CustomEvent<{
|
|
3
|
+
counter: number;
|
|
4
|
+
}>;
|
|
5
|
+
}
|
|
6
|
+
export declare class BillboardElement extends HTMLElement {
|
|
7
|
+
#private;
|
|
8
|
+
get counter(): number;
|
|
9
|
+
get itemElements(): HTMLElement[];
|
|
10
|
+
set(value: number): void;
|
|
11
|
+
shift(value: number): void;
|
|
12
|
+
protected connectedCallback(): void;
|
|
13
|
+
protected disconnectedCallback(): void;
|
|
14
|
+
}
|
|
15
|
+
declare global {
|
|
16
|
+
interface HTMLElementTagNameMap {
|
|
17
|
+
'e-billboard': BillboardElement;
|
|
18
|
+
}
|
|
19
|
+
interface HTMLElementEventMap extends BillboardEvents {
|
|
20
|
+
}
|
|
21
|
+
}
|
package/lib/billboard/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var q=s=>{throw TypeError(s)};var I=(s,i,t)=>i.has(s)||q("Cannot "+t);var e=(s,i,t)=>(I(s,i,"read from private field"),t?t.call(s):i.get(s)),n=(s,i,t)=>i.has(s)?q("Cannot add the same private member more than once"):i instanceof WeakSet?i.add(s):i.set(s,t),d=(s,i,t,r)=>(I(s,i,"write to private field"),r?r.call(s,t):i.set(s,t),t),k=(s,i,t)=>(I(s,i,"access private method"),t);Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const x=require("../index-Cqw2NKev.cjs"),T=require("../dom-JBOkFLTh.cjs"),w=require("../css-property/index.cjs"),M=require("../events-KVanG9sR.cjs"),P=require("../number-0243DApo.cjs");var b,u,m,o,h,v,E,g,y,p;class B extends HTMLElement{constructor(){super(...arguments);n(this,g);n(this,b,new w.CSSProperty(this,"--delay","2s"));n(this,u);n(this,m,!1);n(this,o,[]);n(this,h,0);n(this,v,t=>{d(this,m,t.isIntersecting),e(this,m)?e(this,E).call(this):clearInterval(e(this,u))});n(this,E,()=>{clearInterval(e(this,u)),e(this,m)&&d(this,u,setInterval(e(this,p),parseFloat(e(this,b).current||"0")*1e3))});n(this,p,()=>{k(this,g,y).call(this,e(this,h)+1)})}get counter(){return e(this,h)}get itemElements(){return e(this,o)}set(t){k(this,g,y).call(this,t),e(this,E).call(this)}shift(t){this.set(e(this,h)+t)}connectedCallback(){var t;d(this,o,[...this.querySelectorAll("[data-billboard-item]")]),(t=e(this,o)[0])==null||t.classList.add("current"),e(this,b).subscribe(()=>{e(this,E).call(this)}),e(this,b).observe(),x.intersector.subscribe(this,e(this,v))}disconnectedCallback(){e(this,b).unobserve(),x.intersector.unsubscribe(e(this,v)),clearInterval(e(this,u))}}b=new WeakMap,u=new WeakMap,m=new WeakMap,o=new WeakMap,h=new WeakMap,v=new WeakMap,E=new WeakMap,g=new WeakSet,y=function(t){d(this,h,P.loopNumber(t,e(this,o).length)),e(this,o).forEach((r,c)=>{c===e(this,h)?r.classList.add("current"):r.classList.remove("current")}),M.dispatchEvent(this,"billboardChange",{detail:{counter:e(this,h)}})},p=new WeakMap;customElements.get("e-billboard")||customElements.define("e-billboard",B);var l,a,L,f;class S extends HTMLElement{constructor(){super(...arguments);n(this,l,null);n(this,a,[]);n(this,L,t=>{const r=t.currentTarget,c=e(this,a).findIndex(C=>C===r);c>=0&&e(this,l).set(c)});n(this,f,()=>{e(this,a).forEach((t,r)=>{r===e(this,l).counter?t.classList.add("current"):t.classList.remove("current")})})}connectedCallback(){d(this,l,T.findParentElement(this,B)),e(this,l)&&customElements.whenDefined("e-billboard").then(()=>{var t;if(this.isConnected){const r=e(this,l).itemElements.length;for(let c=0;c<r;c++){const C=document.createElement("button");e(this,a).push(C),this.appendChild(C)}e(this,a).forEach(c=>{c.addEventListener("click",e(this,L))}),(t=e(this,l))==null||t.addEventListener("billboardChange",e(this,f)),e(this,f).call(this)}})}disconnectedCallback(){var t;e(this,a).forEach(r=>{r.removeEventListener("click",e(this,L))}),(t=e(this,l))==null||t.removeEventListener("billboardChange",e(this,f)),this.innerHTML="",d(this,a,[])}}l=new WeakMap,a=new WeakMap,L=new WeakMap,f=new WeakMap;x.isBrowser&&!customElements.get("e-billboard-bullets")&&customElements.define("e-billboard-bullets",S);exports.BillboardBulletsElement=S;exports.BillboardElement=B;
|
package/lib/billboard/index.d.ts
CHANGED
|
@@ -1,12 +1,2 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
set(value: number): void;
|
|
4
|
-
shift(value: number): void;
|
|
5
|
-
protected connectedCallback(): void;
|
|
6
|
-
protected disconnectedCallback(): void;
|
|
7
|
-
}
|
|
8
|
-
declare global {
|
|
9
|
-
interface HTMLElementTagNameMap {
|
|
10
|
-
'e-billboard': BillboardElement;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
1
|
+
export { BillboardBulletsElement } from './BillboardBulletsElement';
|
|
2
|
+
export { BillboardElement, type BillboardEvents } from './BillboardElement';
|
package/lib/billboard/index.js
CHANGED
|
@@ -1,58 +1,117 @@
|
|
|
1
|
-
var
|
|
1
|
+
var w = (s) => {
|
|
2
2
|
throw TypeError(s);
|
|
3
3
|
};
|
|
4
|
-
var
|
|
5
|
-
var
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
|
|
4
|
+
var I = (s, i, e) => i.has(s) || w("Cannot " + e);
|
|
5
|
+
var t = (s, i, e) => (I(s, i, "read from private field"), e ? e.call(s) : i.get(s)), n = (s, i, e) => i.has(s) ? w("Cannot add the same private member more than once") : i instanceof WeakSet ? i.add(s) : i.set(s, e), d = (s, i, e, r) => (I(s, i, "write to private field"), r ? r.call(s, e) : i.set(s, e), e), k = (s, i, e) => (I(s, i, "access private method"), e);
|
|
6
|
+
import { a as y, i as S } from "../index-euf5anj6.js";
|
|
7
|
+
import { b as T } from "../dom-CVWzyXPH.js";
|
|
8
|
+
import { CSSProperty as H } from "../css-property/index.js";
|
|
9
|
+
import { d as M } from "../events-CsVF98U6.js";
|
|
10
|
+
import { l as A } from "../number-DwCxt_Ck.js";
|
|
11
|
+
var b, m, u, o, a, v, f, p, x, C;
|
|
12
|
+
class B extends HTMLElement {
|
|
11
13
|
constructor() {
|
|
12
14
|
super(...arguments);
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
15
|
+
n(this, p);
|
|
16
|
+
n(this, b, new H(this, "--delay", "2s"));
|
|
17
|
+
n(this, m);
|
|
18
|
+
n(this, u, !1);
|
|
19
|
+
n(this, o, []);
|
|
20
|
+
n(this, a, 0);
|
|
21
|
+
n(this, v, (e) => {
|
|
22
|
+
d(this, u, e.isIntersecting), t(this, u) ? t(this, f).call(this) : clearInterval(t(this, m));
|
|
21
23
|
});
|
|
22
|
-
|
|
23
|
-
clearInterval(
|
|
24
|
-
|
|
25
|
-
parseFloat(
|
|
24
|
+
n(this, f, () => {
|
|
25
|
+
clearInterval(t(this, m)), t(this, u) && d(this, m, setInterval(
|
|
26
|
+
t(this, C),
|
|
27
|
+
parseFloat(t(this, b).current || "0") * 1e3
|
|
26
28
|
));
|
|
27
29
|
});
|
|
28
|
-
|
|
29
|
-
|
|
30
|
+
n(this, C, () => {
|
|
31
|
+
k(this, p, x).call(this, t(this, a) + 1);
|
|
30
32
|
});
|
|
31
33
|
}
|
|
32
|
-
|
|
33
|
-
|
|
34
|
+
get counter() {
|
|
35
|
+
return t(this, a);
|
|
34
36
|
}
|
|
35
|
-
|
|
36
|
-
|
|
37
|
+
get itemElements() {
|
|
38
|
+
return t(this, o);
|
|
39
|
+
}
|
|
40
|
+
set(e) {
|
|
41
|
+
k(this, p, x).call(this, e), t(this, f).call(this);
|
|
42
|
+
}
|
|
43
|
+
shift(e) {
|
|
44
|
+
this.set(t(this, a) + e);
|
|
37
45
|
}
|
|
38
46
|
connectedCallback() {
|
|
39
|
-
var
|
|
40
|
-
|
|
47
|
+
var e;
|
|
48
|
+
d(this, o, [
|
|
41
49
|
...this.querySelectorAll("[data-billboard-item]")
|
|
42
|
-
]), (
|
|
43
|
-
|
|
44
|
-
}),
|
|
50
|
+
]), (e = t(this, o)[0]) == null || e.classList.add("current"), t(this, b).subscribe(() => {
|
|
51
|
+
t(this, f).call(this);
|
|
52
|
+
}), t(this, b).observe(), y.subscribe(this, t(this, v));
|
|
45
53
|
}
|
|
46
54
|
disconnectedCallback() {
|
|
47
|
-
|
|
55
|
+
t(this, b).unobserve(), y.unsubscribe(t(this, v)), clearInterval(t(this, m));
|
|
48
56
|
}
|
|
49
57
|
}
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
58
|
+
b = new WeakMap(), m = new WeakMap(), u = new WeakMap(), o = new WeakMap(), a = new WeakMap(), v = new WeakMap(), f = new WeakMap(), p = new WeakSet(), x = function(e) {
|
|
59
|
+
d(this, a, A(e, t(this, o).length)), t(this, o).forEach((r, h) => {
|
|
60
|
+
h === t(this, a) ? r.classList.add("current") : r.classList.remove("current");
|
|
61
|
+
}), M(this, "billboardChange", {
|
|
62
|
+
detail: {
|
|
63
|
+
counter: t(this, a)
|
|
64
|
+
}
|
|
53
65
|
});
|
|
54
|
-
},
|
|
55
|
-
customElements.get("e-billboard") || customElements.define("e-billboard",
|
|
66
|
+
}, C = new WeakMap();
|
|
67
|
+
customElements.get("e-billboard") || customElements.define("e-billboard", B);
|
|
68
|
+
var l, c, L, E;
|
|
69
|
+
class P extends HTMLElement {
|
|
70
|
+
constructor() {
|
|
71
|
+
super(...arguments);
|
|
72
|
+
n(this, l, null);
|
|
73
|
+
n(this, c, []);
|
|
74
|
+
n(this, L, (e) => {
|
|
75
|
+
const r = e.currentTarget, h = t(this, c).findIndex((g) => g === r);
|
|
76
|
+
h >= 0 && t(this, l).set(h);
|
|
77
|
+
});
|
|
78
|
+
n(this, E, () => {
|
|
79
|
+
t(this, c).forEach((e, r) => {
|
|
80
|
+
r === t(this, l).counter ? e.classList.add("current") : e.classList.remove("current");
|
|
81
|
+
});
|
|
82
|
+
});
|
|
83
|
+
}
|
|
84
|
+
connectedCallback() {
|
|
85
|
+
d(this, l, T(this, B)), t(this, l) && customElements.whenDefined("e-billboard").then(() => {
|
|
86
|
+
var e;
|
|
87
|
+
if (this.isConnected) {
|
|
88
|
+
const r = t(this, l).itemElements.length;
|
|
89
|
+
for (let h = 0; h < r; h++) {
|
|
90
|
+
const g = document.createElement("button");
|
|
91
|
+
t(this, c).push(g), this.appendChild(g);
|
|
92
|
+
}
|
|
93
|
+
t(this, c).forEach((h) => {
|
|
94
|
+
h.addEventListener("click", t(this, L));
|
|
95
|
+
}), (e = t(this, l)) == null || e.addEventListener(
|
|
96
|
+
"billboardChange",
|
|
97
|
+
t(this, E)
|
|
98
|
+
), t(this, E).call(this);
|
|
99
|
+
}
|
|
100
|
+
});
|
|
101
|
+
}
|
|
102
|
+
disconnectedCallback() {
|
|
103
|
+
var e;
|
|
104
|
+
t(this, c).forEach((r) => {
|
|
105
|
+
r.removeEventListener("click", t(this, L));
|
|
106
|
+
}), (e = t(this, l)) == null || e.removeEventListener(
|
|
107
|
+
"billboardChange",
|
|
108
|
+
t(this, E)
|
|
109
|
+
), this.innerHTML = "", d(this, c, []);
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
l = new WeakMap(), c = new WeakMap(), L = new WeakMap(), E = new WeakMap();
|
|
113
|
+
S && !customElements.get("e-billboard-bullets") && customElements.define("e-billboard-bullets", P);
|
|
56
114
|
export {
|
|
57
|
-
|
|
115
|
+
P as BillboardBulletsElement,
|
|
116
|
+
B as BillboardElement
|
|
58
117
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aptechka",
|
|
3
|
-
"version": "0.47.
|
|
3
|
+
"version": "0.47.2",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/denisavitski/aptechka.git"
|
|
@@ -19,224 +19,224 @@
|
|
|
19
19
|
"type": "module",
|
|
20
20
|
"exports": {
|
|
21
21
|
"./accordion": {
|
|
22
|
+
"types": "./lib/accordion/index.d.ts",
|
|
22
23
|
"require": "./lib/accordion/index.cjs",
|
|
23
|
-
"default": "./lib/accordion/index.js"
|
|
24
|
-
"types": "./lib/accordion/index.d.ts"
|
|
24
|
+
"default": "./lib/accordion/index.js"
|
|
25
25
|
},
|
|
26
26
|
"./animation": {
|
|
27
|
+
"types": "./lib/animation/index.d.ts",
|
|
27
28
|
"require": "./lib/animation/index.cjs",
|
|
28
|
-
"default": "./lib/animation/index.js"
|
|
29
|
-
"types": "./lib/animation/index.d.ts"
|
|
29
|
+
"default": "./lib/animation/index.js"
|
|
30
30
|
},
|
|
31
31
|
"./attribute": {
|
|
32
|
+
"types": "./lib/attribute/index.d.ts",
|
|
32
33
|
"require": "./lib/attribute/index.cjs",
|
|
33
|
-
"default": "./lib/attribute/index.js"
|
|
34
|
-
"types": "./lib/attribute/index.d.ts"
|
|
34
|
+
"default": "./lib/attribute/index.js"
|
|
35
35
|
},
|
|
36
36
|
"./billboard": {
|
|
37
|
+
"types": "./lib/billboard/index.d.ts",
|
|
37
38
|
"require": "./lib/billboard/index.cjs",
|
|
38
|
-
"default": "./lib/billboard/index.js"
|
|
39
|
-
"types": "./lib/billboard/index.d.ts"
|
|
39
|
+
"default": "./lib/billboard/index.js"
|
|
40
40
|
},
|
|
41
41
|
"./canvas": {
|
|
42
|
+
"types": "./lib/canvas/index.d.ts",
|
|
42
43
|
"require": "./lib/canvas/index.cjs",
|
|
43
|
-
"default": "./lib/canvas/index.js"
|
|
44
|
-
"types": "./lib/canvas/index.d.ts"
|
|
44
|
+
"default": "./lib/canvas/index.js"
|
|
45
45
|
},
|
|
46
46
|
"./class-linked-status": {
|
|
47
|
+
"types": "./lib/class-linked-status/index.d.ts",
|
|
47
48
|
"require": "./lib/class-linked-status/index.cjs",
|
|
48
|
-
"default": "./lib/class-linked-status/index.js"
|
|
49
|
-
"types": "./lib/class-linked-status/index.d.ts"
|
|
49
|
+
"default": "./lib/class-linked-status/index.js"
|
|
50
50
|
},
|
|
51
51
|
"./connector": {
|
|
52
|
+
"types": "./lib/connector/index.d.ts",
|
|
52
53
|
"require": "./lib/connector/index.cjs",
|
|
53
|
-
"default": "./lib/connector/index.js"
|
|
54
|
-
"types": "./lib/connector/index.d.ts"
|
|
54
|
+
"default": "./lib/connector/index.js"
|
|
55
55
|
},
|
|
56
56
|
"./controls": {
|
|
57
|
+
"types": "./lib/controls/index.d.ts",
|
|
57
58
|
"require": "./lib/controls/index.cjs",
|
|
58
|
-
"default": "./lib/controls/index.js"
|
|
59
|
-
"types": "./lib/controls/index.d.ts"
|
|
59
|
+
"default": "./lib/controls/index.js"
|
|
60
60
|
},
|
|
61
61
|
"./css-property": {
|
|
62
|
+
"types": "./lib/css-property/index.d.ts",
|
|
62
63
|
"require": "./lib/css-property/index.cjs",
|
|
63
|
-
"default": "./lib/css-property/index.js"
|
|
64
|
-
"types": "./lib/css-property/index.d.ts"
|
|
64
|
+
"default": "./lib/css-property/index.js"
|
|
65
65
|
},
|
|
66
66
|
"./css-unit-parser": {
|
|
67
|
+
"types": "./lib/css-unit-parser/index.d.ts",
|
|
67
68
|
"require": "./lib/css-unit-parser/index.cjs",
|
|
68
|
-
"default": "./lib/css-unit-parser/index.js"
|
|
69
|
-
"types": "./lib/css-unit-parser/index.d.ts"
|
|
69
|
+
"default": "./lib/css-unit-parser/index.js"
|
|
70
70
|
},
|
|
71
71
|
"./css-value-parser": {
|
|
72
|
+
"types": "./lib/css-value-parser/index.d.ts",
|
|
72
73
|
"require": "./lib/css-value-parser/index.cjs",
|
|
73
|
-
"default": "./lib/css-value-parser/index.js"
|
|
74
|
-
"types": "./lib/css-value-parser/index.d.ts"
|
|
74
|
+
"default": "./lib/css-value-parser/index.js"
|
|
75
75
|
},
|
|
76
76
|
"./custom-scrollbar": {
|
|
77
|
+
"types": "./lib/custom-scrollbar/index.d.ts",
|
|
77
78
|
"require": "./lib/custom-scrollbar/index.cjs",
|
|
78
|
-
"default": "./lib/custom-scrollbar/index.js"
|
|
79
|
-
"types": "./lib/custom-scrollbar/index.d.ts"
|
|
79
|
+
"default": "./lib/custom-scrollbar/index.js"
|
|
80
80
|
},
|
|
81
81
|
"./dev": {
|
|
82
|
+
"types": "./lib/dev/index.d.ts",
|
|
82
83
|
"require": "./lib/dev/index.cjs",
|
|
83
|
-
"default": "./lib/dev/index.js"
|
|
84
|
-
"types": "./lib/dev/index.d.ts"
|
|
84
|
+
"default": "./lib/dev/index.js"
|
|
85
85
|
},
|
|
86
86
|
"./device": {
|
|
87
|
+
"types": "./lib/device/index.d.ts",
|
|
87
88
|
"require": "./lib/device/index.cjs",
|
|
88
|
-
"default": "./lib/device/index.js"
|
|
89
|
-
"types": "./lib/device/index.d.ts"
|
|
89
|
+
"default": "./lib/device/index.js"
|
|
90
90
|
},
|
|
91
91
|
"./element-resizer": {
|
|
92
|
+
"types": "./lib/element-resizer/index.d.ts",
|
|
92
93
|
"require": "./lib/element-resizer/index.cjs",
|
|
93
|
-
"default": "./lib/element-resizer/index.js"
|
|
94
|
-
"types": "./lib/element-resizer/index.d.ts"
|
|
94
|
+
"default": "./lib/element-resizer/index.js"
|
|
95
95
|
},
|
|
96
96
|
"./en3": {
|
|
97
|
+
"types": "./lib/en3/index.d.ts",
|
|
97
98
|
"require": "./lib/en3/index.cjs",
|
|
98
|
-
"default": "./lib/en3/index.js"
|
|
99
|
-
"types": "./lib/en3/index.d.ts"
|
|
99
|
+
"default": "./lib/en3/index.js"
|
|
100
100
|
},
|
|
101
101
|
"./iframe": {
|
|
102
|
+
"types": "./lib/iframe/index.d.ts",
|
|
102
103
|
"require": "./lib/iframe/index.cjs",
|
|
103
|
-
"default": "./lib/iframe/index.js"
|
|
104
|
-
"types": "./lib/iframe/index.d.ts"
|
|
104
|
+
"default": "./lib/iframe/index.js"
|
|
105
105
|
},
|
|
106
106
|
"./image": {
|
|
107
|
+
"types": "./lib/image/index.d.ts",
|
|
107
108
|
"require": "./lib/image/index.cjs",
|
|
108
|
-
"default": "./lib/image/index.js"
|
|
109
|
-
"types": "./lib/image/index.d.ts"
|
|
109
|
+
"default": "./lib/image/index.js"
|
|
110
110
|
},
|
|
111
111
|
"./intersector": {
|
|
112
|
+
"types": "./lib/intersector/index.d.ts",
|
|
112
113
|
"require": "./lib/intersector/index.cjs",
|
|
113
|
-
"default": "./lib/intersector/index.js"
|
|
114
|
-
"types": "./lib/intersector/index.d.ts"
|
|
114
|
+
"default": "./lib/intersector/index.js"
|
|
115
115
|
},
|
|
116
116
|
"./ladder": {
|
|
117
|
+
"types": "./lib/ladder/index.d.ts",
|
|
117
118
|
"require": "./lib/ladder/index.cjs",
|
|
118
|
-
"default": "./lib/ladder/index.js"
|
|
119
|
-
"types": "./lib/ladder/index.d.ts"
|
|
119
|
+
"default": "./lib/ladder/index.js"
|
|
120
120
|
},
|
|
121
121
|
"./layout-box": {
|
|
122
|
+
"types": "./lib/layout-box/index.d.ts",
|
|
122
123
|
"require": "./lib/layout-box/index.cjs",
|
|
123
|
-
"default": "./lib/layout-box/index.js"
|
|
124
|
-
"types": "./lib/layout-box/index.d.ts"
|
|
124
|
+
"default": "./lib/layout-box/index.js"
|
|
125
125
|
},
|
|
126
126
|
"./loading": {
|
|
127
|
+
"types": "./lib/loading/index.d.ts",
|
|
127
128
|
"require": "./lib/loading/index.cjs",
|
|
128
|
-
"default": "./lib/loading/index.js"
|
|
129
|
-
"types": "./lib/loading/index.d.ts"
|
|
129
|
+
"default": "./lib/loading/index.js"
|
|
130
130
|
},
|
|
131
131
|
"./masonry-layout": {
|
|
132
|
+
"types": "./lib/masonry-layout/index.d.ts",
|
|
132
133
|
"require": "./lib/masonry-layout/index.cjs",
|
|
133
|
-
"default": "./lib/masonry-layout/index.js"
|
|
134
|
-
"types": "./lib/masonry-layout/index.d.ts"
|
|
134
|
+
"default": "./lib/masonry-layout/index.js"
|
|
135
135
|
},
|
|
136
136
|
"./media": {
|
|
137
|
+
"types": "./lib/media/index.d.ts",
|
|
137
138
|
"require": "./lib/media/index.cjs",
|
|
138
|
-
"default": "./lib/media/index.js"
|
|
139
|
-
"types": "./lib/media/index.d.ts"
|
|
139
|
+
"default": "./lib/media/index.js"
|
|
140
140
|
},
|
|
141
141
|
"./morph": {
|
|
142
|
+
"types": "./lib/morph/index.d.ts",
|
|
142
143
|
"require": "./lib/morph/index.cjs",
|
|
143
|
-
"default": "./lib/morph/index.js"
|
|
144
|
-
"types": "./lib/morph/index.d.ts"
|
|
144
|
+
"default": "./lib/morph/index.js"
|
|
145
145
|
},
|
|
146
146
|
"./notifier": {
|
|
147
|
+
"types": "./lib/notifier/index.d.ts",
|
|
147
148
|
"require": "./lib/notifier/index.cjs",
|
|
148
|
-
"default": "./lib/notifier/index.js"
|
|
149
|
-
"types": "./lib/notifier/index.d.ts"
|
|
149
|
+
"default": "./lib/notifier/index.js"
|
|
150
150
|
},
|
|
151
151
|
"./order": {
|
|
152
|
+
"types": "./lib/order/index.d.ts",
|
|
152
153
|
"require": "./lib/order/index.cjs",
|
|
153
|
-
"default": "./lib/order/index.js"
|
|
154
|
-
"types": "./lib/order/index.d.ts"
|
|
154
|
+
"default": "./lib/order/index.js"
|
|
155
155
|
},
|
|
156
156
|
"./pointer": {
|
|
157
|
+
"types": "./lib/pointer/index.d.ts",
|
|
157
158
|
"require": "./lib/pointer/index.cjs",
|
|
158
|
-
"default": "./lib/pointer/index.js"
|
|
159
|
-
"types": "./lib/pointer/index.d.ts"
|
|
159
|
+
"default": "./lib/pointer/index.js"
|
|
160
160
|
},
|
|
161
161
|
"./popover": {
|
|
162
|
+
"types": "./lib/popover/index.d.ts",
|
|
162
163
|
"require": "./lib/popover/index.cjs",
|
|
163
|
-
"default": "./lib/popover/index.js"
|
|
164
|
-
"types": "./lib/popover/index.d.ts"
|
|
164
|
+
"default": "./lib/popover/index.js"
|
|
165
165
|
},
|
|
166
166
|
"./router": {
|
|
167
|
+
"types": "./lib/router/index.d.ts",
|
|
167
168
|
"require": "./lib/router/index.cjs",
|
|
168
|
-
"default": "./lib/router/index.js"
|
|
169
|
-
"types": "./lib/router/index.d.ts"
|
|
169
|
+
"default": "./lib/router/index.js"
|
|
170
170
|
},
|
|
171
171
|
"./scroll": {
|
|
172
|
+
"types": "./lib/scroll/index.d.ts",
|
|
172
173
|
"require": "./lib/scroll/index.cjs",
|
|
173
|
-
"default": "./lib/scroll/index.js"
|
|
174
|
-
"types": "./lib/scroll/index.d.ts"
|
|
174
|
+
"default": "./lib/scroll/index.js"
|
|
175
175
|
},
|
|
176
176
|
"./scroll-entries": {
|
|
177
|
+
"types": "./lib/scroll-entries/index.d.ts",
|
|
177
178
|
"require": "./lib/scroll-entries/index.cjs",
|
|
178
|
-
"default": "./lib/scroll-entries/index.js"
|
|
179
|
-
"types": "./lib/scroll-entries/index.d.ts"
|
|
179
|
+
"default": "./lib/scroll-entries/index.js"
|
|
180
180
|
},
|
|
181
181
|
"./scroll-segment": {
|
|
182
|
+
"types": "./lib/scroll-segment/index.d.ts",
|
|
182
183
|
"require": "./lib/scroll-segment/index.cjs",
|
|
183
|
-
"default": "./lib/scroll-segment/index.js"
|
|
184
|
-
"types": "./lib/scroll-segment/index.d.ts"
|
|
184
|
+
"default": "./lib/scroll-segment/index.js"
|
|
185
185
|
},
|
|
186
186
|
"./sequence": {
|
|
187
|
+
"types": "./lib/sequence/index.d.ts",
|
|
187
188
|
"require": "./lib/sequence/index.cjs",
|
|
188
|
-
"default": "./lib/sequence/index.js"
|
|
189
|
-
"types": "./lib/sequence/index.d.ts"
|
|
189
|
+
"default": "./lib/sequence/index.js"
|
|
190
190
|
},
|
|
191
191
|
"./size-element": {
|
|
192
|
+
"types": "./lib/size-element/index.d.ts",
|
|
192
193
|
"require": "./lib/size-element/index.cjs",
|
|
193
|
-
"default": "./lib/size-element/index.js"
|
|
194
|
-
"types": "./lib/size-element/index.d.ts"
|
|
194
|
+
"default": "./lib/size-element/index.js"
|
|
195
195
|
},
|
|
196
196
|
"./slicer": {
|
|
197
|
+
"types": "./lib/slicer/index.d.ts",
|
|
197
198
|
"require": "./lib/slicer/index.cjs",
|
|
198
|
-
"default": "./lib/slicer/index.js"
|
|
199
|
-
"types": "./lib/slicer/index.d.ts"
|
|
199
|
+
"default": "./lib/slicer/index.js"
|
|
200
200
|
},
|
|
201
201
|
"./source": {
|
|
202
|
+
"types": "./lib/source/index.d.ts",
|
|
202
203
|
"require": "./lib/source/index.cjs",
|
|
203
|
-
"default": "./lib/source/index.js"
|
|
204
|
-
"types": "./lib/source/index.d.ts"
|
|
204
|
+
"default": "./lib/source/index.js"
|
|
205
205
|
},
|
|
206
206
|
"./store": {
|
|
207
|
+
"types": "./lib/store/index.d.ts",
|
|
207
208
|
"require": "./lib/store/index.cjs",
|
|
208
|
-
"default": "./lib/store/index.js"
|
|
209
|
-
"types": "./lib/store/index.d.ts"
|
|
209
|
+
"default": "./lib/store/index.js"
|
|
210
210
|
},
|
|
211
211
|
"./ticker": {
|
|
212
|
+
"types": "./lib/ticker/index.d.ts",
|
|
212
213
|
"require": "./lib/ticker/index.cjs",
|
|
213
|
-
"default": "./lib/ticker/index.js"
|
|
214
|
-
"types": "./lib/ticker/index.d.ts"
|
|
214
|
+
"default": "./lib/ticker/index.js"
|
|
215
215
|
},
|
|
216
216
|
"./need_redo_tweaker": {
|
|
217
|
+
"types": "./lib/need_redo_tweaker/index.d.ts",
|
|
217
218
|
"require": "./lib/need_redo_tweaker/index.cjs",
|
|
218
|
-
"default": "./lib/need_redo_tweaker/index.js"
|
|
219
|
-
"types": "./lib/need_redo_tweaker/index.d.ts"
|
|
219
|
+
"default": "./lib/need_redo_tweaker/index.js"
|
|
220
220
|
},
|
|
221
221
|
"./utils": {
|
|
222
|
+
"types": "./lib/utils/index.d.ts",
|
|
222
223
|
"require": "./lib/utils/index.cjs",
|
|
223
|
-
"default": "./lib/utils/index.js"
|
|
224
|
-
"types": "./lib/utils/index.d.ts"
|
|
224
|
+
"default": "./lib/utils/index.js"
|
|
225
225
|
},
|
|
226
226
|
"./video": {
|
|
227
|
+
"types": "./lib/video/index.d.ts",
|
|
227
228
|
"require": "./lib/video/index.cjs",
|
|
228
|
-
"default": "./lib/video/index.js"
|
|
229
|
-
"types": "./lib/video/index.d.ts"
|
|
229
|
+
"default": "./lib/video/index.js"
|
|
230
230
|
},
|
|
231
231
|
"./window-resizer": {
|
|
232
|
+
"types": "./lib/window-resizer/index.d.ts",
|
|
232
233
|
"require": "./lib/window-resizer/index.cjs",
|
|
233
|
-
"default": "./lib/window-resizer/index.js"
|
|
234
|
-
"types": "./lib/window-resizer/index.d.ts"
|
|
234
|
+
"default": "./lib/window-resizer/index.js"
|
|
235
235
|
},
|
|
236
236
|
"./youtube": {
|
|
237
|
+
"types": "./lib/youtube/index.d.ts",
|
|
237
238
|
"require": "./lib/youtube/index.cjs",
|
|
238
|
-
"default": "./lib/youtube/index.js"
|
|
239
|
-
"types": "./lib/youtube/index.d.ts"
|
|
239
|
+
"default": "./lib/youtube/index.js"
|
|
240
240
|
}
|
|
241
241
|
},
|
|
242
242
|
"typesVersions": {
|