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