@realsee/dnalogel 3.79.4 → 3.80.1-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/README.md +0 -4
- package/dist/PanoTagPlugin/typings/tag/TagConfig.d.ts +5 -0
- package/dist/PanoTagPlugin/typings/tag/TagData.d.ts +4 -0
- package/dist/index.cjs.js +77 -77
- package/dist/index.js +8203 -8147
- package/dist/index.umd.js +69 -69
- package/libs/PanoTagPlugin/Components/Tag/MarketingTag.js +300 -243
- package/libs/PanoTagPlugin/tag.config.js +2 -1
- package/libs/PanoTagPlugin/typings/tag/TagConfig.d.ts +5 -0
- package/libs/PanoTagPlugin/typings/tag/TagData.d.ts +4 -0
- package/libs/base/BasePlugin.js +5 -5
- package/libs/shared-utils/logger.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -351,6 +351,11 @@ export interface TagConfig<C extends TagContentType = TagContentType> {
|
|
|
351
351
|
* @default '查看更多'
|
|
352
352
|
*/
|
|
353
353
|
viewMoreText?: string;
|
|
354
|
+
/**
|
|
355
|
+
* @description 营销标签展开卡片中是否展示媒体区域(需同时提供 data.mediaData,与 popoverConfig.enabled 无关)
|
|
356
|
+
* @default false
|
|
357
|
+
*/
|
|
358
|
+
showMedia?: boolean;
|
|
354
359
|
/**
|
|
355
360
|
* @description 鼠标悬停前的拦截函数,返回 true 允许 hover,false 阻止 hover
|
|
356
361
|
*/
|