From 784e0fe142ffe215d2fc7b53df124f064627600e Mon Sep 17 00:00:00 2001 From: dailer Date: Fri, 18 Feb 2022 17:16:11 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A0JIRA=E4=BB=BB=E5=8A=A1=20sticky=20?= =?UTF-8?q?=E5=A3=B0=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/core/wrapper/layout/sticky/sticky.horizontal.ts | 5 +++++ typescript/core/wrapper/layout/sticky/sticky.vertical.ts | 5 +++++ typescript/index.ts | 6 ++++++ 3 files changed, 16 insertions(+) create mode 100644 typescript/core/wrapper/layout/sticky/sticky.horizontal.ts create mode 100644 typescript/core/wrapper/layout/sticky/sticky.vertical.ts diff --git a/typescript/core/wrapper/layout/sticky/sticky.horizontal.ts b/typescript/core/wrapper/layout/sticky/sticky.horizontal.ts new file mode 100644 index 000000000..900be7c45 --- /dev/null +++ b/typescript/core/wrapper/layout/sticky/sticky.horizontal.ts @@ -0,0 +1,5 @@ +import { Layout } from "../../layout"; + +export declare class HorizontalStickyLayout extends Layout { + static xtype: string; +} diff --git a/typescript/core/wrapper/layout/sticky/sticky.vertical.ts b/typescript/core/wrapper/layout/sticky/sticky.vertical.ts new file mode 100644 index 000000000..f5a07b44e --- /dev/null +++ b/typescript/core/wrapper/layout/sticky/sticky.vertical.ts @@ -0,0 +1,5 @@ +import { Layout } from "../../layout"; + +export declare class VerticalStickyLayout extends Layout { + static xtype: string; +} diff --git a/typescript/index.ts b/typescript/index.ts index 619ab72ce..fa18bc8da 100644 --- a/typescript/index.ts +++ b/typescript/index.ts @@ -181,6 +181,8 @@ import { TdLayout } from './core/wrapper/layout/layout.td'; import { MultiLayerSelectLevelTree } from './widget/multilayerselecttree/multilayerselecttree.leveltree'; import { SelectTreeExpander } from './widget/selecttree/selecttree.expander'; import { DownListGroupItem } from "./widget/downlist/item.downlistgroup"; +import { VerticalStickyLayout } from "./core/wrapper/layout/sticky/sticky.vertical"; +import { HorizontalStickyLayout } from "./core/wrapper/layout/sticky/sticky.horizontal"; import './shims-tsx'; @@ -370,6 +372,8 @@ export interface BI extends _func, _i18n, _base, _inject, _var, _web, _utils { MultiLayerSelectLevelTree: typeof MultiLayerSelectLevelTree; SelectTreeExpander: typeof SelectTreeExpander; DownListGroupItem: typeof DownListGroupItem; + VerticalStickyLayout: typeof VerticalStickyLayout; + HorizontalStickyLayout: typeof HorizontalStickyLayout; } export default { @@ -558,4 +562,6 @@ export { SelectTreeExpander, DirectionPager, DownListGroupItem, + HorizontalStickyLayout, + VerticalStickyLayout, };