@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.
@@ -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?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/core",
3
- "version": "19.1.0-staging.11",
3
+ "version": "19.1.0-staging.12",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",