From a59f0f68c3e594be91cb9d19e7a7c45a41482f05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dailer-=E5=88=98=E8=8D=A3=E6=AD=86?= Date: Mon, 29 May 2023 16:08:18 +0800 Subject: [PATCH 1/4] =?UTF-8?q?BI-127107=20fix:=20=E3=80=90=E6=9D=A5?= =?UTF-8?q?=E6=BA=90PT=E9=A1=B9=E7=9B=AE=E3=80=91bi6.0.7=EF=BC=8Cie11?= =?UTF-8?q?=E6=B5=8F=E8=A7=88=E5=99=A8=E8=BF=87=E6=BB=A4=E7=BB=84=E4=BB=B6?= =?UTF-8?q?=E6=97=A0=E6=B3=95=E4=BD=BF=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/core/platform/web/dom.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/platform/web/dom.js b/src/core/platform/web/dom.js index f7086bbc7..a74f1ff10 100644 --- a/src/core/platform/web/dom.js +++ b/src/core/platform/web/dom.js @@ -720,7 +720,7 @@ * 获取position:fixed相对定位的元素 */ getPositionRelativeContainingBlock: function (element) { - if (['html', 'body', '#document'].indexOf((element.nodeName || '').toLowerCase()) >= 0) { + if (BI.isIE() || ['html', 'body', '#document'].indexOf((element.nodeName || '').toLowerCase()) >= 0) { // $FlowFixMe[incompatible-return]: assume body is always available return element.ownerDocument.body; } From ad4a36b0d247ba21c60c69a2546661ffd09adc49 Mon Sep 17 00:00:00 2001 From: data Date: Mon, 29 May 2023 16:55:06 +0800 Subject: [PATCH 2/4] auto upgrade version to 2.0.20230529165448 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index db429fbdd..1ef884760 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fineui", - "version": "2.0.20230519095630", + "version": "2.0.20230529165448", "description": "fineui", "main": "dist/fineui_without_conflict.min.js", "types": "dist/lib/index.d.ts", From 6cd0db0458689d1a83df60e5f7ef07e1c96085ff Mon Sep 17 00:00:00 2001 From: zsmj Date: Tue, 30 May 2023 16:36:29 +0800 Subject: [PATCH 3/4] update --- packages/fineui/typescript/core/base.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/fineui/typescript/core/base.ts b/packages/fineui/typescript/core/base.ts index 8b8b48732..a3fd73f37 100644 --- a/packages/fineui/typescript/core/base.ts +++ b/packages/fineui/typescript/core/base.ts @@ -304,7 +304,7 @@ export declare function deepDiff(object: any, other: any): string[]; export declare function uniqueId(prefix?: string): string; -export declare function result(object: any, key: string): any; +export declare function result(object: any, key: string, defaultValue?: any): any; export declare function chain(value: any): any; From 285c65b237d86d7efc431a115bd32b61c0646ba1 Mon Sep 17 00:00:00 2001 From: zsmj Date: Tue, 30 May 2023 19:40:47 +0800 Subject: [PATCH 4/4] update --- packages/fineui/typescript/index.ts | 1 + .../fineui/typescript/widget/downlist/item.downlist.ts | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 packages/fineui/typescript/widget/downlist/item.downlist.ts diff --git a/packages/fineui/typescript/index.ts b/packages/fineui/typescript/index.ts index bdb4d35de..16cb7e4ae 100644 --- a/packages/fineui/typescript/index.ts +++ b/packages/fineui/typescript/index.ts @@ -207,6 +207,7 @@ export { TdLayout } from "./core/wrapper/layout/layout.td"; export { MultiLayerSelectLevelTree } from "./widget/multilayerselecttree/multilayerselecttree.leveltree"; export { SelectTreeExpander } from "./widget/selecttree/selecttree.expander"; export { DownListGroupItem } from "./widget/downlist/item.downlistgroup"; +export { DownListItem } from "./widget/downlist/item.downlist"; export { VerticalStickyLayout } from "./core/wrapper/layout/sticky/sticky.vertical"; export { HorizontalStickyLayout } from "./core/wrapper/layout/sticky/sticky.horizontal"; export { TableLayout } from "./core/wrapper/layout/layout.table"; diff --git a/packages/fineui/typescript/widget/downlist/item.downlist.ts b/packages/fineui/typescript/widget/downlist/item.downlist.ts new file mode 100644 index 000000000..a051ef50e --- /dev/null +++ b/packages/fineui/typescript/widget/downlist/item.downlist.ts @@ -0,0 +1,10 @@ +import { BasicButton } from "../../base/single/button/button.basic"; + +export declare class DownListItem extends BasicButton { + static xtype: string; + static EVENT_CHANGE: string; + + doRedMark(...args: any[]): void; + + unRedMark(...args: any[]): void; +}