@progress/kendo-theme-utils 6.1.1-dev.16 → 6.1.1-dev.25
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/all.css +536 -96
- package/dist/all.scss +82 -27
- package/dist/meta/variables.json +1 -1
- package/package.json +3 -3
- package/scss/_variables.scss +82 -27
package/dist/all.css
CHANGED
|
@@ -910,28 +910,68 @@
|
|
|
910
910
|
align-content: stretch !important;
|
|
911
911
|
}
|
|
912
912
|
|
|
913
|
+
.k-align-content-center {
|
|
914
|
+
align-content: center;
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
.\!k-align-content-center {
|
|
918
|
+
align-content: center !important;
|
|
919
|
+
}
|
|
920
|
+
|
|
913
921
|
.k-align-content-start {
|
|
914
|
-
align-content:
|
|
922
|
+
align-content: start;
|
|
915
923
|
}
|
|
916
924
|
|
|
917
925
|
.\!k-align-content-start {
|
|
918
|
-
align-content:
|
|
926
|
+
align-content: start !important;
|
|
919
927
|
}
|
|
920
928
|
|
|
921
929
|
.k-align-content-end {
|
|
922
|
-
align-content:
|
|
930
|
+
align-content: end;
|
|
923
931
|
}
|
|
924
932
|
|
|
925
933
|
.\!k-align-content-end {
|
|
934
|
+
align-content: end !important;
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
.k-align-content-flex-start {
|
|
938
|
+
align-content: flex-start;
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
.\!k-align-content-flex-start {
|
|
942
|
+
align-content: flex-start !important;
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
.k-align-content-flex-end {
|
|
946
|
+
align-content: flex-end;
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
.\!k-align-content-flex-end {
|
|
926
950
|
align-content: flex-end !important;
|
|
927
951
|
}
|
|
928
952
|
|
|
929
|
-
.k-align-content-
|
|
930
|
-
align-content:
|
|
953
|
+
.k-align-content-baseline {
|
|
954
|
+
align-content: baseline;
|
|
931
955
|
}
|
|
932
956
|
|
|
933
|
-
.\!k-align-content-
|
|
934
|
-
align-content:
|
|
957
|
+
.\!k-align-content-baseline {
|
|
958
|
+
align-content: baseline !important;
|
|
959
|
+
}
|
|
960
|
+
|
|
961
|
+
.k-align-content-first-baseline {
|
|
962
|
+
align-content: first baseline;
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
.\!k-align-content-first-baseline {
|
|
966
|
+
align-content: first baseline !important;
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
.k-align-content-last-baseline {
|
|
970
|
+
align-content: last baseline;
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
.\!k-align-content-last-baseline {
|
|
974
|
+
align-content: last baseline !important;
|
|
935
975
|
}
|
|
936
976
|
|
|
937
977
|
.k-align-content-between {
|
|
@@ -966,36 +1006,92 @@
|
|
|
966
1006
|
align-items: normal !important;
|
|
967
1007
|
}
|
|
968
1008
|
|
|
1009
|
+
.k-align-items-stretch {
|
|
1010
|
+
align-items: stretch;
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
.\!k-align-items-stretch {
|
|
1014
|
+
align-items: stretch !important;
|
|
1015
|
+
}
|
|
1016
|
+
|
|
1017
|
+
.k-align-items-center {
|
|
1018
|
+
align-items: center;
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
.\!k-align-items-center {
|
|
1022
|
+
align-items: center !important;
|
|
1023
|
+
}
|
|
1024
|
+
|
|
969
1025
|
.k-align-items-start {
|
|
970
|
-
align-items:
|
|
1026
|
+
align-items: start;
|
|
971
1027
|
}
|
|
972
1028
|
|
|
973
1029
|
.\!k-align-items-start {
|
|
974
|
-
align-items:
|
|
1030
|
+
align-items: start !important;
|
|
975
1031
|
}
|
|
976
1032
|
|
|
977
1033
|
.k-align-items-end {
|
|
978
|
-
align-items:
|
|
1034
|
+
align-items: end;
|
|
979
1035
|
}
|
|
980
1036
|
|
|
981
1037
|
.\!k-align-items-end {
|
|
1038
|
+
align-items: end !important;
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
.k-align-items-flex-start {
|
|
1042
|
+
align-items: flex-start;
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
.\!k-align-items-flex-start {
|
|
1046
|
+
align-items: flex-start !important;
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
.k-align-items-flex-end {
|
|
1050
|
+
align-items: flex-end;
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
.\!k-align-items-flex-end {
|
|
982
1054
|
align-items: flex-end !important;
|
|
983
1055
|
}
|
|
984
1056
|
|
|
985
|
-
.k-align-items-
|
|
986
|
-
align-items:
|
|
1057
|
+
.k-align-items-baseline {
|
|
1058
|
+
align-items: baseline;
|
|
987
1059
|
}
|
|
988
1060
|
|
|
989
|
-
.\!k-align-items-
|
|
990
|
-
align-items:
|
|
1061
|
+
.\!k-align-items-baseline {
|
|
1062
|
+
align-items: baseline !important;
|
|
991
1063
|
}
|
|
992
1064
|
|
|
993
|
-
.k-align-items-
|
|
994
|
-
align-items:
|
|
1065
|
+
.k-align-items-first-baseline {
|
|
1066
|
+
align-items: first baseline;
|
|
995
1067
|
}
|
|
996
1068
|
|
|
997
|
-
.\!k-align-items-
|
|
998
|
-
align-items:
|
|
1069
|
+
.\!k-align-items-first-baseline {
|
|
1070
|
+
align-items: first baseline !important;
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
.k-align-items-last-baseline {
|
|
1074
|
+
align-items: last baseline;
|
|
1075
|
+
}
|
|
1076
|
+
|
|
1077
|
+
.\!k-align-items-last-baseline {
|
|
1078
|
+
align-items: last baseline !important;
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1081
|
+
.k-align-items-self-start {
|
|
1082
|
+
align-items: self-start;
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
.\!k-align-items-self-start {
|
|
1086
|
+
align-items: self-start !important;
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
.k-align-items-self-end {
|
|
1090
|
+
align-items: self-end;
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
.\!k-align-items-self-end {
|
|
1094
|
+
align-items: self-end !important;
|
|
999
1095
|
}
|
|
1000
1096
|
|
|
1001
1097
|
.k-align-self-auto {
|
|
@@ -1022,28 +1118,84 @@
|
|
|
1022
1118
|
align-self: stretch !important;
|
|
1023
1119
|
}
|
|
1024
1120
|
|
|
1121
|
+
.k-align-self-center {
|
|
1122
|
+
align-self: center;
|
|
1123
|
+
}
|
|
1124
|
+
|
|
1125
|
+
.\!k-align-self-center {
|
|
1126
|
+
align-self: center !important;
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1025
1129
|
.k-align-self-start {
|
|
1026
|
-
align-self:
|
|
1130
|
+
align-self: start;
|
|
1027
1131
|
}
|
|
1028
1132
|
|
|
1029
1133
|
.\!k-align-self-start {
|
|
1030
|
-
align-self:
|
|
1134
|
+
align-self: start !important;
|
|
1031
1135
|
}
|
|
1032
1136
|
|
|
1033
1137
|
.k-align-self-end {
|
|
1034
|
-
align-self:
|
|
1138
|
+
align-self: end;
|
|
1035
1139
|
}
|
|
1036
1140
|
|
|
1037
1141
|
.\!k-align-self-end {
|
|
1142
|
+
align-self: end !important;
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
.k-align-self-flex-start {
|
|
1146
|
+
align-self: flex-start;
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
.\!k-align-self-flex-start {
|
|
1150
|
+
align-self: flex-start !important;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
.k-align-self-flex-end {
|
|
1154
|
+
align-self: flex-end;
|
|
1155
|
+
}
|
|
1156
|
+
|
|
1157
|
+
.\!k-align-self-flex-end {
|
|
1038
1158
|
align-self: flex-end !important;
|
|
1039
1159
|
}
|
|
1040
1160
|
|
|
1041
|
-
.k-align-self-
|
|
1042
|
-
align-self:
|
|
1161
|
+
.k-align-self-baseline {
|
|
1162
|
+
align-self: baseline;
|
|
1043
1163
|
}
|
|
1044
1164
|
|
|
1045
|
-
.\!k-align-self-
|
|
1046
|
-
align-self:
|
|
1165
|
+
.\!k-align-self-baseline {
|
|
1166
|
+
align-self: baseline !important;
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
.k-align-self-first-baseline {
|
|
1170
|
+
align-self: first baseline;
|
|
1171
|
+
}
|
|
1172
|
+
|
|
1173
|
+
.\!k-align-self-first-baseline {
|
|
1174
|
+
align-self: first baseline !important;
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1177
|
+
.k-align-self-last-baseline {
|
|
1178
|
+
align-self: last baseline;
|
|
1179
|
+
}
|
|
1180
|
+
|
|
1181
|
+
.\!k-align-self-last-baseline {
|
|
1182
|
+
align-self: last baseline !important;
|
|
1183
|
+
}
|
|
1184
|
+
|
|
1185
|
+
.k-align-self-self-start {
|
|
1186
|
+
align-self: self-start;
|
|
1187
|
+
}
|
|
1188
|
+
|
|
1189
|
+
.\!k-align-self-self-start {
|
|
1190
|
+
align-self: self-start !important;
|
|
1191
|
+
}
|
|
1192
|
+
|
|
1193
|
+
.k-align-self-self-end {
|
|
1194
|
+
align-self: self-end;
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1197
|
+
.\!k-align-self-self-end {
|
|
1198
|
+
align-self: self-end !important;
|
|
1047
1199
|
}
|
|
1048
1200
|
|
|
1049
1201
|
.k-basis-0 {
|
|
@@ -4438,28 +4590,92 @@
|
|
|
4438
4590
|
justify-content: normal !important;
|
|
4439
4591
|
}
|
|
4440
4592
|
|
|
4593
|
+
.k-justify-content-stretch {
|
|
4594
|
+
justify-content: stretch;
|
|
4595
|
+
}
|
|
4596
|
+
|
|
4597
|
+
.\!k-justify-content-stretch {
|
|
4598
|
+
justify-content: stretch !important;
|
|
4599
|
+
}
|
|
4600
|
+
|
|
4601
|
+
.k-justify-content-center {
|
|
4602
|
+
justify-content: center;
|
|
4603
|
+
}
|
|
4604
|
+
|
|
4605
|
+
.\!k-justify-content-center {
|
|
4606
|
+
justify-content: center !important;
|
|
4607
|
+
}
|
|
4608
|
+
|
|
4441
4609
|
.k-justify-content-start {
|
|
4442
|
-
justify-content:
|
|
4610
|
+
justify-content: start;
|
|
4443
4611
|
}
|
|
4444
4612
|
|
|
4445
4613
|
.\!k-justify-content-start {
|
|
4446
|
-
justify-content:
|
|
4614
|
+
justify-content: start !important;
|
|
4447
4615
|
}
|
|
4448
4616
|
|
|
4449
4617
|
.k-justify-content-end {
|
|
4450
|
-
justify-content:
|
|
4618
|
+
justify-content: end;
|
|
4451
4619
|
}
|
|
4452
4620
|
|
|
4453
4621
|
.\!k-justify-content-end {
|
|
4622
|
+
justify-content: end !important;
|
|
4623
|
+
}
|
|
4624
|
+
|
|
4625
|
+
.k-justify-content-flex-start {
|
|
4626
|
+
justify-content: flex-start;
|
|
4627
|
+
}
|
|
4628
|
+
|
|
4629
|
+
.\!k-justify-content-flex-start {
|
|
4630
|
+
justify-content: flex-start !important;
|
|
4631
|
+
}
|
|
4632
|
+
|
|
4633
|
+
.k-justify-content-flex-end {
|
|
4634
|
+
justify-content: flex-end;
|
|
4635
|
+
}
|
|
4636
|
+
|
|
4637
|
+
.\!k-justify-content-flex-end {
|
|
4454
4638
|
justify-content: flex-end !important;
|
|
4455
4639
|
}
|
|
4456
4640
|
|
|
4457
|
-
.k-justify-content-
|
|
4458
|
-
justify-content:
|
|
4641
|
+
.k-justify-content-left {
|
|
4642
|
+
justify-content: left;
|
|
4459
4643
|
}
|
|
4460
4644
|
|
|
4461
|
-
.\!k-justify-content-
|
|
4462
|
-
justify-content:
|
|
4645
|
+
.\!k-justify-content-left {
|
|
4646
|
+
justify-content: left !important;
|
|
4647
|
+
}
|
|
4648
|
+
|
|
4649
|
+
.k-justify-content-right {
|
|
4650
|
+
justify-content: right;
|
|
4651
|
+
}
|
|
4652
|
+
|
|
4653
|
+
.\!k-justify-content-right {
|
|
4654
|
+
justify-content: right !important;
|
|
4655
|
+
}
|
|
4656
|
+
|
|
4657
|
+
.k-justify-content-baseline {
|
|
4658
|
+
justify-content: baseline;
|
|
4659
|
+
}
|
|
4660
|
+
|
|
4661
|
+
.\!k-justify-content-baseline {
|
|
4662
|
+
justify-content: baseline !important;
|
|
4663
|
+
}
|
|
4664
|
+
|
|
4665
|
+
.k-justify-content-first-baseline {
|
|
4666
|
+
justify-content: first baseline;
|
|
4667
|
+
}
|
|
4668
|
+
|
|
4669
|
+
.\!k-justify-content-first-baseline {
|
|
4670
|
+
justify-content: first baseline !important;
|
|
4671
|
+
}
|
|
4672
|
+
|
|
4673
|
+
.k-justify-content-last-baseline {
|
|
4674
|
+
justify-content: last baseline;
|
|
4675
|
+
}
|
|
4676
|
+
|
|
4677
|
+
.\!k-justify-content-last-baseline {
|
|
4678
|
+
justify-content: last baseline !important;
|
|
4463
4679
|
}
|
|
4464
4680
|
|
|
4465
4681
|
.k-justify-content-between {
|
|
@@ -4486,14 +4702,6 @@
|
|
|
4486
4702
|
justify-content: space-evenly !important;
|
|
4487
4703
|
}
|
|
4488
4704
|
|
|
4489
|
-
.k-justify-content-stretch {
|
|
4490
|
-
justify-content: stretch;
|
|
4491
|
-
}
|
|
4492
|
-
|
|
4493
|
-
.\!k-justify-content-stretch {
|
|
4494
|
-
justify-content: stretch !important;
|
|
4495
|
-
}
|
|
4496
|
-
|
|
4497
4705
|
.k-justify-content-stretch > * {
|
|
4498
4706
|
flex: 1 0 0%;
|
|
4499
4707
|
}
|
|
@@ -4510,36 +4718,108 @@
|
|
|
4510
4718
|
justify-items: normal !important;
|
|
4511
4719
|
}
|
|
4512
4720
|
|
|
4721
|
+
.k-justify-items-stretch {
|
|
4722
|
+
justify-items: stretch;
|
|
4723
|
+
}
|
|
4724
|
+
|
|
4725
|
+
.\!k-justify-items-stretch {
|
|
4726
|
+
justify-items: stretch !important;
|
|
4727
|
+
}
|
|
4728
|
+
|
|
4729
|
+
.k-justify-items-center {
|
|
4730
|
+
justify-items: center;
|
|
4731
|
+
}
|
|
4732
|
+
|
|
4733
|
+
.\!k-justify-items-center {
|
|
4734
|
+
justify-items: center !important;
|
|
4735
|
+
}
|
|
4736
|
+
|
|
4513
4737
|
.k-justify-items-start {
|
|
4514
|
-
justify-items:
|
|
4738
|
+
justify-items: start;
|
|
4515
4739
|
}
|
|
4516
4740
|
|
|
4517
4741
|
.\!k-justify-items-start {
|
|
4518
|
-
justify-items:
|
|
4742
|
+
justify-items: start !important;
|
|
4519
4743
|
}
|
|
4520
4744
|
|
|
4521
4745
|
.k-justify-items-end {
|
|
4522
|
-
justify-items:
|
|
4746
|
+
justify-items: end;
|
|
4523
4747
|
}
|
|
4524
4748
|
|
|
4525
4749
|
.\!k-justify-items-end {
|
|
4750
|
+
justify-items: end !important;
|
|
4751
|
+
}
|
|
4752
|
+
|
|
4753
|
+
.k-justify-items-flex-start {
|
|
4754
|
+
justify-items: flex-start;
|
|
4755
|
+
}
|
|
4756
|
+
|
|
4757
|
+
.\!k-justify-items-flex-start {
|
|
4758
|
+
justify-items: flex-start !important;
|
|
4759
|
+
}
|
|
4760
|
+
|
|
4761
|
+
.k-justify-items-flex-end {
|
|
4762
|
+
justify-items: flex-end;
|
|
4763
|
+
}
|
|
4764
|
+
|
|
4765
|
+
.\!k-justify-items-flex-end {
|
|
4526
4766
|
justify-items: flex-end !important;
|
|
4527
4767
|
}
|
|
4528
4768
|
|
|
4529
|
-
.k-justify-items-
|
|
4530
|
-
justify-items:
|
|
4769
|
+
.k-justify-items-self-start {
|
|
4770
|
+
justify-items: self-start;
|
|
4531
4771
|
}
|
|
4532
4772
|
|
|
4533
|
-
.\!k-justify-items-
|
|
4534
|
-
justify-items:
|
|
4773
|
+
.\!k-justify-items-self-start {
|
|
4774
|
+
justify-items: self-start !important;
|
|
4535
4775
|
}
|
|
4536
4776
|
|
|
4537
|
-
.k-justify-items-
|
|
4538
|
-
justify-items:
|
|
4777
|
+
.k-justify-items-self-end {
|
|
4778
|
+
justify-items: self-end;
|
|
4539
4779
|
}
|
|
4540
4780
|
|
|
4541
|
-
.\!k-justify-items-
|
|
4542
|
-
justify-items:
|
|
4781
|
+
.\!k-justify-items-self-end {
|
|
4782
|
+
justify-items: self-end !important;
|
|
4783
|
+
}
|
|
4784
|
+
|
|
4785
|
+
.k-justify-items-left {
|
|
4786
|
+
justify-items: left;
|
|
4787
|
+
}
|
|
4788
|
+
|
|
4789
|
+
.\!k-justify-items-left {
|
|
4790
|
+
justify-items: left !important;
|
|
4791
|
+
}
|
|
4792
|
+
|
|
4793
|
+
.k-justify-items-right {
|
|
4794
|
+
justify-items: right;
|
|
4795
|
+
}
|
|
4796
|
+
|
|
4797
|
+
.\!k-justify-items-right {
|
|
4798
|
+
justify-items: right !important;
|
|
4799
|
+
}
|
|
4800
|
+
|
|
4801
|
+
.k-justify-items-baseline {
|
|
4802
|
+
justify-items: baseline;
|
|
4803
|
+
}
|
|
4804
|
+
|
|
4805
|
+
.\!k-justify-items-baseline {
|
|
4806
|
+
justify-items: baseline !important;
|
|
4807
|
+
}
|
|
4808
|
+
|
|
4809
|
+
.k-justify-items-first-baseline {
|
|
4810
|
+
justify-items: first baseline;
|
|
4811
|
+
}
|
|
4812
|
+
|
|
4813
|
+
.\!k-justify-items-first-baseline {
|
|
4814
|
+
justify-items: first baseline !important;
|
|
4815
|
+
}
|
|
4816
|
+
|
|
4817
|
+
.k-justify-items-last-baseline {
|
|
4818
|
+
justify-items: last baseline;
|
|
4819
|
+
}
|
|
4820
|
+
|
|
4821
|
+
.\!k-justify-items-last-baseline {
|
|
4822
|
+
justify-items: last baseline !important;
|
|
4543
4823
|
}
|
|
4544
4824
|
|
|
4545
4825
|
.k-justify-self-auto {
|
|
@@ -4558,36 +4838,92 @@
|
|
|
4558
4838
|
justify-self: normal !important;
|
|
4559
4839
|
}
|
|
4560
4840
|
|
|
4841
|
+
.k-justify-self-stretch {
|
|
4842
|
+
justify-self: stretch;
|
|
4843
|
+
}
|
|
4844
|
+
|
|
4845
|
+
.\!k-justify-self-stretch {
|
|
4846
|
+
justify-self: stretch !important;
|
|
4847
|
+
}
|
|
4848
|
+
|
|
4849
|
+
.k-justify-self-center {
|
|
4850
|
+
justify-self: center;
|
|
4851
|
+
}
|
|
4852
|
+
|
|
4853
|
+
.\!k-justify-self-center {
|
|
4854
|
+
justify-self: center !important;
|
|
4855
|
+
}
|
|
4856
|
+
|
|
4561
4857
|
.k-justify-self-start {
|
|
4562
|
-
justify-self:
|
|
4858
|
+
justify-self: start;
|
|
4563
4859
|
}
|
|
4564
4860
|
|
|
4565
4861
|
.\!k-justify-self-start {
|
|
4566
|
-
justify-self:
|
|
4862
|
+
justify-self: start !important;
|
|
4567
4863
|
}
|
|
4568
4864
|
|
|
4569
4865
|
.k-justify-self-end {
|
|
4570
|
-
justify-self:
|
|
4866
|
+
justify-self: end;
|
|
4571
4867
|
}
|
|
4572
4868
|
|
|
4573
4869
|
.\!k-justify-self-end {
|
|
4870
|
+
justify-self: end !important;
|
|
4871
|
+
}
|
|
4872
|
+
|
|
4873
|
+
.k-justify-self-flex-start {
|
|
4874
|
+
justify-self: flex-start;
|
|
4875
|
+
}
|
|
4876
|
+
|
|
4877
|
+
.\!k-justify-self-flex-start {
|
|
4878
|
+
justify-self: flex-start !important;
|
|
4879
|
+
}
|
|
4880
|
+
|
|
4881
|
+
.k-justify-self-flex-end {
|
|
4882
|
+
justify-self: flex-end;
|
|
4883
|
+
}
|
|
4884
|
+
|
|
4885
|
+
.\!k-justify-self-flex-end {
|
|
4574
4886
|
justify-self: flex-end !important;
|
|
4575
4887
|
}
|
|
4576
4888
|
|
|
4577
|
-
.k-justify-self-
|
|
4578
|
-
justify-self:
|
|
4889
|
+
.k-justify-self-self-start {
|
|
4890
|
+
justify-self: self-start;
|
|
4579
4891
|
}
|
|
4580
4892
|
|
|
4581
|
-
.\!k-justify-self-
|
|
4582
|
-
justify-self:
|
|
4893
|
+
.\!k-justify-self-self-start {
|
|
4894
|
+
justify-self: self-start !important;
|
|
4583
4895
|
}
|
|
4584
4896
|
|
|
4585
|
-
.k-justify-self-
|
|
4586
|
-
justify-self:
|
|
4897
|
+
.k-justify-self-self-end {
|
|
4898
|
+
justify-self: self-end;
|
|
4587
4899
|
}
|
|
4588
4900
|
|
|
4589
|
-
.\!k-justify-self-
|
|
4590
|
-
justify-self:
|
|
4901
|
+
.\!k-justify-self-self-end {
|
|
4902
|
+
justify-self: self-end !important;
|
|
4903
|
+
}
|
|
4904
|
+
|
|
4905
|
+
.k-justify-self-baseline {
|
|
4906
|
+
justify-self: baseline;
|
|
4907
|
+
}
|
|
4908
|
+
|
|
4909
|
+
.\!k-justify-self-baseline {
|
|
4910
|
+
justify-self: baseline !important;
|
|
4911
|
+
}
|
|
4912
|
+
|
|
4913
|
+
.k-justify-self-first-baseline {
|
|
4914
|
+
justify-self: first baseline;
|
|
4915
|
+
}
|
|
4916
|
+
|
|
4917
|
+
.\!k-justify-self-first-baseline {
|
|
4918
|
+
justify-self: first baseline !important;
|
|
4919
|
+
}
|
|
4920
|
+
|
|
4921
|
+
.k-justify-self-last-baseline {
|
|
4922
|
+
justify-self: last baseline;
|
|
4923
|
+
}
|
|
4924
|
+
|
|
4925
|
+
.\!k-justify-self-last-baseline {
|
|
4926
|
+
justify-self: last baseline !important;
|
|
4591
4927
|
}
|
|
4592
4928
|
|
|
4593
4929
|
.k-order-1 {
|
|
@@ -4718,28 +5054,60 @@
|
|
|
4718
5054
|
place-content: normal !important;
|
|
4719
5055
|
}
|
|
4720
5056
|
|
|
5057
|
+
.k-place-content-stretch {
|
|
5058
|
+
place-content: stretch;
|
|
5059
|
+
}
|
|
5060
|
+
|
|
5061
|
+
.\!k-place-content-stretch {
|
|
5062
|
+
place-content: stretch !important;
|
|
5063
|
+
}
|
|
5064
|
+
|
|
5065
|
+
.k-place-content-center {
|
|
5066
|
+
place-content: center;
|
|
5067
|
+
}
|
|
5068
|
+
|
|
5069
|
+
.\!k-place-content-center {
|
|
5070
|
+
place-content: center !important;
|
|
5071
|
+
}
|
|
5072
|
+
|
|
4721
5073
|
.k-place-content-start {
|
|
4722
|
-
place-content:
|
|
5074
|
+
place-content: start;
|
|
4723
5075
|
}
|
|
4724
5076
|
|
|
4725
5077
|
.\!k-place-content-start {
|
|
4726
|
-
place-content:
|
|
5078
|
+
place-content: start !important;
|
|
4727
5079
|
}
|
|
4728
5080
|
|
|
4729
5081
|
.k-place-content-end {
|
|
4730
|
-
place-content:
|
|
5082
|
+
place-content: end;
|
|
4731
5083
|
}
|
|
4732
5084
|
|
|
4733
5085
|
.\!k-place-content-end {
|
|
5086
|
+
place-content: end !important;
|
|
5087
|
+
}
|
|
5088
|
+
|
|
5089
|
+
.k-place-content-flex-start {
|
|
5090
|
+
place-content: flex-start;
|
|
5091
|
+
}
|
|
5092
|
+
|
|
5093
|
+
.\!k-place-content-flex-start {
|
|
5094
|
+
place-content: flex-start !important;
|
|
5095
|
+
}
|
|
5096
|
+
|
|
5097
|
+
.k-place-content-flex-end {
|
|
5098
|
+
place-content: flex-end;
|
|
5099
|
+
}
|
|
5100
|
+
|
|
5101
|
+
.\!k-place-content-flex-end {
|
|
4734
5102
|
place-content: flex-end !important;
|
|
4735
5103
|
}
|
|
4736
5104
|
|
|
4737
|
-
.k-place-content-
|
|
4738
|
-
place-content:
|
|
5105
|
+
.k-place-content-baseline {
|
|
5106
|
+
place-content: baseline;
|
|
4739
5107
|
}
|
|
4740
5108
|
|
|
4741
|
-
.\!k-place-content-
|
|
4742
|
-
place-content:
|
|
5109
|
+
.\!k-place-content-baseline {
|
|
5110
|
+
place-content: baseline !important;
|
|
4743
5111
|
}
|
|
4744
5112
|
|
|
4745
5113
|
.k-place-content-between {
|
|
@@ -4766,14 +5134,6 @@
|
|
|
4766
5134
|
place-content: space-evenly !important;
|
|
4767
5135
|
}
|
|
4768
5136
|
|
|
4769
|
-
.k-place-content-stretch {
|
|
4770
|
-
place-content: stretch;
|
|
4771
|
-
}
|
|
4772
|
-
|
|
4773
|
-
.\!k-place-content-stretch {
|
|
4774
|
-
place-content: stretch !important;
|
|
4775
|
-
}
|
|
4776
|
-
|
|
4777
5137
|
.k-place-items-normal {
|
|
4778
5138
|
place-items: normal;
|
|
4779
5139
|
}
|
|
@@ -4782,36 +5142,76 @@
|
|
|
4782
5142
|
place-items: normal !important;
|
|
4783
5143
|
}
|
|
4784
5144
|
|
|
5145
|
+
.k-place-items-stretch {
|
|
5146
|
+
place-items: stretch;
|
|
5147
|
+
}
|
|
5148
|
+
|
|
5149
|
+
.\!k-place-items-stretch {
|
|
5150
|
+
place-items: stretch !important;
|
|
5151
|
+
}
|
|
5152
|
+
|
|
5153
|
+
.k-place-items-center {
|
|
5154
|
+
place-items: center;
|
|
5155
|
+
}
|
|
5156
|
+
|
|
5157
|
+
.\!k-place-items-center {
|
|
5158
|
+
place-items: center !important;
|
|
5159
|
+
}
|
|
5160
|
+
|
|
4785
5161
|
.k-place-items-start {
|
|
4786
|
-
place-items:
|
|
5162
|
+
place-items: start;
|
|
4787
5163
|
}
|
|
4788
5164
|
|
|
4789
5165
|
.\!k-place-items-start {
|
|
4790
|
-
place-items:
|
|
5166
|
+
place-items: start !important;
|
|
4791
5167
|
}
|
|
4792
5168
|
|
|
4793
5169
|
.k-place-items-end {
|
|
4794
|
-
place-items:
|
|
5170
|
+
place-items: end;
|
|
4795
5171
|
}
|
|
4796
5172
|
|
|
4797
5173
|
.\!k-place-items-end {
|
|
5174
|
+
place-items: end !important;
|
|
5175
|
+
}
|
|
5176
|
+
|
|
5177
|
+
.k-place-items-flex-start {
|
|
5178
|
+
place-items: flex-start;
|
|
5179
|
+
}
|
|
5180
|
+
|
|
5181
|
+
.\!k-place-items-flex-start {
|
|
5182
|
+
place-items: flex-start !important;
|
|
5183
|
+
}
|
|
5184
|
+
|
|
5185
|
+
.k-place-items-flex-end {
|
|
5186
|
+
place-items: flex-end;
|
|
5187
|
+
}
|
|
5188
|
+
|
|
5189
|
+
.\!k-place-items-flex-end {
|
|
4798
5190
|
place-items: flex-end !important;
|
|
4799
5191
|
}
|
|
4800
5192
|
|
|
4801
|
-
.k-place-items-
|
|
4802
|
-
place-items:
|
|
5193
|
+
.k-place-items-self-start {
|
|
5194
|
+
place-items: flex-start;
|
|
4803
5195
|
}
|
|
4804
5196
|
|
|
4805
|
-
.\!k-place-items-
|
|
4806
|
-
place-items:
|
|
5197
|
+
.\!k-place-items-self-start {
|
|
5198
|
+
place-items: flex-start !important;
|
|
4807
5199
|
}
|
|
4808
5200
|
|
|
4809
|
-
.k-place-items-
|
|
4810
|
-
place-items:
|
|
5201
|
+
.k-place-items-self-end {
|
|
5202
|
+
place-items: flex-end;
|
|
4811
5203
|
}
|
|
4812
5204
|
|
|
4813
|
-
.\!k-place-items-
|
|
4814
|
-
place-items:
|
|
5205
|
+
.\!k-place-items-self-end {
|
|
5206
|
+
place-items: flex-end !important;
|
|
5207
|
+
}
|
|
5208
|
+
|
|
5209
|
+
.k-place-items-baseline {
|
|
5210
|
+
place-items: baseline;
|
|
5211
|
+
}
|
|
5212
|
+
|
|
5213
|
+
.\!k-place-items-baseline {
|
|
5214
|
+
place-items: baseline !important;
|
|
4815
5215
|
}
|
|
4816
5216
|
|
|
4817
5217
|
.k-place-self-auto {
|
|
@@ -4830,6 +5230,22 @@
|
|
|
4830
5230
|
place-self: normal !important;
|
|
4831
5231
|
}
|
|
4832
5232
|
|
|
5233
|
+
.k-place-self-stretch {
|
|
5234
|
+
place-self: stretch;
|
|
5235
|
+
}
|
|
5236
|
+
|
|
5237
|
+
.\!k-place-self-stretch {
|
|
5238
|
+
place-self: stretch !important;
|
|
5239
|
+
}
|
|
5240
|
+
|
|
5241
|
+
.k-place-self-center {
|
|
5242
|
+
place-self: center;
|
|
5243
|
+
}
|
|
5244
|
+
|
|
5245
|
+
.\!k-place-self-center {
|
|
5246
|
+
place-self: center !important;
|
|
5247
|
+
}
|
|
5248
|
+
|
|
4833
5249
|
.k-place-self-start {
|
|
4834
5250
|
place-self: flex-start;
|
|
4835
5251
|
}
|
|
@@ -4846,20 +5262,44 @@
|
|
|
4846
5262
|
place-self: flex-end !important;
|
|
4847
5263
|
}
|
|
4848
5264
|
|
|
4849
|
-
.k-place-self-
|
|
4850
|
-
place-self:
|
|
5265
|
+
.k-place-self-flex-start {
|
|
5266
|
+
place-self: flex-start;
|
|
4851
5267
|
}
|
|
4852
5268
|
|
|
4853
|
-
.\!k-place-self-
|
|
4854
|
-
place-self:
|
|
5269
|
+
.\!k-place-self-flex-start {
|
|
5270
|
+
place-self: flex-start !important;
|
|
4855
5271
|
}
|
|
4856
5272
|
|
|
4857
|
-
.k-place-self-
|
|
4858
|
-
place-self:
|
|
5273
|
+
.k-place-self-flex-end {
|
|
5274
|
+
place-self: flex-end;
|
|
4859
5275
|
}
|
|
4860
5276
|
|
|
4861
|
-
.\!k-place-self-
|
|
4862
|
-
place-self:
|
|
5277
|
+
.\!k-place-self-flex-end {
|
|
5278
|
+
place-self: flex-end !important;
|
|
5279
|
+
}
|
|
5280
|
+
|
|
5281
|
+
.k-place-self-self-start {
|
|
5282
|
+
place-self: flex-start;
|
|
5283
|
+
}
|
|
5284
|
+
|
|
5285
|
+
.\!k-place-self-self-start {
|
|
5286
|
+
place-self: flex-start !important;
|
|
5287
|
+
}
|
|
5288
|
+
|
|
5289
|
+
.k-place-self-self-end {
|
|
5290
|
+
place-self: flex-end;
|
|
5291
|
+
}
|
|
5292
|
+
|
|
5293
|
+
.\!k-place-self-self-end {
|
|
5294
|
+
place-self: flex-end !important;
|
|
5295
|
+
}
|
|
5296
|
+
|
|
5297
|
+
.k-place-self-baseline {
|
|
5298
|
+
place-self: baseline;
|
|
5299
|
+
}
|
|
5300
|
+
|
|
5301
|
+
.\!k-place-self-baseline {
|
|
5302
|
+
place-self: baseline !important;
|
|
4863
5303
|
}
|
|
4864
5304
|
|
|
4865
5305
|
.k-m-0 {
|
package/dist/all.scss
CHANGED
|
@@ -2021,77 +2021,132 @@ $kendo-utils: (
|
|
|
2021
2021
|
"align-content": (
|
|
2022
2022
|
normal: normal,
|
|
2023
2023
|
stretch: stretch,
|
|
2024
|
-
start: flex-start,
|
|
2025
|
-
end: flex-end,
|
|
2026
2024
|
center: center,
|
|
2025
|
+
start: start,
|
|
2026
|
+
end: end,
|
|
2027
|
+
flex-start: flex-start,
|
|
2028
|
+
flex-end: flex-end,
|
|
2029
|
+
baseline: baseline,
|
|
2030
|
+
first-baseline: first baseline,
|
|
2031
|
+
last-baseline: last baseline,
|
|
2027
2032
|
between: space-between,
|
|
2028
2033
|
around: space-around,
|
|
2029
2034
|
evenly: space-evenly
|
|
2030
2035
|
),
|
|
2031
2036
|
"align-items": (
|
|
2032
2037
|
normal: normal,
|
|
2033
|
-
|
|
2034
|
-
end: flex-end,
|
|
2038
|
+
stretch: stretch,
|
|
2035
2039
|
center: center,
|
|
2036
|
-
|
|
2040
|
+
start: start,
|
|
2041
|
+
end: end,
|
|
2042
|
+
flex-start: flex-start,
|
|
2043
|
+
flex-end: flex-end,
|
|
2044
|
+
baseline: baseline,
|
|
2045
|
+
first-baseline: first baseline,
|
|
2046
|
+
last-baseline: last baseline,
|
|
2047
|
+
self-start: self-start,
|
|
2048
|
+
self-end: self-end
|
|
2037
2049
|
),
|
|
2038
2050
|
"align-self": (
|
|
2039
2051
|
auto: auto,
|
|
2040
2052
|
normal: normal,
|
|
2041
2053
|
stretch: stretch,
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2054
|
+
center: center,
|
|
2055
|
+
start: start,
|
|
2056
|
+
end: end,
|
|
2057
|
+
flex-start: flex-start,
|
|
2058
|
+
flex-end: flex-end,
|
|
2059
|
+
baseline: baseline,
|
|
2060
|
+
first-baseline: first baseline,
|
|
2061
|
+
last-baseline: last baseline,
|
|
2062
|
+
self-start: self-start,
|
|
2063
|
+
self-end: self-end
|
|
2045
2064
|
),
|
|
2046
2065
|
"justify-content": (
|
|
2047
2066
|
normal: normal,
|
|
2048
|
-
|
|
2049
|
-
end: flex-end,
|
|
2067
|
+
stretch: stretch,
|
|
2050
2068
|
center: center,
|
|
2069
|
+
start: start,
|
|
2070
|
+
end: end,
|
|
2071
|
+
flex-start: flex-start,
|
|
2072
|
+
flex-end: flex-end,
|
|
2073
|
+
left: left,
|
|
2074
|
+
right: right,
|
|
2075
|
+
baseline: baseline,
|
|
2076
|
+
first-baseline: first baseline,
|
|
2077
|
+
last-baseline: last baseline,
|
|
2051
2078
|
between: space-between,
|
|
2052
2079
|
around: space-around,
|
|
2053
|
-
evenly: space-evenly
|
|
2054
|
-
stretch: stretch
|
|
2080
|
+
evenly: space-evenly
|
|
2055
2081
|
),
|
|
2056
2082
|
"justify-items": (
|
|
2057
2083
|
normal: normal,
|
|
2058
|
-
|
|
2059
|
-
end: flex-end,
|
|
2084
|
+
stretch: stretch,
|
|
2060
2085
|
center: center,
|
|
2061
|
-
|
|
2086
|
+
start: start,
|
|
2087
|
+
end: end,
|
|
2088
|
+
flex-start: flex-start,
|
|
2089
|
+
flex-end: flex-end,
|
|
2090
|
+
self-start: self-start,
|
|
2091
|
+
self-end: self-end,
|
|
2092
|
+
left: left,
|
|
2093
|
+
right: right,
|
|
2094
|
+
baseline: baseline,
|
|
2095
|
+
first-baseline: first baseline,
|
|
2096
|
+
last-baseline: last baseline
|
|
2062
2097
|
),
|
|
2063
2098
|
"justify-self": (
|
|
2064
2099
|
auto: auto,
|
|
2065
2100
|
normal: normal,
|
|
2066
|
-
|
|
2067
|
-
end: flex-end,
|
|
2101
|
+
stretch: stretch,
|
|
2068
2102
|
center: center,
|
|
2069
|
-
|
|
2103
|
+
start: start,
|
|
2104
|
+
end: end,
|
|
2105
|
+
flex-start: flex-start,
|
|
2106
|
+
flex-end: flex-end,
|
|
2107
|
+
self-start: self-start,
|
|
2108
|
+
self-end: self-end,
|
|
2109
|
+
baseline: baseline,
|
|
2110
|
+
first-baseline: first baseline,
|
|
2111
|
+
last-baseline: last baseline
|
|
2070
2112
|
),
|
|
2071
2113
|
"place-content": (
|
|
2072
2114
|
normal: normal,
|
|
2073
|
-
|
|
2074
|
-
end: flex-end,
|
|
2115
|
+
stretch: stretch,
|
|
2075
2116
|
center: center,
|
|
2117
|
+
start: start,
|
|
2118
|
+
end: end,
|
|
2119
|
+
flex-start: flex-start,
|
|
2120
|
+
flex-end: flex-end,
|
|
2121
|
+
baseline: baseline,
|
|
2076
2122
|
between: space-between,
|
|
2077
2123
|
around: space-around,
|
|
2078
|
-
evenly: space-evenly
|
|
2079
|
-
stretch: stretch
|
|
2124
|
+
evenly: space-evenly
|
|
2080
2125
|
),
|
|
2081
2126
|
"place-items": (
|
|
2082
2127
|
normal: normal,
|
|
2083
|
-
|
|
2084
|
-
end: flex-end,
|
|
2128
|
+
stretch: stretch,
|
|
2085
2129
|
center: center,
|
|
2086
|
-
|
|
2130
|
+
start: start,
|
|
2131
|
+
end: end,
|
|
2132
|
+
flex-start: flex-start,
|
|
2133
|
+
flex-end: flex-end,
|
|
2134
|
+
self-start: flex-start,
|
|
2135
|
+
self-end: flex-end,
|
|
2136
|
+
baseline: baseline
|
|
2087
2137
|
),
|
|
2088
2138
|
"place-self": (
|
|
2089
2139
|
auto: auto,
|
|
2090
2140
|
normal: normal,
|
|
2141
|
+
stretch: stretch,
|
|
2142
|
+
center: center,
|
|
2091
2143
|
start: flex-start,
|
|
2092
2144
|
end: flex-end,
|
|
2093
|
-
|
|
2094
|
-
|
|
2145
|
+
flex-start: flex-start,
|
|
2146
|
+
flex-end: flex-end,
|
|
2147
|
+
self-start: flex-start,
|
|
2148
|
+
self-end: flex-end,
|
|
2149
|
+
baseline: baseline
|
|
2095
2150
|
),
|
|
2096
2151
|
|
|
2097
2152
|
// Spacing
|
package/dist/meta/variables.json
CHANGED
|
@@ -53,6 +53,6 @@
|
|
|
53
53
|
},
|
|
54
54
|
"kendo-utils": {
|
|
55
55
|
"type": "Map",
|
|
56
|
-
"value": "(\"screen-readers\": true, \"aspect-ratio\": (auto: auto, 1: 1, square: 1 / 1, video: 16 / 9), \"container\": (), \"columns\": (), \"break-after\": (), \"break-before\": (), \"break-inside\": (), \"box-decoration-break\": (), \"box-sizing\": (), \"display\": (none, block, inline, inline-block, flex, inline-flex, grid, inline-grid, table, inline-table, list-item), \"float\": (left, right, none), \"clear\": (left, right, both, none), \"isolation\": (), \"object-fit\": (), \"object-position\": (), \"overflow\": (auto: auto, hidden: hidden, visible: visible, scroll: scroll, clip: clip, x-auto: auto, x-hidden: hidden, x-visible: visible, x-scroll: scroll, x-clip: clip, y-auto: auto, y-hidden: hidden, y-visible: visible, y-scroll: scroll, y-clip: clip), \"overscroll\": (), \"position\": (static, relative, absolute, fixed, sticky), \"inset\": (0: 0, 1: 1px, -1: -1px), \"visibility\": (visible, hidden), \"zindex\": (0: 0, 10: 10, 20: 20, 30: 30, 40: 40, 50: 50, auto: auto), \"flex-direction\": (row: row, row-reverse: row-reverse, col: column, col-reverse: column-reverse), \"flex-wrap\": (wrap, wrap-reverse, nowrap), \"flex\": (1: 1 1 0%, auto: 1 1 auto, initial: 0 1 auto, none: none), \"flex-grow\": (DEFAULT: 1, 0: 0), \"flex-shrink\": (DEFAULT: 1, 0: 0), \"flex-basis\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, \"auto\": auto, \"1/2\": 50%, \"1/3\": 33.333333%, \"2/3\": 66.666667%, \"1/4\": 25%, \"2/4\": 50%, \"3/4\": 75%, \"1/5\": 20%, \"2/5\": 40%, \"3/5\": 60%, \"4/5\": 80%, \"1/6\": 16.666667%, \"2/6\": 33.333333%, \"3/6\": 50%, \"4/6\": 66.666667%, \"5/6\": 83.333333%, \"1/12\": 8.333333%, \"2/12\": 16.666667%, \"3/12\": 25%, \"4/12\": 33.333333%, \"5/12\": 41.666667%, \"6/12\": 50%, \"7/12\": 58.333333%, \"8/12\": 66.666667%, \"9/12\": 75%, \"10/12\": 83.333333%, \"11/12\": 91.666667%, \"full\": 100%, \"min\": min-content, \"max\": max-content, \"fit\": fit-content), \"order\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, first: -9999, last: 9999, none: 0), \"grid-template-columns\": (1: repeat(1, minmax(0, 1fr)), 2: repeat(2, minmax(0, 1fr)), 3: repeat(3, minmax(0, 1fr)), 4: repeat(4, minmax(0, 1fr)), 5: repeat(5, minmax(0, 1fr)), 6: repeat(6, minmax(0, 1fr)), 7: repeat(7, minmax(0, 1fr)), 8: repeat(8, minmax(0, 1fr)), 9: repeat(9, minmax(0, 1fr)), 10: repeat(10, minmax(0, 1fr)), 11: repeat(11, minmax(0, 1fr)), 12: repeat(12, minmax(0, 1fr)), none: none), \"grid-template-rows\": (1: repeat(1, minmax(0, 1fr)), 2: repeat(2, minmax(0, 1fr)), 3: repeat(3, minmax(0, 1fr)), 4: repeat(4, minmax(0, 1fr)), 5: repeat(5, minmax(0, 1fr)), 6: repeat(6, minmax(0, 1fr)), 7: repeat(7, minmax(0, 1fr)), 8: repeat(8, minmax(0, 1fr)), 9: repeat(9, minmax(0, 1fr)), 10: repeat(10, minmax(0, 1fr)), 11: repeat(11, minmax(0, 1fr)), 12: repeat(12, minmax(0, 1fr)), none: none), \"grid-column-start\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, 13: 13, auto: auto), \"grid-column-end\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, 13: 13, auto: auto), \"grid-column-span\": (1: span 1/span 1, 2: span 2/span 2, 3: span 3/span 3, 4: span 4/span 4, 5: span 5/span 5, 6: span 6/span 6, 7: span 7/span 7, 8: span 8/span 8, 9: span 9/span 9, 10: span 10/span 10, 11: span 11/span 11, 12: span 12/span 12, full: 1 / -1, auto: auto), \"grid-row-start\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, 13: 13, auto: auto), \"grid-row-end\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, 13: 13, auto: auto), \"grid-row-span\": (1: span 1/span 1, 2: span 2/span 2, 3: span 3/span 3, 4: span 4/span 4, 5: span 5/span 5, 6: span 6/span 6, 7: span 7/span 7, 8: span 8/span 8, 9: span 9/span 9, 10: span 10/span 10, 11: span 11/span 11, 12: span 12/span 12, full: span 1/span -1, auto: auto), \"grid-auto-flow\": (row: row, col: column, row-dense: row dense, col-dense: column dense, unset: unset), \"grid-auto-columns\": (auto: auto, min: min-content, max: max-content, fr: minmax(0, 1fr)), \"grid-auto-rows\": (auto: auto, min: min-content, max: max-content, fr: minmax(0, 1fr)), \"gap\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, xs: 0.25rem, sm: 0.5rem, md: 0.75rem, lg: 1rem, xl: 1.5rem, thin: 0.125rem, hair: 1px), \"align-content\": (normal: normal, stretch: stretch, start: flex-start, end: flex-end, center: center, between: space-between, around: space-around, evenly: space-evenly), \"align-items\": (normal: normal, start: flex-start, end: flex-end, center: center, stretch: stretch), \"align-self\": (auto: auto, normal: normal, stretch: stretch, start: flex-start, end: flex-end, center: center), \"justify-content\": (normal: normal, start: flex-start, end: flex-end, center: center, between: space-between, around: space-around, evenly: space-evenly, stretch: stretch), \"justify-items\": (normal: normal, start: flex-start, end: flex-end, center: center, stretch: stretch), \"justify-self\": (auto: auto, normal: normal, start: flex-start, end: flex-end, center: center, stretch: stretch), \"place-content\": (normal: normal, start: flex-start, end: flex-end, center: center, between: space-between, around: space-around, evenly: space-evenly, stretch: stretch), \"place-items\": (normal: normal, start: flex-start, end: flex-end, center: center, stretch: stretch), \"place-self\": (auto: auto, normal: normal, start: flex-start, end: flex-end, center: center, stretch: stretch), \"margin\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, xs: 0.25rem, sm: 0.5rem, md: 0.75rem, lg: 1rem, xl: 1.5rem, thin: 0.125rem, hair: 1px), \"padding\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, xs: 0.25rem, sm: 0.5rem, md: 0.75rem, lg: 1rem, xl: 1.5rem, thin: 0.125rem, hair: 1px), \"space-between\": (), \"width\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, \"auto\": auto, \"1/2\": 50%, \"1/3\": 33.333333%, \"2/3\": 66.666667%, \"1/4\": 25%, \"2/4\": 50%, \"3/4\": 75%, \"1/5\": 20%, \"2/5\": 40%, \"3/5\": 60%, \"4/5\": 80%, \"1/6\": 16.666667%, \"2/6\": 33.333333%, \"3/6\": 50%, \"4/6\": 66.666667%, \"5/6\": 83.333333%, \"1/12\": 8.333333%, \"2/12\": 16.666667%, \"3/12\": 25%, \"4/12\": 33.333333%, \"5/12\": 41.666667%, \"6/12\": 50%, \"7/12\": 58.333333%, \"8/12\": 66.666667%, \"9/12\": 75%, \"10/12\": 83.333333%, \"11/12\": 91.666667%, \"full\": 100%, \"min\": min-content, \"max\": max-content, \"fit\": fit-content, screen: 100vw), \"min-width\": (0: 0, full: 100%, screen: 100vw, min: min-content, max: max-content, fit: fit-content), \"max-width\": (none: none, 0: 0, full: 100%, screen: 100vw, min: min-content, max: max-content, fit: fit-content), \"height\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, \"auto\": auto, \"1/2\": 50%, \"1/3\": 33.333333%, \"2/3\": 66.666667%, \"1/4\": 25%, \"2/4\": 50%, \"3/4\": 75%, \"1/5\": 20%, \"2/5\": 40%, \"3/5\": 60%, \"4/5\": 80%, \"1/6\": 16.666667%, \"2/6\": 33.333333%, \"3/6\": 50%, \"4/6\": 66.666667%, \"5/6\": 83.333333%, \"1/12\": 8.333333%, \"2/12\": 16.666667%, \"3/12\": 25%, \"4/12\": 33.333333%, \"5/12\": 41.666667%, \"6/12\": 50%, \"7/12\": 58.333333%, \"8/12\": 66.666667%, \"9/12\": 75%, \"10/12\": 83.333333%, \"11/12\": 91.666667%, \"full\": 100%, \"min\": min-content, \"max\": max-content, \"fit\": fit-content, screen: 100vh), \"min-height\": (0: 0, full: 100%, screen: 100vh, min: min-content, max: max-content, fit: fit-content), \"max-height\": (none: none, 0: 0, full: 100%, screen: 100vh, min: min-content, max: max-content, fit: fit-content), \"font-family\": (), \"font-size\": (), \"font-smoothing\": (), \"font-style\": (italic: italic, non-italic: normal), \"font-weight\": (\"thin\": 100, \"extralight\": 200, \"light\": 300, \"normal\": 400, \"medium\": 500, \"semibold\": 600, \"bold\": 700, \"extrabold\": 800, \"black\": 900), \"font-variant-numeric\": (), \"letter-spacing\": (), \"line-height\": (), \"list-style-type\": (), \"list-style-position\": (), \"text-align\": (left, right, center, justify), \"text-color\": (\"inherit\": inherit, \"current\": currentColor, \"transparent\": transparent, \"black\": black, \"white\": white), \"text-decoration\": (), \"text-decoration-width\": (), \"text-decoration-style\": (), \"text-decoration-color\": (), \"text-decoration-offset\": (), \"text-transform\": (uppercase: uppercase, lowercase: lowercase, capitalize: capitalize, normal-case: none), \"text-overflow\": (), \"text-indent\": (), \"vertical-align\": (), \"white-space\": (normal, nowrap, pre, pre-line, pre-wrap, break-spaces), \"word-break\": (), \"background-color\": (\"inherit\": inherit, \"transparent\": transparent, \"black\": black, \"white\": white), \"border-width\": (DEFAULT: 1px, 0: 0, 2: 2px, 4: 4px, 8: 8px), \"border-style\": (solid, dashed, dotted, double, hidden, none), \"border-color\": (\"inherit\": inherit, \"current\": currentColor, \"transparent\": transparent, \"black\": black, \"white\": white), \"border-radius\": (DEFAULT: 0.25rem, 0: 0, sm: 0.125rem, md: 0.25rem, lg: 0.5rem, full: 9999px), \"outline-width\": (DEFAULT: 1px, 0: 0, 2: 2px, 4: 4px, 8: 8px), \"outline-style\": (solid, dashed, dotted, double, groove, ridge, inset, outset, none), \"outline-color\": (), \"outline-offset\": (0: 0, 1: 1px, 2: 2px, 4: 4px, 8: 8px), \"border-collapse\": (collapse, separate), \"table-layout\": (auto, fixed), \"flip\": true, \"scale\": (0: 0, 0.25: 0.25, 0.5: 0.5, 0.75: 0.75, 1: 1, 1.25: 1.25, 1.5: 1.5, 2: 2), \"rotate\": (0: 0deg, 45: 45deg, 90: 90deg, 135: 135deg, 180: 180deg, 225: 225deg, 270: 270deg, 315: 315deg), \"translate\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, \"1/2\": 50%, \"1/3\": 33.333333%, \"2/3\": 66.666667%, \"1/4\": 25%, \"2/4\": 50%, \"3/4\": 75%, \"1/5\": 20%, \"2/5\": 40%, \"3/5\": 60%, \"4/5\": 80%, \"1/6\": 16.666667%, \"2/6\": 33.333333%, \"3/6\": 50%, \"4/6\": 66.666667%, \"5/6\": 83.333333%, \"1/12\": 8.333333%, \"2/12\": 16.666667%, \"3/12\": 25%, \"4/12\": 33.333333%, \"5/12\": 41.666667%, \"6/12\": 50%, \"7/12\": 58.333333%, \"8/12\": 66.666667%, \"9/12\": 75%, \"10/12\": 83.333333%, \"11/12\": 91.666667%, \"full\": 100%), \"skew\": (0: 0deg, 1: 1deg, 2: 2deg, 3: 3deg, 4: 4deg, 5: 5deg, 6: 6deg, 7: 7deg, 8: 8deg, 9: 9deg, 10: 10deg, 11: 11deg, 12: 12deg), \"origin\": (center: center, top: top, right: right, bottom: bottom, left: left, top-left: top left, top-right: top right, bottom-left: bottom left, bottom-right: bottom right), \"accent-color\": (), \"appearance\": (none, auto), \"cursor\": (none, auto, default, context-menu, help, pointer, progress, wait, cell, crosshair, text, vertical-text, alias, copy, move, no-drop, not-allowed, e-resize, n-resize, ne-resize, nw-resize, s-resize, se-resize, sw-resize, w-resize, ew-resize, ns-resize, nesw-resize, nwse-resize, col-resize, row-resize, all-scroll, zoom-in, zoom-out, grab, grabbing), \"caret-color\": (), \"pointer-events\": (none, auto), \"resize\": (DEFAULT: both, none: none, x: horizontal, y: vertical), \"scroll-behavior\": (auto, smooth), \"scroll-snap-type\": (none: none, snap-x: x var(--k-scroll-snap-strictness), snap-y: y var(--k-scroll-snap-strictness), snap-both: both var(--k-scroll-snap-strictness)), \"scroll-snap-align\": (start, end, center, none), \"scroll-snap-stop\": (normal, always), \"scroll-margin\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem), \"scroll-padding\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem), \"touch-action\": (none, auto, pan-x, pan-left, pan-right, pan-y, pan-up, pan-down, pinch-zoom, manipulation), \"user-select\": (none, auto, text, all, contain), \"will-change\": (auto: auto, scroll: scroll-position, contents: contents, transform: transform))"
|
|
56
|
+
"value": "(\"screen-readers\": true, \"aspect-ratio\": (auto: auto, 1: 1, square: 1 / 1, video: 16 / 9), \"container\": (), \"columns\": (), \"break-after\": (), \"break-before\": (), \"break-inside\": (), \"box-decoration-break\": (), \"box-sizing\": (), \"display\": (none, block, inline, inline-block, flex, inline-flex, grid, inline-grid, table, inline-table, list-item), \"float\": (left, right, none), \"clear\": (left, right, both, none), \"isolation\": (), \"object-fit\": (), \"object-position\": (), \"overflow\": (auto: auto, hidden: hidden, visible: visible, scroll: scroll, clip: clip, x-auto: auto, x-hidden: hidden, x-visible: visible, x-scroll: scroll, x-clip: clip, y-auto: auto, y-hidden: hidden, y-visible: visible, y-scroll: scroll, y-clip: clip), \"overscroll\": (), \"position\": (static, relative, absolute, fixed, sticky), \"inset\": (0: 0, 1: 1px, -1: -1px), \"visibility\": (visible, hidden), \"zindex\": (0: 0, 10: 10, 20: 20, 30: 30, 40: 40, 50: 50, auto: auto), \"flex-direction\": (row: row, row-reverse: row-reverse, col: column, col-reverse: column-reverse), \"flex-wrap\": (wrap, wrap-reverse, nowrap), \"flex\": (1: 1 1 0%, auto: 1 1 auto, initial: 0 1 auto, none: none), \"flex-grow\": (DEFAULT: 1, 0: 0), \"flex-shrink\": (DEFAULT: 1, 0: 0), \"flex-basis\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, \"auto\": auto, \"1/2\": 50%, \"1/3\": 33.333333%, \"2/3\": 66.666667%, \"1/4\": 25%, \"2/4\": 50%, \"3/4\": 75%, \"1/5\": 20%, \"2/5\": 40%, \"3/5\": 60%, \"4/5\": 80%, \"1/6\": 16.666667%, \"2/6\": 33.333333%, \"3/6\": 50%, \"4/6\": 66.666667%, \"5/6\": 83.333333%, \"1/12\": 8.333333%, \"2/12\": 16.666667%, \"3/12\": 25%, \"4/12\": 33.333333%, \"5/12\": 41.666667%, \"6/12\": 50%, \"7/12\": 58.333333%, \"8/12\": 66.666667%, \"9/12\": 75%, \"10/12\": 83.333333%, \"11/12\": 91.666667%, \"full\": 100%, \"min\": min-content, \"max\": max-content, \"fit\": fit-content), \"order\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, first: -9999, last: 9999, none: 0), \"grid-template-columns\": (1: repeat(1, minmax(0, 1fr)), 2: repeat(2, minmax(0, 1fr)), 3: repeat(3, minmax(0, 1fr)), 4: repeat(4, minmax(0, 1fr)), 5: repeat(5, minmax(0, 1fr)), 6: repeat(6, minmax(0, 1fr)), 7: repeat(7, minmax(0, 1fr)), 8: repeat(8, minmax(0, 1fr)), 9: repeat(9, minmax(0, 1fr)), 10: repeat(10, minmax(0, 1fr)), 11: repeat(11, minmax(0, 1fr)), 12: repeat(12, minmax(0, 1fr)), none: none), \"grid-template-rows\": (1: repeat(1, minmax(0, 1fr)), 2: repeat(2, minmax(0, 1fr)), 3: repeat(3, minmax(0, 1fr)), 4: repeat(4, minmax(0, 1fr)), 5: repeat(5, minmax(0, 1fr)), 6: repeat(6, minmax(0, 1fr)), 7: repeat(7, minmax(0, 1fr)), 8: repeat(8, minmax(0, 1fr)), 9: repeat(9, minmax(0, 1fr)), 10: repeat(10, minmax(0, 1fr)), 11: repeat(11, minmax(0, 1fr)), 12: repeat(12, minmax(0, 1fr)), none: none), \"grid-column-start\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, 13: 13, auto: auto), \"grid-column-end\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, 13: 13, auto: auto), \"grid-column-span\": (1: span 1/span 1, 2: span 2/span 2, 3: span 3/span 3, 4: span 4/span 4, 5: span 5/span 5, 6: span 6/span 6, 7: span 7/span 7, 8: span 8/span 8, 9: span 9/span 9, 10: span 10/span 10, 11: span 11/span 11, 12: span 12/span 12, full: 1 / -1, auto: auto), \"grid-row-start\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, 13: 13, auto: auto), \"grid-row-end\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, 13: 13, auto: auto), \"grid-row-span\": (1: span 1/span 1, 2: span 2/span 2, 3: span 3/span 3, 4: span 4/span 4, 5: span 5/span 5, 6: span 6/span 6, 7: span 7/span 7, 8: span 8/span 8, 9: span 9/span 9, 10: span 10/span 10, 11: span 11/span 11, 12: span 12/span 12, full: span 1/span -1, auto: auto), \"grid-auto-flow\": (row: row, col: column, row-dense: row dense, col-dense: column dense, unset: unset), \"grid-auto-columns\": (auto: auto, min: min-content, max: max-content, fr: minmax(0, 1fr)), \"grid-auto-rows\": (auto: auto, min: min-content, max: max-content, fr: minmax(0, 1fr)), \"gap\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, xs: 0.25rem, sm: 0.5rem, md: 0.75rem, lg: 1rem, xl: 1.5rem, thin: 0.125rem, hair: 1px), \"align-content\": (normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, baseline: baseline, first-baseline: first baseline, last-baseline: last baseline, between: space-between, around: space-around, evenly: space-evenly), \"align-items\": (normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, baseline: baseline, first-baseline: first baseline, last-baseline: last baseline, self-start: self-start, self-end: self-end), \"align-self\": (auto: auto, normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, baseline: baseline, first-baseline: first baseline, last-baseline: last baseline, self-start: self-start, self-end: self-end), \"justify-content\": (normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, left: left, right: right, baseline: baseline, first-baseline: first baseline, last-baseline: last baseline, between: space-between, around: space-around, evenly: space-evenly), \"justify-items\": (normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, self-start: self-start, self-end: self-end, left: left, right: right, baseline: baseline, first-baseline: first baseline, last-baseline: last baseline), \"justify-self\": (auto: auto, normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, self-start: self-start, self-end: self-end, baseline: baseline, first-baseline: first baseline, last-baseline: last baseline), \"place-content\": (normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, baseline: baseline, between: space-between, around: space-around, evenly: space-evenly), \"place-items\": (normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, self-start: flex-start, self-end: flex-end, baseline: baseline), \"place-self\": (auto: auto, normal: normal, stretch: stretch, center: center, start: flex-start, end: flex-end, flex-start: flex-start, flex-end: flex-end, self-start: flex-start, self-end: flex-end, baseline: baseline), \"margin\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, xs: 0.25rem, sm: 0.5rem, md: 0.75rem, lg: 1rem, xl: 1.5rem, thin: 0.125rem, hair: 1px), \"padding\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, xs: 0.25rem, sm: 0.5rem, md: 0.75rem, lg: 1rem, xl: 1.5rem, thin: 0.125rem, hair: 1px), \"space-between\": (), \"width\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, \"auto\": auto, \"1/2\": 50%, \"1/3\": 33.333333%, \"2/3\": 66.666667%, \"1/4\": 25%, \"2/4\": 50%, \"3/4\": 75%, \"1/5\": 20%, \"2/5\": 40%, \"3/5\": 60%, \"4/5\": 80%, \"1/6\": 16.666667%, \"2/6\": 33.333333%, \"3/6\": 50%, \"4/6\": 66.666667%, \"5/6\": 83.333333%, \"1/12\": 8.333333%, \"2/12\": 16.666667%, \"3/12\": 25%, \"4/12\": 33.333333%, \"5/12\": 41.666667%, \"6/12\": 50%, \"7/12\": 58.333333%, \"8/12\": 66.666667%, \"9/12\": 75%, \"10/12\": 83.333333%, \"11/12\": 91.666667%, \"full\": 100%, \"min\": min-content, \"max\": max-content, \"fit\": fit-content, screen: 100vw), \"min-width\": (0: 0, full: 100%, screen: 100vw, min: min-content, max: max-content, fit: fit-content), \"max-width\": (none: none, 0: 0, full: 100%, screen: 100vw, min: min-content, max: max-content, fit: fit-content), \"height\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, \"auto\": auto, \"1/2\": 50%, \"1/3\": 33.333333%, \"2/3\": 66.666667%, \"1/4\": 25%, \"2/4\": 50%, \"3/4\": 75%, \"1/5\": 20%, \"2/5\": 40%, \"3/5\": 60%, \"4/5\": 80%, \"1/6\": 16.666667%, \"2/6\": 33.333333%, \"3/6\": 50%, \"4/6\": 66.666667%, \"5/6\": 83.333333%, \"1/12\": 8.333333%, \"2/12\": 16.666667%, \"3/12\": 25%, \"4/12\": 33.333333%, \"5/12\": 41.666667%, \"6/12\": 50%, \"7/12\": 58.333333%, \"8/12\": 66.666667%, \"9/12\": 75%, \"10/12\": 83.333333%, \"11/12\": 91.666667%, \"full\": 100%, \"min\": min-content, \"max\": max-content, \"fit\": fit-content, screen: 100vh), \"min-height\": (0: 0, full: 100%, screen: 100vh, min: min-content, max: max-content, fit: fit-content), \"max-height\": (none: none, 0: 0, full: 100%, screen: 100vh, min: min-content, max: max-content, fit: fit-content), \"font-family\": (), \"font-size\": (), \"font-smoothing\": (), \"font-style\": (italic: italic, non-italic: normal), \"font-weight\": (\"thin\": 100, \"extralight\": 200, \"light\": 300, \"normal\": 400, \"medium\": 500, \"semibold\": 600, \"bold\": 700, \"extrabold\": 800, \"black\": 900), \"font-variant-numeric\": (), \"letter-spacing\": (), \"line-height\": (), \"list-style-type\": (), \"list-style-position\": (), \"text-align\": (left, right, center, justify), \"text-color\": (\"inherit\": inherit, \"current\": currentColor, \"transparent\": transparent, \"black\": black, \"white\": white), \"text-decoration\": (), \"text-decoration-width\": (), \"text-decoration-style\": (), \"text-decoration-color\": (), \"text-decoration-offset\": (), \"text-transform\": (uppercase: uppercase, lowercase: lowercase, capitalize: capitalize, normal-case: none), \"text-overflow\": (), \"text-indent\": (), \"vertical-align\": (), \"white-space\": (normal, nowrap, pre, pre-line, pre-wrap, break-spaces), \"word-break\": (), \"background-color\": (\"inherit\": inherit, \"transparent\": transparent, \"black\": black, \"white\": white), \"border-width\": (DEFAULT: 1px, 0: 0, 2: 2px, 4: 4px, 8: 8px), \"border-style\": (solid, dashed, dotted, double, hidden, none), \"border-color\": (\"inherit\": inherit, \"current\": currentColor, \"transparent\": transparent, \"black\": black, \"white\": white), \"border-radius\": (DEFAULT: 0.25rem, 0: 0, sm: 0.125rem, md: 0.25rem, lg: 0.5rem, full: 9999px), \"outline-width\": (DEFAULT: 1px, 0: 0, 2: 2px, 4: 4px, 8: 8px), \"outline-style\": (solid, dashed, dotted, double, groove, ridge, inset, outset, none), \"outline-color\": (), \"outline-offset\": (0: 0, 1: 1px, 2: 2px, 4: 4px, 8: 8px), \"border-collapse\": (collapse, separate), \"table-layout\": (auto, fixed), \"flip\": true, \"scale\": (0: 0, 0.25: 0.25, 0.5: 0.5, 0.75: 0.75, 1: 1, 1.25: 1.25, 1.5: 1.5, 2: 2), \"rotate\": (0: 0deg, 45: 45deg, 90: 90deg, 135: 135deg, 180: 180deg, 225: 225deg, 270: 270deg, 315: 315deg), \"translate\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, \"1/2\": 50%, \"1/3\": 33.333333%, \"2/3\": 66.666667%, \"1/4\": 25%, \"2/4\": 50%, \"3/4\": 75%, \"1/5\": 20%, \"2/5\": 40%, \"3/5\": 60%, \"4/5\": 80%, \"1/6\": 16.666667%, \"2/6\": 33.333333%, \"3/6\": 50%, \"4/6\": 66.666667%, \"5/6\": 83.333333%, \"1/12\": 8.333333%, \"2/12\": 16.666667%, \"3/12\": 25%, \"4/12\": 33.333333%, \"5/12\": 41.666667%, \"6/12\": 50%, \"7/12\": 58.333333%, \"8/12\": 66.666667%, \"9/12\": 75%, \"10/12\": 83.333333%, \"11/12\": 91.666667%, \"full\": 100%), \"skew\": (0: 0deg, 1: 1deg, 2: 2deg, 3: 3deg, 4: 4deg, 5: 5deg, 6: 6deg, 7: 7deg, 8: 8deg, 9: 9deg, 10: 10deg, 11: 11deg, 12: 12deg), \"origin\": (center: center, top: top, right: right, bottom: bottom, left: left, top-left: top left, top-right: top right, bottom-left: bottom left, bottom-right: bottom right), \"accent-color\": (), \"appearance\": (none, auto), \"cursor\": (none, auto, default, context-menu, help, pointer, progress, wait, cell, crosshair, text, vertical-text, alias, copy, move, no-drop, not-allowed, e-resize, n-resize, ne-resize, nw-resize, s-resize, se-resize, sw-resize, w-resize, ew-resize, ns-resize, nesw-resize, nwse-resize, col-resize, row-resize, all-scroll, zoom-in, zoom-out, grab, grabbing), \"caret-color\": (), \"pointer-events\": (none, auto), \"resize\": (DEFAULT: both, none: none, x: horizontal, y: vertical), \"scroll-behavior\": (auto, smooth), \"scroll-snap-type\": (none: none, snap-x: x var(--k-scroll-snap-strictness), snap-y: y var(--k-scroll-snap-strictness), snap-both: both var(--k-scroll-snap-strictness)), \"scroll-snap-align\": (start, end, center, none), \"scroll-snap-stop\": (normal, always), \"scroll-margin\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem), \"scroll-padding\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem), \"touch-action\": (none, auto, pan-x, pan-left, pan-right, pan-y, pan-up, pan-down, pinch-zoom, manipulation), \"user-select\": (none, auto, text, all, contain), \"will-change\": (auto: auto, scroll: scroll-position, contents: contents, transform: transform))"
|
|
57
57
|
}
|
|
58
58
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-utils",
|
|
3
3
|
"description": "Utility first library alongside Kendo UI",
|
|
4
|
-
"version": "6.1.1-dev.
|
|
4
|
+
"version": "6.1.1-dev.25+bd878b468",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"postpublish": "echo 'no postpublish for utils'"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@progress/kendo-theme-core": "
|
|
44
|
+
"@progress/kendo-theme-core": "6.1.1-dev.25+bd878b468"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "bd878b468ff65ff14c8a636431427ad2ba4b7b7e"
|
|
47
47
|
}
|
package/scss/_variables.scss
CHANGED
|
@@ -382,77 +382,132 @@ $kendo-utils: (
|
|
|
382
382
|
"align-content": (
|
|
383
383
|
normal: normal,
|
|
384
384
|
stretch: stretch,
|
|
385
|
-
start: flex-start,
|
|
386
|
-
end: flex-end,
|
|
387
385
|
center: center,
|
|
386
|
+
start: start,
|
|
387
|
+
end: end,
|
|
388
|
+
flex-start: flex-start,
|
|
389
|
+
flex-end: flex-end,
|
|
390
|
+
baseline: baseline,
|
|
391
|
+
first-baseline: first baseline,
|
|
392
|
+
last-baseline: last baseline,
|
|
388
393
|
between: space-between,
|
|
389
394
|
around: space-around,
|
|
390
395
|
evenly: space-evenly
|
|
391
396
|
),
|
|
392
397
|
"align-items": (
|
|
393
398
|
normal: normal,
|
|
394
|
-
|
|
395
|
-
end: flex-end,
|
|
399
|
+
stretch: stretch,
|
|
396
400
|
center: center,
|
|
397
|
-
|
|
401
|
+
start: start,
|
|
402
|
+
end: end,
|
|
403
|
+
flex-start: flex-start,
|
|
404
|
+
flex-end: flex-end,
|
|
405
|
+
baseline: baseline,
|
|
406
|
+
first-baseline: first baseline,
|
|
407
|
+
last-baseline: last baseline,
|
|
408
|
+
self-start: self-start,
|
|
409
|
+
self-end: self-end
|
|
398
410
|
),
|
|
399
411
|
"align-self": (
|
|
400
412
|
auto: auto,
|
|
401
413
|
normal: normal,
|
|
402
414
|
stretch: stretch,
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
415
|
+
center: center,
|
|
416
|
+
start: start,
|
|
417
|
+
end: end,
|
|
418
|
+
flex-start: flex-start,
|
|
419
|
+
flex-end: flex-end,
|
|
420
|
+
baseline: baseline,
|
|
421
|
+
first-baseline: first baseline,
|
|
422
|
+
last-baseline: last baseline,
|
|
423
|
+
self-start: self-start,
|
|
424
|
+
self-end: self-end
|
|
406
425
|
),
|
|
407
426
|
"justify-content": (
|
|
408
427
|
normal: normal,
|
|
409
|
-
|
|
410
|
-
end: flex-end,
|
|
428
|
+
stretch: stretch,
|
|
411
429
|
center: center,
|
|
430
|
+
start: start,
|
|
431
|
+
end: end,
|
|
432
|
+
flex-start: flex-start,
|
|
433
|
+
flex-end: flex-end,
|
|
434
|
+
left: left,
|
|
435
|
+
right: right,
|
|
436
|
+
baseline: baseline,
|
|
437
|
+
first-baseline: first baseline,
|
|
438
|
+
last-baseline: last baseline,
|
|
412
439
|
between: space-between,
|
|
413
440
|
around: space-around,
|
|
414
|
-
evenly: space-evenly
|
|
415
|
-
stretch: stretch
|
|
441
|
+
evenly: space-evenly
|
|
416
442
|
),
|
|
417
443
|
"justify-items": (
|
|
418
444
|
normal: normal,
|
|
419
|
-
|
|
420
|
-
end: flex-end,
|
|
445
|
+
stretch: stretch,
|
|
421
446
|
center: center,
|
|
422
|
-
|
|
447
|
+
start: start,
|
|
448
|
+
end: end,
|
|
449
|
+
flex-start: flex-start,
|
|
450
|
+
flex-end: flex-end,
|
|
451
|
+
self-start: self-start,
|
|
452
|
+
self-end: self-end,
|
|
453
|
+
left: left,
|
|
454
|
+
right: right,
|
|
455
|
+
baseline: baseline,
|
|
456
|
+
first-baseline: first baseline,
|
|
457
|
+
last-baseline: last baseline
|
|
423
458
|
),
|
|
424
459
|
"justify-self": (
|
|
425
460
|
auto: auto,
|
|
426
461
|
normal: normal,
|
|
427
|
-
|
|
428
|
-
end: flex-end,
|
|
462
|
+
stretch: stretch,
|
|
429
463
|
center: center,
|
|
430
|
-
|
|
464
|
+
start: start,
|
|
465
|
+
end: end,
|
|
466
|
+
flex-start: flex-start,
|
|
467
|
+
flex-end: flex-end,
|
|
468
|
+
self-start: self-start,
|
|
469
|
+
self-end: self-end,
|
|
470
|
+
baseline: baseline,
|
|
471
|
+
first-baseline: first baseline,
|
|
472
|
+
last-baseline: last baseline
|
|
431
473
|
),
|
|
432
474
|
"place-content": (
|
|
433
475
|
normal: normal,
|
|
434
|
-
|
|
435
|
-
end: flex-end,
|
|
476
|
+
stretch: stretch,
|
|
436
477
|
center: center,
|
|
478
|
+
start: start,
|
|
479
|
+
end: end,
|
|
480
|
+
flex-start: flex-start,
|
|
481
|
+
flex-end: flex-end,
|
|
482
|
+
baseline: baseline,
|
|
437
483
|
between: space-between,
|
|
438
484
|
around: space-around,
|
|
439
|
-
evenly: space-evenly
|
|
440
|
-
stretch: stretch
|
|
485
|
+
evenly: space-evenly
|
|
441
486
|
),
|
|
442
487
|
"place-items": (
|
|
443
488
|
normal: normal,
|
|
444
|
-
|
|
445
|
-
end: flex-end,
|
|
489
|
+
stretch: stretch,
|
|
446
490
|
center: center,
|
|
447
|
-
|
|
491
|
+
start: start,
|
|
492
|
+
end: end,
|
|
493
|
+
flex-start: flex-start,
|
|
494
|
+
flex-end: flex-end,
|
|
495
|
+
self-start: flex-start,
|
|
496
|
+
self-end: flex-end,
|
|
497
|
+
baseline: baseline
|
|
448
498
|
),
|
|
449
499
|
"place-self": (
|
|
450
500
|
auto: auto,
|
|
451
501
|
normal: normal,
|
|
502
|
+
stretch: stretch,
|
|
503
|
+
center: center,
|
|
452
504
|
start: flex-start,
|
|
453
505
|
end: flex-end,
|
|
454
|
-
|
|
455
|
-
|
|
506
|
+
flex-start: flex-start,
|
|
507
|
+
flex-end: flex-end,
|
|
508
|
+
self-start: flex-start,
|
|
509
|
+
self-end: flex-end,
|
|
510
|
+
baseline: baseline
|
|
456
511
|
),
|
|
457
512
|
|
|
458
513
|
// Spacing
|