@stock-in-the-channel/sinch-vue-components 0.0.386 → 0.0.390

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/dist/style.css CHANGED
@@ -1 +1 @@
1
- .thumbnail-container{text-align:center}.products-row[data-v-6f02f4d6]{display:flex;flex-wrap:wrap}.q-dialog-plugin[data-v-9deb8386]{max-width:1100px;width:80vw}.columns-grid[data-v-b23307fc]{display:flex;flex-wrap:wrap;gap:8px}.column-item[data-v-b23307fc]{min-width:200px;flex:1 1 auto;max-width:300px}@media (min-width: 768px){.columns-grid[data-v-b23307fc]{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}.column-item[data-v-b23307fc]{max-width:100%}}@media (max-width: 767px){.columns-grid[data-v-b23307fc]{grid-template-columns:repeat(2,1fr)}}.q-td{min-width:80px}
1
+ .thumbnail-container{text-align:center}.products-row[data-v-6f02f4d6]{display:flex;flex-wrap:wrap}.q-dialog-plugin[data-v-8f9a4347]{max-width:1100px;width:80vw}.columns-grid[data-v-b23307fc]{display:flex;flex-wrap:wrap;gap:8px}.column-item[data-v-b23307fc]{min-width:200px;flex:1 1 auto;max-width:300px}@media (min-width: 768px){.columns-grid[data-v-b23307fc]{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}.column-item[data-v-b23307fc]{max-width:100%}}@media (max-width: 767px){.columns-grid[data-v-b23307fc]{grid-template-columns:repeat(2,1fr)}}.q-td{min-width:80px}
@@ -1,5 +1,6 @@
1
1
  import { CreateBasketPayload, RemoveItemFromBasketPayload } from '@/api-clients/generated/graphql';
2
2
  import { ExibitionModeEnum } from '@/types/ExibitionModeEnum';
3
+ import { Router } from 'vue-router';
3
4
  declare function refreshData(): void;
4
5
  declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
5
6
  basket?: CreateBasketPayload | undefined;
@@ -7,6 +8,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
7
8
  showItemsExpanded: boolean;
8
9
  isDataLoading: boolean;
9
10
  exibitionMode: ExibitionModeEnum;
11
+ router: Router;
10
12
  }>>, {
11
13
  refreshData: typeof refreshData;
12
14
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -18,6 +20,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
18
20
  showItemsExpanded: boolean;
19
21
  isDataLoading: boolean;
20
22
  exibitionMode: ExibitionModeEnum;
23
+ router: Router;
21
24
  }>>> & Readonly<{
22
25
  onOnBasketItemRemoved?: ((removePayload: RemoveItemFromBasketPayload) => any) | undefined;
23
26
  onOnBasketChanged?: (() => any) | undefined;
@@ -1,14 +1,17 @@
1
1
  import { GetBasketDetailsPayload } from '@/api-clients/generated/graphql';
2
2
  import { ExibitionModeEnum } from '@/index';
3
+ import { Router } from 'vue-router';
3
4
  declare function getBasketDetails(basketId: number): Promise<void>;
4
5
  declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
5
6
  exibitionMode: ExibitionModeEnum;
7
+ router: Router;
6
8
  }>>, {
7
9
  getBasketDetails: typeof getBasketDetails;
8
10
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
11
  goToCheckoutPage: (evt: Event, quote: GetBasketDetailsPayload) => void;
10
12
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
11
13
  exibitionMode: ExibitionModeEnum;
14
+ router: Router;
12
15
  }>>> & Readonly<{
13
16
  onGoToCheckoutPage?: ((evt: Event, quote: GetBasketDetailsPayload) => any) | undefined;
14
17
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -70,6 +70,8 @@ declare const _default: {
70
70
  "3Year": string;
71
71
  SubscriptionTerm: string;
72
72
  BillingCycle: string;
73
+ ProductNotFound: string;
74
+ ProductNotFoundMessage: string;
73
75
  };
74
76
  ptBR: {
75
77
  Search: string;
@@ -70,6 +70,8 @@ declare const _default: {
70
70
  "3Year": string;
71
71
  SubscriptionTerm: string;
72
72
  BillingCycle: string;
73
+ ProductNotFound: string;
74
+ ProductNotFoundMessage: string;
73
75
  };
74
76
  'pt-BR': {
75
77
  Search: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stock-in-the-channel/sinch-vue-components",
3
- "version": "0.0.386",
3
+ "version": "0.0.390",
4
4
  "files": [
5
5
  "dist"
6
6
  ],