@pinerohit11/testwidget 0.2.93 → 0.2.94

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/index.js CHANGED
@@ -2743,6 +2743,7 @@ function GetPaymentPage(props) {
2743
2743
  "data-token": "exp_month",
2744
2744
  className: "form-control required card-cvv-in",
2745
2745
  type: "text",
2746
+ style: { maxHeight: "36px" },
2746
2747
  placeholder: "MM",
2747
2748
  maxLength: 2,
2748
2749
  value: (cardData == null ? void 0 : cardData.expiryMonth) || "",
@@ -2754,6 +2755,7 @@ function GetPaymentPage(props) {
2754
2755
  "data-token": "exp_year",
2755
2756
  className: "form-control required card-cvv-in",
2756
2757
  type: "text",
2758
+ style: { maxHeight: "36px" },
2757
2759
  placeholder: "YYYY",
2758
2760
  maxLength: 4,
2759
2761
  value: (cardData == null ? void 0 : cardData.expiryYear) || "",
@@ -2765,6 +2767,7 @@ function GetPaymentPage(props) {
2765
2767
  "data-token": "cvv",
2766
2768
  className: "form-control card-cvv-in required",
2767
2769
  type: "text",
2770
+ style: { maxHeight: "36px" },
2768
2771
  maxLength: 4,
2769
2772
  placeholder: "CVC",
2770
2773
  value: (cardData == null ? void 0 : cardData.cvv) || "",
@@ -3321,6 +3324,7 @@ function PreAuthPayment(props) {
3321
3324
  "data-token": "exp_month",
3322
3325
  className: "form-control required card-cvv-in",
3323
3326
  type: "text",
3327
+ style: { maxHeight: "36px" },
3324
3328
  placeholder: "MM",
3325
3329
  maxLength: 2,
3326
3330
  value: (cardData == null ? void 0 : cardData.expiryMonth) || "",
@@ -3332,6 +3336,7 @@ function PreAuthPayment(props) {
3332
3336
  "data-token": "exp_year",
3333
3337
  className: "form-control required card-cvv-in",
3334
3338
  type: "text",
3339
+ style: { maxHeight: "36px" },
3335
3340
  placeholder: "YYYY",
3336
3341
  maxLength: 4,
3337
3342
  value: (cardData == null ? void 0 : cardData.expiryYear) || "",
@@ -3343,6 +3348,7 @@ function PreAuthPayment(props) {
3343
3348
  "data-token": "cvv",
3344
3349
  className: "form-control required card-cvv-in",
3345
3350
  type: "text",
3351
+ style: { maxHeight: "36px" },
3346
3352
  maxLength: 4,
3347
3353
  placeholder: "CVC",
3348
3354
  value: (cardData == null ? void 0 : cardData.cvv) || "",
package/dist/index.mjs CHANGED
@@ -2705,6 +2705,7 @@ function GetPaymentPage(props) {
2705
2705
  "data-token": "exp_month",
2706
2706
  className: "form-control required card-cvv-in",
2707
2707
  type: "text",
2708
+ style: { maxHeight: "36px" },
2708
2709
  placeholder: "MM",
2709
2710
  maxLength: 2,
2710
2711
  value: (cardData == null ? void 0 : cardData.expiryMonth) || "",
@@ -2716,6 +2717,7 @@ function GetPaymentPage(props) {
2716
2717
  "data-token": "exp_year",
2717
2718
  className: "form-control required card-cvv-in",
2718
2719
  type: "text",
2720
+ style: { maxHeight: "36px" },
2719
2721
  placeholder: "YYYY",
2720
2722
  maxLength: 4,
2721
2723
  value: (cardData == null ? void 0 : cardData.expiryYear) || "",
@@ -2727,6 +2729,7 @@ function GetPaymentPage(props) {
2727
2729
  "data-token": "cvv",
2728
2730
  className: "form-control card-cvv-in required",
2729
2731
  type: "text",
2732
+ style: { maxHeight: "36px" },
2730
2733
  maxLength: 4,
2731
2734
  placeholder: "CVC",
2732
2735
  value: (cardData == null ? void 0 : cardData.cvv) || "",
@@ -3283,6 +3286,7 @@ function PreAuthPayment(props) {
3283
3286
  "data-token": "exp_month",
3284
3287
  className: "form-control required card-cvv-in",
3285
3288
  type: "text",
3289
+ style: { maxHeight: "36px" },
3286
3290
  placeholder: "MM",
3287
3291
  maxLength: 2,
3288
3292
  value: (cardData == null ? void 0 : cardData.expiryMonth) || "",
@@ -3294,6 +3298,7 @@ function PreAuthPayment(props) {
3294
3298
  "data-token": "exp_year",
3295
3299
  className: "form-control required card-cvv-in",
3296
3300
  type: "text",
3301
+ style: { maxHeight: "36px" },
3297
3302
  placeholder: "YYYY",
3298
3303
  maxLength: 4,
3299
3304
  value: (cardData == null ? void 0 : cardData.expiryYear) || "",
@@ -3305,6 +3310,7 @@ function PreAuthPayment(props) {
3305
3310
  "data-token": "cvv",
3306
3311
  className: "form-control required card-cvv-in",
3307
3312
  type: "text",
3313
+ style: { maxHeight: "36px" },
3308
3314
  maxLength: 4,
3309
3315
  placeholder: "CVC",
3310
3316
  value: (cardData == null ? void 0 : cardData.cvv) || "",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pinerohit11/testwidget",
3
- "version": "0.2.93",
3
+ "version": "0.2.94",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "next dev -p 4001",