@matthiaskrijgsman/mat-ui 0.0.3 → 0.0.5
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/inputs/InputCheck.d.ts +2 -2
- package/dist/index.d.ts +33 -11
- package/dist/index.js +3531 -3000
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +37 -22
- package/dist/index.umd.cjs.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
export
|
|
2
|
+
export type InputCheckProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'> & {
|
|
3
3
|
label?: string | React.ReactNode;
|
|
4
4
|
description?: string | React.ReactNode;
|
|
5
5
|
error?: string | React.ReactNode;
|
|
6
|
-
}
|
|
6
|
+
};
|
|
7
7
|
export declare const InputCheck: (props: InputCheckProps) => import("react/jsx-runtime").JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,13 +1,35 @@
|
|
|
1
1
|
import "./style.css";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
export {
|
|
2
|
+
export { Button } from "./components/button/Button.tsx";
|
|
3
|
+
export { ButtonIconSquare } from "./components/button-icon-square/ButtonIconSquare.tsx";
|
|
4
|
+
export { ButtonIconRound } from "./components/button-icon-round/ButtonIconRound.tsx";
|
|
5
|
+
export { Input } from "./components/inputs/Input.tsx";
|
|
6
|
+
export { InputPassword } from "./components/inputs/InputPassword.tsx";
|
|
7
|
+
export { InputTextArea } from "./components/inputs/InputTextArea.tsx";
|
|
8
|
+
export { InputRadio } from "./components/inputs/InputRadio.tsx";
|
|
9
|
+
export { InputToggle } from "./components/inputs/InputToggle.tsx";
|
|
10
|
+
export { InputCheck } from "./components/inputs/InputCheck.tsx";
|
|
11
|
+
export { InputLabel } from "./components/inputs/InputLabel.tsx";
|
|
12
|
+
export { InputDescription } from "./components/inputs/InputDescription.tsx";
|
|
13
|
+
export { InputError } from "./components/inputs/InputError.tsx";
|
|
14
|
+
export { InputErrorIcon } from "./components/inputs/InputErrorIcon.tsx";
|
|
15
|
+
export { InputIconButton } from "./components/inputs/InputIconButton.tsx";
|
|
16
|
+
export { InputIconButtonTray } from "./components/inputs/InputIconButtonTray.tsx";
|
|
17
|
+
export { InputSelectNative } from "./components/inputs/InputSelectNative.tsx";
|
|
18
|
+
export { InputSelect } from "./components/inputs/InputSelect.tsx";
|
|
19
|
+
export { InputSelectSearchable } from "./components/inputs/InputSelectSearchable.tsx";
|
|
20
|
+
export { InputSelectSearchableAsync } from "./components/inputs/InputSelectSearchableAsync.tsx";
|
|
21
|
+
export { InputSelectOption } from "./components/inputs/InputSelectOption.tsx";
|
|
22
|
+
export { Panel } from "./components/Panel.tsx";
|
|
23
|
+
export { Divider } from "./components/Divider.tsx";
|
|
24
|
+
export { Tooltip } from "./components/Tooltip.tsx";
|
|
25
|
+
export { Modal } from "./components/Modal.tsx";
|
|
26
|
+
export { Badge } from "./components/Badge.tsx";
|
|
27
|
+
export { BadgeColor } from "./components/BadgeColors.tsx";
|
|
28
|
+
export { TabButtons } from "./components/TabButtons.tsx";
|
|
29
|
+
export { Spinner } from "./spinner/Spinner.tsx";
|
|
30
|
+
export { PopoverButton } from "./popover/PopoverButton.tsx";
|
|
31
|
+
export { PopoverPanel } from "./popover/PopoverPanel.tsx";
|
|
32
|
+
export { PopoverBase } from "./popover/PopoverBase.tsx";
|
|
33
|
+
export { usePopover } from "./popover/use-popover.tsx";
|
|
34
|
+
export { Test } from "./components/Test.tsx";
|
|
13
35
|
export * from "./types.ts";
|