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