@appcorp/stellar-solutions-modules 0.1.35 → 0.1.36
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/components/theme-provider.d.ts +9 -0
- package/components/theme-provider.js +122 -0
- package/components/ui/card.d.ts +9 -0
- package/components/ui/card.js +94 -0
- package/components/ui/combobox.d.ts +70 -0
- package/components/ui/combobox.js +315 -0
- package/components/ui/command.d.ts +18 -0
- package/components/ui/command.js +115 -0
- package/components/ui/dialog.d.ts +15 -0
- package/components/ui/dialog.js +118 -0
- package/components/ui/enhanced-table-footer-pagination.d.ts +1 -3
- package/components/ui/form.d.ts +24 -0
- package/components/ui/form.js +125 -0
- package/components/ui/separator.d.ts +4 -0
- package/components/ui/separator.js +66 -0
- package/components/ui/textarea.d.ts +8 -0
- package/components/ui/textarea.js +86 -0
- package/i18n/navigation.d.ts +340 -0
- package/i18n/navigation.js +9 -0
- package/i18n/request.d.ts +2 -0
- package/i18n/request.js +95 -0
- package/i18n/routing.d.ts +18 -0
- package/i18n/routing.js +9 -0
- package/index.d.ts +26 -0
- package/index.js +42 -0
- package/package.json +12 -11
|
@@ -0,0 +1,340 @@
|
|
|
1
|
+
export declare const locales: readonly ["en", "ur"];
|
|
2
|
+
export declare const localePrefix = "as-needed";
|
|
3
|
+
export declare const Link: import("react").ForwardRefExoticComponent<Omit<{
|
|
4
|
+
slot?: string | undefined | undefined;
|
|
5
|
+
style?: import("react").CSSProperties | undefined;
|
|
6
|
+
title?: string | undefined | undefined;
|
|
7
|
+
locale?: import("use-intl").Locale | undefined;
|
|
8
|
+
onError?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
9
|
+
children?: import("react").ReactNode;
|
|
10
|
+
ref?: import("react").Ref<HTMLAnchorElement> | undefined;
|
|
11
|
+
replace?: boolean | undefined;
|
|
12
|
+
prefix?: string | undefined | undefined;
|
|
13
|
+
key?: import("react").Key | null | undefined;
|
|
14
|
+
as?: (string | import("url").UrlObject) | undefined;
|
|
15
|
+
scroll?: boolean | undefined;
|
|
16
|
+
shallow?: boolean | undefined;
|
|
17
|
+
passHref?: boolean | undefined;
|
|
18
|
+
prefetch?: boolean | "auto" | null | "unstable_forceStale" | undefined;
|
|
19
|
+
legacyBehavior?: boolean | undefined;
|
|
20
|
+
onMouseEnter?: React.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
21
|
+
onTouchStart?: React.TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
22
|
+
onClick?: React.MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
23
|
+
onNavigate?: ((event: {
|
|
24
|
+
preventDefault: () => void;
|
|
25
|
+
}) => void) | undefined;
|
|
26
|
+
download?: any;
|
|
27
|
+
hrefLang?: string | undefined | undefined;
|
|
28
|
+
media?: string | undefined | undefined;
|
|
29
|
+
ping?: string | undefined | undefined;
|
|
30
|
+
target?: import("react").HTMLAttributeAnchorTarget | undefined;
|
|
31
|
+
type?: string | undefined | undefined;
|
|
32
|
+
referrerPolicy?: import("react").HTMLAttributeReferrerPolicy | undefined;
|
|
33
|
+
defaultChecked?: boolean | undefined | undefined;
|
|
34
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
35
|
+
suppressContentEditableWarning?: boolean | undefined | undefined;
|
|
36
|
+
suppressHydrationWarning?: boolean | undefined | undefined;
|
|
37
|
+
accessKey?: string | undefined | undefined;
|
|
38
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {}) | undefined;
|
|
39
|
+
autoFocus?: boolean | undefined | undefined;
|
|
40
|
+
className?: string | undefined | undefined;
|
|
41
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
42
|
+
contextMenu?: string | undefined | undefined;
|
|
43
|
+
dir?: string | undefined | undefined;
|
|
44
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
45
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
46
|
+
hidden?: boolean | undefined | undefined;
|
|
47
|
+
id?: string | undefined | undefined;
|
|
48
|
+
lang?: string | undefined | undefined;
|
|
49
|
+
nonce?: string | undefined | undefined;
|
|
50
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
51
|
+
tabIndex?: number | undefined | undefined;
|
|
52
|
+
translate?: "yes" | "no" | undefined | undefined;
|
|
53
|
+
radioGroup?: string | undefined | undefined;
|
|
54
|
+
role?: import("react").AriaRole | undefined;
|
|
55
|
+
about?: string | undefined | undefined;
|
|
56
|
+
content?: string | undefined | undefined;
|
|
57
|
+
datatype?: string | undefined | undefined;
|
|
58
|
+
inlist?: any;
|
|
59
|
+
property?: string | undefined | undefined;
|
|
60
|
+
rel?: string | undefined | undefined;
|
|
61
|
+
resource?: string | undefined | undefined;
|
|
62
|
+
rev?: string | undefined | undefined;
|
|
63
|
+
typeof?: string | undefined | undefined;
|
|
64
|
+
vocab?: string | undefined | undefined;
|
|
65
|
+
autoCorrect?: string | undefined | undefined;
|
|
66
|
+
autoSave?: string | undefined | undefined;
|
|
67
|
+
color?: string | undefined | undefined;
|
|
68
|
+
itemProp?: string | undefined | undefined;
|
|
69
|
+
itemScope?: boolean | undefined | undefined;
|
|
70
|
+
itemType?: string | undefined | undefined;
|
|
71
|
+
itemID?: string | undefined | undefined;
|
|
72
|
+
itemRef?: string | undefined | undefined;
|
|
73
|
+
results?: number | undefined | undefined;
|
|
74
|
+
security?: string | undefined | undefined;
|
|
75
|
+
unselectable?: "on" | "off" | undefined | undefined;
|
|
76
|
+
popover?: "" | "auto" | "manual" | undefined | undefined;
|
|
77
|
+
popoverTargetAction?: "toggle" | "show" | "hide" | undefined | undefined;
|
|
78
|
+
popoverTarget?: string | undefined | undefined;
|
|
79
|
+
inert?: boolean | undefined | undefined;
|
|
80
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined | undefined;
|
|
81
|
+
is?: string | undefined | undefined;
|
|
82
|
+
tw?: string | undefined;
|
|
83
|
+
"aria-activedescendant"?: string | undefined | undefined;
|
|
84
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
85
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
86
|
+
"aria-braillelabel"?: string | undefined | undefined;
|
|
87
|
+
"aria-brailleroledescription"?: string | undefined | undefined;
|
|
88
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
89
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
90
|
+
"aria-colcount"?: number | undefined | undefined;
|
|
91
|
+
"aria-colindex"?: number | undefined | undefined;
|
|
92
|
+
"aria-colindextext"?: string | undefined | undefined;
|
|
93
|
+
"aria-colspan"?: number | undefined | undefined;
|
|
94
|
+
"aria-controls"?: string | undefined | undefined;
|
|
95
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined | undefined;
|
|
96
|
+
"aria-describedby"?: string | undefined | undefined;
|
|
97
|
+
"aria-description"?: string | undefined | undefined;
|
|
98
|
+
"aria-details"?: string | undefined | undefined;
|
|
99
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
100
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
101
|
+
"aria-errormessage"?: string | undefined | undefined;
|
|
102
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
103
|
+
"aria-flowto"?: string | undefined | undefined;
|
|
104
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
105
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined | undefined;
|
|
106
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
107
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined | undefined;
|
|
108
|
+
"aria-keyshortcuts"?: string | undefined | undefined;
|
|
109
|
+
"aria-label"?: string | undefined | undefined;
|
|
110
|
+
"aria-labelledby"?: string | undefined | undefined;
|
|
111
|
+
"aria-level"?: number | undefined | undefined;
|
|
112
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
113
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
114
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
115
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
116
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined | undefined;
|
|
117
|
+
"aria-owns"?: string | undefined | undefined;
|
|
118
|
+
"aria-placeholder"?: string | undefined | undefined;
|
|
119
|
+
"aria-posinset"?: number | undefined | undefined;
|
|
120
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
121
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
122
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
123
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
124
|
+
"aria-roledescription"?: string | undefined | undefined;
|
|
125
|
+
"aria-rowcount"?: number | undefined | undefined;
|
|
126
|
+
"aria-rowindex"?: number | undefined | undefined;
|
|
127
|
+
"aria-rowindextext"?: string | undefined | undefined;
|
|
128
|
+
"aria-rowspan"?: number | undefined | undefined;
|
|
129
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
130
|
+
"aria-setsize"?: number | undefined | undefined;
|
|
131
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
132
|
+
"aria-valuemax"?: number | undefined | undefined;
|
|
133
|
+
"aria-valuemin"?: number | undefined | undefined;
|
|
134
|
+
"aria-valuenow"?: number | undefined | undefined;
|
|
135
|
+
"aria-valuetext"?: string | undefined | undefined;
|
|
136
|
+
dangerouslySetInnerHTML?: {
|
|
137
|
+
__html: string | TrustedHTML;
|
|
138
|
+
} | undefined | undefined;
|
|
139
|
+
onCopy?: import("react").ClipboardEventHandler<HTMLAnchorElement> | undefined;
|
|
140
|
+
onCopyCapture?: import("react").ClipboardEventHandler<HTMLAnchorElement> | undefined;
|
|
141
|
+
onCut?: import("react").ClipboardEventHandler<HTMLAnchorElement> | undefined;
|
|
142
|
+
onCutCapture?: import("react").ClipboardEventHandler<HTMLAnchorElement> | undefined;
|
|
143
|
+
onPaste?: import("react").ClipboardEventHandler<HTMLAnchorElement> | undefined;
|
|
144
|
+
onPasteCapture?: import("react").ClipboardEventHandler<HTMLAnchorElement> | undefined;
|
|
145
|
+
onCompositionEnd?: import("react").CompositionEventHandler<HTMLAnchorElement> | undefined;
|
|
146
|
+
onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLAnchorElement> | undefined;
|
|
147
|
+
onCompositionStart?: import("react").CompositionEventHandler<HTMLAnchorElement> | undefined;
|
|
148
|
+
onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLAnchorElement> | undefined;
|
|
149
|
+
onCompositionUpdate?: import("react").CompositionEventHandler<HTMLAnchorElement> | undefined;
|
|
150
|
+
onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLAnchorElement> | undefined;
|
|
151
|
+
onFocus?: import("react").FocusEventHandler<HTMLAnchorElement> | undefined;
|
|
152
|
+
onFocusCapture?: import("react").FocusEventHandler<HTMLAnchorElement> | undefined;
|
|
153
|
+
onBlur?: import("react").FocusEventHandler<HTMLAnchorElement> | undefined;
|
|
154
|
+
onBlurCapture?: import("react").FocusEventHandler<HTMLAnchorElement> | undefined;
|
|
155
|
+
onChange?: import("react").FormEventHandler<HTMLAnchorElement> | undefined;
|
|
156
|
+
onChangeCapture?: import("react").FormEventHandler<HTMLAnchorElement> | undefined;
|
|
157
|
+
onBeforeInput?: import("react").FormEventHandler<HTMLAnchorElement> | undefined;
|
|
158
|
+
onBeforeInputCapture?: import("react").FormEventHandler<HTMLAnchorElement> | undefined;
|
|
159
|
+
onInput?: import("react").FormEventHandler<HTMLAnchorElement> | undefined;
|
|
160
|
+
onInputCapture?: import("react").FormEventHandler<HTMLAnchorElement> | undefined;
|
|
161
|
+
onReset?: import("react").FormEventHandler<HTMLAnchorElement> | undefined;
|
|
162
|
+
onResetCapture?: import("react").FormEventHandler<HTMLAnchorElement> | undefined;
|
|
163
|
+
onSubmit?: import("react").FormEventHandler<HTMLAnchorElement> | undefined;
|
|
164
|
+
onSubmitCapture?: import("react").FormEventHandler<HTMLAnchorElement> | undefined;
|
|
165
|
+
onInvalid?: import("react").FormEventHandler<HTMLAnchorElement> | undefined;
|
|
166
|
+
onInvalidCapture?: import("react").FormEventHandler<HTMLAnchorElement> | undefined;
|
|
167
|
+
onLoad?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
168
|
+
onLoadCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
169
|
+
onErrorCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
170
|
+
onKeyDown?: import("react").KeyboardEventHandler<HTMLAnchorElement> | undefined;
|
|
171
|
+
onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLAnchorElement> | undefined;
|
|
172
|
+
onKeyPress?: import("react").KeyboardEventHandler<HTMLAnchorElement> | undefined;
|
|
173
|
+
onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLAnchorElement> | undefined;
|
|
174
|
+
onKeyUp?: import("react").KeyboardEventHandler<HTMLAnchorElement> | undefined;
|
|
175
|
+
onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLAnchorElement> | undefined;
|
|
176
|
+
onAbort?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
177
|
+
onAbortCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
178
|
+
onCanPlay?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
179
|
+
onCanPlayCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
180
|
+
onCanPlayThrough?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
181
|
+
onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
182
|
+
onDurationChange?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
183
|
+
onDurationChangeCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
184
|
+
onEmptied?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
185
|
+
onEmptiedCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
186
|
+
onEncrypted?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
187
|
+
onEncryptedCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
188
|
+
onEnded?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
189
|
+
onEndedCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
190
|
+
onLoadedData?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
191
|
+
onLoadedDataCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
192
|
+
onLoadedMetadata?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
193
|
+
onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
194
|
+
onLoadStart?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
195
|
+
onLoadStartCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
196
|
+
onPause?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
197
|
+
onPauseCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
198
|
+
onPlay?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
199
|
+
onPlayCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
200
|
+
onPlaying?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
201
|
+
onPlayingCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
202
|
+
onProgress?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
203
|
+
onProgressCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
204
|
+
onRateChange?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
205
|
+
onRateChangeCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
206
|
+
onResize?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
207
|
+
onResizeCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
208
|
+
onSeeked?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
209
|
+
onSeekedCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
210
|
+
onSeeking?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
211
|
+
onSeekingCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
212
|
+
onStalled?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
213
|
+
onStalledCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
214
|
+
onSuspend?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
215
|
+
onSuspendCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
216
|
+
onTimeUpdate?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
217
|
+
onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
218
|
+
onVolumeChange?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
219
|
+
onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
220
|
+
onWaiting?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
221
|
+
onWaitingCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
222
|
+
onAuxClick?: import("react").MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
223
|
+
onAuxClickCapture?: import("react").MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
224
|
+
onClickCapture?: import("react").MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
225
|
+
onContextMenu?: import("react").MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
226
|
+
onContextMenuCapture?: import("react").MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
227
|
+
onDoubleClick?: import("react").MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
228
|
+
onDoubleClickCapture?: import("react").MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
229
|
+
onDrag?: import("react").DragEventHandler<HTMLAnchorElement> | undefined;
|
|
230
|
+
onDragCapture?: import("react").DragEventHandler<HTMLAnchorElement> | undefined;
|
|
231
|
+
onDragEnd?: import("react").DragEventHandler<HTMLAnchorElement> | undefined;
|
|
232
|
+
onDragEndCapture?: import("react").DragEventHandler<HTMLAnchorElement> | undefined;
|
|
233
|
+
onDragEnter?: import("react").DragEventHandler<HTMLAnchorElement> | undefined;
|
|
234
|
+
onDragEnterCapture?: import("react").DragEventHandler<HTMLAnchorElement> | undefined;
|
|
235
|
+
onDragExit?: import("react").DragEventHandler<HTMLAnchorElement> | undefined;
|
|
236
|
+
onDragExitCapture?: import("react").DragEventHandler<HTMLAnchorElement> | undefined;
|
|
237
|
+
onDragLeave?: import("react").DragEventHandler<HTMLAnchorElement> | undefined;
|
|
238
|
+
onDragLeaveCapture?: import("react").DragEventHandler<HTMLAnchorElement> | undefined;
|
|
239
|
+
onDragOver?: import("react").DragEventHandler<HTMLAnchorElement> | undefined;
|
|
240
|
+
onDragOverCapture?: import("react").DragEventHandler<HTMLAnchorElement> | undefined;
|
|
241
|
+
onDragStart?: import("react").DragEventHandler<HTMLAnchorElement> | undefined;
|
|
242
|
+
onDragStartCapture?: import("react").DragEventHandler<HTMLAnchorElement> | undefined;
|
|
243
|
+
onDrop?: import("react").DragEventHandler<HTMLAnchorElement> | undefined;
|
|
244
|
+
onDropCapture?: import("react").DragEventHandler<HTMLAnchorElement> | undefined;
|
|
245
|
+
onMouseDown?: import("react").MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
246
|
+
onMouseDownCapture?: import("react").MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
247
|
+
onMouseLeave?: import("react").MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
248
|
+
onMouseMove?: import("react").MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
249
|
+
onMouseMoveCapture?: import("react").MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
250
|
+
onMouseOut?: import("react").MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
251
|
+
onMouseOutCapture?: import("react").MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
252
|
+
onMouseOver?: import("react").MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
253
|
+
onMouseOverCapture?: import("react").MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
254
|
+
onMouseUp?: import("react").MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
255
|
+
onMouseUpCapture?: import("react").MouseEventHandler<HTMLAnchorElement> | undefined;
|
|
256
|
+
onSelect?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
257
|
+
onSelectCapture?: import("react").ReactEventHandler<HTMLAnchorElement> | undefined;
|
|
258
|
+
onTouchCancel?: import("react").TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
259
|
+
onTouchCancelCapture?: import("react").TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
260
|
+
onTouchEnd?: import("react").TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
261
|
+
onTouchEndCapture?: import("react").TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
262
|
+
onTouchMove?: import("react").TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
263
|
+
onTouchMoveCapture?: import("react").TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
264
|
+
onTouchStartCapture?: import("react").TouchEventHandler<HTMLAnchorElement> | undefined;
|
|
265
|
+
onPointerDown?: import("react").PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
266
|
+
onPointerDownCapture?: import("react").PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
267
|
+
onPointerMove?: import("react").PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
268
|
+
onPointerMoveCapture?: import("react").PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
269
|
+
onPointerUp?: import("react").PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
270
|
+
onPointerUpCapture?: import("react").PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
271
|
+
onPointerCancel?: import("react").PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
272
|
+
onPointerCancelCapture?: import("react").PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
273
|
+
onPointerEnter?: import("react").PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
274
|
+
onPointerLeave?: import("react").PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
275
|
+
onPointerOver?: import("react").PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
276
|
+
onPointerOverCapture?: import("react").PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
277
|
+
onPointerOut?: import("react").PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
278
|
+
onPointerOutCapture?: import("react").PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
279
|
+
onGotPointerCapture?: import("react").PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
280
|
+
onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
281
|
+
onLostPointerCapture?: import("react").PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
282
|
+
onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLAnchorElement> | undefined;
|
|
283
|
+
onScroll?: import("react").UIEventHandler<HTMLAnchorElement> | undefined;
|
|
284
|
+
onScrollCapture?: import("react").UIEventHandler<HTMLAnchorElement> | undefined;
|
|
285
|
+
onWheel?: import("react").WheelEventHandler<HTMLAnchorElement> | undefined;
|
|
286
|
+
onWheelCapture?: import("react").WheelEventHandler<HTMLAnchorElement> | undefined;
|
|
287
|
+
onAnimationStart?: import("react").AnimationEventHandler<HTMLAnchorElement> | undefined;
|
|
288
|
+
onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLAnchorElement> | undefined;
|
|
289
|
+
onAnimationEnd?: import("react").AnimationEventHandler<HTMLAnchorElement> | undefined;
|
|
290
|
+
onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLAnchorElement> | undefined;
|
|
291
|
+
onAnimationIteration?: import("react").AnimationEventHandler<HTMLAnchorElement> | undefined;
|
|
292
|
+
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLAnchorElement> | undefined;
|
|
293
|
+
onToggle?: import("react").ToggleEventHandler<HTMLAnchorElement> | undefined;
|
|
294
|
+
onBeforeToggle?: import("react").ToggleEventHandler<HTMLAnchorElement> | undefined;
|
|
295
|
+
onTransitionCancel?: import("react").TransitionEventHandler<HTMLAnchorElement> | undefined;
|
|
296
|
+
onTransitionCancelCapture?: import("react").TransitionEventHandler<HTMLAnchorElement> | undefined;
|
|
297
|
+
onTransitionEnd?: import("react").TransitionEventHandler<HTMLAnchorElement> | undefined;
|
|
298
|
+
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLAnchorElement> | undefined;
|
|
299
|
+
onTransitionRun?: import("react").TransitionEventHandler<HTMLAnchorElement> | undefined;
|
|
300
|
+
onTransitionRunCapture?: import("react").TransitionEventHandler<HTMLAnchorElement> | undefined;
|
|
301
|
+
onTransitionStart?: import("react").TransitionEventHandler<HTMLAnchorElement> | undefined;
|
|
302
|
+
onTransitionStartCapture?: import("react").TransitionEventHandler<HTMLAnchorElement> | undefined;
|
|
303
|
+
href: string | import("url").UrlObject;
|
|
304
|
+
}, "ref"> & import("react").RefAttributes<HTMLAnchorElement>>, redirect: (args: {
|
|
305
|
+
href: string | {
|
|
306
|
+
pathname: string;
|
|
307
|
+
query?: import("next-intl/navigation").QueryParams;
|
|
308
|
+
};
|
|
309
|
+
locale: import("use-intl").Locale;
|
|
310
|
+
forcePrefix?: boolean;
|
|
311
|
+
}, type?: import("next/navigation").RedirectType | undefined) => never, usePathname: () => string, useRouter: () => {
|
|
312
|
+
push: (href: string | {
|
|
313
|
+
pathname: string;
|
|
314
|
+
query?: import("next-intl/navigation").QueryParams;
|
|
315
|
+
}, options?: (Partial<import("next/dist/shared/lib/app-router-context.shared-runtime").NavigateOptions> & {
|
|
316
|
+
locale?: import("use-intl").Locale;
|
|
317
|
+
}) | undefined) => void;
|
|
318
|
+
replace: (href: string | {
|
|
319
|
+
pathname: string;
|
|
320
|
+
query?: import("next-intl/navigation").QueryParams;
|
|
321
|
+
}, options?: (Partial<import("next/dist/shared/lib/app-router-context.shared-runtime").NavigateOptions> & {
|
|
322
|
+
locale?: import("use-intl").Locale;
|
|
323
|
+
}) | undefined) => void;
|
|
324
|
+
prefetch: (href: string | {
|
|
325
|
+
pathname: string;
|
|
326
|
+
query?: import("next-intl/navigation").QueryParams;
|
|
327
|
+
}, options?: (Partial<import("next/dist/shared/lib/app-router-context.shared-runtime").PrefetchOptions> & {
|
|
328
|
+
locale?: import("use-intl").Locale;
|
|
329
|
+
}) | undefined) => void;
|
|
330
|
+
back(): void;
|
|
331
|
+
forward(): void;
|
|
332
|
+
refresh(): void;
|
|
333
|
+
}, getPathname: (args: {
|
|
334
|
+
href: string | {
|
|
335
|
+
pathname: string;
|
|
336
|
+
query?: import("next-intl/navigation").QueryParams;
|
|
337
|
+
};
|
|
338
|
+
locale: import("use-intl").Locale;
|
|
339
|
+
forcePrefix?: boolean;
|
|
340
|
+
}) => string;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var _a;
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.getPathname = exports.useRouter = exports.usePathname = exports.redirect = exports.Link = exports.localePrefix = exports.locales = void 0;
|
|
5
|
+
var navigation_1 = require("next-intl/navigation");
|
|
6
|
+
var routing_1 = require("./routing");
|
|
7
|
+
exports.locales = ['en', 'ur'];
|
|
8
|
+
exports.localePrefix = 'as-needed';
|
|
9
|
+
exports.Link = (_a = (0, navigation_1.createNavigation)(routing_1.routing), _a.Link), exports.redirect = _a.redirect, exports.usePathname = _a.usePathname, exports.useRouter = _a.useRouter, exports.getPathname = _a.getPathname;
|
package/i18n/request.js
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
36
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
37
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
38
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
39
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
40
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
41
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
42
|
+
});
|
|
43
|
+
};
|
|
44
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
45
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
46
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
47
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
48
|
+
function step(op) {
|
|
49
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
50
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
51
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
52
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
53
|
+
switch (op[0]) {
|
|
54
|
+
case 0: case 1: t = op; break;
|
|
55
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
56
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
57
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
58
|
+
default:
|
|
59
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
60
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
61
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
62
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
63
|
+
if (t[2]) _.ops.pop();
|
|
64
|
+
_.trys.pop(); continue;
|
|
65
|
+
}
|
|
66
|
+
op = body.call(thisArg, _);
|
|
67
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
68
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
69
|
+
}
|
|
70
|
+
};
|
|
71
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
72
|
+
var server_1 = require("next-intl/server");
|
|
73
|
+
var next_intl_1 = require("next-intl");
|
|
74
|
+
var routing_1 = require("./routing");
|
|
75
|
+
exports.default = (0, server_1.getRequestConfig)(function (_a) { return __awaiter(void 0, [_a], void 0, function (_b) {
|
|
76
|
+
var requested, locale;
|
|
77
|
+
var _c;
|
|
78
|
+
var requestLocale = _b.requestLocale;
|
|
79
|
+
return __generator(this, function (_d) {
|
|
80
|
+
switch (_d.label) {
|
|
81
|
+
case 0: return [4 /*yield*/, requestLocale];
|
|
82
|
+
case 1:
|
|
83
|
+
requested = _d.sent();
|
|
84
|
+
locale = (0, next_intl_1.hasLocale)(routing_1.routing.locales, requested)
|
|
85
|
+
? requested
|
|
86
|
+
: routing_1.routing.defaultLocale;
|
|
87
|
+
_c = {
|
|
88
|
+
locale: locale
|
|
89
|
+
};
|
|
90
|
+
return [4 /*yield*/, Promise.resolve("".concat("../../messages/".concat(locale, ".json"))).then(function (s) { return __importStar(require(s)); })];
|
|
91
|
+
case 2: return [2 /*return*/, (_c.messages = (_d.sent()).default,
|
|
92
|
+
_c)];
|
|
93
|
+
}
|
|
94
|
+
});
|
|
95
|
+
}); });
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export declare const routing: {
|
|
2
|
+
locales: readonly ["en", "ur"];
|
|
3
|
+
defaultLocale: "ur" | "en";
|
|
4
|
+
localePrefix?: import("next-intl/routing").LocalePrefix<readonly ["en", "ur"], "as-needed"> | undefined;
|
|
5
|
+
domains?: undefined;
|
|
6
|
+
localeCookie?: boolean | {
|
|
7
|
+
path?: string | undefined | undefined;
|
|
8
|
+
name?: string | undefined;
|
|
9
|
+
maxAge?: number | undefined | undefined;
|
|
10
|
+
priority?: "low" | "medium" | "high" | undefined | undefined;
|
|
11
|
+
domain?: string | undefined | undefined;
|
|
12
|
+
secure?: boolean | undefined | undefined;
|
|
13
|
+
sameSite?: true | false | "lax" | "strict" | "none" | undefined | undefined;
|
|
14
|
+
partitioned?: boolean | undefined | undefined;
|
|
15
|
+
};
|
|
16
|
+
alternateLinks?: boolean;
|
|
17
|
+
localeDetection?: boolean;
|
|
18
|
+
};
|
package/i18n/routing.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.routing = void 0;
|
|
4
|
+
var routing_1 = require("next-intl/routing");
|
|
5
|
+
exports.routing = (0, routing_1.defineRouting)({
|
|
6
|
+
locales: ["en", "ur"],
|
|
7
|
+
defaultLocale: "en",
|
|
8
|
+
localePrefix: "as-needed",
|
|
9
|
+
});
|
package/index.d.ts
CHANGED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export * from "./components/theme-provider";
|
|
2
|
+
export * from "./components/theme-switcher";
|
|
3
|
+
export * from "./components/ui/badge";
|
|
4
|
+
export * from "./components/ui/button";
|
|
5
|
+
export * from "./components/ui/card";
|
|
6
|
+
export * from "./components/ui/checkbox";
|
|
7
|
+
export * from "./components/ui/combobox";
|
|
8
|
+
export * from "./components/ui/command";
|
|
9
|
+
export * from "./components/ui/dialog";
|
|
10
|
+
export * from "./components/ui/drawer";
|
|
11
|
+
export * from "./components/ui/dropdown-menu";
|
|
12
|
+
export * from "./components/ui/enhanced-table-footer-action";
|
|
13
|
+
export * from "./components/ui/enhanced-table-footer-page";
|
|
14
|
+
export * from "./components/ui/enhanced-table-footer-pagination";
|
|
15
|
+
export * from "./components/ui/enhanced-table-header-action";
|
|
16
|
+
export * from "./components/ui/enhanced-table-header-search";
|
|
17
|
+
export * from "./components/ui/enhanced-table";
|
|
18
|
+
export * from "./components/ui/form";
|
|
19
|
+
export * from "./components/ui/input";
|
|
20
|
+
export * from "./components/ui/label";
|
|
21
|
+
export * from "./components/ui/popover";
|
|
22
|
+
export * from "./components/ui/select";
|
|
23
|
+
export * from "./components/ui/separator";
|
|
24
|
+
export * from "./components/ui/sonner";
|
|
25
|
+
export * from "./components/ui/switch";
|
|
26
|
+
export * from "./components/ui/textarea";
|
package/index.js
CHANGED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./components/theme-provider"), exports);
|
|
18
|
+
__exportStar(require("./components/theme-switcher"), exports);
|
|
19
|
+
__exportStar(require("./components/ui/badge"), exports);
|
|
20
|
+
__exportStar(require("./components/ui/button"), exports);
|
|
21
|
+
__exportStar(require("./components/ui/card"), exports);
|
|
22
|
+
__exportStar(require("./components/ui/checkbox"), exports);
|
|
23
|
+
__exportStar(require("./components/ui/combobox"), exports);
|
|
24
|
+
__exportStar(require("./components/ui/command"), exports);
|
|
25
|
+
__exportStar(require("./components/ui/dialog"), exports);
|
|
26
|
+
__exportStar(require("./components/ui/drawer"), exports);
|
|
27
|
+
__exportStar(require("./components/ui/dropdown-menu"), exports);
|
|
28
|
+
__exportStar(require("./components/ui/enhanced-table-footer-action"), exports);
|
|
29
|
+
__exportStar(require("./components/ui/enhanced-table-footer-page"), exports);
|
|
30
|
+
__exportStar(require("./components/ui/enhanced-table-footer-pagination"), exports);
|
|
31
|
+
__exportStar(require("./components/ui/enhanced-table-header-action"), exports);
|
|
32
|
+
__exportStar(require("./components/ui/enhanced-table-header-search"), exports);
|
|
33
|
+
__exportStar(require("./components/ui/enhanced-table"), exports);
|
|
34
|
+
__exportStar(require("./components/ui/form"), exports);
|
|
35
|
+
__exportStar(require("./components/ui/input"), exports);
|
|
36
|
+
__exportStar(require("./components/ui/label"), exports);
|
|
37
|
+
__exportStar(require("./components/ui/popover"), exports);
|
|
38
|
+
__exportStar(require("./components/ui/select"), exports);
|
|
39
|
+
__exportStar(require("./components/ui/separator"), exports);
|
|
40
|
+
__exportStar(require("./components/ui/sonner"), exports);
|
|
41
|
+
__exportStar(require("./components/ui/switch"), exports);
|
|
42
|
+
__exportStar(require("./components/ui/textarea"), exports);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appcorp/stellar-solutions-modules",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.36",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"automate": "./automate.sh",
|
|
6
6
|
"build": "yarn clean && yarn build:ts && cp package.json lib && cp README.md lib && cp yarn.lock lib",
|
|
@@ -23,11 +23,14 @@
|
|
|
23
23
|
"@eslint/eslintrc": "^3",
|
|
24
24
|
"@headlessui/react": "^2",
|
|
25
25
|
"@heroicons/react": "^2",
|
|
26
|
+
"@radix-ui/react-checkbox": "^1.3.3",
|
|
26
27
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
27
28
|
"@radix-ui/react-label": "^2.1.7",
|
|
28
29
|
"@radix-ui/react-popover": "^1.1.15",
|
|
29
30
|
"@radix-ui/react-select": "^2.2.6",
|
|
31
|
+
"@radix-ui/react-separator": "^1.1.7",
|
|
30
32
|
"@radix-ui/react-slot": "^1.2.3",
|
|
33
|
+
"@radix-ui/react-switch": "^1.2.6",
|
|
31
34
|
"@react-pakistan/util-functions": "^1.24.57",
|
|
32
35
|
"@supabase/supabase-js": "^2",
|
|
33
36
|
"@tailwindcss/forms": "^0",
|
|
@@ -37,6 +40,8 @@
|
|
|
37
40
|
"@types/react-dom": "^19",
|
|
38
41
|
"@types/react-slick": "^0",
|
|
39
42
|
"class-variance-authority": "^0.7.1",
|
|
43
|
+
"clsx": "^2.1.1",
|
|
44
|
+
"cmdk": "^1.1.1",
|
|
40
45
|
"dayjs": "^1",
|
|
41
46
|
"eslint": "^9",
|
|
42
47
|
"eslint-config-next": "^15",
|
|
@@ -49,25 +54,21 @@
|
|
|
49
54
|
"react": "^19",
|
|
50
55
|
"react-copy-to-clipboard": "^5",
|
|
51
56
|
"react-dom": "^19",
|
|
57
|
+
"react-hook-form": "^7.64.0",
|
|
52
58
|
"react-hot-toast": "^2",
|
|
53
59
|
"react-photo-view": "^1",
|
|
54
60
|
"react-slick": "^0",
|
|
55
61
|
"react-tooltip": "^5",
|
|
56
62
|
"rimraf": "^6",
|
|
57
63
|
"slick-carousel": "^1",
|
|
58
|
-
"sonner": "^2
|
|
59
|
-
"tailwind-merge": "^3
|
|
64
|
+
"sonner": "^2",
|
|
65
|
+
"tailwind-merge": "^3",
|
|
60
66
|
"tailwindcss": "^4",
|
|
61
|
-
"tw-animate-css": "^1
|
|
67
|
+
"tw-animate-css": "^1",
|
|
62
68
|
"typescript": "^5",
|
|
63
69
|
"uuid": "^11",
|
|
64
|
-
"vaul": "^1
|
|
70
|
+
"vaul": "^1",
|
|
65
71
|
"zod": "^4"
|
|
66
72
|
},
|
|
67
|
-
"packageManager": "yarn@4.9.2"
|
|
68
|
-
"dependencies": {
|
|
69
|
-
"@radix-ui/react-checkbox": "^1.3.3",
|
|
70
|
-
"@radix-ui/react-switch": "^1.2.6",
|
|
71
|
-
"clsx": "^2.1.1"
|
|
72
|
-
}
|
|
73
|
+
"packageManager": "yarn@4.9.2"
|
|
73
74
|
}
|