@gem-sdk/core 19.0.0-dev.26 → 19.0.0-dev.28
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/dist/types/index.d.ts +7 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -44967,9 +44967,16 @@ type SettingUIGroup = {
|
|
|
44967
44967
|
};
|
|
44968
44968
|
};
|
|
44969
44969
|
|
|
44970
|
+
type PickLinkOptionType = 'stay-on-page' | 'open-page' | 'scroll-to' | 'open-popup' | 'send-email' | 'call-phone' | 'go-to-sales-page';
|
|
44971
|
+
type PickLinkOptionConfig = {
|
|
44972
|
+
title?: string;
|
|
44973
|
+
popoverLabel?: string;
|
|
44974
|
+
hideScrollToTop?: boolean;
|
|
44975
|
+
};
|
|
44970
44976
|
type PickLinkControlType<T> = SharedControlType<T> & {
|
|
44971
44977
|
type: 'pick-link';
|
|
44972
44978
|
pickLinkLabel?: string;
|
|
44979
|
+
optionConfig?: Partial<Record<PickLinkOptionType, PickLinkOptionConfig>>;
|
|
44973
44980
|
isHiddenInsertLink?: boolean;
|
|
44974
44981
|
isHiddenOpenLinkSelect?: boolean;
|
|
44975
44982
|
hiddenOptions?: {
|