osmanli-yatirim 0.5.37 → 0.5.39
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/README.md +91 -34
- package/dist/OsmanliYatirimPackage.common.1.js +1 -0
- package/dist/OsmanliYatirimPackage.common.2.js +1 -1
- package/dist/OsmanliYatirimPackage.common.BuyingOnlineIndex.js +0 -11
- package/dist/OsmanliYatirimPackage.common.BuyingOnlineIndex~PersonelInformation.js +11 -0
- package/dist/OsmanliYatirimPackage.common.FundDistributionChange.js +82 -26
- package/dist/OsmanliYatirimPackage.common.FundFilter.js +226 -59
- package/dist/OsmanliYatirimPackage.common.OrderTrackingAndCorrections.js +1 -1
- package/dist/OsmanliYatirimPackage.common.PersonelInformation.js +126 -42
- package/dist/OsmanliYatirimPackage.common.SpecialOrderEdit~ViopFallow.js +1 -1
- package/dist/OsmanliYatirimPackage.common.UsefulInformation.js +1 -1
- package/dist/OsmanliYatirimPackage.common.VarantPortfoy.js +1 -1
- package/dist/OsmanliYatirimPackage.common.ViopFallow.js +139 -86
- package/dist/OsmanliYatirimPackage.common.js +1310 -169
- package/dist/OsmanliYatirimPackage.umd.1.js +1 -0
- package/dist/OsmanliYatirimPackage.umd.2.js +1 -1
- package/dist/OsmanliYatirimPackage.umd.BuyingOnlineIndex.js +0 -11
- package/dist/OsmanliYatirimPackage.umd.BuyingOnlineIndex~PersonelInformation.js +11 -0
- package/dist/OsmanliYatirimPackage.umd.FundDistributionChange.js +82 -26
- package/dist/OsmanliYatirimPackage.umd.FundFilter.js +226 -59
- package/dist/OsmanliYatirimPackage.umd.OrderTrackingAndCorrections.js +1 -1
- package/dist/OsmanliYatirimPackage.umd.PersonelInformation.js +126 -42
- package/dist/OsmanliYatirimPackage.umd.SpecialOrderEdit~ViopFallow.js +1 -1
- package/dist/OsmanliYatirimPackage.umd.UsefulInformation.js +1 -1
- package/dist/OsmanliYatirimPackage.umd.VarantPortfoy.js +1 -1
- package/dist/OsmanliYatirimPackage.umd.ViopFallow.js +139 -86
- package/dist/OsmanliYatirimPackage.umd.js +1310 -169
- package/dist/OsmanliYatirimPackage.umd.min.1.js +1 -0
- package/dist/OsmanliYatirimPackage.umd.min.2.js +1 -1
- package/dist/OsmanliYatirimPackage.umd.min.BuyingOnlineIndex.js +0 -11
- package/dist/OsmanliYatirimPackage.umd.min.BuyingOnlineIndex~PersonelInformation.js +11 -0
- package/dist/OsmanliYatirimPackage.umd.min.FundDistributionChange.js +82 -26
- package/dist/OsmanliYatirimPackage.umd.min.FundFilter.js +226 -59
- package/dist/OsmanliYatirimPackage.umd.min.OrderTrackingAndCorrections.js +1 -1
- package/dist/OsmanliYatirimPackage.umd.min.PersonelInformation.js +126 -42
- package/dist/OsmanliYatirimPackage.umd.min.SpecialOrderEdit~ViopFallow.js +1 -1
- package/dist/OsmanliYatirimPackage.umd.min.UsefulInformation.js +1 -1
- package/dist/OsmanliYatirimPackage.umd.min.VarantPortfoy.js +1 -1
- package/dist/OsmanliYatirimPackage.umd.min.ViopFallow.js +139 -86
- package/dist/OsmanliYatirimPackage.umd.min.js +1310 -169
- package/package.json +2 -2
- package/dist/OsmanliYatirimPackage.common.ProfitLossReport.js +0 -796
- package/dist/OsmanliYatirimPackage.umd.ProfitLossReport.js +0 -796
- package/dist/OsmanliYatirimPackage.umd.min.ProfitLossReport.js +0 -796
package/README.md
CHANGED
|
@@ -90,8 +90,9 @@ Component'lerin detaylı kullanımlarına aşağıdan ulaşabilirsiniz.
|
|
|
90
90
|
name: "BuySellStock",
|
|
91
91
|
component: () => import("@/views/e-sube/Stock/Stock.vue"),
|
|
92
92
|
meta: {
|
|
93
|
-
requiresAuth: true
|
|
94
|
-
|
|
93
|
+
requiresAuth: true,
|
|
94
|
+
isEsube: true,
|
|
95
|
+
layout: "AppLayout",
|
|
95
96
|
breadcrumb: [
|
|
96
97
|
{
|
|
97
98
|
name: "Dashboard",
|
|
@@ -119,7 +120,8 @@ Component'lerin detaylı kullanımlarına aşağıdan ulaşabilirsiniz.
|
|
|
119
120
|
name: "ShareExtract",
|
|
120
121
|
component: () => import("@/views/e-sube/Stock/Extracts/ShareExtract.vue"),
|
|
121
122
|
meta: {
|
|
122
|
-
requiresAuth: true
|
|
123
|
+
requiresAuth: true,
|
|
124
|
+
isEsube: true,
|
|
123
125
|
}
|
|
124
126
|
}
|
|
125
127
|
```
|
|
@@ -141,7 +143,8 @@ Component'lerin detaylı kullanımlarına aşağıdan ulaşabilirsiniz.
|
|
|
141
143
|
name: "DividendExtract",
|
|
142
144
|
component: () => import("@/views/e-sube/Stock/Extracts/DividendExtract.vue"),
|
|
143
145
|
meta: {
|
|
144
|
-
requiresAuth: true
|
|
146
|
+
requiresAuth: true,
|
|
147
|
+
isEsube: true,
|
|
145
148
|
}
|
|
146
149
|
}
|
|
147
150
|
```
|
|
@@ -163,7 +166,8 @@ Component'lerin detaylı kullanımlarına aşağıdan ulaşabilirsiniz.
|
|
|
163
166
|
name: "OptionExtract",
|
|
164
167
|
component: () => import("@/views/e-sube/Stock/Extracts/OptionExtract.vue"),
|
|
165
168
|
meta: {
|
|
166
|
-
requiresAuth: true
|
|
169
|
+
requiresAuth: true,
|
|
170
|
+
isEsube: true,
|
|
167
171
|
}
|
|
168
172
|
}
|
|
169
173
|
```
|
|
@@ -186,8 +190,9 @@ Component'lerin detaylı kullanımlarına aşağıdan ulaşabilirsiniz.
|
|
|
186
190
|
name: "Viop",
|
|
187
191
|
component: () => import("@/views/e-sube/Viop/Viop.vue"),
|
|
188
192
|
meta: {
|
|
189
|
-
requiresAuth: true
|
|
190
|
-
|
|
193
|
+
requiresAuth: true,
|
|
194
|
+
isEsube: true,
|
|
195
|
+
layout: "AppLayout",
|
|
191
196
|
breadcrumb: [
|
|
192
197
|
{
|
|
193
198
|
name: "Dashboard",
|
|
@@ -222,6 +227,30 @@ Component'lerin detaylı kullanımlarına aşağıdan ulaşabilirsiniz.
|
|
|
222
227
|
```
|
|
223
228
|
---
|
|
224
229
|
|
|
230
|
+
#### Vadeli - Kar/Zarar Raporu
|
|
231
|
+
`/e-sube/Stock/` klasörlerini oluşturun ve içerisine `ProfitLossReports.vue` adında bir dosya oluşturun. İçerisine aşağıdaki şekilde component register işlemi yapın.
|
|
232
|
+
|
|
233
|
+
```
|
|
234
|
+
<template>
|
|
235
|
+
<profit-loss-reports />
|
|
236
|
+
</template>
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
#### router.js
|
|
240
|
+
```
|
|
241
|
+
{
|
|
242
|
+
path: "/vadeli/kar-zarar-raporum",
|
|
243
|
+
name: "ProfitLossReport",
|
|
244
|
+
component: () => import("@/views/e-sube/Stock/ProfitLossReports"),
|
|
245
|
+
meta: {
|
|
246
|
+
requiresAuth: true,
|
|
247
|
+
isEsube: true,
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
```
|
|
252
|
+
---
|
|
253
|
+
|
|
225
254
|
#### Varant - Varant Ekstresi
|
|
226
255
|
`/e-sube/Extracts/` klasörlerini oluşturun ve içerisine `WarrantExtract.vue` adında bir dosya oluşturun. İçerisine aşağıdaki şekilde component register işlemi yapın.
|
|
227
256
|
|
|
@@ -238,7 +267,8 @@ Component'lerin detaylı kullanımlarına aşağıdan ulaşabilirsiniz.
|
|
|
238
267
|
name: "WarrantExtract",
|
|
239
268
|
component: () => import("@/views/e-sube/Extracts/WarrantExtract.vue"),
|
|
240
269
|
meta: {
|
|
241
|
-
requiresAuth: true
|
|
270
|
+
requiresAuth: true,
|
|
271
|
+
isEsube: true,
|
|
242
272
|
}
|
|
243
273
|
}
|
|
244
274
|
```
|
|
@@ -260,7 +290,8 @@ Component'lerin detaylı kullanımlarına aşağıdan ulaşabilirsiniz.
|
|
|
260
290
|
name: "CuoponRedemptionExtract",
|
|
261
291
|
component: () => import("@/views/e-sube/Extracts/CuoponRedemptionExtract.vue"),
|
|
262
292
|
meta: {
|
|
263
|
-
requiresAuth: true
|
|
293
|
+
requiresAuth: true,
|
|
294
|
+
isEsube: true,
|
|
264
295
|
}
|
|
265
296
|
}
|
|
266
297
|
```
|
|
@@ -282,7 +313,8 @@ Component'lerin detaylı kullanımlarına aşağıdan ulaşabilirsiniz.
|
|
|
282
313
|
name: "BondExtract",
|
|
283
314
|
component: () => import("@/views/e-sube/Extracts/BondExtract.vue"),
|
|
284
315
|
meta: {
|
|
285
|
-
requiresAuth: true
|
|
316
|
+
requiresAuth: true,
|
|
317
|
+
isEsube: true,
|
|
286
318
|
}
|
|
287
319
|
}
|
|
288
320
|
```
|
|
@@ -304,7 +336,8 @@ Component'lerin detaylı kullanımlarına aşağıdan ulaşabilirsiniz.
|
|
|
304
336
|
name: "FundExtract",
|
|
305
337
|
component: () => import("@/views/e-sube/Extracts/FundExtract.vue"),
|
|
306
338
|
meta: {
|
|
307
|
-
requiresAuth: true
|
|
339
|
+
requiresAuth: true,
|
|
340
|
+
isEsube: true,
|
|
308
341
|
}
|
|
309
342
|
}
|
|
310
343
|
```
|
|
@@ -326,7 +359,8 @@ Component'lerin detaylı kullanımlarına aşağıdan ulaşabilirsiniz.
|
|
|
326
359
|
name: "ExtractOfAccount",
|
|
327
360
|
component: () => import("@/views/e-sube/Extracts/AccountExtract"),
|
|
328
361
|
meta: {
|
|
329
|
-
requiresAuth: true
|
|
362
|
+
requiresAuth: true,
|
|
363
|
+
isEsube: true,
|
|
330
364
|
}
|
|
331
365
|
}
|
|
332
366
|
```
|
|
@@ -348,7 +382,8 @@ Component'lerin detaylı kullanımlarına aşağıdan ulaşabilirsiniz.
|
|
|
348
382
|
name: "StopPageMain",
|
|
349
383
|
component: () => import("@/views/e-sube/StopPage/Index.vue"),
|
|
350
384
|
meta: {
|
|
351
|
-
requiresAuth: true
|
|
385
|
+
requiresAuth: true,
|
|
386
|
+
isEsube: true,
|
|
352
387
|
}
|
|
353
388
|
}
|
|
354
389
|
```
|
|
@@ -373,7 +408,8 @@ Not: Aşağıdaki ```Stopaj Detay``` ve ```Stopaj Rapor``` ekranlarını da ekle
|
|
|
373
408
|
name: "StopPageDetail",
|
|
374
409
|
component: () => import("@/views/e-sube/StopPage/Detail.vue"),
|
|
375
410
|
meta: {
|
|
376
|
-
requiresAuth: true
|
|
411
|
+
requiresAuth: true,
|
|
412
|
+
isEsube: true,
|
|
377
413
|
}
|
|
378
414
|
}
|
|
379
415
|
```
|
|
@@ -395,7 +431,8 @@ Not: Aşağıdaki ```Stopaj Detay``` ve ```Stopaj Rapor``` ekranlarını da ekle
|
|
|
395
431
|
name: "StopPageReport",
|
|
396
432
|
component: () => import("@/views/e-sube/StopPage/Report.vue"),
|
|
397
433
|
meta: {
|
|
398
|
-
requiresAuth: true
|
|
434
|
+
requiresAuth: true,
|
|
435
|
+
isEsube: true,
|
|
399
436
|
}
|
|
400
437
|
}
|
|
401
438
|
```
|
|
@@ -417,7 +454,8 @@ Not: Aşağıdaki ```Stopaj Detay``` ve ```Stopaj Rapor``` ekranlarını da ekle
|
|
|
417
454
|
name: "FundFilters",
|
|
418
455
|
component: () => import("@/views/e-sube/Funds/FundFilters.vue"),
|
|
419
456
|
meta: {
|
|
420
|
-
requiresAuth: true
|
|
457
|
+
requiresAuth: true,
|
|
458
|
+
isEsube: true,
|
|
421
459
|
}
|
|
422
460
|
}
|
|
423
461
|
```
|
|
@@ -439,7 +477,8 @@ Not: Aşağıdaki ```Stopaj Detay``` ve ```Stopaj Rapor``` ekranlarını da ekle
|
|
|
439
477
|
name: "FundsPortfolio",
|
|
440
478
|
component: () => import("@/views/e-sube/Funds/FundPortfolio.vue"),
|
|
441
479
|
meta: {
|
|
442
|
-
requiresAuth: true
|
|
480
|
+
requiresAuth: true,
|
|
481
|
+
isEsube: true,
|
|
443
482
|
}
|
|
444
483
|
}
|
|
445
484
|
```
|
|
@@ -461,7 +500,8 @@ Not: Aşağıdaki ```Stopaj Detay``` ve ```Stopaj Rapor``` ekranlarını da ekle
|
|
|
461
500
|
name: "FundSurvey",
|
|
462
501
|
component: () => import("@/views/e-sube/Funds/FundSurvey.vue"),
|
|
463
502
|
meta: {
|
|
464
|
-
requiresAuth: true
|
|
503
|
+
requiresAuth: true,
|
|
504
|
+
isEsube: true,
|
|
465
505
|
}
|
|
466
506
|
}
|
|
467
507
|
```
|
|
@@ -483,7 +523,8 @@ Not: Aşağıdaki ```Stopaj Detay``` ve ```Stopaj Rapor``` ekranlarını da ekle
|
|
|
483
523
|
name: "BuyFund",
|
|
484
524
|
component: () => import("@/views/e-sube/Funds/FundBuySell.vue"),
|
|
485
525
|
meta: {
|
|
486
|
-
requiresAuth: true
|
|
526
|
+
requiresAuth: true,
|
|
527
|
+
isEsube: true,
|
|
487
528
|
}
|
|
488
529
|
}
|
|
489
530
|
```
|
|
@@ -505,7 +546,8 @@ Not: Aşağıdaki ```Stopaj Detay``` ve ```Stopaj Rapor``` ekranlarını da ekle
|
|
|
505
546
|
name: "PublicOfferingHomePage",
|
|
506
547
|
component: () => import("@/views/e-sube/PublicOffers/PublicOfferingHomePage.vue"),
|
|
507
548
|
meta: {
|
|
508
|
-
requiresAuth: true
|
|
549
|
+
requiresAuth: true,
|
|
550
|
+
isEsube: true,
|
|
509
551
|
}
|
|
510
552
|
}
|
|
511
553
|
```
|
|
@@ -528,7 +570,8 @@ Not: Aşağıdaki ```Stopaj Detay``` ve ```Stopaj Rapor``` ekranlarını da ekle
|
|
|
528
570
|
name: "PublicOfferRequestEntry",
|
|
529
571
|
component: () => import("@/views/e-sube/PublicOffers/PublicOfferRequestEntry.vue"),
|
|
530
572
|
meta: {
|
|
531
|
-
requiresAuth: true
|
|
573
|
+
requiresAuth: true,
|
|
574
|
+
isEsube: true,
|
|
532
575
|
}
|
|
533
576
|
}
|
|
534
577
|
```
|
|
@@ -552,7 +595,8 @@ Not: Aşağıdaki ```Stopaj Detay``` ve ```Stopaj Rapor``` ekranlarını da ekle
|
|
|
552
595
|
props: true,
|
|
553
596
|
component: () => import("@/views/e-sube/PublicOffers/PublicOfferRequestTracking.vue"),
|
|
554
597
|
meta: {
|
|
555
|
-
requiresAuth: true
|
|
598
|
+
requiresAuth: true,
|
|
599
|
+
isEsube: true,
|
|
556
600
|
}
|
|
557
601
|
}
|
|
558
602
|
```
|
|
@@ -576,7 +620,8 @@ Not: Aşağıdaki ```Stopaj Detay``` ve ```Stopaj Rapor``` ekranlarını da ekle
|
|
|
576
620
|
name: "ApplyCredit",
|
|
577
621
|
component: () => import("@/views/e-sube/Profile/ApplyCredit.vue"),
|
|
578
622
|
meta: {
|
|
579
|
-
requiresAuth: true
|
|
623
|
+
requiresAuth: true,
|
|
624
|
+
isEsube: true,
|
|
580
625
|
}
|
|
581
626
|
}
|
|
582
627
|
```
|
|
@@ -600,7 +645,8 @@ Not: Aşağıdaki ```Stopaj Detay``` ve ```Stopaj Rapor``` ekranlarını da ekle
|
|
|
600
645
|
name: "Contracts",
|
|
601
646
|
component: () => import("@/views/e-sube/Profile/Contracts.vue"),
|
|
602
647
|
meta: {
|
|
603
|
-
requiresAuth: true
|
|
648
|
+
requiresAuth: true,
|
|
649
|
+
isEsube: true,
|
|
604
650
|
}
|
|
605
651
|
}
|
|
606
652
|
```
|
|
@@ -632,7 +678,8 @@ LegitimacyTest.vue
|
|
|
632
678
|
name: "LegitimacyTest",
|
|
633
679
|
component: () => import("@/views/e-sube/Profile/LegitimacyTest/LegitimacyTest.vue"),
|
|
634
680
|
meta: {
|
|
635
|
-
requiresAuth: true
|
|
681
|
+
requiresAuth: true,
|
|
682
|
+
isEsube: true,
|
|
636
683
|
}
|
|
637
684
|
},
|
|
638
685
|
{
|
|
@@ -640,7 +687,8 @@ LegitimacyTest.vue
|
|
|
640
687
|
name: "LegitimacyIndex",
|
|
641
688
|
component: () => import("@/views/e-sube/Profile/LegitimacyTest/index.vue"),
|
|
642
689
|
meta: {
|
|
643
|
-
requiresAuth: true
|
|
690
|
+
requiresAuth: true,
|
|
691
|
+
isEsube: true,
|
|
644
692
|
}
|
|
645
693
|
},
|
|
646
694
|
```
|
|
@@ -678,7 +726,8 @@ CustomerStatementTest.vue
|
|
|
678
726
|
name: "SuitabilityTest",
|
|
679
727
|
component: () => import("@/views/e-sube/Profile/SuitabilityTest/SuitabilityTest.vue"),
|
|
680
728
|
meta: {
|
|
681
|
-
requiresAuth: true
|
|
729
|
+
requiresAuth: true,
|
|
730
|
+
isEsube: true,
|
|
682
731
|
}
|
|
683
732
|
},
|
|
684
733
|
{
|
|
@@ -686,7 +735,8 @@ CustomerStatementTest.vue
|
|
|
686
735
|
name: "SuitabilityIndex",
|
|
687
736
|
component: () => import("@/views/e-sube/Profile/SuitabilityTest/index.vue"),
|
|
688
737
|
meta: {
|
|
689
|
-
requiresAuth: true
|
|
738
|
+
requiresAuth: true,
|
|
739
|
+
isEsube: true,
|
|
690
740
|
}
|
|
691
741
|
},
|
|
692
742
|
{
|
|
@@ -694,7 +744,8 @@ CustomerStatementTest.vue
|
|
|
694
744
|
name: "CustomerStatementTest",
|
|
695
745
|
component: () => import("@/views/e-sube/Profile/SuitabilityTest/CustomerStatementTest.vue"),
|
|
696
746
|
meta: {
|
|
697
|
-
requiresAuth: true
|
|
747
|
+
requiresAuth: true,
|
|
748
|
+
isEsube: true,
|
|
698
749
|
}
|
|
699
750
|
},
|
|
700
751
|
```
|
|
@@ -718,7 +769,8 @@ CustomerStatementTest.vue
|
|
|
718
769
|
name: "DefinedBankAccounts",
|
|
719
770
|
component: () => import("@/views/e-sube/BankingOperations/DefinedBankAccounts.vue"),
|
|
720
771
|
meta: {
|
|
721
|
-
requiresAuth: true
|
|
772
|
+
requiresAuth: true,
|
|
773
|
+
isEsube: true,
|
|
722
774
|
}
|
|
723
775
|
}
|
|
724
776
|
```
|
|
@@ -741,7 +793,8 @@ CustomerStatementTest.vue
|
|
|
741
793
|
name: "SecuritiesTransfer",
|
|
742
794
|
component: () => import("@/views/e-sube/BankingOperations/SecuritiesTransfer.vue"),
|
|
743
795
|
meta: {
|
|
744
|
-
requiresAuth: true
|
|
796
|
+
requiresAuth: true,
|
|
797
|
+
isEsube: true,
|
|
745
798
|
}
|
|
746
799
|
}
|
|
747
800
|
```
|
|
@@ -766,6 +819,7 @@ CustomerStatementTest.vue
|
|
|
766
819
|
component: () => import("@/views/e-sube/BankingOperations/TransferTracking.vue"),
|
|
767
820
|
meta: {
|
|
768
821
|
requiresAuth: true,
|
|
822
|
+
isEsube: true,
|
|
769
823
|
layout: "AppLayout"
|
|
770
824
|
},
|
|
771
825
|
}
|
|
@@ -808,7 +862,8 @@ CustomerStatementTest.vue
|
|
|
808
862
|
name: "AccountDefinition",
|
|
809
863
|
component: () => import("@/views/e-sube/BankingOperations/AccountDefinition.vue"),
|
|
810
864
|
meta: {
|
|
811
|
-
requiresAuth: true
|
|
865
|
+
requiresAuth: true,
|
|
866
|
+
isEsube: true,
|
|
812
867
|
}
|
|
813
868
|
},
|
|
814
869
|
{
|
|
@@ -816,7 +871,8 @@ CustomerStatementTest.vue
|
|
|
816
871
|
name: "TransferRequest",
|
|
817
872
|
component: () => import("@/views/e-sube/BankingOperations/TransferRequest.vue"),
|
|
818
873
|
meta: {
|
|
819
|
-
requiresAuth: true
|
|
874
|
+
requiresAuth: true,
|
|
875
|
+
isEsube: true,
|
|
820
876
|
}
|
|
821
877
|
},
|
|
822
878
|
{
|
|
@@ -824,7 +880,8 @@ CustomerStatementTest.vue
|
|
|
824
880
|
name: "FxViopWarrantTransfer",
|
|
825
881
|
component: () => import("@/views/e-sube/BankingOperations/FxViopWarrantTransfer.vue"),
|
|
826
882
|
meta: {
|
|
827
|
-
requiresAuth: true
|
|
883
|
+
requiresAuth: true,
|
|
884
|
+
isEsube: true,
|
|
828
885
|
}
|
|
829
886
|
}
|
|
830
887
|
```
|
|
@@ -614,7 +614,7 @@ render._withStripped = true;
|
|
|
614
614
|
var ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../node_modules/css-loader/dist/runtime/api.js */ "./node_modules/css-loader/dist/runtime/api.js");
|
|
615
615
|
exports = ___CSS_LOADER_API_IMPORT___(false);
|
|
616
616
|
// Module
|
|
617
|
-
exports.push([module.i, ".red-text[data-v-24fe86af] {\n color: #f16d75;\n}\n.green-text[data-v-24fe86af] {\n color: #5A8F8A;\n}\n[data-v-24fe86af] .table-area table .text-left:first-child div {\n text-align: left !important;\n}\n[data-v-24fe86af] .table-area table td {\n font-weight: 400 !important;\n}\n[data-v-24fe86af] .table-area table th {\n padding: 12px 10px !important;\n}\n[data-v-24fe86af] .table-area table th:first-child {\n padding-left: 40px !important;\n}\n[data-v-24fe86af] .table-area table tr td:first-child {\n
|
|
617
|
+
exports.push([module.i, ".red-text[data-v-24fe86af] {\n color: #f16d75;\n}\n.green-text[data-v-24fe86af] {\n color: #5A8F8A;\n}\n[data-v-24fe86af] .table-area table .text-left:first-child div {\n text-align: left !important;\n}\n[data-v-24fe86af] .table-area table tbody td {\n font-weight: 400 !important;\n}\n@media screen and (max-width: 992px) {\n[data-v-24fe86af] .table-area table tbody td {\n padding: 12px !important;\n}\n}\n@media screen and (min-width: 992px) {\n[data-v-24fe86af] .table-area table tbody td:last-child {\n height: 40px;\n}\n}\n@media screen and (max-width: 992px) {\n[data-v-24fe86af] .table-area table tbody td:last-child div {\n display: flex;\n align-items: center;\n gap: 14px;\n width: 100%;\n}\n}\n@media screen and (max-width: 992px) {\n[data-v-24fe86af] .table-area table tbody td:last-child div a {\n width: 33.3333%;\n max-width: inherit;\n margin-left: 0;\n margin-right: 0;\n}\n}\n[data-v-24fe86af] .table-area table tbody td:last-child::before {\n display: none;\n}\n@media screen and (max-width: 992px) {\n[data-v-24fe86af] .table-area table tbody td:first-child {\n display: flex;\n align-items: center;\n height: 56px;\n}\n}\n[data-v-24fe86af] .table-area table th {\n padding: 12px 10px !important;\n}\n[data-v-24fe86af] .table-area table th:first-child {\n padding-left: 40px !important;\n}\n[data-v-24fe86af] .table-area table tr {\n border-top: none !important;\n overflow: hidden;\n border-radius: 4px;\n}\n[data-v-24fe86af] .table-area table tr td:first-child {\n padding-left: 20px !important;\n}\n@media screen and (max-width: 992px) {\n[data-v-24fe86af] .table-area table tr td:first-child {\n padding-left: 15px !important;\n}\n}\n[data-v-24fe86af] .table-area table td:last-child {\n height: 50px;\n}\n[data-v-24fe86af] .table-area table td:last-child:before {\n content: none;\n}\n[data-v-24fe86af] .table-area table td:last-child div {\n display: flex;\n justify-content: space-between;\n}\n@media screen and (max-width: 992px) {\n[data-v-24fe86af] .varant-page .symbol-text {\n text-align: left !important;\n}\n}\n@media screen and (max-width: 992px) {\n[data-v-24fe86af] .styled {\n min-width: 86px;\n}\n}\n.sembol-link[data-v-24fe86af] {\n display: flex;\n align-items: center;\n gap: 4px;\n text-decoration: none;\n color: #090d0d;\n}\n@media screen and (max-width: 992px) {\n.sembol-link[data-v-24fe86af] {\n width: -moz-fit-content;\n width: fit-content;\n font-weight: 500;\n}\n}\n.bg-color-white[data-v-24fe86af] {\n padding: 24px 20px 24px 50px;\n background-position: left 10px top 20px;\n background-size: 30px;\n}\n", ""]);
|
|
618
618
|
// Exports
|
|
619
619
|
module.exports = exports;
|
|
620
620
|
|
|
@@ -3835,17 +3835,6 @@ if(false) {}
|
|
|
3835
3835
|
|
|
3836
3836
|
/***/ }),
|
|
3837
3837
|
|
|
3838
|
-
/***/ "./src/assets/images/icons/icon@green-exclamation.svg":
|
|
3839
|
-
/*!************************************************************!*\
|
|
3840
|
-
!*** ./src/assets/images/icons/icon@green-exclamation.svg ***!
|
|
3841
|
-
\************************************************************/
|
|
3842
|
-
/*! no static exports found */
|
|
3843
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
3844
|
-
|
|
3845
|
-
module.exports = __webpack_require__.p + "img/icon@green-exclamation.8486096b.svg";
|
|
3846
|
-
|
|
3847
|
-
/***/ }),
|
|
3848
|
-
|
|
3849
3838
|
/***/ "./src/assets/images/icons/icons@system-calendar.svg":
|
|
3850
3839
|
/*!***********************************************************!*\
|
|
3851
3840
|
!*** ./src/assets/images/icons/icons@system-calendar.svg ***!
|
|
@@ -261,6 +261,17 @@ if(false) {}
|
|
|
261
261
|
|
|
262
262
|
/***/ }),
|
|
263
263
|
|
|
264
|
+
/***/ "./src/assets/images/icons/icon@green-exclamation.svg":
|
|
265
|
+
/*!************************************************************!*\
|
|
266
|
+
!*** ./src/assets/images/icons/icon@green-exclamation.svg ***!
|
|
267
|
+
\************************************************************/
|
|
268
|
+
/*! no static exports found */
|
|
269
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
270
|
+
|
|
271
|
+
module.exports = __webpack_require__.p + "img/icon@green-exclamation.8486096b.svg";
|
|
272
|
+
|
|
273
|
+
/***/ }),
|
|
274
|
+
|
|
264
275
|
/***/ "./src/components/PhoneField/index.vue":
|
|
265
276
|
/*!*********************************************!*\
|
|
266
277
|
!*** ./src/components/PhoneField/index.vue ***!
|