@hunter-industries/hunter-components 0.0.32 → 0.0.33
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/assets/icons/index.d.ts +3 -1
- package/dist/components/Input/Checkbox/Checkbox.stories.d.ts +6 -0
- package/dist/components/Input/Checkbox/Checkbox.vue.d.ts +23 -0
- package/dist/components/Input/Checkbox/index.d.ts +2 -0
- package/dist/hunter-components.js +604 -557
- package/dist/hunter-components.umd.cjs +2 -2
- package/dist/index.d.ts +2 -1
- package/dist/types/assets.d.ts +1 -1
- package/package.json +1 -1
|
@@ -6,6 +6,7 @@ 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 HunterCheckIcon from "./check.svg?component";
|
|
9
10
|
import HunterCircleOutlineIcon from "./circle-outline.svg?component";
|
|
10
11
|
import HunterClockwiseIcon from "./clockwise.svg?component";
|
|
11
12
|
import HunterCloseIcon from "./close.svg?component";
|
|
@@ -19,6 +20,7 @@ import HunterErrorIcon from "./error.svg?component";
|
|
|
19
20
|
import HunterErrorOutlineIcon from "./error-outline.svg?component";
|
|
20
21
|
import HunterFenceIcon from "./fence.svg?component";
|
|
21
22
|
import HunterFlowerIcon from "./flower.svg?component";
|
|
23
|
+
import HunterForwardArrow from "./forward-arrow.svg?component";
|
|
22
24
|
import HunterGrassIcon from "./grass.svg?component";
|
|
23
25
|
import HunterHiddenIcon from "./hidden.svg?component";
|
|
24
26
|
import HunterHouseIcon from "./house.svg?component";
|
|
@@ -55,6 +57,6 @@ import HunterWaterIcon from "./water.svg?component";
|
|
|
55
57
|
import HunterWaterOffIcon from "./water-off.svg?component";
|
|
56
58
|
import HunterZonesIcon from "./zones.svg?component";
|
|
57
59
|
import { HunterIconName } from "../../types/assets";
|
|
58
|
-
export { HunterAccountCircleIcon, HunterAddIcon, HunterArchiveIcon, HunterBackArrowIcon, HunterCaretDownIcon, HunterCaretLeftIcon, HunterCaretRightIcon, HunterCaretUpIcon, HunterCircleOutlineIcon, HunterClockwiseIcon, HunterCloseIcon, HunterCopyContentIcon, HunterCounterClockwiseIcon, HunterDeleteIcon, HunterDownloadIcon, HunterDrawIcon, HunterEditPencil, HunterErrorIcon, HunterErrorOutlineIcon, HunterFenceIcon, HunterFlowerIcon, HunterGrassIcon, HunterHiddenIcon, HunterHouseIcon, HunterLocationIcon, HunterLockIcon, HunterMapIcon, HunterMenuIcon, HunterNorthArrowIcon, HunterNotificationIcon, HunterOutdoorTableIcon, HunterPlantOutlineIcon, HunterPolygonOutlineIcon, HunterPottedPlantIcon, HunterRectangleOutlineIcon, HunterRedoIcon, HunterRotateDoubleArrow, HunterRulerIcon, HunterSearchIcon, HunterShareIcon, HunterSquareOutlineIcon, HunterSubtractIcon, HunterSuccessIcon, HunterSuccessOutlineIcon, HunterTapeMeasure, HunterTreeIcon, HunterTriangleOutlineIcon, HunterUndoIcon, HunterUnlockIcon, HunterUploadIcon, HunterVisibleIcon, HunterWarningIcon, HunterWarningOutlineIcon, HunterWaterIcon, HunterWaterOffIcon, HunterZonesIcon, };
|
|
60
|
+
export { HunterAccountCircleIcon, HunterAddIcon, HunterArchiveIcon, HunterBackArrowIcon, HunterCaretDownIcon, HunterCaretLeftIcon, HunterCaretRightIcon, HunterCaretUpIcon, HunterCheckIcon, HunterCircleOutlineIcon, HunterClockwiseIcon, HunterCloseIcon, HunterCopyContentIcon, HunterCounterClockwiseIcon, HunterDeleteIcon, HunterDownloadIcon, HunterDrawIcon, HunterEditPencil, HunterErrorIcon, HunterErrorOutlineIcon, HunterFenceIcon, HunterFlowerIcon, HunterForwardArrow, HunterGrassIcon, HunterHiddenIcon, HunterHouseIcon, HunterLocationIcon, HunterLockIcon, HunterMapIcon, HunterMenuIcon, HunterNorthArrowIcon, HunterNotificationIcon, HunterOutdoorTableIcon, HunterPlantOutlineIcon, HunterPolygonOutlineIcon, HunterPottedPlantIcon, HunterRectangleOutlineIcon, HunterRedoIcon, HunterRotateDoubleArrow, HunterRulerIcon, HunterSearchIcon, HunterShareIcon, HunterSquareOutlineIcon, HunterSubtractIcon, HunterSuccessIcon, HunterSuccessOutlineIcon, HunterTapeMeasure, HunterTreeIcon, HunterTriangleOutlineIcon, HunterUndoIcon, HunterUnlockIcon, HunterUploadIcon, HunterVisibleIcon, HunterWarningIcon, HunterWarningOutlineIcon, HunterWaterIcon, HunterWaterOffIcon, HunterZonesIcon, };
|
|
59
61
|
declare const icons: Record<HunterIconName, any>;
|
|
60
62
|
export default icons;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
label: string;
|
|
3
|
+
value: string;
|
|
4
|
+
id?: string;
|
|
5
|
+
name?: string;
|
|
6
|
+
isChecked?: boolean;
|
|
7
|
+
note?: string;
|
|
8
|
+
}
|
|
9
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<Props>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
+
checked: (value: boolean) => void;
|
|
11
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<Props>>> & {
|
|
12
|
+
onChecked?: ((value: boolean) => any) | undefined;
|
|
13
|
+
}, {}, {}>;
|
|
14
|
+
export default _default;
|
|
15
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
16
|
+
type __VLS_TypePropsToOption<T> = {
|
|
17
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
18
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
19
|
+
} : {
|
|
20
|
+
type: import('vue').PropType<T[K]>;
|
|
21
|
+
required: true;
|
|
22
|
+
};
|
|
23
|
+
};
|