@marianmeres/stuic 2.48.0 → 2.49.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/AlertConfirmPrompt/acp-icons.js +6 -10
- package/dist/components/AssetsPreview/AssetsPreview.svelte +36 -34
- package/dist/components/CommandMenu/CommandMenu.svelte +1 -1
- package/dist/components/DropdownMenu/DropdownMenu.svelte +3 -4
- package/dist/components/Input/FieldAssets.svelte +28 -26
- package/dist/components/Input/FieldKeyValues.svelte +3 -4
- package/dist/components/Input/FieldOptions.svelte +6 -9
- package/dist/components/Notifications/notifications-icons.js +5 -8
- package/dist/components/TabbedMenu/TabbedMenu.svelte +2 -2
- package/dist/icons/index.d.ts +35 -0
- package/dist/icons/index.js +39 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -0
- package/package.json +1 -1
|
@@ -1,12 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { iconFeatherCheckCircle } from "@marianmeres/icons-fns/feather/iconFeatherCheckCircle.js";
|
|
3
|
-
import { iconFeatherInfo } from "@marianmeres/icons-fns/feather/iconFeatherInfo.js";
|
|
4
|
-
import { iconFeatherRefreshCw } from "@marianmeres/icons-fns/feather/iconFeatherRefreshCw.js";
|
|
5
|
-
import { iconFeatherXOctagon } from "@marianmeres/icons-fns/feather/iconFeatherXOctagon.js";
|
|
1
|
+
import { iconAlertInfo, iconAlertSuccess, iconAlertWarning, iconAlertError, iconRefresh, } from "../../icons/index.js";
|
|
6
2
|
export const acpDefaultIcons = {
|
|
7
|
-
info: () =>
|
|
8
|
-
success: () =>
|
|
9
|
-
warn: () =>
|
|
10
|
-
error: () =>
|
|
11
|
-
spinner: () =>
|
|
3
|
+
info: () => iconAlertInfo({ size: 24 }),
|
|
4
|
+
success: () => iconAlertSuccess({}),
|
|
5
|
+
warn: () => iconAlertWarning({ class: "-mt-[3px]" }), // move up a little because it looks better with the triangle
|
|
6
|
+
error: () => iconAlertError({}),
|
|
7
|
+
spinner: () => iconRefresh({ size: 32, class: "opacity-50" }),
|
|
12
8
|
};
|
|
@@ -1,23 +1,25 @@
|
|
|
1
1
|
<script lang="ts" module>
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
2
|
+
import {
|
|
3
|
+
iconFile,
|
|
4
|
+
iconFileBinary,
|
|
5
|
+
iconFileCode,
|
|
6
|
+
iconFileImage,
|
|
7
|
+
iconFileMusic,
|
|
8
|
+
iconFilePdf,
|
|
9
|
+
iconFileRichtext,
|
|
10
|
+
iconFileSlides,
|
|
11
|
+
iconFileSpreadsheet,
|
|
12
|
+
iconFileText,
|
|
13
|
+
iconFileWord,
|
|
14
|
+
iconFileZip,
|
|
15
|
+
iconArrowLeft as iconPrevious,
|
|
16
|
+
iconArrowRight as iconNext,
|
|
17
|
+
iconDownload,
|
|
18
|
+
iconPlus as iconAdd,
|
|
19
|
+
iconTrash as iconDelete,
|
|
20
|
+
iconZoomIn,
|
|
21
|
+
iconZoomOut,
|
|
22
|
+
} from "../../icons/index.js";
|
|
21
23
|
import { getFileTypeLabel } from "../../utils/get-file-type-label.js";
|
|
22
24
|
import { Modal } from "../Modal/index.js";
|
|
23
25
|
import { createClog } from "@marianmeres/clog";
|
|
@@ -81,20 +83,20 @@
|
|
|
81
83
|
|
|
82
84
|
export function getAssetIcon(ext?: string) {
|
|
83
85
|
const map: Record<string, CallableFunction> = {
|
|
84
|
-
archive:
|
|
85
|
-
audio:
|
|
86
|
-
binary:
|
|
87
|
-
code:
|
|
88
|
-
doc:
|
|
89
|
-
image:
|
|
90
|
-
pdf:
|
|
91
|
-
presentation:
|
|
92
|
-
richtext:
|
|
93
|
-
spreadsheet:
|
|
94
|
-
text:
|
|
95
|
-
unknown:
|
|
86
|
+
archive: iconFileZip,
|
|
87
|
+
audio: iconFileMusic,
|
|
88
|
+
binary: iconFileBinary,
|
|
89
|
+
code: iconFileCode,
|
|
90
|
+
doc: iconFileWord,
|
|
91
|
+
image: iconFileImage,
|
|
92
|
+
pdf: iconFilePdf,
|
|
93
|
+
presentation: iconFileSlides,
|
|
94
|
+
richtext: iconFileRichtext,
|
|
95
|
+
spreadsheet: iconFileSpreadsheet,
|
|
96
|
+
text: iconFileText,
|
|
97
|
+
unknown: iconFile,
|
|
96
98
|
};
|
|
97
|
-
return map[getFileTypeLabel(ext ?? "unknown")] ??
|
|
99
|
+
return map[getFileTypeLabel(ext ?? "unknown")] ?? iconFile;
|
|
98
100
|
}
|
|
99
101
|
|
|
100
102
|
// i18n ready
|
|
@@ -561,7 +563,7 @@
|
|
|
561
563
|
aria-label={t("zoom_out")}
|
|
562
564
|
use:tooltip
|
|
563
565
|
>
|
|
564
|
-
{@html
|
|
566
|
+
{@html iconZoomOut({ class: "size-6" })}
|
|
565
567
|
</button>
|
|
566
568
|
|
|
567
569
|
<button
|
|
@@ -572,7 +574,7 @@
|
|
|
572
574
|
aria-label={t("zoom_in")}
|
|
573
575
|
use:tooltip
|
|
574
576
|
>
|
|
575
|
-
{@html
|
|
577
|
+
{@html iconZoomIn({ class: "size-6" })}
|
|
576
578
|
</button>
|
|
577
579
|
{/if}
|
|
578
580
|
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import { createClog } from "@marianmeres/clog";
|
|
5
5
|
import { FieldInput } from "../Input/index.js";
|
|
6
6
|
import { twMerge } from "../../utils/tw-merge.js";
|
|
7
|
-
import {
|
|
7
|
+
import { iconSearch } from "../../icons/index.js";
|
|
8
8
|
import { X } from "../X/index.js";
|
|
9
9
|
import { Debounced, watch } from "runed";
|
|
10
10
|
import { NotificationsStack } from "../Notifications/index.js";
|
|
@@ -264,8 +264,7 @@
|
|
|
264
264
|
import { getId } from "../../utils/get-id.js";
|
|
265
265
|
import { prefersReducedMotion } from "../../utils/prefers-reduced-motion.svelte.js";
|
|
266
266
|
import { ItemCollection } from "@marianmeres/item-collection";
|
|
267
|
-
import {
|
|
268
|
-
import { iconLucideChevronRight } from "@marianmeres/icons-fns/lucide/iconLucideChevronRight.js";
|
|
267
|
+
import { iconChevronDown, iconChevronRight } from "../../icons/index.js";
|
|
269
268
|
import { onClickOutside } from "runed";
|
|
270
269
|
import { slide, fade } from "svelte/transition";
|
|
271
270
|
import { untrack } from "svelte";
|
|
@@ -575,7 +574,7 @@
|
|
|
575
574
|
{:else}
|
|
576
575
|
Menu
|
|
577
576
|
<span class={isOpen ? "rotate-180 inline-block" : "inline-block"}>
|
|
578
|
-
{@html
|
|
577
|
+
{@html iconChevronDown({ size: 16 })}
|
|
579
578
|
</span>
|
|
580
579
|
{/if}
|
|
581
580
|
</button>
|
|
@@ -743,7 +742,7 @@
|
|
|
743
742
|
isExpanded && "rotate-90"
|
|
744
743
|
)}
|
|
745
744
|
>
|
|
746
|
-
{@html
|
|
745
|
+
{@html iconChevronRight({ size: 16 })}
|
|
747
746
|
</span>
|
|
748
747
|
</button>
|
|
749
748
|
|
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
<script lang="ts" module>
|
|
2
2
|
import { createClog } from "@marianmeres/clog";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
3
|
+
import {
|
|
4
|
+
iconFile,
|
|
5
|
+
iconFileBinary,
|
|
6
|
+
iconFileCode,
|
|
7
|
+
iconFileImage,
|
|
8
|
+
iconFileMusic,
|
|
9
|
+
iconFilePdf,
|
|
10
|
+
iconFileRichtext,
|
|
11
|
+
iconFileSlides,
|
|
12
|
+
iconFileSpreadsheet,
|
|
13
|
+
iconFileText,
|
|
14
|
+
iconFileWord,
|
|
15
|
+
iconFileZip,
|
|
16
|
+
iconPlus as iconAdd,
|
|
17
|
+
} from "../../icons/index.js";
|
|
16
18
|
import { onDestroy, type Snippet } from "svelte";
|
|
17
19
|
import { fileDropzone } from "../../actions/file-dropzone.svelte.js";
|
|
18
20
|
import { highlightDragover } from "../../actions/highlight-dragover.svelte.js";
|
|
@@ -105,20 +107,20 @@
|
|
|
105
107
|
|
|
106
108
|
export function getAssetIcon(ext?: string) {
|
|
107
109
|
const map: Record<string, CallableFunction> = {
|
|
108
|
-
archive:
|
|
109
|
-
audio:
|
|
110
|
-
binary:
|
|
111
|
-
code:
|
|
112
|
-
doc:
|
|
113
|
-
image:
|
|
114
|
-
pdf:
|
|
115
|
-
presentation:
|
|
116
|
-
richtext:
|
|
117
|
-
spreadsheet:
|
|
118
|
-
text:
|
|
119
|
-
unknown:
|
|
110
|
+
archive: iconFileZip,
|
|
111
|
+
audio: iconFileMusic,
|
|
112
|
+
binary: iconFileBinary,
|
|
113
|
+
code: iconFileCode,
|
|
114
|
+
doc: iconFileWord,
|
|
115
|
+
image: iconFileImage,
|
|
116
|
+
pdf: iconFilePdf,
|
|
117
|
+
presentation: iconFileSlides,
|
|
118
|
+
richtext: iconFileRichtext,
|
|
119
|
+
spreadsheet: iconFileSpreadsheet,
|
|
120
|
+
text: iconFileText,
|
|
121
|
+
unknown: iconFile,
|
|
120
122
|
};
|
|
121
|
-
return map[getFileTypeLabel(ext ?? "unknown")] ??
|
|
123
|
+
return map[getFileTypeLabel(ext ?? "unknown")] ?? iconFile;
|
|
122
124
|
}
|
|
123
125
|
|
|
124
126
|
type SnippetWithId = Snippet<[{ id: string }]>;
|
|
@@ -53,8 +53,7 @@
|
|
|
53
53
|
</script>
|
|
54
54
|
|
|
55
55
|
<script lang="ts">
|
|
56
|
-
import {
|
|
57
|
-
import { iconFeatherTrash2 } from "@marianmeres/icons-fns/feather/iconFeatherTrash2.js";
|
|
56
|
+
import { iconPlus, iconTrash } from "../../icons/index.js";
|
|
58
57
|
import { tick } from "svelte";
|
|
59
58
|
import { autogrow } from "../../actions/autogrow.svelte.js";
|
|
60
59
|
import { validate as validateAction } from "../../actions/validate.svelte.js";
|
|
@@ -373,7 +372,7 @@
|
|
|
373
372
|
{disabled}
|
|
374
373
|
aria-label={t("remove_entry")}
|
|
375
374
|
>
|
|
376
|
-
{@html
|
|
375
|
+
{@html iconTrash({ size: 14 })}
|
|
377
376
|
</button>
|
|
378
377
|
</div>
|
|
379
378
|
</div>
|
|
@@ -398,7 +397,7 @@
|
|
|
398
397
|
)}
|
|
399
398
|
{disabled}
|
|
400
399
|
>
|
|
401
|
-
{@html
|
|
400
|
+
{@html iconPlus({ size: 16 })}
|
|
402
401
|
<span>{addLabel ?? t("add_label")}</span>
|
|
403
402
|
</button>
|
|
404
403
|
</div>
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
<script lang="ts" module>
|
|
2
2
|
import { createClog } from "@marianmeres/clog";
|
|
3
|
-
import {
|
|
4
|
-
import { iconLucideCheck } from "@marianmeres/icons-fns/lucide/iconLucideCheck.js";
|
|
5
|
-
import { iconLucideCircle } from "@marianmeres/icons-fns/lucide/iconLucideCircle.js";
|
|
6
|
-
import { iconLucideSquare } from "@marianmeres/icons-fns/lucide/iconLucideSquare.js";
|
|
3
|
+
import { iconSearch, iconCheck, iconCircle, iconSquare } from "../../icons/index.js";
|
|
7
4
|
import { ItemCollection, type Item } from "@marianmeres/item-collection";
|
|
8
5
|
import { Debounced, watch } from "runed";
|
|
9
6
|
import { tick, type Snippet } from "svelte";
|
|
@@ -121,11 +118,11 @@
|
|
|
121
118
|
<script lang="ts">
|
|
122
119
|
const clog = createClog("FieldOptions");
|
|
123
120
|
|
|
124
|
-
const iconCheckboxEmpty =
|
|
125
|
-
const iconCheckboxCheck =
|
|
121
|
+
const iconCheckboxEmpty = iconSquare;
|
|
122
|
+
const iconCheckboxCheck = iconCheck;
|
|
126
123
|
|
|
127
|
-
const iconRadioEmpty =
|
|
128
|
-
const iconRadioCheck =
|
|
124
|
+
const iconRadioEmpty = iconCircle;
|
|
125
|
+
const iconRadioCheck = iconCheck;
|
|
129
126
|
|
|
130
127
|
let {
|
|
131
128
|
trigger,
|
|
@@ -827,7 +824,7 @@
|
|
|
827
824
|
|
|
828
825
|
{#snippet inputBefore()}
|
|
829
826
|
<div class="flex flex-col items-center justify-center pl-3 opacity-50">
|
|
830
|
-
{@html
|
|
827
|
+
{@html iconSearch({ size: 14 })}
|
|
831
828
|
</div>
|
|
832
829
|
{/snippet}
|
|
833
830
|
</InputWrap>
|
|
@@ -1,10 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { iconFeatherCheckCircle } from "@marianmeres/icons-fns/feather/iconFeatherCheckCircle.js";
|
|
3
|
-
import { iconFeatherInfo } from "@marianmeres/icons-fns/feather/iconFeatherInfo.js";
|
|
4
|
-
import { iconFeatherXOctagon } from "@marianmeres/icons-fns/feather/iconFeatherXOctagon.js";
|
|
1
|
+
import { iconAlertWarning, iconAlertSuccess, iconAlertInfo, iconAlertError, } from "../../icons/index.js";
|
|
5
2
|
export const notificationsDefaultIcons = {
|
|
6
|
-
info: () =>
|
|
7
|
-
success: () =>
|
|
8
|
-
warn: () =>
|
|
9
|
-
error: () =>
|
|
3
|
+
info: () => iconAlertInfo({}),
|
|
4
|
+
success: () => iconAlertSuccess({}),
|
|
5
|
+
warn: () => iconAlertWarning({}),
|
|
6
|
+
error: () => iconAlertError({}),
|
|
10
7
|
};
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
|
|
57
57
|
const CLS = `
|
|
58
58
|
stuic-tabbed-menu
|
|
59
|
-
flex flex-row
|
|
59
|
+
flex flex-row
|
|
60
60
|
gap-1
|
|
61
61
|
list-none m-0 p-0
|
|
62
62
|
`;
|
|
@@ -75,11 +75,11 @@
|
|
|
75
75
|
cursor-pointer
|
|
76
76
|
transition-colors duration-150
|
|
77
77
|
hover:brightness-105
|
|
78
|
-
focus-visible:outline-2 focus-visible:outline-offset-2
|
|
79
78
|
truncate w-full
|
|
80
79
|
block
|
|
81
80
|
text-center
|
|
82
81
|
`;
|
|
82
|
+
// focus-visible:outline-2 focus-visible:outline-offset-2
|
|
83
83
|
|
|
84
84
|
const CLS_BUTTON_ACTIVE = `
|
|
85
85
|
bg-tabbed-menu-tab-active-bg dark:bg-tabbed-menu-tab-active-bg-dark
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export { iconBsFileEarmark as iconFile } from "@marianmeres/icons-fns/bootstrap/iconBsFileEarmark.js";
|
|
2
|
+
export { iconBsFileEarmarkBinary as iconFileBinary } from "@marianmeres/icons-fns/bootstrap/iconBsFileEarmarkBinary.js";
|
|
3
|
+
export { iconBsFileEarmarkCode as iconFileCode } from "@marianmeres/icons-fns/bootstrap/iconBsFileEarmarkCode.js";
|
|
4
|
+
export { iconBsFileEarmarkImage as iconFileImage } from "@marianmeres/icons-fns/bootstrap/iconBsFileEarmarkImage.js";
|
|
5
|
+
export { iconBsFileEarmarkMusic as iconFileMusic } from "@marianmeres/icons-fns/bootstrap/iconBsFileEarmarkMusic.js";
|
|
6
|
+
export { iconBsFileEarmarkPdf as iconFilePdf } from "@marianmeres/icons-fns/bootstrap/iconBsFileEarmarkPdf.js";
|
|
7
|
+
export { iconBsFileEarmarkRichtext as iconFileRichtext } from "@marianmeres/icons-fns/bootstrap/iconBsFileEarmarkRichtext.js";
|
|
8
|
+
export { iconBsFileEarmarkSlides as iconFileSlides } from "@marianmeres/icons-fns/bootstrap/iconBsFileEarmarkSlides.js";
|
|
9
|
+
export { iconBsFileEarmarkSpreadsheet as iconFileSpreadsheet } from "@marianmeres/icons-fns/bootstrap/iconBsFileEarmarkSpreadsheet.js";
|
|
10
|
+
export { iconBsFileEarmarkText as iconFileText } from "@marianmeres/icons-fns/bootstrap/iconBsFileEarmarkText.js";
|
|
11
|
+
export { iconBsFileEarmarkWord as iconFileWord } from "@marianmeres/icons-fns/bootstrap/iconBsFileEarmarkWord.js";
|
|
12
|
+
export { iconBsFileEarmarkZip as iconFileZip } from "@marianmeres/icons-fns/bootstrap/iconBsFileEarmarkZip.js";
|
|
13
|
+
export { iconFeatherAlertTriangle as iconAlertWarning } from "@marianmeres/icons-fns/feather/iconFeatherAlertTriangle.js";
|
|
14
|
+
export { iconFeatherCheckCircle as iconAlertSuccess } from "@marianmeres/icons-fns/feather/iconFeatherCheckCircle.js";
|
|
15
|
+
export { iconFeatherInfo as iconAlertInfo } from "@marianmeres/icons-fns/feather/iconFeatherInfo.js";
|
|
16
|
+
export { iconFeatherXOctagon as iconAlertError } from "@marianmeres/icons-fns/feather/iconFeatherXOctagon.js";
|
|
17
|
+
export { iconFeatherRefreshCw as iconRefresh } from "@marianmeres/icons-fns/feather/iconFeatherRefreshCw.js";
|
|
18
|
+
export { iconFeatherArrowLeft as iconArrowLeft } from "@marianmeres/icons-fns/feather/iconFeatherArrowLeft.js";
|
|
19
|
+
export { iconFeatherArrowRight as iconArrowRight } from "@marianmeres/icons-fns/feather/iconFeatherArrowRight.js";
|
|
20
|
+
export { iconFeatherArrowUp as iconArrowUp } from "@marianmeres/icons-fns/feather/iconFeatherArrowUp.js";
|
|
21
|
+
export { iconFeatherArrowDown as iconArrowDown } from "@marianmeres/icons-fns/feather/iconFeatherArrowDown.js";
|
|
22
|
+
export { iconLucideDownload as iconDownload } from "@marianmeres/icons-fns/lucide/iconLucideDownload.js";
|
|
23
|
+
export { iconFeatherPlus as iconPlus } from "@marianmeres/icons-fns/feather/iconFeatherPlus.js";
|
|
24
|
+
export { iconLucideTrash2 as iconTrash } from "@marianmeres/icons-fns/lucide/iconLucideTrash2.js";
|
|
25
|
+
export { iconFeatherZoomIn as iconZoomIn } from "@marianmeres/icons-fns/feather/iconFeatherZoomIn.js";
|
|
26
|
+
export { iconFeatherZoomOut as iconZoomOut } from "@marianmeres/icons-fns/feather/iconFeatherZoomOut.js";
|
|
27
|
+
export { iconFeatherSearch as iconSearch } from "@marianmeres/icons-fns/feather/iconFeatherSearch.js";
|
|
28
|
+
export { iconLucideChevronDown as iconChevronDown } from "@marianmeres/icons-fns/lucide/iconLucideChevronDown.js";
|
|
29
|
+
export { iconLucideChevronUp as iconChevronUp } from "@marianmeres/icons-fns/lucide/iconLucideChevronUp.js";
|
|
30
|
+
export { iconLucideChevronRight as iconChevronRight } from "@marianmeres/icons-fns/lucide/iconLucideChevronRight.js";
|
|
31
|
+
export { iconLucideChevronLeft as iconChevronLeft } from "@marianmeres/icons-fns/lucide/iconLucideChevronLeft.js";
|
|
32
|
+
export { iconLucideCheck as iconCheck } from "@marianmeres/icons-fns/lucide/iconLucideCheck.js";
|
|
33
|
+
export { iconLucideCircle as iconCircle } from "@marianmeres/icons-fns/lucide/iconLucideCircle.js";
|
|
34
|
+
export { iconLucideSquare as iconSquare } from "@marianmeres/icons-fns/lucide/iconLucideSquare.js";
|
|
35
|
+
export { iconLucideMenu as iconMenu } from "@marianmeres/icons-fns/lucide/iconLucideMenu.js";
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
// File Type Icons (Bootstrap)
|
|
2
|
+
export { iconBsFileEarmark as iconFile } from "@marianmeres/icons-fns/bootstrap/iconBsFileEarmark.js";
|
|
3
|
+
export { iconBsFileEarmarkBinary as iconFileBinary } from "@marianmeres/icons-fns/bootstrap/iconBsFileEarmarkBinary.js";
|
|
4
|
+
export { iconBsFileEarmarkCode as iconFileCode } from "@marianmeres/icons-fns/bootstrap/iconBsFileEarmarkCode.js";
|
|
5
|
+
export { iconBsFileEarmarkImage as iconFileImage } from "@marianmeres/icons-fns/bootstrap/iconBsFileEarmarkImage.js";
|
|
6
|
+
export { iconBsFileEarmarkMusic as iconFileMusic } from "@marianmeres/icons-fns/bootstrap/iconBsFileEarmarkMusic.js";
|
|
7
|
+
export { iconBsFileEarmarkPdf as iconFilePdf } from "@marianmeres/icons-fns/bootstrap/iconBsFileEarmarkPdf.js";
|
|
8
|
+
export { iconBsFileEarmarkRichtext as iconFileRichtext } from "@marianmeres/icons-fns/bootstrap/iconBsFileEarmarkRichtext.js";
|
|
9
|
+
export { iconBsFileEarmarkSlides as iconFileSlides } from "@marianmeres/icons-fns/bootstrap/iconBsFileEarmarkSlides.js";
|
|
10
|
+
export { iconBsFileEarmarkSpreadsheet as iconFileSpreadsheet } from "@marianmeres/icons-fns/bootstrap/iconBsFileEarmarkSpreadsheet.js";
|
|
11
|
+
export { iconBsFileEarmarkText as iconFileText } from "@marianmeres/icons-fns/bootstrap/iconBsFileEarmarkText.js";
|
|
12
|
+
export { iconBsFileEarmarkWord as iconFileWord } from "@marianmeres/icons-fns/bootstrap/iconBsFileEarmarkWord.js";
|
|
13
|
+
export { iconBsFileEarmarkZip as iconFileZip } from "@marianmeres/icons-fns/bootstrap/iconBsFileEarmarkZip.js";
|
|
14
|
+
// Alert/Notification Icons (Feather)
|
|
15
|
+
export { iconFeatherAlertTriangle as iconAlertWarning } from "@marianmeres/icons-fns/feather/iconFeatherAlertTriangle.js";
|
|
16
|
+
export { iconFeatherCheckCircle as iconAlertSuccess } from "@marianmeres/icons-fns/feather/iconFeatherCheckCircle.js";
|
|
17
|
+
export { iconFeatherInfo as iconAlertInfo } from "@marianmeres/icons-fns/feather/iconFeatherInfo.js";
|
|
18
|
+
export { iconFeatherXOctagon as iconAlertError } from "@marianmeres/icons-fns/feather/iconFeatherXOctagon.js";
|
|
19
|
+
export { iconFeatherRefreshCw as iconRefresh } from "@marianmeres/icons-fns/feather/iconFeatherRefreshCw.js";
|
|
20
|
+
// Action Icons
|
|
21
|
+
export { iconFeatherArrowLeft as iconArrowLeft } from "@marianmeres/icons-fns/feather/iconFeatherArrowLeft.js";
|
|
22
|
+
export { iconFeatherArrowRight as iconArrowRight } from "@marianmeres/icons-fns/feather/iconFeatherArrowRight.js";
|
|
23
|
+
export { iconFeatherArrowUp as iconArrowUp } from "@marianmeres/icons-fns/feather/iconFeatherArrowUp.js";
|
|
24
|
+
export { iconFeatherArrowDown as iconArrowDown } from "@marianmeres/icons-fns/feather/iconFeatherArrowDown.js";
|
|
25
|
+
export { iconLucideDownload as iconDownload } from "@marianmeres/icons-fns/lucide/iconLucideDownload.js";
|
|
26
|
+
export { iconFeatherPlus as iconPlus } from "@marianmeres/icons-fns/feather/iconFeatherPlus.js";
|
|
27
|
+
export { iconLucideTrash2 as iconTrash } from "@marianmeres/icons-fns/lucide/iconLucideTrash2.js";
|
|
28
|
+
export { iconFeatherZoomIn as iconZoomIn } from "@marianmeres/icons-fns/feather/iconFeatherZoomIn.js";
|
|
29
|
+
export { iconFeatherZoomOut as iconZoomOut } from "@marianmeres/icons-fns/feather/iconFeatherZoomOut.js";
|
|
30
|
+
// UI Control Icons
|
|
31
|
+
export { iconFeatherSearch as iconSearch } from "@marianmeres/icons-fns/feather/iconFeatherSearch.js";
|
|
32
|
+
export { iconLucideChevronDown as iconChevronDown } from "@marianmeres/icons-fns/lucide/iconLucideChevronDown.js";
|
|
33
|
+
export { iconLucideChevronUp as iconChevronUp } from "@marianmeres/icons-fns/lucide/iconLucideChevronUp.js";
|
|
34
|
+
export { iconLucideChevronRight as iconChevronRight } from "@marianmeres/icons-fns/lucide/iconLucideChevronRight.js";
|
|
35
|
+
export { iconLucideChevronLeft as iconChevronLeft } from "@marianmeres/icons-fns/lucide/iconLucideChevronLeft.js";
|
|
36
|
+
export { iconLucideCheck as iconCheck } from "@marianmeres/icons-fns/lucide/iconLucideCheck.js";
|
|
37
|
+
export { iconLucideCircle as iconCircle } from "@marianmeres/icons-fns/lucide/iconLucideCircle.js";
|
|
38
|
+
export { iconLucideSquare as iconSquare } from "@marianmeres/icons-fns/lucide/iconLucideSquare.js";
|
|
39
|
+
export { iconLucideMenu as iconMenu } from "@marianmeres/icons-fns/lucide/iconLucideMenu.js";
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED