sz-mx-cabin
Advanced tools
Comparing version 0.0.3 to 0.0.4
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
interface mainGenratorProps { | ||
@@ -2,0 +3,0 @@ appid: string; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export interface DialogConfig { | ||
@@ -2,0 +3,0 @@ title?: string; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
/** | ||
@@ -2,0 +3,0 @@ * 父组件是个容器,渲染父组件的孩子组件(递归渲染组件) |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
import './index.less'; | ||
@@ -2,0 +3,0 @@ /** |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export interface DialogConfig { | ||
@@ -2,0 +3,0 @@ title?: string; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
interface UIGeneratorIndexProps { | ||
@@ -2,0 +3,0 @@ cabinName: string; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function CardWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function ButtonWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function ButtonGroupWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function CascaderWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function CheckboxWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function CheckboxGroupWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function DatePickerWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
/** | ||
@@ -2,0 +3,0 @@ id: string, // 对from来说没啥用。。。 |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function FormatInputWidget(props: any): JSX.Element; |
@@ -0,2 +1,3 @@ | ||
/// <reference types="react" /> | ||
import './index.less'; | ||
export default function FormItemWidget(props: any): JSX.Element; |
@@ -26,3 +26,6 @@ function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } | ||
wrapperCol = addition.wrapperCol, | ||
mask = addition.mask; | ||
mask = addition.mask, | ||
zdybj = addition.zdybj, | ||
labelFlex = addition.labelFlex, | ||
wrapperFlex = addition.wrapperFlex; | ||
var rules = []; | ||
@@ -145,4 +148,9 @@ | ||
if (JSON.stringify(flex) != '{}') { | ||
if (zdybj != undefined && zdybj && labelFlex && wrapperFlex) { | ||
colResult.wrapperCol = {}; | ||
colResult.wrapperCol.flex = wrapperFlex; | ||
colResult.labelCol = {}; | ||
colResult.labelCol.flex = labelFlex; | ||
} else if (JSON.stringify(flex) != '{}') { | ||
colResult.wrapperCol = {}; | ||
colResult.wrapperCol.flex = flex.wrapperFlex; | ||
@@ -149,0 +157,0 @@ colResult.labelCol = {}; |
@@ -0,2 +1,3 @@ | ||
/// <reference types="react" /> | ||
import './icon.less'; | ||
export default function IconWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function InputWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function InputNumberWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function InputPasswordWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function InputSearchWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function InputTextAreaWidget(props: any): JSX.Element; |
@@ -0,2 +1,3 @@ | ||
/// <reference types="react" /> | ||
import './index.less'; | ||
export default function MultiSearchableInput(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function MultiSelectWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function RadioGroupWidget(props: any): JSX.Element; |
@@ -0,2 +1,3 @@ | ||
/// <reference types="react" /> | ||
import './index.less'; | ||
export default function SingleSearchableInput(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function SingleSelectWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function UploadWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
import './tableStyle'; | ||
@@ -2,0 +3,0 @@ export interface props { |
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } | ||
// @ts-nocheck | ||
import { useUIRenderSchemaStore } from '../../../context'; | ||
@@ -57,3 +58,6 @@ import { previewPanelAnalysisRules } from '../../../settings/previewPanelAnalysisRules/PreviewPanelAnalysisRules'; | ||
options: options | ||
}, itemAddition), eventObj); //渲染render | ||
}, itemAddition), { | ||
onChange: eventObj.onBlur, | ||
optionFilterProp: 'label' | ||
}); //渲染render | ||
@@ -60,0 +64,0 @@ var render = {}; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
import './divCell.less'; | ||
@@ -2,0 +3,0 @@ export declare const getDivCell: (divCellObj: any) => { |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function FormatInputWidget(props: any): JSX.Element; |
@@ -0,2 +1,3 @@ | ||
/// <reference types="react" /> | ||
import './TableWidget.less'; | ||
export default function TableWidget(props: any): JSX.Element; |
@@ -13,4 +13,4 @@ function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } | ||
import _ from 'lodash'; | ||
import BasicEditTable from './BasicEditTable'; | ||
import BasicTable from './BasicTable'; | ||
import EditcellTable from './EditcellTable'; | ||
export default function TableWidget(props) { | ||
@@ -345,3 +345,3 @@ var _props$props = props.props, | ||
// 编辑表格才有的事件 | ||
return /*#__PURE__*/React.createElement(BasicEditTable, _extends({ | ||
return /*#__PURE__*/React.createElement(EditcellTable, _extends({ | ||
id: tableName, | ||
@@ -348,0 +348,0 @@ tableNumber: tableNumber, |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function TabsWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
interface mainGenratorProps { | ||
@@ -2,0 +3,0 @@ appid: string; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export interface DialogConfig { | ||
@@ -2,0 +3,0 @@ title?: string; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
/** | ||
@@ -2,0 +3,0 @@ * 父组件是个容器,渲染父组件的孩子组件(递归渲染组件) |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
import './index.less'; | ||
@@ -2,0 +3,0 @@ /** |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export interface DialogConfig { | ||
@@ -2,0 +3,0 @@ title?: string; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
interface UIGeneratorIndexProps { | ||
@@ -2,0 +3,0 @@ cabinName: string; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function CardWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function ButtonWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function ButtonGroupWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function CascaderWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function CheckboxWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function CheckboxGroupWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function DatePickerWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
/** | ||
@@ -2,0 +3,0 @@ id: string, // 对from来说没啥用。。。 |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function FormatInputWidget(props: any): JSX.Element; |
@@ -0,2 +1,3 @@ | ||
/// <reference types="react" /> | ||
import './index.less'; | ||
export default function FormItemWidget(props: any): JSX.Element; |
@@ -40,3 +40,6 @@ "use strict"; | ||
wrapperCol = addition.wrapperCol, | ||
mask = addition.mask; | ||
mask = addition.mask, | ||
zdybj = addition.zdybj, | ||
labelFlex = addition.labelFlex, | ||
wrapperFlex = addition.wrapperFlex; | ||
var rules = []; | ||
@@ -159,4 +162,9 @@ | ||
if (JSON.stringify(flex) != '{}') { | ||
if (zdybj != undefined && zdybj && labelFlex && wrapperFlex) { | ||
colResult.wrapperCol = {}; | ||
colResult.wrapperCol.flex = wrapperFlex; | ||
colResult.labelCol = {}; | ||
colResult.labelCol.flex = labelFlex; | ||
} else if (JSON.stringify(flex) != '{}') { | ||
colResult.wrapperCol = {}; | ||
colResult.wrapperCol.flex = flex.wrapperFlex; | ||
@@ -163,0 +171,0 @@ colResult.labelCol = {}; |
@@ -0,2 +1,3 @@ | ||
/// <reference types="react" /> | ||
import './icon.less'; | ||
export default function IconWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function InputWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function InputNumberWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function InputPasswordWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function InputSearchWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function InputTextAreaWidget(props: any): JSX.Element; |
@@ -0,2 +1,3 @@ | ||
/// <reference types="react" /> | ||
import './index.less'; | ||
export default function MultiSearchableInput(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function MultiSelectWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function RadioGroupWidget(props: any): JSX.Element; |
@@ -0,2 +1,3 @@ | ||
/// <reference types="react" /> | ||
import './index.less'; | ||
export default function SingleSearchableInput(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function SingleSelectWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function UploadWidget(props: any): JSX.Element; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
import './tableStyle'; | ||
@@ -2,0 +3,0 @@ export interface props { |
@@ -73,3 +73,6 @@ "use strict"; | ||
options: options | ||
}, itemAddition), eventObj); //渲染render | ||
}, itemAddition), { | ||
onChange: eventObj.onBlur, | ||
optionFilterProp: 'label' | ||
}); //渲染render | ||
@@ -76,0 +79,0 @@ var render = {}; |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
import './divCell.less'; | ||
@@ -2,0 +3,0 @@ export declare const getDivCell: (divCellObj: any) => { |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function FormatInputWidget(props: any): JSX.Element; |
@@ -0,2 +1,3 @@ | ||
/// <reference types="react" /> | ||
import './TableWidget.less'; | ||
export default function TableWidget(props: any): JSX.Element; |
@@ -26,6 +26,6 @@ "use strict"; | ||
var _BasicEditTable = _interopRequireDefault(require("./BasicEditTable")); | ||
var _BasicTable = _interopRequireDefault(require("./BasicTable")); | ||
var _EditcellTable = _interopRequireDefault(require("./EditcellTable")); | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } | ||
@@ -370,3 +370,3 @@ | ||
// 编辑表格才有的事件 | ||
return /*#__PURE__*/_react["default"].createElement(_BasicEditTable["default"], _extends({ | ||
return /*#__PURE__*/_react["default"].createElement(_EditcellTable["default"], _extends({ | ||
id: tableName, | ||
@@ -373,0 +373,0 @@ tableNumber: tableNumber, |
@@ -0,1 +1,2 @@ | ||
/// <reference types="react" /> | ||
export default function TabsWidget(props: any): JSX.Element; |
{ | ||
"name": "sz-mx-cabin", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "reactCabin", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
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
1153218
440
24960