@stokelp/ui 2.99.0 → 2.101.0
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/components/app/index.d.ts +1 -0
- package/dist/components/app/mobile-card/MobileCardEntityRow.cjs +2 -0
- package/dist/components/app/mobile-card/MobileCardEntityRow.cjs.map +1 -0
- package/dist/components/app/mobile-card/MobileCardEntityRow.d.ts +6 -0
- package/dist/components/app/mobile-card/MobileCardEntityRow.js +27 -0
- package/dist/components/app/mobile-card/MobileCardEntityRow.js.map +1 -0
- package/dist/components/app/mobile-card/MobileCardHeader.cjs +2 -0
- package/dist/components/app/mobile-card/MobileCardHeader.cjs.map +1 -0
- package/dist/components/app/mobile-card/MobileCardHeader.d.ts +6 -0
- package/dist/components/app/mobile-card/MobileCardHeader.js +22 -0
- package/dist/components/app/mobile-card/MobileCardHeader.js.map +1 -0
- package/dist/components/app/mobile-card/MobileCardNotificationBadge.cjs +2 -0
- package/dist/components/app/mobile-card/MobileCardNotificationBadge.cjs.map +1 -0
- package/dist/components/app/mobile-card/MobileCardNotificationBadge.d.ts +4 -0
- package/dist/components/app/mobile-card/MobileCardNotificationBadge.js +16 -0
- package/dist/components/app/mobile-card/MobileCardNotificationBadge.js.map +1 -0
- package/dist/components/app/mobile-card/MobileCardShell.cjs +2 -0
- package/dist/components/app/mobile-card/MobileCardShell.cjs.map +1 -0
- package/dist/components/app/mobile-card/MobileCardShell.d.ts +6 -0
- package/dist/components/app/mobile-card/MobileCardShell.js +21 -0
- package/dist/components/app/mobile-card/MobileCardShell.js.map +1 -0
- package/dist/components/app/mobile-card/MobileCardSkeleton.cjs +2 -0
- package/dist/components/app/mobile-card/MobileCardSkeleton.cjs.map +1 -0
- package/dist/components/app/mobile-card/MobileCardSkeleton.d.ts +17 -0
- package/dist/components/app/mobile-card/MobileCardSkeleton.js +27 -0
- package/dist/components/app/mobile-card/MobileCardSkeleton.js.map +1 -0
- package/dist/components/app/mobile-card/index.d.ts +10 -0
- package/dist/components/avatar/styled.cjs +1 -1
- package/dist/components/avatar/styled.cjs.map +1 -1
- package/dist/components/avatar/styled.js +7 -7
- package/dist/components/date-picker/DatePicker.cjs +1 -1
- package/dist/components/date-picker/DatePicker.js +6 -6
- package/dist/components/radio-button-group/RadioButtonGroup.d.ts +1 -1
- package/dist/components/radio-group/RadioGroup.d.ts +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +104 -92
- package/dist/index.js.map +1 -1
- package/dist/node_modules/@heroicons/react/24/outline/esm/ChatBubbleLeftRightIcon.cjs +2 -0
- package/dist/node_modules/@heroicons/react/24/outline/esm/ChatBubbleLeftRightIcon.cjs.map +1 -0
- package/dist/node_modules/@heroicons/react/24/outline/esm/ChatBubbleLeftRightIcon.js +30 -0
- package/dist/node_modules/@heroicons/react/24/outline/esm/ChatBubbleLeftRightIcon.js.map +1 -0
- package/dist/node_modules/@zag-js/utils/dist/functions.cjs +2 -0
- package/dist/node_modules/@zag-js/utils/dist/functions.cjs.map +1 -0
- package/dist/node_modules/@zag-js/utils/dist/functions.js +6 -0
- package/dist/node_modules/@zag-js/utils/dist/functions.js.map +1 -0
- package/dist/node_modules/lodash/lodash.cjs +9 -9
- package/dist/node_modules/lodash/lodash.cjs.map +1 -1
- package/dist/node_modules/lodash/lodash.js +1738 -1740
- package/dist/node_modules/lodash/lodash.js.map +1 -1
- package/dist/ui.css +1 -1
- package/package.json +13 -13
- package/dist/node_modules/@zag-js/utils/dist/index.cjs +0 -2
- package/dist/node_modules/@zag-js/utils/dist/index.cjs.map +0 -1
- package/dist/node_modules/@zag-js/utils/dist/index.js +0 -8
- package/dist/node_modules/@zag-js/utils/dist/index.js.map +0 -1
package/dist/index.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { createListCollection as
|
|
3
|
-
import { formatPhoneNumber as h, formatPhoneNumberIntl as I, getCountries as P, getCountryCallingCode as A, isPossiblePhoneNumber as D, isSupportedCountry as
|
|
2
|
+
import { createListCollection as C, createToaster as u, parseColor as c, parseDate as g, useAccordion as b } from "@ark-ui/react";
|
|
3
|
+
import { formatPhoneNumber as h, formatPhoneNumberIntl as I, getCountries as P, getCountryCallingCode as A, isPossiblePhoneNumber as D, isSupportedCountry as w, isValidPhoneNumber as B, parsePhoneNumber as S } from "react-phone-number-input";
|
|
4
4
|
/* empty css */
|
|
5
|
-
import { preset as
|
|
6
|
-
import { Accordion as
|
|
7
|
-
import { ActionCard as
|
|
5
|
+
import { preset as y } from "./preset.js";
|
|
6
|
+
import { Accordion as G, AccordionItem as L, AccordionItemContent as M, AccordionItemIndicator as N, AccordionItemTrigger as k } from "./components/accordion/Accordion.js";
|
|
7
|
+
import { ActionCard as H, ActionCardDescription as $, ActionCardTitle as E } from "./components/action-card/ActionCard.js";
|
|
8
8
|
import { Alert as j } from "./components/alert/Alert.js";
|
|
9
9
|
import * as r from "./components/app/navigation/AppNavigation.js";
|
|
10
10
|
import { AppNavigationLanguageSelect as z } from "./components/app/navigation/language-select/AppNavigationLanguageSelect.js";
|
|
@@ -20,15 +20,15 @@ import { ChatProfileAvatar as po } from "./components/chat/ChatProfileAvatar.js"
|
|
|
20
20
|
import { ChatTextInput as io } from "./components/chat/ChatTextInput.js";
|
|
21
21
|
import { Checkbox as xo, CheckboxGroup as fo } from "./components/checkbox/Checkbox.js";
|
|
22
22
|
import * as a from "./components/checkbox-card/namespace.js";
|
|
23
|
-
import { Chip as
|
|
23
|
+
import { Chip as so, ChipAvatar as Co, ChipClearTrigger as uo, ChipLabel as co } from "./components/chip/Chip.js";
|
|
24
24
|
import * as p from "./components/collapsible/styled.js";
|
|
25
|
-
import { Combobox as
|
|
25
|
+
import { Combobox as bo } from "./components/combobox/Combobox.js";
|
|
26
26
|
import { DatePicker as ho } from "./components/date-picker/DatePicker.js";
|
|
27
27
|
import * as m from "./components/dialog/styled.js";
|
|
28
|
-
import { Drawer as Po, DrawerBody as Ao, DrawerCloseTrigger as Do, DrawerContent as
|
|
29
|
-
import { Flag as
|
|
28
|
+
import { Drawer as Po, DrawerBody as Ao, DrawerCloseTrigger as Do, DrawerContent as wo, DrawerContext as Bo, DrawerFooter as So, DrawerHeader as vo, DrawerTitle as yo, DrawerTrigger as Ro } from "./components/drawer/Drawer.js";
|
|
29
|
+
import { Flag as Lo, FlagCountryCodes as Mo } from "./components/flag/styled.js";
|
|
30
30
|
import { FormControl as ko } from "./components/form/FormControl.js";
|
|
31
|
-
import { FormHelperText as
|
|
31
|
+
import { FormHelperText as Ho } from "./components/form/FormHelperText.js";
|
|
32
32
|
import { FormLabel as Eo } from "./components/form/FormLabel.js";
|
|
33
33
|
import { Heading as jo } from "./components/heading/Heading.js";
|
|
34
34
|
import { Highlight as zo, HighlightedInput as Jo, InputSlot as Ko, Renderer as Oo, Root as Qo } from "./components/input/HighlightedInput.js";
|
|
@@ -39,34 +39,39 @@ import { Input as rr } from "./components/input/Input.js";
|
|
|
39
39
|
import { InputAddon as tr } from "./components/input/InputAddon.js";
|
|
40
40
|
import { InputGroup as pr } from "./components/input/InputGroup.js";
|
|
41
41
|
import * as i from "./components/menu/Menu.js";
|
|
42
|
+
import { MobileCardEntityRow as ir } from "./components/app/mobile-card/MobileCardEntityRow.js";
|
|
43
|
+
import { MobileCardHeader as xr } from "./components/app/mobile-card/MobileCardHeader.js";
|
|
44
|
+
import { MobileCardNotificationBadge as lr } from "./components/app/mobile-card/MobileCardNotificationBadge.js";
|
|
45
|
+
import { MobileCardShell as dr } from "./components/app/mobile-card/MobileCardShell.js";
|
|
46
|
+
import { MobileCardSkeleton as ur, MobileCardSkeletonList as cr, SkeletonBlock as gr } from "./components/app/mobile-card/MobileCardSkeleton.js";
|
|
42
47
|
import * as n from "./components/app/mobile-navigation/MobileNavigation.js";
|
|
43
|
-
import { Pagination as
|
|
44
|
-
import { PhoneNumberInput as
|
|
45
|
-
import { Popover as
|
|
46
|
-
import { PriceTag as
|
|
48
|
+
import { Pagination as Tr } from "./components/pagination/Pagination.js";
|
|
49
|
+
import { PhoneNumberInput as Ir } from "./components/input/PhoneNumberInput.js";
|
|
50
|
+
import { Popover as Ar, PopoverAnchor as Dr, PopoverCloseTrigger as wr, PopoverContent as Br, PopoverContext as Sr, PopoverTrigger as vr } from "./components/popover/Popover.js";
|
|
51
|
+
import { PriceTag as Rr } from "./components/app/price-tag/PriceTag.js";
|
|
47
52
|
import * as x from "./components/app/product-card-catalog/styled.js";
|
|
48
|
-
import { RadioButtonGroup as
|
|
53
|
+
import { RadioButtonGroup as Lr, RadioButtonGroupItem as Mr, RadioButtonGroupLabel as Nr } from "./components/radio-button-group/RadioButtonGroup.js";
|
|
49
54
|
import * as f from "./components/radio-card-group/namespace.js";
|
|
50
|
-
import { RadioGroup as
|
|
51
|
-
import { Select as
|
|
52
|
-
import { SelectLanguage as
|
|
53
|
-
import { StatusTagSelect as
|
|
54
|
-
import { Switch as
|
|
55
|
-
import * as
|
|
56
|
-
import { Table as
|
|
57
|
-
import { Tabs as
|
|
58
|
-
import { Tag as
|
|
59
|
-
import { Text as
|
|
60
|
-
import { Textarea as
|
|
61
|
-
import { Tooltip as
|
|
55
|
+
import { RadioGroup as Fr, RadioGroupItem as Hr, RadioGroupLabel as $r } from "./components/radio-group/RadioGroup.js";
|
|
56
|
+
import { Select as Vr } from "./components/select/Select.js";
|
|
57
|
+
import { SelectLanguage as qr } from "./components/select-language/SelectLanguage.js";
|
|
58
|
+
import { StatusTagSelect as Jr } from "./components/status-tag-select/StatusTagSelect.js";
|
|
59
|
+
import { Switch as Or } from "./components/switch/Switch.js";
|
|
60
|
+
import * as l from "./components/switch-card/namespace.js";
|
|
61
|
+
import { Table as Ur, TableContainer as Wr, TableEmptyRow as Xr, TableGroupTitle as Yr, Tbody as Zr, Td as _r, Th as oe, Thead as re, Tr as ee } from "./components/table/Table.js";
|
|
62
|
+
import { Tabs as ae, TabsChip as pe, TabsContent as me, TabsList as ie, TabsTrigger as ne } from "./components/tabs/Tabs.js";
|
|
63
|
+
import { Tag as fe } from "./components/tag/Tag.js";
|
|
64
|
+
import { Text as se } from "./components/text/Text.js";
|
|
65
|
+
import { Textarea as Ce } from "./components/textarea/Textarea.js";
|
|
66
|
+
import { Tooltip as ce } from "./components/tooltip/Tooltip.js";
|
|
62
67
|
export {
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
68
|
+
G as Accordion,
|
|
69
|
+
L as AccordionItem,
|
|
70
|
+
M as AccordionItemContent,
|
|
71
|
+
N as AccordionItemIndicator,
|
|
67
72
|
k as AccordionItemTrigger,
|
|
68
|
-
|
|
69
|
-
|
|
73
|
+
H as ActionCard,
|
|
74
|
+
$ as ActionCardDescription,
|
|
70
75
|
E as ActionCardTitle,
|
|
71
76
|
j as Alert,
|
|
72
77
|
r as AppNavigation,
|
|
@@ -86,27 +91,27 @@ export {
|
|
|
86
91
|
xo as Checkbox,
|
|
87
92
|
a as CheckboxCard,
|
|
88
93
|
fo as CheckboxGroup,
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
94
|
+
so as Chip,
|
|
95
|
+
Co as ChipAvatar,
|
|
96
|
+
uo as ChipClearTrigger,
|
|
97
|
+
co as ChipLabel,
|
|
93
98
|
p as Collapsible,
|
|
94
|
-
|
|
99
|
+
bo as Combobox,
|
|
95
100
|
ho as DatePicker,
|
|
96
101
|
m as Dialog,
|
|
97
102
|
Po as Drawer,
|
|
98
103
|
Ao as DrawerBody,
|
|
99
104
|
Do as DrawerCloseTrigger,
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
+
wo as DrawerContent,
|
|
106
|
+
Bo as DrawerContext,
|
|
107
|
+
So as DrawerFooter,
|
|
108
|
+
vo as DrawerHeader,
|
|
109
|
+
yo as DrawerTitle,
|
|
105
110
|
Ro as DrawerTrigger,
|
|
106
|
-
|
|
107
|
-
|
|
111
|
+
Lo as Flag,
|
|
112
|
+
Mo as FlagCountryCodes,
|
|
108
113
|
ko as FormControl,
|
|
109
|
-
|
|
114
|
+
Ho as FormHelperText,
|
|
110
115
|
Eo as FormLabel,
|
|
111
116
|
jo as Heading,
|
|
112
117
|
zo as Highlight,
|
|
@@ -119,62 +124,69 @@ export {
|
|
|
119
124
|
pr as InputGroup,
|
|
120
125
|
Ko as InputSlot,
|
|
121
126
|
i as Menu,
|
|
127
|
+
ir as MobileCardEntityRow,
|
|
128
|
+
xr as MobileCardHeader,
|
|
129
|
+
lr as MobileCardNotificationBadge,
|
|
130
|
+
dr as MobileCardShell,
|
|
131
|
+
ur as MobileCardSkeleton,
|
|
132
|
+
cr as MobileCardSkeletonList,
|
|
122
133
|
n as MobileNavigation,
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
134
|
+
Tr as Pagination,
|
|
135
|
+
Ir as PhoneNumberInput,
|
|
136
|
+
Ar as Popover,
|
|
137
|
+
Dr as PopoverAnchor,
|
|
138
|
+
wr as PopoverCloseTrigger,
|
|
139
|
+
Br as PopoverContent,
|
|
140
|
+
Sr as PopoverContext,
|
|
141
|
+
vr as PopoverTrigger,
|
|
142
|
+
Rr as PriceTag,
|
|
132
143
|
x as ProductCardCatalog,
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
144
|
+
Lr as RadioButtonGroup,
|
|
145
|
+
Mr as RadioButtonGroupItem,
|
|
146
|
+
Nr as RadioButtonGroupLabel,
|
|
136
147
|
f as RadioCardGroup,
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
148
|
+
Fr as RadioGroup,
|
|
149
|
+
Hr as RadioGroupItem,
|
|
150
|
+
$r as RadioGroupLabel,
|
|
140
151
|
Oo as Renderer,
|
|
141
152
|
Qo as Root,
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
153
|
+
Vr as Select,
|
|
154
|
+
qr as SelectLanguage,
|
|
155
|
+
gr as SkeletonBlock,
|
|
156
|
+
Jr as StatusTagSelect,
|
|
157
|
+
Or as Switch,
|
|
158
|
+
l as SwitchCard,
|
|
159
|
+
Ur as Table,
|
|
160
|
+
Wr as TableContainer,
|
|
161
|
+
Xr as TableEmptyRow,
|
|
162
|
+
Yr as TableGroupTitle,
|
|
163
|
+
ae as Tabs,
|
|
164
|
+
pe as TabsChip,
|
|
165
|
+
me as TabsContent,
|
|
166
|
+
ie as TabsList,
|
|
167
|
+
ne as TabsTrigger,
|
|
168
|
+
fe as Tag,
|
|
169
|
+
Zr as Tbody,
|
|
170
|
+
_r as Td,
|
|
171
|
+
se as Text,
|
|
172
|
+
Ce as Textarea,
|
|
173
|
+
oe as Th,
|
|
174
|
+
re as Thead,
|
|
175
|
+
ce as Tooltip,
|
|
176
|
+
ee as Tr,
|
|
177
|
+
C as createListCollection,
|
|
178
|
+
u as createToaster,
|
|
167
179
|
h as formatPhoneNumber,
|
|
168
180
|
I as formatPhoneNumberIntl,
|
|
169
181
|
P as getCountries,
|
|
170
182
|
A as getCountryCallingCode,
|
|
171
183
|
D as isPossiblePhoneNumber,
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
184
|
+
w as isSupportedCountry,
|
|
185
|
+
B as isValidPhoneNumber,
|
|
186
|
+
c as parseColor,
|
|
175
187
|
g as parseDate,
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
188
|
+
S as parsePhoneNumber,
|
|
189
|
+
y as preset,
|
|
190
|
+
b as useAccordion
|
|
179
191
|
};
|
|
180
192
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use client";"use strict";const o=require("react");function a(e){const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const r in e)if(r!=="default"){const n=Object.getOwnPropertyDescriptor(e,r);Object.defineProperty(t,r,n.get?n:{enumerable:!0,get:()=>e[r]})}}return t.default=e,Object.freeze(t)}const c=a(o);function l({title:e,titleId:t,...r},n){return c.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?c.createElement("title",{id:t},e):null,c.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M20.25 8.511c.884.284 1.5 1.128 1.5 2.097v4.286c0 1.136-.847 2.1-1.98 2.193-.34.027-.68.052-1.02.072v3.091l-3-3c-1.354 0-2.694-.055-4.02-.163a2.115 2.115 0 0 1-.825-.242m9.345-8.334a2.126 2.126 0 0 0-.476-.095 48.64 48.64 0 0 0-8.048 0c-1.131.094-1.976 1.057-1.976 2.192v4.286c0 .837.46 1.58 1.155 1.951m9.345-8.334V6.637c0-1.621-1.152-3.026-2.76-3.235A48.455 48.455 0 0 0 11.25 3c-2.115 0-4.198.137-6.24.402-1.608.209-2.76 1.614-2.76 3.235v6.226c0 1.621 1.152 3.026 2.76 3.235.577.075 1.157.14 1.74.194V21l4.155-4.155"}))}const i=c.forwardRef(l);module.exports=i;
|
|
2
|
+
//# sourceMappingURL=ChatBubbleLeftRightIcon.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ChatBubbleLeftRightIcon.cjs","sources":["../../../../../../../../../node_modules/@heroicons/react/24/outline/esm/ChatBubbleLeftRightIcon.js"],"sourcesContent":["import * as React from \"react\";\nfunction ChatBubbleLeftRightIcon({\n title,\n titleId,\n ...props\n}, svgRef) {\n return /*#__PURE__*/React.createElement(\"svg\", Object.assign({\n xmlns: \"http://www.w3.org/2000/svg\",\n fill: \"none\",\n viewBox: \"0 0 24 24\",\n strokeWidth: 1.5,\n stroke: \"currentColor\",\n \"aria-hidden\": \"true\",\n \"data-slot\": \"icon\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, /*#__PURE__*/React.createElement(\"path\", {\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n d: \"M20.25 8.511c.884.284 1.5 1.128 1.5 2.097v4.286c0 1.136-.847 2.1-1.98 2.193-.34.027-.68.052-1.02.072v3.091l-3-3c-1.354 0-2.694-.055-4.02-.163a2.115 2.115 0 0 1-.825-.242m9.345-8.334a2.126 2.126 0 0 0-.476-.095 48.64 48.64 0 0 0-8.048 0c-1.131.094-1.976 1.057-1.976 2.192v4.286c0 .837.46 1.58 1.155 1.951m9.345-8.334V6.637c0-1.621-1.152-3.026-2.76-3.235A48.455 48.455 0 0 0 11.25 3c-2.115 0-4.198.137-6.24.402-1.608.209-2.76 1.614-2.76 3.235v6.226c0 1.621 1.152 3.026 2.76 3.235.577.075 1.157.14 1.74.194V21l4.155-4.155\"\n }));\n}\nconst ForwardRef = /*#__PURE__*/ React.forwardRef(ChatBubbleLeftRightIcon);\nexport default ForwardRef;"],"names":["ChatBubbleLeftRightIcon","title","titleId","props","svgRef","React","ForwardRef"],"mappings":"6UACA,SAASA,EAAwB,CAC/B,MAAAC,EACA,QAAAC,EACA,GAAGC,CACL,EAAGC,EAAQ,CACT,OAAoBC,EAAM,cAAc,MAAO,OAAO,OAAO,CAC3D,MAAO,6BACP,KAAM,OACN,QAAS,YACT,YAAa,IACb,OAAQ,eACR,cAAe,OACf,YAAa,OACb,IAAKD,EACL,kBAAmBF,CACvB,EAAKC,CAAK,EAAGF,EAAqBI,EAAM,cAAc,QAAS,CAC3D,GAAIH,CACR,EAAKD,CAAK,EAAI,KAAmBI,EAAM,cAAc,OAAQ,CACzD,cAAe,QACf,eAAgB,QAChB,EAAG,wgBACP,CAAG,CAAC,CACJ,CACK,MAACC,EAA2BD,EAAM,WAAWL,CAAuB","x_google_ignoreList":[0]}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import * as e from "react";
|
|
3
|
+
function o({
|
|
4
|
+
title: t,
|
|
5
|
+
titleId: r,
|
|
6
|
+
...a
|
|
7
|
+
}, n) {
|
|
8
|
+
return /* @__PURE__ */ e.createElement("svg", Object.assign({
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
fill: "none",
|
|
11
|
+
viewBox: "0 0 24 24",
|
|
12
|
+
strokeWidth: 1.5,
|
|
13
|
+
stroke: "currentColor",
|
|
14
|
+
"aria-hidden": "true",
|
|
15
|
+
"data-slot": "icon",
|
|
16
|
+
ref: n,
|
|
17
|
+
"aria-labelledby": r
|
|
18
|
+
}, a), t ? /* @__PURE__ */ e.createElement("title", {
|
|
19
|
+
id: r
|
|
20
|
+
}, t) : null, /* @__PURE__ */ e.createElement("path", {
|
|
21
|
+
strokeLinecap: "round",
|
|
22
|
+
strokeLinejoin: "round",
|
|
23
|
+
d: "M20.25 8.511c.884.284 1.5 1.128 1.5 2.097v4.286c0 1.136-.847 2.1-1.98 2.193-.34.027-.68.052-1.02.072v3.091l-3-3c-1.354 0-2.694-.055-4.02-.163a2.115 2.115 0 0 1-.825-.242m9.345-8.334a2.126 2.126 0 0 0-.476-.095 48.64 48.64 0 0 0-8.048 0c-1.131.094-1.976 1.057-1.976 2.192v4.286c0 .837.46 1.58 1.155 1.951m9.345-8.334V6.637c0-1.621-1.152-3.026-2.76-3.235A48.455 48.455 0 0 0 11.25 3c-2.115 0-4.198.137-6.24.402-1.608.209-2.76 1.614-2.76 3.235v6.226c0 1.621 1.152 3.026 2.76 3.235.577.075 1.157.14 1.74.194V21l4.155-4.155"
|
|
24
|
+
}));
|
|
25
|
+
}
|
|
26
|
+
const c = /* @__PURE__ */ e.forwardRef(o);
|
|
27
|
+
export {
|
|
28
|
+
c as default
|
|
29
|
+
};
|
|
30
|
+
//# sourceMappingURL=ChatBubbleLeftRightIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ChatBubbleLeftRightIcon.js","sources":["../../../../../../../../../node_modules/@heroicons/react/24/outline/esm/ChatBubbleLeftRightIcon.js"],"sourcesContent":["import * as React from \"react\";\nfunction ChatBubbleLeftRightIcon({\n title,\n titleId,\n ...props\n}, svgRef) {\n return /*#__PURE__*/React.createElement(\"svg\", Object.assign({\n xmlns: \"http://www.w3.org/2000/svg\",\n fill: \"none\",\n viewBox: \"0 0 24 24\",\n strokeWidth: 1.5,\n stroke: \"currentColor\",\n \"aria-hidden\": \"true\",\n \"data-slot\": \"icon\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, /*#__PURE__*/React.createElement(\"path\", {\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n d: \"M20.25 8.511c.884.284 1.5 1.128 1.5 2.097v4.286c0 1.136-.847 2.1-1.98 2.193-.34.027-.68.052-1.02.072v3.091l-3-3c-1.354 0-2.694-.055-4.02-.163a2.115 2.115 0 0 1-.825-.242m9.345-8.334a2.126 2.126 0 0 0-.476-.095 48.64 48.64 0 0 0-8.048 0c-1.131.094-1.976 1.057-1.976 2.192v4.286c0 .837.46 1.58 1.155 1.951m9.345-8.334V6.637c0-1.621-1.152-3.026-2.76-3.235A48.455 48.455 0 0 0 11.25 3c-2.115 0-4.198.137-6.24.402-1.608.209-2.76 1.614-2.76 3.235v6.226c0 1.621 1.152 3.026 2.76 3.235.577.075 1.157.14 1.74.194V21l4.155-4.155\"\n }));\n}\nconst ForwardRef = /*#__PURE__*/ React.forwardRef(ChatBubbleLeftRightIcon);\nexport default ForwardRef;"],"names":["ChatBubbleLeftRightIcon","title","titleId","props","svgRef","React","ForwardRef"],"mappings":";;AACA,SAASA,EAAwB;AAAA,EAC/B,OAAAC;AAAA,EACA,SAAAC;AAAA,EACA,GAAGC;AACL,GAAGC,GAAQ;AACT,SAAoB,gBAAAC,EAAM,cAAc,OAAO,OAAO,OAAO;AAAA,IAC3D,OAAO;AAAA,IACP,MAAM;AAAA,IACN,SAAS;AAAA,IACT,aAAa;AAAA,IACb,QAAQ;AAAA,IACR,eAAe;AAAA,IACf,aAAa;AAAA,IACb,KAAKD;AAAA,IACL,mBAAmBF;AAAA,EACvB,GAAKC,CAAK,GAAGF,IAAqB,gBAAAI,EAAM,cAAc,SAAS;AAAA,IAC3D,IAAIH;AAAA,EACR,GAAKD,CAAK,IAAI,MAAmB,gBAAAI,EAAM,cAAc,QAAQ;AAAA,IACzD,eAAe;AAAA,IACf,gBAAgB;AAAA,IAChB,GAAG;AAAA,EACP,CAAG,CAAC;AACJ;AACK,MAACC,IAA2B,gBAAAD,EAAM,WAAWL,CAAuB;","x_google_ignoreList":[0]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"functions.cjs","sources":["../../../../../../../node_modules/@zag-js/utils/dist/functions.mjs"],"sourcesContent":["import \"./chunk-MXGZDBDQ.mjs\";\n\n// src/functions.ts\nimport { isFunction } from \"./guard.mjs\";\nvar runIfFn = (v, ...a) => {\n const res = typeof v === \"function\" ? v(...a) : v;\n return res ?? void 0;\n};\nvar cast = (v) => v;\nvar identity = (v) => v();\nvar noop = () => {\n};\nvar callAll = (...fns) => (...a) => {\n fns.forEach(function(fn) {\n fn?.(...a);\n });\n};\nvar uuid = /* @__PURE__ */ (() => {\n let id = 0;\n return () => {\n id++;\n return id.toString(36);\n };\n})();\nfunction match(key, record, ...args) {\n if (key in record) {\n const fn = record[key];\n return isFunction(fn) ? fn(...args) : fn;\n }\n const error = new Error(`No matching key: ${JSON.stringify(key)} in ${JSON.stringify(Object.keys(record))}`);\n Error.captureStackTrace?.(error, match);\n throw error;\n}\nvar tryCatch = (fn, fallback) => {\n try {\n return fn();\n } catch (error) {\n if (error instanceof Error) {\n Error.captureStackTrace?.(error, tryCatch);\n }\n return fallback?.();\n }\n};\nfunction throttle(fn, wait = 0) {\n let lastCall = 0;\n let timeout = null;\n return ((...args) => {\n const now = Date.now();\n const timeSinceLastCall = now - lastCall;\n if (timeSinceLastCall >= wait) {\n if (timeout) {\n clearTimeout(timeout);\n timeout = null;\n }\n fn(...args);\n lastCall = now;\n } else if (!timeout) {\n timeout = setTimeout(() => {\n fn(...args);\n lastCall = Date.now();\n timeout = null;\n }, wait - timeSinceLastCall);\n }\n });\n}\nfunction debounce(fn, wait = 0) {\n let timeout = null;\n return ((...args) => {\n if (timeout) {\n clearTimeout(timeout);\n timeout = null;\n }\n timeout = setTimeout(() => {\n fn(...args);\n }, wait);\n });\n}\nvar toChar = (code) => String.fromCharCode(code + (code > 25 ? 39 : 97));\nfunction toName(code) {\n let name = \"\";\n let x;\n for (x = Math.abs(code); x > 52; x = x / 52 | 0) name = toChar(x % 52) + name;\n return toChar(x % 52) + name;\n}\nfunction toPhash(h, x) {\n let i = x.length;\n while (i) h = h * 33 ^ x.charCodeAt(--i);\n return h;\n}\nvar hash = (value) => toName(toPhash(5381, value) >>> 0);\nexport {\n callAll,\n cast,\n debounce,\n hash,\n identity,\n match,\n noop,\n runIfFn,\n throttle,\n tryCatch,\n uuid\n};\n"],"names":["runIfFn","v","a"],"mappings":"6FAIG,IAACA,EAAU,CAACC,KAAMC,KACP,OAAOD,GAAM,WAAaA,EAAE,GAAGC,CAAC,EAAID,IAClC","x_google_ignoreList":[0]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"functions.js","sources":["../../../../../../../node_modules/@zag-js/utils/dist/functions.mjs"],"sourcesContent":["import \"./chunk-MXGZDBDQ.mjs\";\n\n// src/functions.ts\nimport { isFunction } from \"./guard.mjs\";\nvar runIfFn = (v, ...a) => {\n const res = typeof v === \"function\" ? v(...a) : v;\n return res ?? void 0;\n};\nvar cast = (v) => v;\nvar identity = (v) => v();\nvar noop = () => {\n};\nvar callAll = (...fns) => (...a) => {\n fns.forEach(function(fn) {\n fn?.(...a);\n });\n};\nvar uuid = /* @__PURE__ */ (() => {\n let id = 0;\n return () => {\n id++;\n return id.toString(36);\n };\n})();\nfunction match(key, record, ...args) {\n if (key in record) {\n const fn = record[key];\n return isFunction(fn) ? fn(...args) : fn;\n }\n const error = new Error(`No matching key: ${JSON.stringify(key)} in ${JSON.stringify(Object.keys(record))}`);\n Error.captureStackTrace?.(error, match);\n throw error;\n}\nvar tryCatch = (fn, fallback) => {\n try {\n return fn();\n } catch (error) {\n if (error instanceof Error) {\n Error.captureStackTrace?.(error, tryCatch);\n }\n return fallback?.();\n }\n};\nfunction throttle(fn, wait = 0) {\n let lastCall = 0;\n let timeout = null;\n return ((...args) => {\n const now = Date.now();\n const timeSinceLastCall = now - lastCall;\n if (timeSinceLastCall >= wait) {\n if (timeout) {\n clearTimeout(timeout);\n timeout = null;\n }\n fn(...args);\n lastCall = now;\n } else if (!timeout) {\n timeout = setTimeout(() => {\n fn(...args);\n lastCall = Date.now();\n timeout = null;\n }, wait - timeSinceLastCall);\n }\n });\n}\nfunction debounce(fn, wait = 0) {\n let timeout = null;\n return ((...args) => {\n if (timeout) {\n clearTimeout(timeout);\n timeout = null;\n }\n timeout = setTimeout(() => {\n fn(...args);\n }, wait);\n });\n}\nvar toChar = (code) => String.fromCharCode(code + (code > 25 ? 39 : 97));\nfunction toName(code) {\n let name = \"\";\n let x;\n for (x = Math.abs(code); x > 52; x = x / 52 | 0) name = toChar(x % 52) + name;\n return toChar(x % 52) + name;\n}\nfunction toPhash(h, x) {\n let i = x.length;\n while (i) h = h * 33 ^ x.charCodeAt(--i);\n return h;\n}\nvar hash = (value) => toName(toPhash(5381, value) >>> 0);\nexport {\n callAll,\n cast,\n debounce,\n hash,\n identity,\n match,\n noop,\n runIfFn,\n throttle,\n tryCatch,\n uuid\n};\n"],"names":["runIfFn","v","a"],"mappings":";AAIG,IAACA,IAAU,CAACC,MAAMC,OACP,OAAOD,KAAM,aAAaA,EAAE,GAAGC,CAAC,IAAID,MAClC;","x_google_ignoreList":[0]}
|