@ikas/storefront 0.0.163-alpha.8 → 0.0.163

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.
@@ -86,12 +86,6 @@ module.exports = {
86
86
  giftPackageCtaPlaceholder: "Enter your gift message",
87
87
 
88
88
  paymentMethod: "Payment Method",
89
- paymentMethods: {
90
- storePickup: "Store Pickup",
91
- cashOnDelivery: "Cash on Delivery",
92
- creditCardOnDelivery: "Credit Card on Delivery",
93
- moneyOrder: "Money Order",
94
- },
95
89
  paymentMethodDiscount: "Discount",
96
90
  paymentMethodAdditionalPrice: "Fee",
97
91
 
@@ -84,12 +84,6 @@ module.exports = {
84
84
  giftPackageCtaPlaceholder: "Hediye mesajınızı giriniz",
85
85
 
86
86
  paymentMethod: "Ödeme Yöntemi",
87
- paymentMethods: {
88
- storePickup: "Mağazadan Teslim",
89
- cashOnDelivery: "Kapıda Ödeme (Nakit)",
90
- creditCardOnDelivery: "Kapıda Ödeme (Kredi Kartı)",
91
- moneyOrder: "Havale",
92
- },
93
87
  paymentMethodDiscount: "İndirim",
94
88
  paymentMethodAdditionalPrice: "İşlem Bedeli",
95
89
 
@@ -26,6 +26,7 @@ export default class AddressFormViewModel {
26
26
  states: IkasState[];
27
27
  cities: IkasCity[];
28
28
  districts: IkasDistrict[];
29
+ myCountryCode?: string;
29
30
  constructor(data: AddressFormViewModelParams);
30
31
  get firstName(): string | null | undefined;
31
32
  get lastName(): string | null | undefined;
@@ -31,6 +31,7 @@ export interface Props {
31
31
  value?: string;
32
32
  hasError?: boolean;
33
33
  errorText?: string;
34
+ name?: string;
34
35
  autocomplete?: string;
35
36
  tooltipText?: string;
36
37
  country?: string | null;
@@ -0,0 +1,2 @@
1
+ import * as React from "react";
2
+ export declare const FullscreenLoading: React.FC;