wacomm 1.0.15 → 1.0.16
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/{index-BDZGq3T-.js → index-BQQexS6t.js} +53 -53
- package/dist/{index-CQkfm3Gd.mjs → index-DLoKym1C.mjs} +3356 -3272
- package/dist/{mapbox-gl-OzLpLGa5.js → mapbox-gl-DOw8y5UR.js} +1 -1
- package/dist/{mapbox-gl-JTUsRYsh.mjs → mapbox-gl-DwUZFEWr.mjs} +1 -1
- package/dist/svgTags/CategoryTag.d.ts +10 -0
- package/dist/svgTags/InterestTag.d.ts +1 -1
- package/dist/svgTags/index.d.ts +1 -0
- package/dist/wacomm.cjs.js +1 -1
- package/dist/wacomm.es.js +81 -80
- package/package.json +2 -2
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ZeroFuncType } from 'waujs';
|
|
2
|
+
interface CategoryTagProps {
|
|
3
|
+
isHighlighted: boolean;
|
|
4
|
+
onClick?: ZeroFuncType;
|
|
5
|
+
className?: string;
|
|
6
|
+
categorySeq: number;
|
|
7
|
+
label: string;
|
|
8
|
+
}
|
|
9
|
+
export default function CategoryTag({ isHighlighted, onClick, className, categorySeq, label }: CategoryTagProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export {};
|
package/dist/svgTags/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export { default as ChatTag } from './ChatTag';
|
|
|
12
12
|
export { default as UpArrowTag } from './UpArrowTag';
|
|
13
13
|
export { default as NotificationTag } from './NotificationTag';
|
|
14
14
|
export { default as InterestTag } from './InterestTag';
|
|
15
|
+
export { default as CategoryTag } from './CategoryTag';
|
|
15
16
|
export * from './profiles';
|
|
16
17
|
export * from './posts';
|
|
17
18
|
export * from './locations';
|
package/dist/wacomm.cjs.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("./index-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("./index-BQQexS6t.js");exports.A=a.A;exports.ATarget=a.ATarget;exports.AddButton=a.AddButton;exports.AlertWrap=a.AlertWrap;exports.ArenaTag=a.ArenaTag;exports.Autocomplete=a.Autocomplete;exports.Button=a.Button;exports.CacheButton=a.CacheButton;exports.CalendarEventTag=a.CalendarEventTag;exports.CalendarTag=a.CalendarTag;exports.CategoryTag=a.CategoryTag;exports.ChatTag=a.ChatTag;exports.CityTag=a.CityTag;exports.CloseIcon=a.CloseIcon;exports.CoachTag=a.CoachTag;exports.CollectionTag=a.CollectionsTag;exports.Column=a.Column;exports.Container=a.Container;exports.Copyright=a.Copyright;exports.CreateArenaTag=a.CreateArenaTag;exports.CreateCollectionTag=a.CreateCollectionTag;exports.CreatePostTag=a.CreatePostTag;exports.CreateTag=a.CreateTag;exports.CreateTeamTag=a.CreateTeamTag;exports.DateDisplay=a.DateDisplay;exports.DatePicker=a.DatePicker;exports.DateRange=a.DateRange;exports.DateTimePicker=a.DateTimePicker;exports.Deletable=a.Deletable;exports.Dropdown=a.Input$1;exports.EditIcon=a.EditIcon;exports.EditableBlock=a.EditableBlock;exports.ErrorMessage=a.ErrorMessage;exports.ExpandableContainer=a.ExpandableContainer;exports.ExpandableTextUpdater=a.ExpandableTextUpdater;exports.ExploreTag=a.ExploreTag;exports.FileInput=a.FileInput;exports.FormButtons=a.FormButtons;exports.H1=a.H1;exports.HomeTag=a.HomeTag;exports.ImageTag=a.ImageTag;exports.Img=a.Img;exports.Input=a.Input;exports.InputType=a.InputType;exports.InterestIconTooltip=a.InterestIconTooltip;exports.InterestTag=a.InterestTag;exports.List=a.List;exports.LoadingIndicator=a.LoadingIndicator;exports.LogoutTag=a.LogoutTag;exports.MapStyle=a.MapStyle;exports.MapTag=a.MapTag;exports.MapboxMap=a.MapboxMap;exports.MarketTag=a.MarketTag;exports.MenuTooltip=a.MenuTooltip;exports.Modal=a.Modal;exports.ModalButton=a.ModalButton;exports.MonthPicker=a.MonthPicker;exports.NavArrows=a.NavArrows;exports.Navbar=a.Navbar;exports.NavigationControlPosition=a.NavigationControlPosition;exports.NewsfeedTag=a.NewsfeedTag;exports.NotFound=a.NotFound;exports.NotificationTag=a.NotificationTag;exports.NumberInput=a.NumberInput;exports.PartnersTag=a.PartnersTag;exports.Picker=a.Picker;exports.PollTag=a.PollTag;exports.PrivateTag=a.PrivateTag;exports.Row=a.Row;exports.SearchBar=a.SearchBar;exports.StyledButton=a.StyledButton;exports.SubmitButton=a.SubmitButton;exports.SvgButton=a.SvgButton;exports.SvgSize=a.c;exports.SvgTooltip=a.SvgTooltip;exports.Tabs=a.Tabs;exports.Tag=a.Tag;exports.TagColor=a.TagColor;exports.TagLabelSize=a.TagLabelSize;exports.TeamTag=a.TeamTag;exports.TextInput=a.TextInput;exports.TextPostTag=a.TextPostTag;exports.TextUpdater=a.TextUpdater;exports.Textarea=a.Textarea;exports.TimePicker=a.TimePicker;exports.ToggleButton=a.ToggleButton;exports.Tooltip=a.Tooltip;exports.UpArrowTag=a.UpArrowTag;exports.UserTag=a.UserTag;exports.WorenaLogo=a.WorenaLogo;exports.YesNoButtons=a.YesNoButtons;exports.formatDate=a.formatDate;exports.formatDateTime=a.formatDateTime;exports.formatDateTimeRange=a.formatDateTimeRange;exports.formatTime=a.formatTime;exports.isSameDate=a.isSameDate;
|
package/dist/wacomm.es.js
CHANGED
|
@@ -1,98 +1,99 @@
|
|
|
1
|
-
import { A as e, a as t, s as o, f as r,
|
|
1
|
+
import { A as e, a as t, s as o, f as r, al as T, j as g, B as n, p as i, aq as l, a9 as p, aj as u, af as m, ay as C, aA as d, at as c, am as B, aF as I, aG as D, C as b, an as x, ao as P, aw as M, aa as S, ap as v, K as A, u as f, J as k, w as y, D as E, $ as N, az as h, E as w, d as L, l as F, e as U, a6 as z, Z as R, X as H, H as W, a5 as j, au as q, I as G, U as Y, V as J, a3 as K, ai as O, L as Q, m as V, ae as X, Q as Z, ab as _, O as $, ar as aa, a0 as sa, M as ea, q as ta, v as oa, N as ra, a4 as Ta, R as ga, a8 as na, i as ia, ah as la, aD as pa, a7 as ua, P as ma, av as Ca, ac as da, aE as ca, S as Ba, r as Ia, W as Da, n as ba, k as xa, a2 as Pa, h as Ma, T as Sa, b as va, c as Aa, ak as fa, aC as ka, ax as ya, aB as Ea, _ as Na, t as ha, o as wa, a1 as La, ag as Fa, as as Ua, ad as za, Y as Ra, x as Ha, z as Wa, G as ja, y as qa, F as Ga } from "./index-DLoKym1C.mjs";
|
|
2
2
|
export {
|
|
3
3
|
e as A,
|
|
4
4
|
t as ATarget,
|
|
5
5
|
o as AddButton,
|
|
6
6
|
r as AlertWrap,
|
|
7
7
|
T as ArenaTag,
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
g as Autocomplete,
|
|
9
|
+
n as Button,
|
|
10
10
|
i as CacheButton,
|
|
11
11
|
l as CalendarEventTag,
|
|
12
12
|
p as CalendarTag,
|
|
13
|
-
u as
|
|
14
|
-
m as
|
|
15
|
-
C as
|
|
16
|
-
d as
|
|
17
|
-
c as
|
|
18
|
-
B as
|
|
19
|
-
I as
|
|
20
|
-
D as
|
|
21
|
-
b as
|
|
22
|
-
x as
|
|
23
|
-
P as
|
|
24
|
-
M as
|
|
25
|
-
S as
|
|
26
|
-
v as
|
|
27
|
-
A as
|
|
28
|
-
f as
|
|
29
|
-
k as
|
|
13
|
+
u as CategoryTag,
|
|
14
|
+
m as ChatTag,
|
|
15
|
+
C as CityTag,
|
|
16
|
+
d as CloseIcon,
|
|
17
|
+
c as CoachTag,
|
|
18
|
+
B as CollectionTag,
|
|
19
|
+
I as Column,
|
|
20
|
+
D as Container,
|
|
21
|
+
b as Copyright,
|
|
22
|
+
x as CreateArenaTag,
|
|
23
|
+
P as CreateCollectionTag,
|
|
24
|
+
M as CreatePostTag,
|
|
25
|
+
S as CreateTag,
|
|
26
|
+
v as CreateTeamTag,
|
|
27
|
+
A as DateDisplay,
|
|
28
|
+
f as DatePicker,
|
|
29
|
+
k as DateRange,
|
|
30
|
+
y as DateTimePicker,
|
|
30
31
|
E as Deletable,
|
|
31
32
|
N as Dropdown,
|
|
32
33
|
h as EditIcon,
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
34
|
+
w as EditableBlock,
|
|
35
|
+
L as ErrorMessage,
|
|
36
|
+
F as ExpandableContainer,
|
|
37
|
+
U as ExpandableTextUpdater,
|
|
38
|
+
z as ExploreTag,
|
|
39
|
+
R as FileInput,
|
|
40
|
+
H as FormButtons,
|
|
41
|
+
W as H1,
|
|
42
|
+
j as HomeTag,
|
|
43
|
+
q as ImageTag,
|
|
44
|
+
G as Img,
|
|
44
45
|
Y as Input,
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
46
|
+
J as InputType,
|
|
47
|
+
K as InterestIconTooltip,
|
|
48
|
+
O as InterestTag,
|
|
49
|
+
Q as List,
|
|
50
|
+
V as LoadingIndicator,
|
|
51
|
+
X as LogoutTag,
|
|
52
|
+
Z as MapStyle,
|
|
53
|
+
_ as MapTag,
|
|
54
|
+
$ as MapboxMap,
|
|
55
|
+
aa as MarketTag,
|
|
56
|
+
sa as MenuTooltip,
|
|
57
|
+
ea as Modal,
|
|
58
|
+
ta as ModalButton,
|
|
59
|
+
oa as MonthPicker,
|
|
60
|
+
ra as NavArrows,
|
|
61
|
+
Ta as Navbar,
|
|
62
|
+
ga as NavigationControlPosition,
|
|
62
63
|
na as NewsfeedTag,
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
64
|
+
ia as NotFound,
|
|
65
|
+
la as NotificationTag,
|
|
66
|
+
pa as NumberInput,
|
|
67
|
+
ua as PartnersTag,
|
|
68
|
+
ma as Picker,
|
|
69
|
+
Ca as PollTag,
|
|
70
|
+
da as PrivateTag,
|
|
71
|
+
ca as Row,
|
|
72
|
+
Ba as SearchBar,
|
|
73
|
+
Ia as StyledButton,
|
|
74
|
+
Da as SubmitButton,
|
|
75
|
+
ba as SvgButton,
|
|
76
|
+
xa as SvgSize,
|
|
77
|
+
Pa as SvgTooltip,
|
|
78
|
+
Ma as Tabs,
|
|
79
|
+
Sa as Tag,
|
|
80
|
+
va as TagColor,
|
|
81
|
+
Aa as TagLabelSize,
|
|
82
|
+
fa as TeamTag,
|
|
83
|
+
ka as TextInput,
|
|
84
|
+
ya as TextPostTag,
|
|
84
85
|
Ea as TextUpdater,
|
|
85
86
|
Na as Textarea,
|
|
86
87
|
ha as TimePicker,
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
88
|
+
wa as ToggleButton,
|
|
89
|
+
La as Tooltip,
|
|
90
|
+
Fa as UpArrowTag,
|
|
91
|
+
Ua as UserTag,
|
|
92
|
+
za as WorenaLogo,
|
|
93
|
+
Ra as YesNoButtons,
|
|
94
|
+
Ha as formatDate,
|
|
95
|
+
Wa as formatDateTime,
|
|
96
|
+
ja as formatDateTimeRange,
|
|
97
|
+
qa as formatTime,
|
|
98
|
+
Ga as isSameDate
|
|
98
99
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wacomm",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.16",
|
|
4
4
|
"main": "dist/wacomm.cjs.js",
|
|
5
5
|
"module": "dist/wacomm.es.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"react-tooltip": "^5.28.1",
|
|
56
56
|
"tailwind-merge": "^3.3.0",
|
|
57
57
|
"tiny-invariant": "^1.3.3",
|
|
58
|
-
"wasvg": "^1.0.
|
|
58
|
+
"wasvg": "^1.0.3",
|
|
59
59
|
"waujs": "^1.0.0"
|
|
60
60
|
}
|
|
61
61
|
}
|