kwikid-components-react
Version:
KwikID's Component Library in React
34 lines (33 loc) • 843 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.KWIKUI_INPUT_TEXT__DEFAULTS = void 0;
var _InputText = require("./InputText.definition");
const KWIKUI_INPUT_TEXT__DEFAULTS = exports.KWIKUI_INPUT_TEXT__DEFAULTS = {
customStyles: {
wrapper: {},
container: {},
label: {},
input: {}
},
disabled: false,
id: "input_id",
textCase: "default",
label: "",
messages: [],
placeholder: "",
postfix: "",
prefix: "",
required: false,
shape: _InputText.IKwikUIInputTextShape.CURVED,
size: _InputText.IKwikUIInputTextSize.M,
updateOn: _InputText.IKwikUIInputTextUpdateOn.CHANGE,
value: "",
onInput: undefined,
onInputValidate: undefined,
isInputCopyDisabled: false,
isInputPasteDisabled: false,
onInputCopyDisabled: undefined,
onInputPasteDisabled: undefined
};