@gem-sdk/core 19.1.0-staging.11 → 19.1.0-staging.12
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
|
@@ -44960,9 +44960,16 @@ type SettingUIGroup = {
|
|
|
44960
44960
|
};
|
|
44961
44961
|
};
|
|
44962
44962
|
|
|
44963
|
+
type PickLinkOptionType = 'stay-on-page' | 'open-page' | 'scroll-to' | 'open-popup' | 'send-email' | 'call-phone' | 'go-to-sales-page';
|
|
44964
|
+
type PickLinkOptionConfig = {
|
|
44965
|
+
title?: string;
|
|
44966
|
+
popoverLabel?: string;
|
|
44967
|
+
hideScrollToTop?: boolean;
|
|
44968
|
+
};
|
|
44963
44969
|
type PickLinkControlType<T> = SharedControlType<T> & {
|
|
44964
44970
|
type: 'pick-link';
|
|
44965
44971
|
pickLinkLabel?: string;
|
|
44972
|
+
optionConfig?: Partial<Record<PickLinkOptionType, PickLinkOptionConfig>>;
|
|
44966
44973
|
isHiddenInsertLink?: boolean;
|
|
44967
44974
|
isHiddenOpenLinkSelect?: boolean;
|
|
44968
44975
|
hiddenOptions?: {
|