@storecraft/dashboard 1.0.8 → 1.0.9

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.
@@ -16,7 +16,7 @@ export type CollectionBaseParams = {
16
16
  /**
17
17
  * `limit` of query
18
18
  */
19
- limit: number;
19
+ limit?: number;
20
20
  /**
21
21
  * when loaded reports query count
22
22
  */
@@ -38,7 +38,8 @@ export type CollectionBaseParams = {
38
38
  *
39
39
  * @param {import('./fields-view.jsx').FieldLeafViewParams<
40
40
  * import('@storecraft/core/v-api').CollectionType,
41
- * import('../pages/collection.jsx').Context>
42
- * } param
41
+ * import('../pages/collection.jsx').Context,
42
+ * import('@storecraft/core/v-api').CollectionType
43
+ * >} param
43
44
  */
44
- declare function CollectionProducts({ value, context }: import('./fields-view.jsx').FieldLeafViewParams<import('@storecraft/core/v-api').CollectionType, import('../pages/collection.jsx').Context>): import("react").JSX.Element;
45
+ declare function CollectionProducts({ value, context }: import('./fields-view.jsx').FieldLeafViewParams<import('@storecraft/core/v-api').CollectionType, import('../pages/collection.jsx').Context, import('@storecraft/core/v-api').CollectionType>): import("react").JSX.Element;
@@ -1,6 +1,7 @@
1
1
  export default OrderPrice;
2
2
  export type EntryParams = {
3
3
  title: string;
4
+ description?: string;
4
5
  link?: string;
5
6
  value: number;
6
7
  context?: import('../pages/order.jsx').Context;