@ -41,8 +41,8 @@
}, {
"files": ["webpack/*.js", "./*.js", "lib/**/*.js", "lib/*.js", "./bin/*.js", "./bin/**/*.js"],
"extends": "plugin:@fui/esnext"
"files": ["types/*.ts", "typescript/*.ts","typescript/**/*.ts"],
"extends": "plugin:@fui/typescript"
// }, {
// "files": ["types/*.ts", "typescript/*.ts","typescript/**/*.ts"],
// "extends": "plugin:@fui/typescript"
}]
}
@ -155,7 +155,9 @@ ${M}
`;
const prettierCode = prettier.format(outputCode);
const prettierCode = prettier.format(outputCode, {
tabWidth: 4,
});
fs.writeFileSync(srcName, prettierCode);
await fix(srcName);
@ -32,9 +32,9 @@ export * from "./structure";
export * from "./h";
export * from "./constant";
export * from "./logic";
export * from "./utils";
export * from "./wrapper";
export * from "./platform/web";
export {
StyleLoaderManager,
@ -11,6 +11,8 @@ import { Layout } from "../../layout";
*/
@shortcut()
export class FlexVerticalLayout extends Layout {
static xtype = "bi.flex_vertical";
props() {
return extend(super.props(...arguments), {
baseCls: "bi-f-v",