dga-ui-kit 0.0.2
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/LICENSE.md +21 -0
- package/README.md +51 -0
- package/dist/chunk-2PLUVDEJ.js +72 -0
- package/dist/chunk-2PLUVDEJ.js.map +1 -0
- package/dist/chunk-LPFYQC24.js +3 -0
- package/dist/chunk-LPFYQC24.js.map +1 -0
- package/dist/chunk-QBEUCOED.js +3 -0
- package/dist/chunk-QBEUCOED.js.map +1 -0
- package/dist/chunk-RKP3CU2J.js +2 -0
- package/dist/chunk-RKP3CU2J.js.map +1 -0
- package/dist/chunk-TUBV3KOD.js +334 -0
- package/dist/chunk-TUBV3KOD.js.map +1 -0
- package/dist/get-config-D6gTsP_D.d.ts +6 -0
- package/dist/icons/index.d.ts +47 -0
- package/dist/icons/index.js +2 -0
- package/dist/icons/index.js.map +1 -0
- package/dist/index.d.ts +982 -0
- package/dist/index.js +94 -0
- package/dist/index.js.map +1 -0
- package/dist/mcp/index.d.ts +38 -0
- package/dist/mcp/index.js +2 -0
- package/dist/mcp/index.js.map +1 -0
- package/dist/registry/index.d.ts +112 -0
- package/dist/registry/index.js +2 -0
- package/dist/registry/index.js.map +1 -0
- package/dist/schema/index.d.ts +3957 -0
- package/dist/schema/index.js +2 -0
- package/dist/schema/index.js.map +1 -0
- package/dist/tailwind.css +95 -0
- package/dist/utils/index.d.ts +39 -0
- package/dist/utils/index.js +2 -0
- package/dist/utils/index.js.map +1 -0
- package/package.json +124 -0
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
declare const iconLibraries: {
|
|
2
|
+
readonly lucide: {
|
|
3
|
+
readonly name: "lucide";
|
|
4
|
+
readonly title: "Lucide";
|
|
5
|
+
readonly packages: readonly ["lucide-react"];
|
|
6
|
+
readonly import: "import { ICON } from 'lucide-react'";
|
|
7
|
+
readonly usage: "<ICON />";
|
|
8
|
+
readonly export: "lucide-react";
|
|
9
|
+
};
|
|
10
|
+
readonly tabler: {
|
|
11
|
+
readonly name: "tabler";
|
|
12
|
+
readonly title: "Tabler Icons";
|
|
13
|
+
readonly packages: readonly ["@tabler/icons-react"];
|
|
14
|
+
readonly import: "import { ICON } from '@tabler/icons-react'";
|
|
15
|
+
readonly usage: "<ICON />";
|
|
16
|
+
readonly export: "@tabler/icons-react";
|
|
17
|
+
};
|
|
18
|
+
readonly hugeicons: {
|
|
19
|
+
readonly name: "hugeicons";
|
|
20
|
+
readonly title: "HugeIcons";
|
|
21
|
+
readonly packages: readonly ["@hugeicons/react", "@hugeicons/core-free-icons"];
|
|
22
|
+
readonly import: "import { HugeiconsIcon } from '@hugeicons/react'\nimport { ICON } from '@hugeicons/core-free-icons';";
|
|
23
|
+
readonly usage: "<HugeiconsIcon icon={ICON} strokeWidth={2} />";
|
|
24
|
+
readonly export: "@hugeicons/core-free-icons";
|
|
25
|
+
};
|
|
26
|
+
readonly phosphor: {
|
|
27
|
+
readonly name: "phosphor";
|
|
28
|
+
readonly title: "Phosphor Icons";
|
|
29
|
+
readonly packages: readonly ["@phosphor-icons/react"];
|
|
30
|
+
readonly import: "import { ICON } from '@phosphor-icons/react'";
|
|
31
|
+
readonly usage: "<ICON strokeWidth={2} />";
|
|
32
|
+
readonly export: "@phosphor-icons/react";
|
|
33
|
+
};
|
|
34
|
+
readonly remixicon: {
|
|
35
|
+
readonly name: "remixicon";
|
|
36
|
+
readonly title: "Remix Icon";
|
|
37
|
+
readonly packages: readonly ["@remixicon/react"];
|
|
38
|
+
readonly import: "import { ICON } from '@remixicon/react'";
|
|
39
|
+
readonly usage: "<ICON />";
|
|
40
|
+
readonly export: "@remixicon/react";
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
type IconLibraries = typeof iconLibraries;
|
|
44
|
+
type IconLibrary = IconLibraries[keyof IconLibraries];
|
|
45
|
+
type IconLibraryName = keyof IconLibraries;
|
|
46
|
+
|
|
47
|
+
export { type IconLibraries, type IconLibrary, type IconLibraryName, iconLibraries };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.js"}
|