react-mkx-components
Advanced tools
Comparing version 1.0.8 to 1.0.9
@@ -17,4 +17,6 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Choice = exports.Input = void 0; | ||
exports.ScrollDiv = exports.Choice = exports.Input = void 0; | ||
const react_1 = __importDefault(require("react")); | ||
const ScrolllDiv_1 = __importDefault(require("./ScrolllDiv/ScrolllDiv")); | ||
exports.ScrollDiv = ScrolllDiv_1.default; | ||
const Input = (_a) => { | ||
@@ -21,0 +23,0 @@ var { value, setValue } = _a, rest = __rest(_a, ["value", "setValue"]); |
@@ -1,3 +0,4 @@ | ||
export interface InputProps | ||
extends React.InputHTMLAttributes<HTMLInputElement> { | ||
import React, { ReactNode } from "react"; | ||
interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> { | ||
value: string; | ||
@@ -7,5 +8,5 @@ setValue: (value: string) => void; | ||
export interface ChoiceProps { | ||
interface ChoiceProps { | ||
condition: boolean; | ||
children: ReactNode; | ||
} |
import React, { ChangeEvent, ReactNode } from "react"; | ||
import { ChoiceProps, InputProps } from "./index.d"; | ||
import ScrollDiv from "./ScrolllDiv/ScrolllDiv"; | ||
@@ -69,2 +70,2 @@ /** | ||
export { Input, Choice }; | ||
export { Input, Choice, ScrollDiv }; |
{ | ||
"name": "react-mkx-components", | ||
"version": "1.0.8", | ||
"version": "1.0.9", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "./dist/index.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13432
11
221