@windrun-huaiin/lib 3.3.0 → 3.4.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/common-app-config.js +7 -29
- package/dist/common-app-config.js.map +1 -1
- package/dist/common-app-config.mjs +3 -5
- package/dist/common-app-config.mjs.map +1 -1
- package/dist/index.js +342 -222
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -180
- package/dist/index.mjs.map +1 -1
- package/dist/limited-lucide-icons.js +317 -182
- package/dist/limited-lucide-icons.js.map +1 -1
- package/dist/limited-lucide-icons.mjs +2 -161
- package/dist/limited-lucide-icons.mjs.map +1 -1
- package/dist/llm-utils.js +19 -46
- package/dist/llm-utils.js.map +1 -1
- package/dist/llm-utils.mjs +9 -10
- package/dist/llm-utils.mjs.map +1 -1
- package/dist/utils.js +12 -35
- package/dist/utils.js.map +1 -1
- package/dist/utils.mjs +7 -7
- package/dist/utils.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1,12 +1,25 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var clsx = require('clsx');
|
|
4
|
+
var tailwindMerge = require('tailwind-merge');
|
|
5
|
+
var dateFns = require('date-fns');
|
|
6
|
+
var lucideReact = require('lucide-react');
|
|
7
|
+
var remark = require('remark');
|
|
8
|
+
var remarkGfm = require('remark-gfm');
|
|
9
|
+
var remarkMdx = require('remark-mdx');
|
|
10
|
+
var remarkFrontmatter = require('remark-frontmatter');
|
|
11
|
+
var unistUtilVisit = require('unist-util-visit');
|
|
12
|
+
|
|
13
|
+
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
14
|
+
|
|
15
|
+
var remarkGfm__default = /*#__PURE__*/_interopDefault(remarkGfm);
|
|
16
|
+
var remarkMdx__default = /*#__PURE__*/_interopDefault(remarkMdx);
|
|
17
|
+
var remarkFrontmatter__default = /*#__PURE__*/_interopDefault(remarkFrontmatter);
|
|
18
|
+
|
|
3
19
|
var __defProp = Object.defineProperty;
|
|
4
20
|
var __defProps = Object.defineProperties;
|
|
5
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
6
21
|
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
7
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
8
22
|
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
9
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
10
23
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
11
24
|
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
12
25
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
@@ -22,27 +35,6 @@ var __spreadValues = (a, b) => {
|
|
|
22
35
|
return a;
|
|
23
36
|
};
|
|
24
37
|
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
25
|
-
var __export = (target, all) => {
|
|
26
|
-
for (var name in all)
|
|
27
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
28
|
-
};
|
|
29
|
-
var __copyProps = (to, from, except, desc) => {
|
|
30
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
31
|
-
for (let key of __getOwnPropNames(from))
|
|
32
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
33
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
34
|
-
}
|
|
35
|
-
return to;
|
|
36
|
-
};
|
|
37
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
38
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
39
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
40
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
41
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
42
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
43
|
-
mod
|
|
44
|
-
));
|
|
45
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
46
38
|
var __async = (__this, __arguments, generator) => {
|
|
47
39
|
return new Promise((resolve, reject) => {
|
|
48
40
|
var fulfilled = (value) => {
|
|
@@ -63,103 +55,8 @@ var __async = (__this, __arguments, generator) => {
|
|
|
63
55
|
step((generator = generator.apply(__this, __arguments)).next());
|
|
64
56
|
});
|
|
65
57
|
};
|
|
66
|
-
|
|
67
|
-
// src/index.ts
|
|
68
|
-
var src_exports = {};
|
|
69
|
-
__export(src_exports, {
|
|
70
|
-
AlbumIcon: () => import_lucide_react.AlbumIcon,
|
|
71
|
-
AlignHorizontalJustifyEnd: () => import_lucide_react.AlignHorizontalJustifyEnd,
|
|
72
|
-
ArrowLeft: () => import_lucide_react.ArrowLeft,
|
|
73
|
-
ArrowRight: () => import_lucide_react.ArrowRight,
|
|
74
|
-
ArrowUp: () => import_lucide_react.ArrowUp,
|
|
75
|
-
Binary: () => import_lucide_react.Binary,
|
|
76
|
-
Blocks: () => import_lucide_react.Blocks,
|
|
77
|
-
BookX: () => import_lucide_react.BookX,
|
|
78
|
-
BringToFront: () => import_lucide_react.BringToFront,
|
|
79
|
-
Bug: () => import_lucide_react.Bug,
|
|
80
|
-
Building2: () => import_lucide_react.Building2,
|
|
81
|
-
Car: () => import_lucide_react.Car,
|
|
82
|
-
Check: () => import_lucide_react.Check,
|
|
83
|
-
ChevronDown: () => import_lucide_react.ChevronDown,
|
|
84
|
-
ChevronLeft: () => import_lucide_react.ChevronLeft,
|
|
85
|
-
ChevronRight: () => import_lucide_react.ChevronRight,
|
|
86
|
-
ChevronUp: () => import_lucide_react.ChevronUp,
|
|
87
|
-
Circle: () => import_lucide_react.Circle,
|
|
88
|
-
CircleAlert: () => import_lucide_react.CircleAlert,
|
|
89
|
-
CircleSmall: () => import_lucide_react.CircleSmall,
|
|
90
|
-
ComponentIcon: () => import_lucide_react.ComponentIcon,
|
|
91
|
-
Cpu: () => import_lucide_react.Cpu,
|
|
92
|
-
DatabaseZap: () => import_lucide_react.DatabaseZap,
|
|
93
|
-
Dot: () => import_lucide_react.Dot,
|
|
94
|
-
Download: () => import_lucide_react.Download,
|
|
95
|
-
ExternalLink: () => import_lucide_react.ExternalLink,
|
|
96
|
-
Eye: () => import_lucide_react.Eye,
|
|
97
|
-
Facebook: () => import_lucide_react.Facebook,
|
|
98
|
-
FileLock2: () => import_lucide_react.FileLock2,
|
|
99
|
-
Fingerprint: () => import_lucide_react.Fingerprint,
|
|
100
|
-
Gift: () => import_lucide_react.Gift,
|
|
101
|
-
GitPullRequestArrow: () => import_lucide_react.GitPullRequestArrow,
|
|
102
|
-
Globe: () => import_lucide_react.Globe,
|
|
103
|
-
GlobeLock: () => import_lucide_react.GlobeLock,
|
|
104
|
-
GripVertical: () => import_lucide_react.GripVertical,
|
|
105
|
-
HandHeart: () => import_lucide_react.HandHeart,
|
|
106
|
-
Handshake: () => import_lucide_react.Handshake,
|
|
107
|
-
Highlighter: () => import_lucide_react.Highlighter,
|
|
108
|
-
HousePlus: () => import_lucide_react.HousePlus,
|
|
109
|
-
ImageDown: () => import_lucide_react.ImageDown,
|
|
110
|
-
ImageOff: () => import_lucide_react.ImageOff,
|
|
111
|
-
ImageUp: () => import_lucide_react.ImageUp,
|
|
112
|
-
Info: () => import_lucide_react.Info,
|
|
113
|
-
Keyboard: () => import_lucide_react.Keyboard,
|
|
114
|
-
LOCALE_PRESETS: () => LOCALE_PRESETS,
|
|
115
|
-
LandPlot: () => import_lucide_react.LandPlot,
|
|
116
|
-
Layout: () => import_lucide_react.Layout,
|
|
117
|
-
LayoutTemplate: () => import_lucide_react.LayoutTemplate,
|
|
118
|
-
LibraryIcon: () => import_lucide_react.LibraryIcon,
|
|
119
|
-
Link: () => import_lucide_react.Link,
|
|
120
|
-
Loader2: () => import_lucide_react.Loader2,
|
|
121
|
-
LogIn: () => import_lucide_react.LogIn,
|
|
122
|
-
LogOut: () => import_lucide_react.LogOut,
|
|
123
|
-
MoreHorizontal: () => import_lucide_react.MoreHorizontal,
|
|
124
|
-
MousePointerClick: () => import_lucide_react.MousePointerClick,
|
|
125
|
-
Palette: () => import_lucide_react.Palette,
|
|
126
|
-
PanelLeft: () => import_lucide_react.PanelLeft,
|
|
127
|
-
PanelsTopLeft: () => import_lucide_react.PanelsTopLeft,
|
|
128
|
-
Pencil: () => import_lucide_react.Pencil,
|
|
129
|
-
Pi: () => import_lucide_react.Pi,
|
|
130
|
-
ReceiptText: () => import_lucide_react.ReceiptText,
|
|
131
|
-
Regex: () => import_lucide_react.Regex,
|
|
132
|
-
Replace: () => import_lucide_react.Replace,
|
|
133
|
-
Rss: () => import_lucide_react.Rss,
|
|
134
|
-
Scale: () => import_lucide_react.Scale,
|
|
135
|
-
Search: () => import_lucide_react.Search,
|
|
136
|
-
Server: () => import_lucide_react.Server,
|
|
137
|
-
Share: () => import_lucide_react.Share,
|
|
138
|
-
ShieldUser: () => import_lucide_react.ShieldUser,
|
|
139
|
-
Sparkles: () => import_lucide_react.Sparkles,
|
|
140
|
-
SplinePointer: () => import_lucide_react.SplinePointer,
|
|
141
|
-
SquareDashedBottomCode: () => import_lucide_react.SquareDashedBottomCode,
|
|
142
|
-
SquareTerminal: () => import_lucide_react.SquareTerminal,
|
|
143
|
-
Star: () => import_lucide_react.Star,
|
|
144
|
-
Tablets: () => import_lucide_react.Tablets,
|
|
145
|
-
Terminal: () => import_lucide_react.Terminal,
|
|
146
|
-
Twitter: () => import_lucide_react.Twitter,
|
|
147
|
-
X: () => import_lucide_react.X,
|
|
148
|
-
Zap: () => import_lucide_react.Zap,
|
|
149
|
-
cn: () => cn,
|
|
150
|
-
createCommonAppConfig: () => createCommonAppConfig,
|
|
151
|
-
createI18nHelpers: () => createI18nHelpers,
|
|
152
|
-
formatTimestamp: () => formatTimestamp,
|
|
153
|
-
getLLMText: () => getLLMText
|
|
154
|
-
});
|
|
155
|
-
module.exports = __toCommonJS(src_exports);
|
|
156
|
-
|
|
157
|
-
// src/utils.ts
|
|
158
|
-
var import_clsx = require("clsx");
|
|
159
|
-
var import_tailwind_merge = require("tailwind-merge");
|
|
160
|
-
var import_date_fns = require("date-fns");
|
|
161
58
|
function cn(...inputs) {
|
|
162
|
-
return
|
|
59
|
+
return tailwindMerge.twMerge(clsx.clsx(inputs));
|
|
163
60
|
}
|
|
164
61
|
function formatTimestamp(timestamp, formatter) {
|
|
165
62
|
const fail = "";
|
|
@@ -171,36 +68,26 @@ function formatTimestamp(timestamp, formatter) {
|
|
|
171
68
|
return fail;
|
|
172
69
|
}
|
|
173
70
|
const date = new Date(timestampMs);
|
|
174
|
-
if (!
|
|
71
|
+
if (!dateFns.isValid(date)) {
|
|
175
72
|
return fail;
|
|
176
73
|
}
|
|
177
74
|
try {
|
|
178
|
-
return
|
|
75
|
+
return dateFns.format(date, formatter);
|
|
179
76
|
} catch (error) {
|
|
180
77
|
console.error("Error formatting date:", error);
|
|
181
78
|
return fail;
|
|
182
79
|
}
|
|
183
80
|
}
|
|
184
|
-
|
|
185
|
-
// src/limited-lucide-icons.ts
|
|
186
|
-
var import_lucide_react = require("lucide-react");
|
|
187
|
-
|
|
188
|
-
// src/llm-utils.ts
|
|
189
|
-
var import_remark = require("remark");
|
|
190
|
-
var import_remark_gfm = __toESM(require("remark-gfm"));
|
|
191
|
-
var import_remark_mdx = __toESM(require("remark-mdx"));
|
|
192
|
-
var import_remark_frontmatter = __toESM(require("remark-frontmatter"));
|
|
193
|
-
var import_unist_util_visit = require("unist-util-visit");
|
|
194
81
|
function remarkRemoveFrontmatter() {
|
|
195
82
|
return (tree) => {
|
|
196
|
-
|
|
83
|
+
unistUtilVisit.visit(tree, "yaml", (_node, index, parent) => {
|
|
197
84
|
if (parent && typeof index === "number") {
|
|
198
85
|
parent.children.splice(index, 1);
|
|
199
86
|
}
|
|
200
87
|
});
|
|
201
88
|
};
|
|
202
89
|
}
|
|
203
|
-
var processor =
|
|
90
|
+
var processor = remark.remark().use(remarkFrontmatter__default.default, ["yaml"]).use(remarkRemoveFrontmatter).use(remarkMdx__default.default).use(remarkGfm__default.default);
|
|
204
91
|
function getLLMText(mdxContent, title, description) {
|
|
205
92
|
return __async(this, null, function* () {
|
|
206
93
|
if (typeof mdxContent !== "string") {
|
|
@@ -355,91 +242,324 @@ var LOCALE_PRESETS = {
|
|
|
355
242
|
// No internationalization (only default language)
|
|
356
243
|
NONE: { locales: [], defaultLocale: "en" }
|
|
357
244
|
};
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
245
|
+
|
|
246
|
+
Object.defineProperty(exports, "AlbumIcon", {
|
|
247
|
+
enumerable: true,
|
|
248
|
+
get: function () { return lucideReact.AlbumIcon; }
|
|
249
|
+
});
|
|
250
|
+
Object.defineProperty(exports, "AlignHorizontalJustifyEnd", {
|
|
251
|
+
enumerable: true,
|
|
252
|
+
get: function () { return lucideReact.AlignHorizontalJustifyEnd; }
|
|
253
|
+
});
|
|
254
|
+
Object.defineProperty(exports, "ArrowLeft", {
|
|
255
|
+
enumerable: true,
|
|
256
|
+
get: function () { return lucideReact.ArrowLeft; }
|
|
257
|
+
});
|
|
258
|
+
Object.defineProperty(exports, "ArrowRight", {
|
|
259
|
+
enumerable: true,
|
|
260
|
+
get: function () { return lucideReact.ArrowRight; }
|
|
261
|
+
});
|
|
262
|
+
Object.defineProperty(exports, "ArrowUp", {
|
|
263
|
+
enumerable: true,
|
|
264
|
+
get: function () { return lucideReact.ArrowUp; }
|
|
265
|
+
});
|
|
266
|
+
Object.defineProperty(exports, "Binary", {
|
|
267
|
+
enumerable: true,
|
|
268
|
+
get: function () { return lucideReact.Binary; }
|
|
269
|
+
});
|
|
270
|
+
Object.defineProperty(exports, "Blocks", {
|
|
271
|
+
enumerable: true,
|
|
272
|
+
get: function () { return lucideReact.Blocks; }
|
|
273
|
+
});
|
|
274
|
+
Object.defineProperty(exports, "BookX", {
|
|
275
|
+
enumerable: true,
|
|
276
|
+
get: function () { return lucideReact.BookX; }
|
|
277
|
+
});
|
|
278
|
+
Object.defineProperty(exports, "BringToFront", {
|
|
279
|
+
enumerable: true,
|
|
280
|
+
get: function () { return lucideReact.BringToFront; }
|
|
281
|
+
});
|
|
282
|
+
Object.defineProperty(exports, "Bug", {
|
|
283
|
+
enumerable: true,
|
|
284
|
+
get: function () { return lucideReact.Bug; }
|
|
285
|
+
});
|
|
286
|
+
Object.defineProperty(exports, "Building2", {
|
|
287
|
+
enumerable: true,
|
|
288
|
+
get: function () { return lucideReact.Building2; }
|
|
289
|
+
});
|
|
290
|
+
Object.defineProperty(exports, "Car", {
|
|
291
|
+
enumerable: true,
|
|
292
|
+
get: function () { return lucideReact.Car; }
|
|
293
|
+
});
|
|
294
|
+
Object.defineProperty(exports, "Check", {
|
|
295
|
+
enumerable: true,
|
|
296
|
+
get: function () { return lucideReact.Check; }
|
|
297
|
+
});
|
|
298
|
+
Object.defineProperty(exports, "ChevronDown", {
|
|
299
|
+
enumerable: true,
|
|
300
|
+
get: function () { return lucideReact.ChevronDown; }
|
|
301
|
+
});
|
|
302
|
+
Object.defineProperty(exports, "ChevronLeft", {
|
|
303
|
+
enumerable: true,
|
|
304
|
+
get: function () { return lucideReact.ChevronLeft; }
|
|
305
|
+
});
|
|
306
|
+
Object.defineProperty(exports, "ChevronRight", {
|
|
307
|
+
enumerable: true,
|
|
308
|
+
get: function () { return lucideReact.ChevronRight; }
|
|
309
|
+
});
|
|
310
|
+
Object.defineProperty(exports, "ChevronUp", {
|
|
311
|
+
enumerable: true,
|
|
312
|
+
get: function () { return lucideReact.ChevronUp; }
|
|
313
|
+
});
|
|
314
|
+
Object.defineProperty(exports, "Circle", {
|
|
315
|
+
enumerable: true,
|
|
316
|
+
get: function () { return lucideReact.Circle; }
|
|
317
|
+
});
|
|
318
|
+
Object.defineProperty(exports, "CircleAlert", {
|
|
319
|
+
enumerable: true,
|
|
320
|
+
get: function () { return lucideReact.CircleAlert; }
|
|
321
|
+
});
|
|
322
|
+
Object.defineProperty(exports, "CircleSmall", {
|
|
323
|
+
enumerable: true,
|
|
324
|
+
get: function () { return lucideReact.CircleSmall; }
|
|
325
|
+
});
|
|
326
|
+
Object.defineProperty(exports, "ComponentIcon", {
|
|
327
|
+
enumerable: true,
|
|
328
|
+
get: function () { return lucideReact.ComponentIcon; }
|
|
329
|
+
});
|
|
330
|
+
Object.defineProperty(exports, "Cpu", {
|
|
331
|
+
enumerable: true,
|
|
332
|
+
get: function () { return lucideReact.Cpu; }
|
|
333
|
+
});
|
|
334
|
+
Object.defineProperty(exports, "DatabaseZap", {
|
|
335
|
+
enumerable: true,
|
|
336
|
+
get: function () { return lucideReact.DatabaseZap; }
|
|
337
|
+
});
|
|
338
|
+
Object.defineProperty(exports, "Dot", {
|
|
339
|
+
enumerable: true,
|
|
340
|
+
get: function () { return lucideReact.Dot; }
|
|
341
|
+
});
|
|
342
|
+
Object.defineProperty(exports, "Download", {
|
|
343
|
+
enumerable: true,
|
|
344
|
+
get: function () { return lucideReact.Download; }
|
|
345
|
+
});
|
|
346
|
+
Object.defineProperty(exports, "ExternalLink", {
|
|
347
|
+
enumerable: true,
|
|
348
|
+
get: function () { return lucideReact.ExternalLink; }
|
|
349
|
+
});
|
|
350
|
+
Object.defineProperty(exports, "Eye", {
|
|
351
|
+
enumerable: true,
|
|
352
|
+
get: function () { return lucideReact.Eye; }
|
|
353
|
+
});
|
|
354
|
+
Object.defineProperty(exports, "Facebook", {
|
|
355
|
+
enumerable: true,
|
|
356
|
+
get: function () { return lucideReact.Facebook; }
|
|
357
|
+
});
|
|
358
|
+
Object.defineProperty(exports, "FileLock2", {
|
|
359
|
+
enumerable: true,
|
|
360
|
+
get: function () { return lucideReact.FileLock2; }
|
|
361
|
+
});
|
|
362
|
+
Object.defineProperty(exports, "Fingerprint", {
|
|
363
|
+
enumerable: true,
|
|
364
|
+
get: function () { return lucideReact.Fingerprint; }
|
|
365
|
+
});
|
|
366
|
+
Object.defineProperty(exports, "Gift", {
|
|
367
|
+
enumerable: true,
|
|
368
|
+
get: function () { return lucideReact.Gift; }
|
|
369
|
+
});
|
|
370
|
+
Object.defineProperty(exports, "GitPullRequestArrow", {
|
|
371
|
+
enumerable: true,
|
|
372
|
+
get: function () { return lucideReact.GitPullRequestArrow; }
|
|
373
|
+
});
|
|
374
|
+
Object.defineProperty(exports, "Globe", {
|
|
375
|
+
enumerable: true,
|
|
376
|
+
get: function () { return lucideReact.Globe; }
|
|
377
|
+
});
|
|
378
|
+
Object.defineProperty(exports, "GlobeLock", {
|
|
379
|
+
enumerable: true,
|
|
380
|
+
get: function () { return lucideReact.GlobeLock; }
|
|
381
|
+
});
|
|
382
|
+
Object.defineProperty(exports, "GripVertical", {
|
|
383
|
+
enumerable: true,
|
|
384
|
+
get: function () { return lucideReact.GripVertical; }
|
|
385
|
+
});
|
|
386
|
+
Object.defineProperty(exports, "HandHeart", {
|
|
387
|
+
enumerable: true,
|
|
388
|
+
get: function () { return lucideReact.HandHeart; }
|
|
389
|
+
});
|
|
390
|
+
Object.defineProperty(exports, "Handshake", {
|
|
391
|
+
enumerable: true,
|
|
392
|
+
get: function () { return lucideReact.Handshake; }
|
|
393
|
+
});
|
|
394
|
+
Object.defineProperty(exports, "Highlighter", {
|
|
395
|
+
enumerable: true,
|
|
396
|
+
get: function () { return lucideReact.Highlighter; }
|
|
397
|
+
});
|
|
398
|
+
Object.defineProperty(exports, "HousePlus", {
|
|
399
|
+
enumerable: true,
|
|
400
|
+
get: function () { return lucideReact.HousePlus; }
|
|
401
|
+
});
|
|
402
|
+
Object.defineProperty(exports, "ImageDown", {
|
|
403
|
+
enumerable: true,
|
|
404
|
+
get: function () { return lucideReact.ImageDown; }
|
|
405
|
+
});
|
|
406
|
+
Object.defineProperty(exports, "ImageOff", {
|
|
407
|
+
enumerable: true,
|
|
408
|
+
get: function () { return lucideReact.ImageOff; }
|
|
409
|
+
});
|
|
410
|
+
Object.defineProperty(exports, "ImageUp", {
|
|
411
|
+
enumerable: true,
|
|
412
|
+
get: function () { return lucideReact.ImageUp; }
|
|
413
|
+
});
|
|
414
|
+
Object.defineProperty(exports, "Info", {
|
|
415
|
+
enumerable: true,
|
|
416
|
+
get: function () { return lucideReact.Info; }
|
|
417
|
+
});
|
|
418
|
+
Object.defineProperty(exports, "Keyboard", {
|
|
419
|
+
enumerable: true,
|
|
420
|
+
get: function () { return lucideReact.Keyboard; }
|
|
421
|
+
});
|
|
422
|
+
Object.defineProperty(exports, "LandPlot", {
|
|
423
|
+
enumerable: true,
|
|
424
|
+
get: function () { return lucideReact.LandPlot; }
|
|
425
|
+
});
|
|
426
|
+
Object.defineProperty(exports, "Layout", {
|
|
427
|
+
enumerable: true,
|
|
428
|
+
get: function () { return lucideReact.Layout; }
|
|
429
|
+
});
|
|
430
|
+
Object.defineProperty(exports, "LayoutTemplate", {
|
|
431
|
+
enumerable: true,
|
|
432
|
+
get: function () { return lucideReact.LayoutTemplate; }
|
|
433
|
+
});
|
|
434
|
+
Object.defineProperty(exports, "LibraryIcon", {
|
|
435
|
+
enumerable: true,
|
|
436
|
+
get: function () { return lucideReact.LibraryIcon; }
|
|
437
|
+
});
|
|
438
|
+
Object.defineProperty(exports, "Link", {
|
|
439
|
+
enumerable: true,
|
|
440
|
+
get: function () { return lucideReact.Link; }
|
|
441
|
+
});
|
|
442
|
+
Object.defineProperty(exports, "Loader2", {
|
|
443
|
+
enumerable: true,
|
|
444
|
+
get: function () { return lucideReact.Loader2; }
|
|
445
|
+
});
|
|
446
|
+
Object.defineProperty(exports, "LogIn", {
|
|
447
|
+
enumerable: true,
|
|
448
|
+
get: function () { return lucideReact.LogIn; }
|
|
449
|
+
});
|
|
450
|
+
Object.defineProperty(exports, "LogOut", {
|
|
451
|
+
enumerable: true,
|
|
452
|
+
get: function () { return lucideReact.LogOut; }
|
|
453
|
+
});
|
|
454
|
+
Object.defineProperty(exports, "MoreHorizontal", {
|
|
455
|
+
enumerable: true,
|
|
456
|
+
get: function () { return lucideReact.MoreHorizontal; }
|
|
457
|
+
});
|
|
458
|
+
Object.defineProperty(exports, "MousePointerClick", {
|
|
459
|
+
enumerable: true,
|
|
460
|
+
get: function () { return lucideReact.MousePointerClick; }
|
|
461
|
+
});
|
|
462
|
+
Object.defineProperty(exports, "Palette", {
|
|
463
|
+
enumerable: true,
|
|
464
|
+
get: function () { return lucideReact.Palette; }
|
|
465
|
+
});
|
|
466
|
+
Object.defineProperty(exports, "PanelLeft", {
|
|
467
|
+
enumerable: true,
|
|
468
|
+
get: function () { return lucideReact.PanelLeft; }
|
|
469
|
+
});
|
|
470
|
+
Object.defineProperty(exports, "PanelsTopLeft", {
|
|
471
|
+
enumerable: true,
|
|
472
|
+
get: function () { return lucideReact.PanelsTopLeft; }
|
|
473
|
+
});
|
|
474
|
+
Object.defineProperty(exports, "Pencil", {
|
|
475
|
+
enumerable: true,
|
|
476
|
+
get: function () { return lucideReact.Pencil; }
|
|
477
|
+
});
|
|
478
|
+
Object.defineProperty(exports, "Pi", {
|
|
479
|
+
enumerable: true,
|
|
480
|
+
get: function () { return lucideReact.Pi; }
|
|
481
|
+
});
|
|
482
|
+
Object.defineProperty(exports, "ReceiptText", {
|
|
483
|
+
enumerable: true,
|
|
484
|
+
get: function () { return lucideReact.ReceiptText; }
|
|
485
|
+
});
|
|
486
|
+
Object.defineProperty(exports, "Regex", {
|
|
487
|
+
enumerable: true,
|
|
488
|
+
get: function () { return lucideReact.Regex; }
|
|
489
|
+
});
|
|
490
|
+
Object.defineProperty(exports, "Replace", {
|
|
491
|
+
enumerable: true,
|
|
492
|
+
get: function () { return lucideReact.Replace; }
|
|
493
|
+
});
|
|
494
|
+
Object.defineProperty(exports, "Rss", {
|
|
495
|
+
enumerable: true,
|
|
496
|
+
get: function () { return lucideReact.Rss; }
|
|
497
|
+
});
|
|
498
|
+
Object.defineProperty(exports, "Scale", {
|
|
499
|
+
enumerable: true,
|
|
500
|
+
get: function () { return lucideReact.Scale; }
|
|
501
|
+
});
|
|
502
|
+
Object.defineProperty(exports, "Search", {
|
|
503
|
+
enumerable: true,
|
|
504
|
+
get: function () { return lucideReact.Search; }
|
|
505
|
+
});
|
|
506
|
+
Object.defineProperty(exports, "Server", {
|
|
507
|
+
enumerable: true,
|
|
508
|
+
get: function () { return lucideReact.Server; }
|
|
509
|
+
});
|
|
510
|
+
Object.defineProperty(exports, "Share", {
|
|
511
|
+
enumerable: true,
|
|
512
|
+
get: function () { return lucideReact.Share; }
|
|
513
|
+
});
|
|
514
|
+
Object.defineProperty(exports, "ShieldUser", {
|
|
515
|
+
enumerable: true,
|
|
516
|
+
get: function () { return lucideReact.ShieldUser; }
|
|
517
|
+
});
|
|
518
|
+
Object.defineProperty(exports, "Sparkles", {
|
|
519
|
+
enumerable: true,
|
|
520
|
+
get: function () { return lucideReact.Sparkles; }
|
|
521
|
+
});
|
|
522
|
+
Object.defineProperty(exports, "SplinePointer", {
|
|
523
|
+
enumerable: true,
|
|
524
|
+
get: function () { return lucideReact.SplinePointer; }
|
|
525
|
+
});
|
|
526
|
+
Object.defineProperty(exports, "SquareDashedBottomCode", {
|
|
527
|
+
enumerable: true,
|
|
528
|
+
get: function () { return lucideReact.SquareDashedBottomCode; }
|
|
529
|
+
});
|
|
530
|
+
Object.defineProperty(exports, "SquareTerminal", {
|
|
531
|
+
enumerable: true,
|
|
532
|
+
get: function () { return lucideReact.SquareTerminal; }
|
|
533
|
+
});
|
|
534
|
+
Object.defineProperty(exports, "Star", {
|
|
535
|
+
enumerable: true,
|
|
536
|
+
get: function () { return lucideReact.Star; }
|
|
537
|
+
});
|
|
538
|
+
Object.defineProperty(exports, "Tablets", {
|
|
539
|
+
enumerable: true,
|
|
540
|
+
get: function () { return lucideReact.Tablets; }
|
|
541
|
+
});
|
|
542
|
+
Object.defineProperty(exports, "Terminal", {
|
|
543
|
+
enumerable: true,
|
|
544
|
+
get: function () { return lucideReact.Terminal; }
|
|
545
|
+
});
|
|
546
|
+
Object.defineProperty(exports, "Twitter", {
|
|
547
|
+
enumerable: true,
|
|
548
|
+
get: function () { return lucideReact.Twitter; }
|
|
549
|
+
});
|
|
550
|
+
Object.defineProperty(exports, "X", {
|
|
551
|
+
enumerable: true,
|
|
552
|
+
get: function () { return lucideReact.X; }
|
|
553
|
+
});
|
|
554
|
+
Object.defineProperty(exports, "Zap", {
|
|
555
|
+
enumerable: true,
|
|
556
|
+
get: function () { return lucideReact.Zap; }
|
|
444
557
|
});
|
|
558
|
+
exports.LOCALE_PRESETS = LOCALE_PRESETS;
|
|
559
|
+
exports.cn = cn;
|
|
560
|
+
exports.createCommonAppConfig = createCommonAppConfig;
|
|
561
|
+
exports.createI18nHelpers = createI18nHelpers;
|
|
562
|
+
exports.formatTimestamp = formatTimestamp;
|
|
563
|
+
exports.getLLMText = getLLMText;
|
|
564
|
+
//# sourceMappingURL=index.js.map
|
|
445
565
|
//# sourceMappingURL=index.js.map
|