@gem-sdk/core 19.1.0-dev.19 → 19.1.0-dev.20
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
|
@@ -44969,9 +44969,16 @@ type SettingUIGroup = {
|
|
|
44969
44969
|
};
|
|
44970
44970
|
};
|
|
44971
44971
|
|
|
44972
|
+
type PickLinkOptionType = 'stay-on-page' | 'open-page' | 'scroll-to' | 'open-popup' | 'send-email' | 'call-phone' | 'go-to-sales-page';
|
|
44973
|
+
type PickLinkOptionConfig = {
|
|
44974
|
+
title?: string;
|
|
44975
|
+
popoverLabel?: string;
|
|
44976
|
+
hideScrollToTop?: boolean;
|
|
44977
|
+
};
|
|
44972
44978
|
type PickLinkControlType<T> = SharedControlType<T> & {
|
|
44973
44979
|
type: 'pick-link';
|
|
44974
44980
|
pickLinkLabel?: string;
|
|
44981
|
+
optionConfig?: Partial<Record<PickLinkOptionType, PickLinkOptionConfig>>;
|
|
44975
44982
|
isHiddenInsertLink?: boolean;
|
|
44976
44983
|
isHiddenOpenLinkSelect?: boolean;
|
|
44977
44984
|
hiddenOptions?: {
|