@vendure/common 2.0.0-next.12 → 2.0.0-next.13

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.
@@ -93,7 +93,7 @@ export declare type ConfigArgType = 'string' | 'int' | 'float' | 'boolean' | 'da
93
93
  *
94
94
  * @docsCategory ConfigurableOperationDef
95
95
  */
96
- export declare type DefaultFormComponentId = 'boolean-form-input' | 'currency-form-input' | 'customer-group-form-input' | 'date-form-input' | 'facet-value-form-input' | 'json-editor-form-input' | 'number-form-input' | 'password-form-input' | 'product-selector-form-input' | 'relation-form-input' | 'rich-text-form-input' | 'select-form-input' | 'text-form-input' | 'textarea-form-input' | 'asset-form-input' | 'product-multi-form-input' | 'combination-mode-form-input';
96
+ export declare type DefaultFormComponentId = 'boolean-form-input' | 'currency-form-input' | 'customer-group-form-input' | 'date-form-input' | 'facet-value-form-input' | 'json-editor-form-input' | 'html-editor-form-input' | 'number-form-input' | 'password-form-input' | 'product-selector-form-input' | 'relation-form-input' | 'rich-text-form-input' | 'select-form-input' | 'text-form-input' | 'textarea-form-input' | 'asset-form-input' | 'product-multi-form-input' | 'combination-mode-form-input';
97
97
  /**
98
98
  * @description
99
99
  * Used to define the expected arguments for a given default form input component.
@@ -113,6 +113,9 @@ declare type DefaultFormConfigHash = {
113
113
  'json-editor-form-input': {
114
114
  height?: string;
115
115
  };
116
+ 'html-editor-form-input': {
117
+ height?: string;
118
+ };
116
119
  'number-form-input': {
117
120
  min?: number;
118
121
  max?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendure/common",
3
- "version": "2.0.0-next.12",
3
+ "version": "2.0.0-next.13",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "scripts": {
@@ -22,5 +22,5 @@
22
22
  "rimraf": "^3.0.2",
23
23
  "typescript": "4.5.5"
24
24
  },
25
- "gitHead": "6e376a1435fd705c61baceb1854cd1657ba17743"
25
+ "gitHead": "c4877c253da7ad10dd26450e9a1b1e06901d5872"
26
26
  }