@vendure/common 2.0.2 → 2.0.4
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.
- package/lib/shared-types.d.ts +1 -2
- package/package.json +2 -2
package/lib/shared-types.d.ts
CHANGED
|
@@ -94,7 +94,7 @@ export type ConfigArgType = 'string' | 'int' | 'float' | 'boolean' | 'datetime'
|
|
|
94
94
|
*
|
|
95
95
|
* @docsCategory ConfigurableOperationDef
|
|
96
96
|
*/
|
|
97
|
-
export 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' | '
|
|
97
|
+
export 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' | 'product-multi-form-input' | 'combination-mode-form-input';
|
|
98
98
|
/**
|
|
99
99
|
* @description
|
|
100
100
|
* Used to define the expected arguments for a given default form input component.
|
|
@@ -141,7 +141,6 @@ type DefaultFormConfigHash = {
|
|
|
141
141
|
'textarea-form-input': {
|
|
142
142
|
spellcheck?: boolean;
|
|
143
143
|
};
|
|
144
|
-
'asset-form-input': Record<string, never>;
|
|
145
144
|
'product-multi-form-input': {
|
|
146
145
|
selectionMode?: 'product' | 'variant';
|
|
147
146
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vendure/common",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
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.9.5"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "e1713e8c0fd9e32708f7cbe7ac00a5964c3348af"
|
|
26
26
|
}
|