@gem-sdk/core 2.0.0-dev.257 → 2.0.0-dev.264

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.
@@ -7769,6 +7769,8 @@ type ImageControlType<T> = SharedControlType<T> & {
7769
7769
  type InputControlType<T> = SharedControlType<T> & {
7770
7770
  type: 'input';
7771
7771
  placeholder?: string;
7772
+ defaultValue?: string;
7773
+ clearButton?: boolean;
7772
7774
  datalist?: {
7773
7775
  value: any;
7774
7776
  }[];
@@ -8794,7 +8796,14 @@ type ProductInputCurrencyUnitControlType<T> = SharedControlType<T> & {
8794
8796
  useOnlyUnitInit?: boolean;
8795
8797
  };
8796
8798
 
8797
- type PostPurchaseFontSize = 'default' | 'small' | 'medium' | 'large' | 'xlarge';
8799
+ declare enum PostPurchaseFontSizeValue {
8800
+ Default = "default",
8801
+ Small = "small",
8802
+ Medium = "medium",
8803
+ Large = "large",
8804
+ XLarge = "xlarge"
8805
+ }
8806
+ type PostPurchaseFontSize = PostPurchaseFontSizeValue;
8798
8807
  type PostPurchaseFontWeight = 'normal' | 'bold';
8799
8808
  type PostPurchaseTextTransform = 'none' | 'uppercase' | 'capitalize' | 'lowercase';
8800
8809
  type PostPurchaseTextColor = 'success' | 'warning' | 'critical' | 'default' | 'defaultButton' | 'defaultLink';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/core",
3
- "version": "2.0.0-dev.257",
3
+ "version": "2.0.0-dev.264",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",
@@ -28,7 +28,7 @@
28
28
  },
29
29
  "devDependencies": {
30
30
  "@gem-sdk/adapter-shopify": "2.0.0-dev.234",
31
- "@gem-sdk/styles": "2.0.0-dev.234",
31
+ "@gem-sdk/styles": "2.0.0-dev.263",
32
32
  "@types/classnames": "^2.3.1"
33
33
  },
34
34
  "dependencies": {