wacomm 2.19.0 → 2.20.1
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/buttons/CloseAccountButton.d.ts +8 -0
- package/dist/buttons/CloseAccountButton.stories.d.ts +7 -0
- package/dist/buttons/CloseAccountButton.test.d.ts +0 -0
- package/dist/buttons/index.d.ts +1 -0
- package/dist/{mapbox-gl-Dh7H8Npu.mjs → mapbox-gl-C-4L0VtI.mjs} +1 -1
- package/dist/{mapbox-gl-B3Paeapq.js → mapbox-gl-CEoCFafC.js} +1 -1
- package/dist/{maplibre-gl-CkvIIBTt.mjs → maplibre-gl-BihX-JHK.mjs} +1 -1
- package/dist/{maplibre-gl-DY_E7Ht0.js → maplibre-gl-D8sNXjGA.js} +1 -1
- package/dist/rolldown-runtime-3b4jIN3o.mjs +13 -0
- package/dist/rolldown-runtime-C6qsp3rV.js +1 -0
- package/dist/svgTags/SettingsTag.d.ts +8 -0
- package/dist/svgTags/SettingsTag.stories.d.ts +6 -0
- package/dist/svgTags/index.d.ts +1 -0
- package/dist/wacomm.cjs.js +41 -49
- package/dist/wacomm.es.js +7688 -10563
- package/package.json +2 -2
- package/dist/rolldown-runtime-DY7j01NX.mjs +0 -30
- package/dist/rolldown-runtime-D_FWMvbo.js +0 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
//#region \0rolldown/runtime.js
|
|
2
|
+
var e = Object.create, t = Object.defineProperty, n = Object.getOwnPropertyDescriptor, r = Object.getOwnPropertyNames, i = Object.getPrototypeOf, a = Object.prototype.hasOwnProperty, o = (e, t) => () => (t || (e((t = { exports: {} }).exports, t), e = null), t.exports), s = (e, i, o, s) => {
|
|
3
|
+
if (i && typeof i == "object" || typeof i == "function") for (var c = r(i), l = 0, u = c.length, d; l < u; l++) d = c[l], !a.call(e, d) && d !== o && t(e, d, {
|
|
4
|
+
get: ((e) => i[e]).bind(null, d),
|
|
5
|
+
enumerable: !(s = n(i, d)) || s.enumerable
|
|
6
|
+
});
|
|
7
|
+
return e;
|
|
8
|
+
}, c = (n, r, a) => (a = n == null ? {} : e(i(n)), s(r || !n || !n.__esModule ? t(a, "default", {
|
|
9
|
+
value: n,
|
|
10
|
+
enumerable: !0
|
|
11
|
+
}) : a, n));
|
|
12
|
+
//#endregion
|
|
13
|
+
export { c as n, o as t };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var e=Object.create,t=Object.defineProperty,n=Object.getOwnPropertyDescriptor,r=Object.getOwnPropertyNames,i=Object.getPrototypeOf,a=Object.prototype.hasOwnProperty,o=(e,t)=>()=>(t||(e((t={exports:{}}).exports,t),e=null),t.exports),s=(e,i,o,s)=>{if(i&&typeof i==`object`||typeof i==`function`)for(var c=r(i),l=0,u=c.length,d;l<u;l++)d=c[l],!a.call(e,d)&&d!==o&&t(e,d,{get:(e=>i[e]).bind(null,d),enumerable:!(s=n(i,d))||s.enumerable});return e},c=(n,r,a)=>(a=n==null?{}:e(i(n)),s(r||!n||!n.__esModule?t(a,`default`,{value:n,enumerable:!0}):a,n));Object.defineProperty(exports,"n",{enumerable:!0,get:function(){return c}}),Object.defineProperty(exports,"t",{enumerable:!0,get:function(){return o}});
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ZeroFuncType } from 'waujs';
|
|
2
|
+
interface SettingsTagProps {
|
|
3
|
+
label: string;
|
|
4
|
+
onClick: ZeroFuncType;
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
declare function SettingsTag({ label, onClick, className }: SettingsTagProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default SettingsTag;
|
package/dist/svgTags/index.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export { default as GoBackTag } from './GoBackTag';
|
|
|
15
15
|
export { default as MessageTag } from './MessageTag';
|
|
16
16
|
export { default as ReportTag } from './ReportTag';
|
|
17
17
|
export { default as BlockTag } from './BlockTag';
|
|
18
|
+
export { default as SettingsTag } from './SettingsTag';
|
|
18
19
|
export * from './profiles';
|
|
19
20
|
export * from './posts';
|
|
20
21
|
export * from './locations';
|