@hunter-industries/hunter-components 0.0.16 → 0.0.17
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.
|
@@ -6,21 +6,33 @@ import HunterCaretDownIcon from "./caret-down.svg?component";
|
|
|
6
6
|
import HunterCaretLeftIcon from "./caret-left.svg?component";
|
|
7
7
|
import HunterCaretRightIcon from "./caret-right.svg?component";
|
|
8
8
|
import HunterCaretUpIcon from "./caret-up.svg?component";
|
|
9
|
+
import HunterClockwiseIcon from "./clockwise.svg?component";
|
|
9
10
|
import HunterCloseIcon from "./close.svg?component";
|
|
10
11
|
import HunterCopyContentIcon from "./copy-content.svg?component";
|
|
12
|
+
import HunterCounterClockwiseIcon from "./counter-clockwise.svg?component";
|
|
11
13
|
import HunterDeleteIcon from "./delete.svg?component";
|
|
12
14
|
import HunterDownloadIcon from "./download.svg?component";
|
|
15
|
+
import HunterDrawIcon from "./draw.svg?component";
|
|
13
16
|
import HunterErrorIcon from "./error.svg?component";
|
|
14
17
|
import HunterErrorOutlineIcon from "./error-outline.svg?component";
|
|
15
|
-
import
|
|
18
|
+
import HunterHiddenIcon from "./hidden.svg?component";
|
|
16
19
|
import HunterLocationIcon from "./location.svg?component";
|
|
20
|
+
import HunterMapIcon from "./map.svg?component";
|
|
21
|
+
import HunterMenuIcon from "./menu.svg?component";
|
|
22
|
+
import HunterNorthArrowIcon from "./north-arrow.svg?component";
|
|
23
|
+
import HunterNotificationIcon from "./notification.svg?component";
|
|
24
|
+
import HunterRedoIcon from "./redo.svg?component";
|
|
25
|
+
import HunterRulerIcon from "./ruler.svg?component";
|
|
17
26
|
import HunterSearchIcon from "./search.svg?component";
|
|
18
27
|
import HunterShareIcon from "./share.svg?component";
|
|
19
28
|
import HunterSuccessIcon from "./success.svg?component";
|
|
20
29
|
import HunterSuccessOutlineIcon from "./success-outline.svg?component";
|
|
30
|
+
import HunterUndoIcon from "./undo.svg?component";
|
|
31
|
+
import HunterUploadIcon from "./upload.svg?component";
|
|
21
32
|
import HunterWarningIcon from "./warning.svg?component";
|
|
22
33
|
import HunterWarningOutlineIcon from "./warning-outline.svg?component";
|
|
34
|
+
import HunterZonesIcon from "./zones.svg?component";
|
|
23
35
|
import { HunterIconName } from "../../types/assets";
|
|
24
|
-
export { HunterAccountCircleIcon, HunterAddIcon, HunterArchiveIcon, HunterBackArrowIcon, HunterCaretDownIcon, HunterCaretLeftIcon, HunterCaretRightIcon, HunterCaretUpIcon, HunterCloseIcon, HunterCopyContentIcon, HunterDeleteIcon, HunterDownloadIcon, HunterErrorIcon, HunterErrorOutlineIcon,
|
|
36
|
+
export { HunterAccountCircleIcon, HunterAddIcon, HunterArchiveIcon, HunterBackArrowIcon, HunterCaretDownIcon, HunterCaretLeftIcon, HunterCaretRightIcon, HunterCaretUpIcon, HunterClockwiseIcon, HunterCloseIcon, HunterCopyContentIcon, HunterCounterClockwiseIcon, HunterDeleteIcon, HunterDownloadIcon, HunterDrawIcon, HunterErrorIcon, HunterErrorOutlineIcon, HunterHiddenIcon, HunterLocationIcon, HunterMapIcon, HunterMenuIcon, HunterNorthArrowIcon, HunterNotificationIcon, HunterRedoIcon, HunterRulerIcon, HunterSearchIcon, HunterShareIcon, HunterSuccessIcon, HunterSuccessOutlineIcon, HunterUndoIcon, HunterUploadIcon, HunterWarningIcon, HunterWarningOutlineIcon, HunterZonesIcon, };
|
|
25
37
|
declare const icons: Record<HunterIconName, any>;
|
|
26
38
|
export default icons;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { Meta, StoryObj } from "@storybook/vue3";
|
|
2
|
-
import { HunterAccountCircleIcon, HunterAddIcon, HunterArchiveIcon, HunterBackArrowIcon, HunterCaretDownIcon, HunterCaretLeftIcon, HunterCaretRightIcon, HunterCaretUpIcon, HunterCloseIcon, HunterCopyContentIcon, HunterDeleteIcon, HunterDownloadIcon, HunterErrorIcon, HunterErrorOutlineIcon,
|
|
2
|
+
import { HunterAccountCircleIcon, HunterAddIcon, HunterArchiveIcon, HunterBackArrowIcon, HunterCaretDownIcon, HunterCaretLeftIcon, HunterCaretRightIcon, HunterCaretUpIcon, HunterClockwiseIcon, HunterCloseIcon, HunterCopyContentIcon, HunterCounterClockwiseIcon, HunterDeleteIcon, HunterDownloadIcon, HunterDrawIcon, HunterErrorIcon, HunterErrorOutlineIcon, HunterHiddenIcon, HunterLocationIcon, HunterMapIcon, HunterMenuIcon, HunterNorthArrowIcon, HunterNotificationIcon, HunterRedoIcon, HunterRulerIcon, HunterSearchIcon, HunterShareIcon, HunterSuccessIcon, HunterSuccessOutlineIcon, HunterUndoIcon, HunterUploadIcon, HunterWarningIcon, HunterWarningOutlineIcon, HunterZonesIcon } from "../../assets/icons";
|
|
3
3
|
import Icon from "./Icon.vue";
|
|
4
|
-
type SVGComponent = typeof HunterAccountCircleIcon | typeof HunterAddIcon | typeof HunterArchiveIcon | typeof HunterBackArrowIcon | typeof HunterCaretDownIcon | typeof HunterCaretLeftIcon | typeof HunterCaretRightIcon | typeof HunterCaretUpIcon | typeof HunterCloseIcon | typeof HunterCopyContentIcon | typeof HunterDeleteIcon | typeof HunterErrorIcon | typeof HunterErrorOutlineIcon | typeof HunterNotificationIcon | typeof HunterDownloadIcon | typeof HunterLocationIcon | typeof HunterSearchIcon | typeof HunterShareIcon | typeof HunterSuccessIcon | typeof HunterSuccessOutlineIcon | typeof HunterWarningIcon | typeof HunterWarningOutlineIcon;
|
|
4
|
+
type SVGComponent = typeof HunterAccountCircleIcon | typeof HunterAddIcon | typeof HunterArchiveIcon | typeof HunterBackArrowIcon | typeof HunterCaretDownIcon | typeof HunterCaretLeftIcon | typeof HunterCaretRightIcon | typeof HunterCaretUpIcon | typeof HunterCloseIcon | typeof HunterClockwiseIcon | typeof HunterCopyContentIcon | typeof HunterCounterClockwiseIcon | typeof HunterDeleteIcon | typeof HunterDrawIcon | typeof HunterErrorIcon | typeof HunterErrorOutlineIcon | typeof HunterHiddenIcon | typeof HunterNotificationIcon | typeof HunterDownloadIcon | typeof HunterLocationIcon | typeof HunterMapIcon | typeof HunterMenuIcon | typeof HunterNorthArrowIcon | typeof HunterRedoIcon | typeof HunterRulerIcon | typeof HunterSearchIcon | typeof HunterShareIcon | typeof HunterSuccessIcon | typeof HunterSuccessOutlineIcon | typeof HunterUndoIcon | typeof HunterUploadIcon | typeof HunterWarningIcon | typeof HunterWarningOutlineIcon | typeof HunterZonesIcon;
|
|
5
5
|
export declare const DefaultWithProps: Meta<typeof Icon>;
|
|
6
6
|
declare const meta: Meta<SVGComponent>;
|
|
7
7
|
export default meta;
|
|
@@ -14,17 +14,29 @@ export declare const CaretDown: Story;
|
|
|
14
14
|
export declare const CaretLeft: Story;
|
|
15
15
|
export declare const CaretRight: Story;
|
|
16
16
|
export declare const CaretUp: Story;
|
|
17
|
+
export declare const Clockwise: Story;
|
|
17
18
|
export declare const Close: Story;
|
|
18
19
|
export declare const CopyContent: Story;
|
|
20
|
+
export declare const CounterClocwise: Story;
|
|
19
21
|
export declare const Delete: Story;
|
|
20
22
|
export declare const Download: Story;
|
|
23
|
+
export declare const Draw: Story;
|
|
21
24
|
export declare const Error: Story;
|
|
22
25
|
export declare const ErrorOutline: Story;
|
|
23
|
-
export declare const
|
|
26
|
+
export declare const Hidden: Story;
|
|
24
27
|
export declare const Location: Story;
|
|
28
|
+
export declare const Map: Story;
|
|
29
|
+
export declare const Menu: Story;
|
|
30
|
+
export declare const NorthArrow: Story;
|
|
31
|
+
export declare const Notification: Story;
|
|
32
|
+
export declare const Redo: Story;
|
|
33
|
+
export declare const Ruler: Story;
|
|
25
34
|
export declare const Search: Story;
|
|
26
35
|
export declare const Share: Story;
|
|
27
36
|
export declare const Success: Story;
|
|
28
37
|
export declare const SuccessOutline: Story;
|
|
38
|
+
export declare const Undo: Story;
|
|
39
|
+
export declare const Upload: Story;
|
|
29
40
|
export declare const Warning: Story;
|
|
30
41
|
export declare const WarningOutline: Story;
|
|
42
|
+
export declare const Zones: Story;
|