@bagelink/vue 1.0.43 → 1.0.50
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/components/form/FieldArray.vue.d.ts +3 -2
- package/dist/components/form/FieldArray.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/PhoneInput.vue.d.ts +116 -0
- package/dist/components/form/inputs/PhoneInput.vue.d.ts.map +1 -0
- package/dist/components/form/inputs/index.d.ts +1 -1
- package/dist/components/form/inputs/index.d.ts.map +1 -1
- package/dist/composables/index.d.ts +2 -2
- package/dist/composables/index.d.ts.map +1 -1
- package/dist/directives/pattern.d.ts.map +1 -1
- package/dist/index.cjs +9832 -9920
- package/dist/index.mjs +9832 -9920
- package/dist/style.css +666 -411
- package/dist/types/BagelForm.d.ts +1 -1
- package/dist/types/BagelForm.d.ts.map +1 -1
- package/dist/types/TableSchema.d.ts +1 -1
- package/dist/types/TableSchema.d.ts.map +1 -1
- package/dist/utils/BagelFormUtils.d.ts +2 -1
- package/dist/utils/BagelFormUtils.d.ts.map +1 -1
- package/package.json +5 -5
- package/src/components/DataTable/useTableData.ts +2 -2
- package/src/components/form/FieldArray.vue +89 -48
- package/src/components/form/inputs/PhoneInput.vue +352 -0
- package/src/components/form/inputs/index.ts +1 -1
- package/src/composables/index.ts +8 -15
- package/src/directives/pattern.ts +1 -0
- package/src/styles/inputs.css +139 -140
- package/src/styles/layout.css +226 -113
- package/src/styles/mobilLayout.css +226 -113
- package/src/types/BagelForm.ts +1 -1
- package/src/types/TableSchema.ts +1 -1
- package/src/utils/BagelFormUtils.ts +7 -2
package/src/styles/layout.css
CHANGED
|
@@ -4540,269 +4540,335 @@
|
|
|
4540
4540
|
}
|
|
4541
4541
|
|
|
4542
4542
|
|
|
4543
|
-
.-mb-025
|
|
4543
|
+
.-mb-025,
|
|
4544
|
+
.mb--025 {
|
|
4544
4545
|
margin-bottom: -0.25rem !important;
|
|
4545
4546
|
}
|
|
4546
4547
|
|
|
4547
|
-
.-mb-05
|
|
4548
|
+
.-mb-05,
|
|
4549
|
+
.mb--05 {
|
|
4548
4550
|
margin-bottom: -0.5rem !important;
|
|
4549
4551
|
}
|
|
4550
4552
|
|
|
4551
|
-
.-mb-075
|
|
4553
|
+
.-mb-075,
|
|
4554
|
+
.mb--075 {
|
|
4552
4555
|
margin-bottom: -0.75rem !important;
|
|
4553
4556
|
}
|
|
4554
4557
|
|
|
4555
|
-
.-mb-1
|
|
4558
|
+
.-mb-1,
|
|
4559
|
+
.mb--1 {
|
|
4556
4560
|
margin-bottom: -1rem !important;
|
|
4557
4561
|
}
|
|
4558
4562
|
|
|
4559
|
-
.-mb-1-5
|
|
4563
|
+
.-mb-1-5,
|
|
4564
|
+
.mb--1-5 {
|
|
4560
4565
|
margin-bottom: -1.5rem !important;
|
|
4561
4566
|
}
|
|
4562
4567
|
|
|
4563
|
-
.-mb-2-5
|
|
4568
|
+
.-mb-2-5,
|
|
4569
|
+
.mb--2-5 {
|
|
4564
4570
|
margin-bottom: -2.5rem !important;
|
|
4565
4571
|
}
|
|
4566
4572
|
|
|
4567
|
-
.-mb-3-5
|
|
4573
|
+
.-mb-3-5,
|
|
4574
|
+
.mb--3-5 {
|
|
4568
4575
|
margin-bottom: -3.5rem !important;
|
|
4569
4576
|
}
|
|
4570
4577
|
|
|
4571
|
-
.-mb-4-5
|
|
4578
|
+
.-mb-4-5,
|
|
4579
|
+
.mb--4-5 {
|
|
4572
4580
|
margin-bottom: -4.5rem !important;
|
|
4573
4581
|
}
|
|
4574
4582
|
|
|
4575
|
-
.-mb-5-5
|
|
4583
|
+
.-mb-5-5,
|
|
4584
|
+
.mb--5-5 {
|
|
4576
4585
|
margin-bottom: -5.5rem !important;
|
|
4577
4586
|
}
|
|
4578
4587
|
|
|
4579
|
-
.-mb-6-5
|
|
4588
|
+
.-mb-6-5,
|
|
4589
|
+
.mb--6-5 {
|
|
4580
4590
|
margin-bottom: -6.5rem !important;
|
|
4581
4591
|
}
|
|
4582
4592
|
|
|
4583
|
-
.-mb-7-5
|
|
4593
|
+
.-mb-7-5,
|
|
4594
|
+
.mb--7-5 {
|
|
4584
4595
|
margin-bottom: -7.5rem !important;
|
|
4585
4596
|
}
|
|
4586
4597
|
|
|
4587
|
-
.-mb-8-5
|
|
4598
|
+
.-mb-8-5,
|
|
4599
|
+
.mb--8-5 {
|
|
4588
4600
|
margin-bottom: -8.5rem !important;
|
|
4589
4601
|
}
|
|
4590
4602
|
|
|
4591
|
-
.-mb-9-5
|
|
4603
|
+
.-mb-9-5,
|
|
4604
|
+
.mb--9-5 {
|
|
4592
4605
|
margin-bottom: -9.5rem !important;
|
|
4593
4606
|
}
|
|
4594
4607
|
|
|
4595
|
-
.-mb-10-5
|
|
4608
|
+
.-mb-10-5,
|
|
4609
|
+
.mb--10-5 {
|
|
4596
4610
|
margin-bottom: -10.5rem !important;
|
|
4597
4611
|
}
|
|
4598
4612
|
|
|
4599
4613
|
|
|
4600
|
-
.-mb-2
|
|
4614
|
+
.-mb-2,
|
|
4615
|
+
.mb--2 {
|
|
4601
4616
|
margin-bottom: -2rem !important;
|
|
4602
4617
|
}
|
|
4603
4618
|
|
|
4604
|
-
.-mb-3
|
|
4619
|
+
.-mb-3,
|
|
4620
|
+
.mb--3 {
|
|
4605
4621
|
margin-bottom: -3rem !important;
|
|
4606
4622
|
}
|
|
4607
4623
|
|
|
4608
|
-
.-mb-4
|
|
4624
|
+
.-mb-4,
|
|
4625
|
+
.mb--4 {
|
|
4609
4626
|
margin-bottom: -4rem !important;
|
|
4610
4627
|
}
|
|
4611
4628
|
|
|
4612
|
-
.-mb-5
|
|
4629
|
+
.-mb-5,
|
|
4630
|
+
.mb--5 {
|
|
4613
4631
|
margin-bottom: -5rem !important;
|
|
4614
4632
|
}
|
|
4615
4633
|
|
|
4616
|
-
.-mb-6
|
|
4634
|
+
.-mb-6,
|
|
4635
|
+
.mb--6 {
|
|
4617
4636
|
margin-bottom: -6rem !important;
|
|
4618
4637
|
}
|
|
4619
4638
|
|
|
4620
|
-
.-mb-7
|
|
4639
|
+
.-mb-7,
|
|
4640
|
+
.mb--7 {
|
|
4621
4641
|
margin-bottom: -7rem !important;
|
|
4622
4642
|
}
|
|
4623
4643
|
|
|
4624
|
-
.-mb-8
|
|
4644
|
+
.-mb-8,
|
|
4645
|
+
.mb--8 {
|
|
4625
4646
|
margin-bottom: -8rem !important;
|
|
4626
4647
|
}
|
|
4627
4648
|
|
|
4628
|
-
.-mb-9
|
|
4649
|
+
.-mb-9,
|
|
4650
|
+
.mb--9 {
|
|
4629
4651
|
margin-bottom: -9rem !important;
|
|
4630
4652
|
}
|
|
4631
4653
|
|
|
4632
|
-
.-mb-10
|
|
4654
|
+
.-mb-10,
|
|
4655
|
+
.mb--10 {
|
|
4633
4656
|
margin-bottom: -10rem !important;
|
|
4634
4657
|
}
|
|
4635
4658
|
|
|
4636
|
-
.-mb-11
|
|
4659
|
+
.-mb-11,
|
|
4660
|
+
.mb--11 {
|
|
4637
4661
|
margin-bottom: -11rem !important;
|
|
4638
4662
|
}
|
|
4639
4663
|
|
|
4640
|
-
.-mb-12
|
|
4664
|
+
.-mb-12,
|
|
4665
|
+
.mb--12 {
|
|
4641
4666
|
margin-bottom: -12rem !important;
|
|
4642
4667
|
}
|
|
4643
4668
|
|
|
4644
|
-
.-mb-13
|
|
4669
|
+
.-mb-13,
|
|
4670
|
+
.mb--13 {
|
|
4645
4671
|
margin-bottom: -13rem !important;
|
|
4646
4672
|
}
|
|
4647
4673
|
|
|
4648
|
-
.-mb-14
|
|
4674
|
+
.-mb-14,
|
|
4675
|
+
.mb--14 {
|
|
4649
4676
|
margin-bottom: -14rem !important;
|
|
4650
4677
|
}
|
|
4651
4678
|
|
|
4652
|
-
.-mb-15
|
|
4679
|
+
.-mb-15,
|
|
4680
|
+
.mb--15 {
|
|
4653
4681
|
margin-bottom: -15rem !important;
|
|
4654
4682
|
}
|
|
4655
4683
|
|
|
4656
|
-
.-mb-16
|
|
4684
|
+
.-mb-16,
|
|
4685
|
+
.mb--16 {
|
|
4657
4686
|
margin-bottom: -16rem !important;
|
|
4658
4687
|
}
|
|
4659
4688
|
|
|
4660
|
-
.-mb-17
|
|
4689
|
+
.-mb-17,
|
|
4690
|
+
.mb--17 {
|
|
4661
4691
|
margin-bottom: -17rem !important;
|
|
4662
4692
|
}
|
|
4663
4693
|
|
|
4664
|
-
.-mb-18
|
|
4694
|
+
.-mb-18,
|
|
4695
|
+
.mb--18 {
|
|
4665
4696
|
margin-bottom: -18rem !important;
|
|
4666
4697
|
}
|
|
4667
4698
|
|
|
4668
|
-
.-mb-19
|
|
4699
|
+
.-mb-19,
|
|
4700
|
+
.mb--19 {
|
|
4669
4701
|
margin-bottom: -19rem !important;
|
|
4670
4702
|
}
|
|
4671
4703
|
|
|
4672
|
-
.-mb-20
|
|
4704
|
+
.-mb-20,
|
|
4705
|
+
.mb--20 {
|
|
4673
4706
|
margin-bottom: -20rem !important;
|
|
4674
4707
|
}
|
|
4675
4708
|
|
|
4676
4709
|
|
|
4677
|
-
.-mt-025
|
|
4710
|
+
.-mt-025,
|
|
4711
|
+
.mt--025 {
|
|
4678
4712
|
margin-top: -0.25rem !important;
|
|
4679
4713
|
}
|
|
4680
4714
|
|
|
4681
|
-
.-mt-05
|
|
4715
|
+
.-mt-05,
|
|
4716
|
+
.mt--05 {
|
|
4682
4717
|
margin-top: -0.5rem !important;
|
|
4683
4718
|
}
|
|
4684
4719
|
|
|
4685
|
-
.-mt-075
|
|
4720
|
+
.-mt-075,
|
|
4721
|
+
.mt--075 {
|
|
4686
4722
|
margin-top: 0.75rem !important;
|
|
4687
4723
|
}
|
|
4688
4724
|
|
|
4689
|
-
.-mt-1
|
|
4725
|
+
.-mt-1,
|
|
4726
|
+
.mt--1 {
|
|
4690
4727
|
margin-top: -1rem !important;
|
|
4691
4728
|
}
|
|
4692
4729
|
|
|
4693
|
-
.-mt-1-5
|
|
4730
|
+
.-mt-1-5,
|
|
4731
|
+
.mt--1-5 {
|
|
4694
4732
|
margin-top: -1.5rem !important;
|
|
4695
4733
|
}
|
|
4696
4734
|
|
|
4697
|
-
.-mt-2-5
|
|
4735
|
+
.-mt-2-5,
|
|
4736
|
+
.mt--2-5 {
|
|
4698
4737
|
margin-top: -2.5rem !important;
|
|
4699
4738
|
}
|
|
4700
4739
|
|
|
4701
|
-
.-mt-3-5
|
|
4740
|
+
.-mt-3-5,
|
|
4741
|
+
.mt--3-5 {
|
|
4702
4742
|
margin-top: -3.5rem !important;
|
|
4703
4743
|
}
|
|
4704
4744
|
|
|
4705
|
-
.-mt-4-5
|
|
4745
|
+
.-mt-4-5,
|
|
4746
|
+
.mt--4-5 {
|
|
4706
4747
|
margin-top: -4.5rem !important;
|
|
4707
4748
|
}
|
|
4708
4749
|
|
|
4709
|
-
.-mt-5-5
|
|
4750
|
+
.-mt-5-5,
|
|
4751
|
+
.mt--5-5 {
|
|
4710
4752
|
margin-top: -5.5rem !important;
|
|
4711
4753
|
}
|
|
4712
4754
|
|
|
4713
|
-
.-mt-6-5
|
|
4755
|
+
.-mt-6-5,
|
|
4756
|
+
.mt--6-5 {
|
|
4714
4757
|
margin-top: -6.5rem !important;
|
|
4715
4758
|
}
|
|
4716
4759
|
|
|
4717
|
-
.-mt-7-5
|
|
4760
|
+
.-mt-7-5,
|
|
4761
|
+
.mt--7-5 {
|
|
4718
4762
|
margin-top: -7.5rem !important;
|
|
4719
4763
|
}
|
|
4720
4764
|
|
|
4721
|
-
.-mt-8-5
|
|
4765
|
+
.-mt-8-5,
|
|
4766
|
+
.mt--8-5 {
|
|
4722
4767
|
margin-top: -8.5rem !important;
|
|
4723
4768
|
}
|
|
4724
4769
|
|
|
4725
|
-
.-mt-9-5
|
|
4770
|
+
.-mt-9-5,
|
|
4771
|
+
.mt--9-5 {
|
|
4726
4772
|
margin-top: -9.5rem !important;
|
|
4727
4773
|
}
|
|
4728
4774
|
|
|
4729
|
-
.-mt-10-5
|
|
4775
|
+
.-mt-10-5,
|
|
4776
|
+
.mt--10-5 {
|
|
4730
4777
|
margin-top: -10.5rem !important;
|
|
4731
4778
|
}
|
|
4732
4779
|
|
|
4733
|
-
.-mt-2
|
|
4780
|
+
.-mt-2,
|
|
4781
|
+
.mt--2 {
|
|
4734
4782
|
margin-top: -2rem !important;
|
|
4735
4783
|
}
|
|
4736
4784
|
|
|
4737
|
-
.-mt-3
|
|
4785
|
+
.-mt-3,
|
|
4786
|
+
.mt--3 {
|
|
4738
4787
|
margin-top: -3rem !important;
|
|
4739
4788
|
}
|
|
4740
4789
|
|
|
4741
|
-
.-mt-4
|
|
4790
|
+
.-mt-4,
|
|
4791
|
+
.mt--4 {
|
|
4742
4792
|
margin-top: -4rem !important;
|
|
4743
4793
|
}
|
|
4744
4794
|
|
|
4745
|
-
.-mt-5
|
|
4795
|
+
.-mt-5,
|
|
4796
|
+
.mt--5 {
|
|
4746
4797
|
margin-top: -5rem !important;
|
|
4747
4798
|
}
|
|
4748
4799
|
|
|
4749
|
-
.-mt-6
|
|
4800
|
+
.-mt-6,
|
|
4801
|
+
.mt--6 {
|
|
4750
4802
|
margin-top: -6rem !important;
|
|
4751
4803
|
}
|
|
4752
4804
|
|
|
4753
|
-
.-mt-7
|
|
4805
|
+
.-mt-7,
|
|
4806
|
+
.mt--7 {
|
|
4754
4807
|
margin-top: -7rem !important;
|
|
4755
4808
|
}
|
|
4756
4809
|
|
|
4757
|
-
.-mt-8
|
|
4810
|
+
.-mt-8,
|
|
4811
|
+
.mt--8 {
|
|
4758
4812
|
margin-top: -8rem !important;
|
|
4759
4813
|
}
|
|
4760
4814
|
|
|
4761
|
-
.-mt-9
|
|
4815
|
+
.-mt-9,
|
|
4816
|
+
.mt--9 {
|
|
4762
4817
|
margin-top: -9rem !important;
|
|
4763
4818
|
}
|
|
4764
4819
|
|
|
4765
|
-
.-mt-10
|
|
4820
|
+
.-mt-10,
|
|
4821
|
+
.mt--10 {
|
|
4766
4822
|
margin-top: -10rem !important;
|
|
4767
4823
|
}
|
|
4768
4824
|
|
|
4769
|
-
.-mt-11
|
|
4825
|
+
.-mt-11,
|
|
4826
|
+
.mt--11 {
|
|
4770
4827
|
margin-top: -11rem !important;
|
|
4771
4828
|
}
|
|
4772
4829
|
|
|
4773
|
-
.-mt-12
|
|
4830
|
+
.-mt-12,
|
|
4831
|
+
.mt--12 {
|
|
4774
4832
|
margin-top: -12rem !important;
|
|
4775
4833
|
}
|
|
4776
4834
|
|
|
4777
|
-
.-mt-13
|
|
4835
|
+
.-mt-13,
|
|
4836
|
+
.mt--13 {
|
|
4778
4837
|
margin-top: -13rem !important;
|
|
4779
4838
|
}
|
|
4780
4839
|
|
|
4781
|
-
.-mt-14
|
|
4840
|
+
.-mt-14,
|
|
4841
|
+
.mt--14 {
|
|
4782
4842
|
margin-top: -14rem !important;
|
|
4783
4843
|
}
|
|
4784
4844
|
|
|
4785
|
-
.-mt-15
|
|
4845
|
+
.-mt-15,
|
|
4846
|
+
.mt--15 {
|
|
4786
4847
|
margin-top: -15rem !important;
|
|
4787
4848
|
}
|
|
4788
4849
|
|
|
4789
|
-
.-mt-16
|
|
4850
|
+
.-mt-16,
|
|
4851
|
+
.mt--16 {
|
|
4790
4852
|
margin-top: -16rem !important;
|
|
4791
4853
|
}
|
|
4792
4854
|
|
|
4793
|
-
.-mt-17
|
|
4855
|
+
.-mt-17,
|
|
4856
|
+
.mt--17 {
|
|
4794
4857
|
margin-top: -17rem !important;
|
|
4795
4858
|
}
|
|
4796
4859
|
|
|
4797
|
-
.-mt-18
|
|
4860
|
+
.-mt-18,
|
|
4861
|
+
.mt--18 {
|
|
4798
4862
|
margin-top: -18rem !important;
|
|
4799
4863
|
}
|
|
4800
4864
|
|
|
4801
|
-
.-mt-19
|
|
4865
|
+
.-mt-19,
|
|
4866
|
+
.mt--19 {
|
|
4802
4867
|
margin-top: -19rem !important;
|
|
4803
4868
|
}
|
|
4804
4869
|
|
|
4805
|
-
.-mt-20
|
|
4870
|
+
.-mt-20,
|
|
4871
|
+
.mt--20 {
|
|
4806
4872
|
margin-top: -20rem !important;
|
|
4807
4873
|
}
|
|
4808
4874
|
|
|
@@ -4924,191 +4990,238 @@
|
|
|
4924
4990
|
}
|
|
4925
4991
|
|
|
4926
4992
|
|
|
4927
|
-
.-ms-025
|
|
4993
|
+
.-ms-025,
|
|
4994
|
+
.ms--025 {
|
|
4928
4995
|
margin-inline-start: -0.25rem !important;
|
|
4929
4996
|
}
|
|
4930
4997
|
|
|
4931
|
-
.-ms-05
|
|
4998
|
+
.-ms-05,
|
|
4999
|
+
.ms--05 {
|
|
4932
5000
|
margin-inline-start: -0.5rem !important;
|
|
4933
5001
|
}
|
|
4934
5002
|
|
|
4935
|
-
.-ms-075
|
|
5003
|
+
.-ms-075,
|
|
5004
|
+
.ms--075 {
|
|
4936
5005
|
margin-inline-start: -0.75rem !important;
|
|
4937
5006
|
}
|
|
4938
5007
|
|
|
4939
|
-
.-ms-1
|
|
5008
|
+
.-ms-1,
|
|
5009
|
+
.ms--1 {
|
|
4940
5010
|
margin-inline-start: -1rem !important;
|
|
4941
5011
|
}
|
|
4942
5012
|
|
|
4943
|
-
.-ms-1-5
|
|
5013
|
+
.-ms-1-5,
|
|
5014
|
+
.ms--1-5 {
|
|
4944
5015
|
margin-inline-start: -1.5rem !important;
|
|
4945
5016
|
}
|
|
4946
5017
|
|
|
4947
|
-
.-ms-2-5
|
|
5018
|
+
.-ms-2-5,
|
|
5019
|
+
.ms--2-5 {
|
|
4948
5020
|
margin-inline-start: -2.5rem !important;
|
|
4949
5021
|
}
|
|
4950
5022
|
|
|
4951
|
-
.-ms-3-5
|
|
5023
|
+
.-ms-3-5,
|
|
5024
|
+
.ms--3-5 {
|
|
4952
5025
|
margin-inline-start: -3.5rem !important;
|
|
4953
5026
|
}
|
|
4954
5027
|
|
|
4955
|
-
.-ms-4-5
|
|
5028
|
+
.-ms-4-5,
|
|
5029
|
+
.ms--4-5 {
|
|
4956
5030
|
margin-inline-start: -4.5rem !important;
|
|
4957
5031
|
}
|
|
4958
5032
|
|
|
4959
|
-
.-ms-5-5
|
|
5033
|
+
.-ms-5-5,
|
|
5034
|
+
.ms--5-5 {
|
|
4960
5035
|
margin-inline-start: -5.5rem !important;
|
|
4961
5036
|
}
|
|
4962
5037
|
|
|
4963
|
-
.-ms-6-5
|
|
5038
|
+
.-ms-6-5,
|
|
5039
|
+
.ms--6-5 {
|
|
4964
5040
|
margin-inline-start: -6.5rem !important;
|
|
4965
5041
|
}
|
|
4966
5042
|
|
|
4967
|
-
.-ms-7-5
|
|
5043
|
+
.-ms-7-5,
|
|
5044
|
+
.ms--7-5 {
|
|
4968
5045
|
margin-inline-start: -7.5rem !important;
|
|
4969
5046
|
}
|
|
4970
5047
|
|
|
4971
|
-
.-ms-8-5
|
|
5048
|
+
.-ms-8-5,
|
|
5049
|
+
.ms--8-5 {
|
|
4972
5050
|
margin-inline-start: -8.5rem !important;
|
|
4973
5051
|
}
|
|
4974
5052
|
|
|
4975
|
-
.-ms-9-5
|
|
5053
|
+
.-ms-9-5,
|
|
5054
|
+
.ms--9-5 {
|
|
4976
5055
|
margin-inline-start: -9.5rem !important;
|
|
4977
5056
|
}
|
|
4978
5057
|
|
|
4979
|
-
.-ms-10-5
|
|
5058
|
+
.-ms-10-5,
|
|
5059
|
+
.ms--10-5 {
|
|
4980
5060
|
margin-inline-start: -10.5rem !important;
|
|
4981
5061
|
}
|
|
4982
5062
|
|
|
4983
|
-
.-ms-2
|
|
5063
|
+
.-ms-2,
|
|
5064
|
+
.ms--2 {
|
|
4984
5065
|
margin-inline-start: -2rem !important;
|
|
4985
5066
|
}
|
|
4986
5067
|
|
|
4987
|
-
.-ms-3
|
|
5068
|
+
.-ms-3,
|
|
5069
|
+
.ms--3 {
|
|
4988
5070
|
margin-inline-start: -3rem !important;
|
|
4989
5071
|
}
|
|
4990
5072
|
|
|
4991
|
-
.-ms-4
|
|
5073
|
+
.-ms-4,
|
|
5074
|
+
.ms--4 {
|
|
4992
5075
|
margin-inline-start: -4rem !important;
|
|
4993
5076
|
}
|
|
4994
5077
|
|
|
4995
|
-
.-ms-5
|
|
5078
|
+
.-ms-5,
|
|
5079
|
+
.ms--5 {
|
|
4996
5080
|
margin-inline-start: -5rem !important;
|
|
4997
5081
|
}
|
|
4998
5082
|
|
|
4999
|
-
.-ms-6
|
|
5083
|
+
.-ms-6,
|
|
5084
|
+
.ms--6 {
|
|
5000
5085
|
margin-inline-start: -6rem !important;
|
|
5001
5086
|
}
|
|
5002
5087
|
|
|
5003
|
-
.-ms-7
|
|
5088
|
+
.-ms-7,
|
|
5089
|
+
.ms--7 {
|
|
5004
5090
|
margin-inline-start: -7rem !important;
|
|
5005
5091
|
}
|
|
5006
5092
|
|
|
5007
|
-
.-ms-8
|
|
5093
|
+
.-ms-8,
|
|
5094
|
+
.ms--8 {
|
|
5008
5095
|
margin-inline-start: -8rem !important;
|
|
5009
5096
|
}
|
|
5010
5097
|
|
|
5011
|
-
.-ms-9
|
|
5098
|
+
.-ms-9,
|
|
5099
|
+
.ms--9 {
|
|
5012
5100
|
margin-inline-start: -9rem !important;
|
|
5013
5101
|
}
|
|
5014
5102
|
|
|
5015
|
-
.-ms-10
|
|
5103
|
+
.-ms-10,
|
|
5104
|
+
.ms--10 {
|
|
5016
5105
|
margin-inline-start: -10rem !important;
|
|
5017
5106
|
}
|
|
5018
5107
|
|
|
5019
|
-
.-me-025
|
|
5108
|
+
.-me-025,
|
|
5109
|
+
.me--025 {
|
|
5020
5110
|
margin-inline-end: -0.25rem !important;
|
|
5021
5111
|
}
|
|
5022
5112
|
|
|
5023
|
-
.-me-05
|
|
5113
|
+
.-me-05,
|
|
5114
|
+
.me--05 {
|
|
5024
5115
|
margin-inline-end: -0.5rem !important;
|
|
5025
5116
|
}
|
|
5026
5117
|
|
|
5027
|
-
.-me-075
|
|
5118
|
+
.-me-075,
|
|
5119
|
+
.me--075 {
|
|
5028
5120
|
margin-inline-end: -0.75rem !important;
|
|
5029
5121
|
}
|
|
5030
5122
|
|
|
5031
|
-
.-me-1
|
|
5123
|
+
.-me-1,
|
|
5124
|
+
.me--1 {
|
|
5032
5125
|
margin-inline-end: -1rem !important;
|
|
5033
5126
|
}
|
|
5034
5127
|
|
|
5035
|
-
.-me-1-5
|
|
5128
|
+
.-me-1-5,
|
|
5129
|
+
.me--1-5 {
|
|
5036
5130
|
margin-inline-end: -1.5rem !important;
|
|
5037
5131
|
}
|
|
5038
5132
|
|
|
5039
|
-
.-me-2-5
|
|
5133
|
+
.-me-2-5,
|
|
5134
|
+
.me--2-5 {
|
|
5040
5135
|
margin-inline-end: -2.5rem !important;
|
|
5041
5136
|
}
|
|
5042
5137
|
|
|
5043
|
-
.-me-3-5
|
|
5138
|
+
.-me-3-5,
|
|
5139
|
+
.me--3-5 {
|
|
5044
5140
|
margin-inline-end: -3.5rem !important;
|
|
5045
5141
|
}
|
|
5046
5142
|
|
|
5047
|
-
.-me-4-5
|
|
5143
|
+
.-me-4-5,
|
|
5144
|
+
.me--4-5 {
|
|
5048
5145
|
margin-inline-end: -4.5rem !important;
|
|
5049
5146
|
}
|
|
5050
5147
|
|
|
5051
|
-
.-me-5-5
|
|
5148
|
+
.-me-5-5,
|
|
5149
|
+
.me--5-5 {
|
|
5052
5150
|
margin-inline-end: -5.5rem !important;
|
|
5053
5151
|
}
|
|
5054
5152
|
|
|
5055
|
-
.-me-6-5
|
|
5153
|
+
.-me-6-5,
|
|
5154
|
+
.me--6-5 {
|
|
5056
5155
|
margin-inline-end: -6.5rem !important;
|
|
5057
5156
|
}
|
|
5058
5157
|
|
|
5059
|
-
.-me-7-5
|
|
5158
|
+
.-me-7-5,
|
|
5159
|
+
.me--7-5 {
|
|
5060
5160
|
margin-inline-end: -7.5rem !important;
|
|
5061
5161
|
}
|
|
5062
5162
|
|
|
5063
|
-
.-me-8-5
|
|
5163
|
+
.-me-8-5,
|
|
5164
|
+
.me--8-5 {
|
|
5064
5165
|
margin-inline-end: -8.5rem !important;
|
|
5065
5166
|
}
|
|
5066
5167
|
|
|
5067
|
-
.-me-9-5
|
|
5168
|
+
.-me-9-5,
|
|
5169
|
+
.me--9-5 {
|
|
5068
5170
|
margin-inline-end: -9.5rem !important;
|
|
5069
5171
|
}
|
|
5070
5172
|
|
|
5071
|
-
.-me-10-5
|
|
5173
|
+
.-me-10-5,
|
|
5174
|
+
.me--10-5 {
|
|
5072
5175
|
margin-inline-end: -10.5rem !important;
|
|
5073
5176
|
}
|
|
5074
5177
|
|
|
5075
|
-
.-me-2
|
|
5178
|
+
.-me-2,
|
|
5179
|
+
.me--2 {
|
|
5076
5180
|
margin-inline-end: -2rem !important;
|
|
5077
5181
|
}
|
|
5078
5182
|
|
|
5079
|
-
.-me-3
|
|
5183
|
+
.-me-3,
|
|
5184
|
+
.me--3 {
|
|
5080
5185
|
margin-inline-end: -3rem !important;
|
|
5081
5186
|
}
|
|
5082
5187
|
|
|
5083
|
-
.-me-4
|
|
5188
|
+
.-me-4,
|
|
5189
|
+
.me--4 {
|
|
5084
5190
|
margin-inline-end: -4rem !important;
|
|
5085
5191
|
}
|
|
5086
5192
|
|
|
5087
|
-
.-me-4
|
|
5193
|
+
.-me-4,
|
|
5194
|
+
.me--4 {
|
|
5088
5195
|
margin-inline-end: -4rem !important;
|
|
5089
5196
|
}
|
|
5090
5197
|
|
|
5091
|
-
.-me-5
|
|
5198
|
+
.-me-5,
|
|
5199
|
+
.me--5 {
|
|
5092
5200
|
margin-inline-end: -5rem !important;
|
|
5093
5201
|
}
|
|
5094
5202
|
|
|
5095
|
-
.-me-6
|
|
5203
|
+
.-me-6,
|
|
5204
|
+
.me--6 {
|
|
5096
5205
|
margin-inline-end: -6rem !important;
|
|
5097
5206
|
}
|
|
5098
5207
|
|
|
5099
|
-
.-me-7
|
|
5208
|
+
.-me-7,
|
|
5209
|
+
.me--7 {
|
|
5100
5210
|
margin-inline-end: -7rem !important;
|
|
5101
5211
|
}
|
|
5102
5212
|
|
|
5103
|
-
.-me-8
|
|
5213
|
+
.-me-8,
|
|
5214
|
+
.me--8 {
|
|
5104
5215
|
margin-inline-end: -8rem !important;
|
|
5105
5216
|
}
|
|
5106
5217
|
|
|
5107
|
-
.-me-9
|
|
5218
|
+
.-me-9,
|
|
5219
|
+
.me--9 {
|
|
5108
5220
|
margin-inline-end: -9rem !important;
|
|
5109
5221
|
}
|
|
5110
5222
|
|
|
5111
|
-
.-me-10
|
|
5223
|
+
.-me-10,
|
|
5224
|
+
.me--10 {
|
|
5112
5225
|
margin-inline-end: -10rem !important;
|
|
5113
5226
|
}
|
|
5114
5227
|
|