@kofile/gds-foundations 1.0.0-alpha.10 → 1.0.0-alpha.11
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/build/css/utilities/flex.css +1 -1
- package/build/css/utilities/height.css +53 -8
- package/build/css/utilities/index.css +22 -22
- package/build/css/utilities/max-height.css +8 -8
- package/build/css/utilities/position.css +191 -0
- package/build/css/utilities/width.css +86 -8
- package/package.json +1 -1
|
@@ -4,27 +4,27 @@
|
|
|
4
4
|
.h-px {
|
|
5
5
|
height: 1px !important;
|
|
6
6
|
}
|
|
7
|
-
|
|
7
|
+
.h-0.5 {
|
|
8
8
|
height: var(--primitive-2) !important;
|
|
9
|
-
}
|
|
9
|
+
}
|
|
10
10
|
.h-1 {
|
|
11
11
|
height: var(--primitive-4) !important;
|
|
12
12
|
}
|
|
13
|
-
|
|
13
|
+
.h-1.5 {
|
|
14
14
|
height: var(--primitive-6) !important;
|
|
15
|
-
}
|
|
15
|
+
}
|
|
16
16
|
.h-2 {
|
|
17
17
|
height: var(--primitive-8) !important;
|
|
18
18
|
}
|
|
19
|
-
|
|
19
|
+
.h-2.5 {
|
|
20
20
|
height: var(--primitive-10) !important;
|
|
21
|
-
}
|
|
21
|
+
}
|
|
22
22
|
.h-3 {
|
|
23
23
|
height: var(--primitive-12) !important;
|
|
24
24
|
}
|
|
25
|
-
|
|
25
|
+
.h-3.5 {
|
|
26
26
|
height: var(--primitive-14) !important;
|
|
27
|
-
}
|
|
27
|
+
}
|
|
28
28
|
.h-4 {
|
|
29
29
|
height: var(--primitive-16) !important;
|
|
30
30
|
}
|
|
@@ -106,6 +106,51 @@
|
|
|
106
106
|
.h-auto {
|
|
107
107
|
height: auto !important;
|
|
108
108
|
}
|
|
109
|
+
/* .h-1/2 {
|
|
110
|
+
height: 50% !important;
|
|
111
|
+
}
|
|
112
|
+
.h-1/3 {
|
|
113
|
+
height: 33.333333% !important;
|
|
114
|
+
}
|
|
115
|
+
.h-2/3 {
|
|
116
|
+
height: 66.666667% !important;
|
|
117
|
+
}
|
|
118
|
+
.h-1/4 {
|
|
119
|
+
height: 25% !important;
|
|
120
|
+
}
|
|
121
|
+
.h-2/4 {
|
|
122
|
+
height: 50% !important;
|
|
123
|
+
}
|
|
124
|
+
.h-3/4 {
|
|
125
|
+
height: 75% !important;
|
|
126
|
+
}
|
|
127
|
+
.h-1/5 {
|
|
128
|
+
height: 20% !important;
|
|
129
|
+
}
|
|
130
|
+
.h-2/5 {
|
|
131
|
+
height: 40% !important;
|
|
132
|
+
}
|
|
133
|
+
.h-3/5 {
|
|
134
|
+
height: 60% !important;
|
|
135
|
+
}
|
|
136
|
+
.h-4/5 {
|
|
137
|
+
height: 80% !important;
|
|
138
|
+
}
|
|
139
|
+
.h-1/6 {
|
|
140
|
+
height: 16.666667% !important;
|
|
141
|
+
}
|
|
142
|
+
.h-2/6 {
|
|
143
|
+
height: 33.333333% !important;
|
|
144
|
+
}
|
|
145
|
+
.h-3/6 {
|
|
146
|
+
height: 50% !important;
|
|
147
|
+
}
|
|
148
|
+
.h-4/6 {
|
|
149
|
+
height: 66.666667% !important;
|
|
150
|
+
}
|
|
151
|
+
.h-5/6 {
|
|
152
|
+
height: 83.333333% !important;
|
|
153
|
+
} */
|
|
109
154
|
.h-full {
|
|
110
155
|
height: 100% !important;
|
|
111
156
|
}
|
|
@@ -6,25 +6,25 @@
|
|
|
6
6
|
@import "./border-width.css";
|
|
7
7
|
@import "./cursor.css";
|
|
8
8
|
@import "./display.css";
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
9
|
+
@import "./flex.css";
|
|
10
|
+
@import "./flex-shrink.css";
|
|
11
|
+
@import "./font.css";
|
|
12
|
+
@import "./gap.css";
|
|
13
|
+
@import "./grid-auto-columns.css";
|
|
14
|
+
@import "./grid-template-columns.css";
|
|
15
|
+
@import "./height.css";
|
|
16
|
+
@import "./margin.css";
|
|
17
|
+
@import "./max-height.css";
|
|
18
|
+
@import "./max-width.css";
|
|
19
|
+
@import "./min-height.css";
|
|
20
|
+
@import "./min-width.css";
|
|
21
|
+
@import "./object-fit.css";
|
|
22
|
+
@import "./object-position.css";
|
|
23
|
+
@import "./overflow.css";
|
|
24
|
+
@import "./position.css";
|
|
25
|
+
@import "./padding.css";
|
|
26
|
+
@import "./text-overflow.css";
|
|
27
|
+
@import "./text-transform.css";
|
|
28
|
+
@import "./vertical-align.css";
|
|
29
|
+
@import "./white-space.css";
|
|
30
|
+
@import "./width.css";
|
|
@@ -4,27 +4,27 @@
|
|
|
4
4
|
.max-h-px {
|
|
5
5
|
max-height: 1px !important;
|
|
6
6
|
}
|
|
7
|
-
|
|
7
|
+
.max-h-0.5 {
|
|
8
8
|
max-height: var(--primitive-2) !important;
|
|
9
|
-
}
|
|
9
|
+
}
|
|
10
10
|
.max-h-1 {
|
|
11
11
|
max-height: var(--primitive-4) !important;
|
|
12
12
|
}
|
|
13
|
-
|
|
13
|
+
.max-h-1.5 {
|
|
14
14
|
max-height: var(--primitive-6) !important;
|
|
15
|
-
}
|
|
15
|
+
}
|
|
16
16
|
.max-h-2 {
|
|
17
17
|
max-height: var(--primitive-8) !important;
|
|
18
18
|
}
|
|
19
|
-
|
|
19
|
+
.max-h-2.5 {
|
|
20
20
|
max-height: var(--primitive-10) !important;
|
|
21
|
-
}
|
|
21
|
+
}
|
|
22
22
|
.max-h-3 {
|
|
23
23
|
max-height: var(--primitive-12) !important;
|
|
24
24
|
}
|
|
25
|
-
|
|
25
|
+
.max-h-3.5 {
|
|
26
26
|
max-height: var(--primitive-14) !important;
|
|
27
|
-
}
|
|
27
|
+
}
|
|
28
28
|
.max-h-4 {
|
|
29
29
|
max-height: var(--primitive-16) !important;
|
|
30
30
|
}
|
|
@@ -1059,13 +1059,114 @@
|
|
|
1059
1059
|
.inset-auto {
|
|
1060
1060
|
inset: auto !important;
|
|
1061
1061
|
}
|
|
1062
|
+
/* .inset-1/2 {
|
|
1063
|
+
inset: 50% !important;
|
|
1064
|
+
}
|
|
1065
|
+
.inset-1/3 {
|
|
1066
|
+
inset: 33.333333% !important;
|
|
1067
|
+
}
|
|
1068
|
+
.inset-2/3 {
|
|
1069
|
+
inset: 66.666667% !important;
|
|
1070
|
+
}
|
|
1071
|
+
.inset-1/4 {
|
|
1072
|
+
inset: 25% !important;
|
|
1073
|
+
}
|
|
1074
|
+
.inset-2/4 {
|
|
1075
|
+
inset: 50% !important;
|
|
1076
|
+
}
|
|
1077
|
+
.inset-3/4 {
|
|
1078
|
+
inset: 75% !important;
|
|
1079
|
+
}
|
|
1080
|
+
.inset-full {
|
|
1081
|
+
inset: 100% !important;
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
.inset-x-auto {
|
|
1085
|
+
left: auto !important;
|
|
1086
|
+
right: auto !important;
|
|
1087
|
+
}
|
|
1088
|
+
.inset-x-1/2 {
|
|
1089
|
+
left: 50% !important;
|
|
1090
|
+
right: 50% !important;
|
|
1091
|
+
}
|
|
1092
|
+
.inset-x-1/3 {
|
|
1093
|
+
left: 33.333333% !important;
|
|
1094
|
+
right: 33.333333% !important;
|
|
1095
|
+
}
|
|
1096
|
+
.inset-x-2/3 {
|
|
1097
|
+
left: 66.666667% !important;
|
|
1098
|
+
right: 66.666667% !important;
|
|
1099
|
+
}
|
|
1100
|
+
.inset-x-1/4 {
|
|
1101
|
+
left: 25% !important;
|
|
1102
|
+
right: 25% !important;
|
|
1103
|
+
}
|
|
1104
|
+
.inset-x-2/4 {
|
|
1105
|
+
left: 50% !important;
|
|
1106
|
+
right: 50% !important;
|
|
1107
|
+
}
|
|
1108
|
+
.inset-x-3/4 {
|
|
1109
|
+
left: 75% !important;
|
|
1110
|
+
right: 75% !important;
|
|
1111
|
+
}
|
|
1112
|
+
.inset-x-full {
|
|
1113
|
+
left: 100% !important;
|
|
1114
|
+
right: 100% !important;
|
|
1115
|
+
}
|
|
1116
|
+
.inset-y-auto {
|
|
1117
|
+
top: auto !important;
|
|
1118
|
+
bottom: auto !important;
|
|
1119
|
+
}
|
|
1120
|
+
.inset-y-1/2 {
|
|
1121
|
+
top: 50% !important;
|
|
1122
|
+
bottom: 50% !important;
|
|
1123
|
+
}
|
|
1124
|
+
.inset-y-1/3 {
|
|
1125
|
+
top: 33.333333% !important;
|
|
1126
|
+
bottom: 33.333333% !important;
|
|
1127
|
+
}
|
|
1128
|
+
.inset-y-2/3 {
|
|
1129
|
+
top: 66.666667% !important;
|
|
1130
|
+
bottom: 66.666667% !important;
|
|
1131
|
+
}
|
|
1132
|
+
.inset-y-1/4 {
|
|
1133
|
+
top: 25% !important;
|
|
1134
|
+
bottom: 25% !important;
|
|
1135
|
+
}
|
|
1136
|
+
.inset-y-2/4 {
|
|
1137
|
+
top: 50% !important;
|
|
1138
|
+
bottom: 50% !important;
|
|
1139
|
+
}
|
|
1140
|
+
.inset-y-3/4 {
|
|
1141
|
+
top: 75% !important;
|
|
1142
|
+
bottom: 75% !important;
|
|
1143
|
+
} */
|
|
1062
1144
|
.inset-y-full {
|
|
1063
1145
|
top: 100% !important;
|
|
1064
1146
|
bottom: 100% !important;
|
|
1065
1147
|
}
|
|
1148
|
+
|
|
1066
1149
|
.start-auto {
|
|
1067
1150
|
inset-inline-start: auto !important;
|
|
1068
1151
|
}
|
|
1152
|
+
/* .start-1/2 {
|
|
1153
|
+
inset-inline-start: 50% !important;
|
|
1154
|
+
}
|
|
1155
|
+
.start-1/3 {
|
|
1156
|
+
inset-inline-start: 33.333333% !important;
|
|
1157
|
+
}
|
|
1158
|
+
.start-2/3 {
|
|
1159
|
+
inset-inline-start: 66.666667% !important;
|
|
1160
|
+
}
|
|
1161
|
+
.start-1/4 {
|
|
1162
|
+
inset-inline-start: 25% !important;
|
|
1163
|
+
}
|
|
1164
|
+
.start-2/4 {
|
|
1165
|
+
inset-inline-start: 50% !important;
|
|
1166
|
+
}
|
|
1167
|
+
.start-3/4 {
|
|
1168
|
+
inset-inline-start: 75% !important;
|
|
1169
|
+
} */
|
|
1069
1170
|
.start-full {
|
|
1070
1171
|
inset-inline-start: 100% !important;
|
|
1071
1172
|
}
|
|
@@ -1073,6 +1174,24 @@
|
|
|
1073
1174
|
.end-auto {
|
|
1074
1175
|
inset-inline-end: auto !important;
|
|
1075
1176
|
}
|
|
1177
|
+
/* .end-1/2 {
|
|
1178
|
+
inset-inline-end: 50% !important;
|
|
1179
|
+
}
|
|
1180
|
+
.end-1/3 {
|
|
1181
|
+
inset-inline-end: 33.333333% !important;
|
|
1182
|
+
}
|
|
1183
|
+
.end-2/3 {
|
|
1184
|
+
inset-inline-end: 66.666667% !important;
|
|
1185
|
+
}
|
|
1186
|
+
.end-1/4 {
|
|
1187
|
+
inset-inline-end: 25% !important;
|
|
1188
|
+
}
|
|
1189
|
+
.end-2/4 {
|
|
1190
|
+
inset-inline-end: 50% !important;
|
|
1191
|
+
}
|
|
1192
|
+
.end-3/4 {
|
|
1193
|
+
inset-inline-end: 75% !important;
|
|
1194
|
+
} */
|
|
1076
1195
|
.end-full {
|
|
1077
1196
|
inset-inline-end: 100% !important;
|
|
1078
1197
|
}
|
|
@@ -1080,6 +1199,24 @@
|
|
|
1080
1199
|
.top-auto {
|
|
1081
1200
|
top: auto !important;
|
|
1082
1201
|
}
|
|
1202
|
+
/* .top-1/2 {
|
|
1203
|
+
top: 50% !important;
|
|
1204
|
+
}
|
|
1205
|
+
.top-1/3 {
|
|
1206
|
+
top: 33.333333% !important;
|
|
1207
|
+
}
|
|
1208
|
+
.top-2/3 {
|
|
1209
|
+
top: 66.666667% !important;
|
|
1210
|
+
}
|
|
1211
|
+
.top-1/4 {
|
|
1212
|
+
top: 25% !important;
|
|
1213
|
+
}
|
|
1214
|
+
.top-2/4 {
|
|
1215
|
+
top: 50% !important;
|
|
1216
|
+
}
|
|
1217
|
+
.top-3/4 {
|
|
1218
|
+
top: 75% !important;
|
|
1219
|
+
} */
|
|
1083
1220
|
.top-full {
|
|
1084
1221
|
top: 100% !important;
|
|
1085
1222
|
}
|
|
@@ -1087,6 +1224,24 @@
|
|
|
1087
1224
|
.right-auto {
|
|
1088
1225
|
right: auto !important;
|
|
1089
1226
|
}
|
|
1227
|
+
/* .right-1/2 {
|
|
1228
|
+
right: 50% !important;
|
|
1229
|
+
}
|
|
1230
|
+
.right-1/3 {
|
|
1231
|
+
right: 33.333333% !important;
|
|
1232
|
+
}
|
|
1233
|
+
.right-2/3 {
|
|
1234
|
+
right: 66.666667% !important;
|
|
1235
|
+
}
|
|
1236
|
+
.right-1/4 {
|
|
1237
|
+
right: 25% !important;
|
|
1238
|
+
}
|
|
1239
|
+
.right-2/4 {
|
|
1240
|
+
right: 50% !important;
|
|
1241
|
+
}
|
|
1242
|
+
.right-3/4 {
|
|
1243
|
+
right: 75% !important;
|
|
1244
|
+
} */
|
|
1090
1245
|
.right-full {
|
|
1091
1246
|
right: 100% !important;
|
|
1092
1247
|
}
|
|
@@ -1094,6 +1249,24 @@
|
|
|
1094
1249
|
.bottom-auto {
|
|
1095
1250
|
bottom: auto !important;
|
|
1096
1251
|
}
|
|
1252
|
+
/* .bottom-1/2 {
|
|
1253
|
+
bottom: 50% !important;
|
|
1254
|
+
}
|
|
1255
|
+
.bottom-1/3 {
|
|
1256
|
+
bottom: 33.333333% !important;
|
|
1257
|
+
}
|
|
1258
|
+
.bottom-2/3 {
|
|
1259
|
+
bottom: 66.666667% !important;
|
|
1260
|
+
}
|
|
1261
|
+
.bottom-1/4 {
|
|
1262
|
+
bottom: 25% !important;
|
|
1263
|
+
}
|
|
1264
|
+
.bottom-2/4 {
|
|
1265
|
+
bottom: 50% !important;
|
|
1266
|
+
}
|
|
1267
|
+
.bottom-3/4 {
|
|
1268
|
+
bottom: 75% !important;
|
|
1269
|
+
} */
|
|
1097
1270
|
.bottom-full {
|
|
1098
1271
|
bottom: 100% !important;
|
|
1099
1272
|
}
|
|
@@ -1101,6 +1274,24 @@
|
|
|
1101
1274
|
.left-auto {
|
|
1102
1275
|
left: auto !important;
|
|
1103
1276
|
}
|
|
1277
|
+
/* .left-1/2 {
|
|
1278
|
+
left: 50% !important;
|
|
1279
|
+
}
|
|
1280
|
+
.left-1/3 {
|
|
1281
|
+
left: 33.333333% !important;
|
|
1282
|
+
}
|
|
1283
|
+
.left-2/3 {
|
|
1284
|
+
left: 66.666667% !important;
|
|
1285
|
+
}
|
|
1286
|
+
.left-1/4 {
|
|
1287
|
+
left: 25% !important;
|
|
1288
|
+
}
|
|
1289
|
+
.left-2/4 {
|
|
1290
|
+
left: 50% !important;
|
|
1291
|
+
}
|
|
1292
|
+
.left-3/4 {
|
|
1293
|
+
left: 75% !important;
|
|
1294
|
+
} */
|
|
1104
1295
|
.left-full {
|
|
1105
1296
|
left: 100% !important;
|
|
1106
1297
|
}
|
|
@@ -4,27 +4,27 @@
|
|
|
4
4
|
.w-px {
|
|
5
5
|
width: 1px !important;
|
|
6
6
|
}
|
|
7
|
-
|
|
7
|
+
.w-0.5 {
|
|
8
8
|
width: var(--primitive-2) !important;
|
|
9
|
-
}
|
|
9
|
+
}
|
|
10
10
|
.w-1 {
|
|
11
11
|
width: var(--primitive-4) !important;
|
|
12
12
|
}
|
|
13
|
-
|
|
13
|
+
.w-1.5 {
|
|
14
14
|
width: var(--primitive-6) !important;
|
|
15
|
-
}
|
|
15
|
+
}
|
|
16
16
|
.w-2 {
|
|
17
17
|
width: var(--primitive-8) !important;
|
|
18
18
|
}
|
|
19
|
-
|
|
19
|
+
.w-2.5 {
|
|
20
20
|
width: var(--primitive-10) !important;
|
|
21
|
-
}
|
|
21
|
+
}
|
|
22
22
|
.w-3 {
|
|
23
23
|
width: var(--primitive-12) !important;
|
|
24
24
|
}
|
|
25
|
-
|
|
25
|
+
.w-3.5 {
|
|
26
26
|
width: var(--primitive-14) !important;
|
|
27
|
-
}
|
|
27
|
+
}
|
|
28
28
|
.w-4 {
|
|
29
29
|
width: var(--primitive-16) !important;
|
|
30
30
|
}
|
|
@@ -106,6 +106,84 @@
|
|
|
106
106
|
.w-auto {
|
|
107
107
|
width: auto !important;
|
|
108
108
|
}
|
|
109
|
+
/* .w-1\/2 {
|
|
110
|
+
width: 50% !important;
|
|
111
|
+
}
|
|
112
|
+
.w-1\/3 {
|
|
113
|
+
width: 33.333333% !important;
|
|
114
|
+
}
|
|
115
|
+
.w-2\/3 {
|
|
116
|
+
width: 66.666667% !important;
|
|
117
|
+
}
|
|
118
|
+
.w-1\/4 {
|
|
119
|
+
width: 25% !important;
|
|
120
|
+
}
|
|
121
|
+
.w-2\/4 {
|
|
122
|
+
width: 50% !important;
|
|
123
|
+
}
|
|
124
|
+
.w-3\/4 {
|
|
125
|
+
width: 75% !important;
|
|
126
|
+
}
|
|
127
|
+
.w-1\/5 {
|
|
128
|
+
width: 20% !important;
|
|
129
|
+
}
|
|
130
|
+
.w-2\/5 {
|
|
131
|
+
width: 40% !important;
|
|
132
|
+
}
|
|
133
|
+
.w-3\/5 {
|
|
134
|
+
width: 60% !important;
|
|
135
|
+
}
|
|
136
|
+
.w-4\/5 {
|
|
137
|
+
width: 80% !important;
|
|
138
|
+
}
|
|
139
|
+
.w-1\/6 {
|
|
140
|
+
width: 16.666667% !important;
|
|
141
|
+
}
|
|
142
|
+
.w-2\/6 {
|
|
143
|
+
width: 33.333333% !important;
|
|
144
|
+
}
|
|
145
|
+
.w-3\/6 {
|
|
146
|
+
width: 50% !important;
|
|
147
|
+
}
|
|
148
|
+
.w-4\/6 {
|
|
149
|
+
width: 66.666667% !important;
|
|
150
|
+
}
|
|
151
|
+
.w-5\/6 {
|
|
152
|
+
width: 83.333333% !important;
|
|
153
|
+
}
|
|
154
|
+
.w-1\/12 {
|
|
155
|
+
width: 8.333333% !important;
|
|
156
|
+
}
|
|
157
|
+
.w-2\/12 {
|
|
158
|
+
width: 16.666667% !important;
|
|
159
|
+
}
|
|
160
|
+
.w-3\/12 {
|
|
161
|
+
width: 25% !important;
|
|
162
|
+
}
|
|
163
|
+
.w-4\/12 {
|
|
164
|
+
width: 33.333333% !important;
|
|
165
|
+
}
|
|
166
|
+
.w-5\/12 {
|
|
167
|
+
width: 41.666667% !important;
|
|
168
|
+
}
|
|
169
|
+
.w-6\/12 {
|
|
170
|
+
width: 50% !important;
|
|
171
|
+
}
|
|
172
|
+
.w-7\/12 {
|
|
173
|
+
width: 58.333333% !important;
|
|
174
|
+
}
|
|
175
|
+
.w-8\/12 {
|
|
176
|
+
width: 66.666667% !important;
|
|
177
|
+
}
|
|
178
|
+
.w-9\/12 {
|
|
179
|
+
width: 75% !important;
|
|
180
|
+
}
|
|
181
|
+
.w-10\/12 {
|
|
182
|
+
width: 83.333333% !important;
|
|
183
|
+
}
|
|
184
|
+
.w-11\/12 {
|
|
185
|
+
width: 91.666667% !important;
|
|
186
|
+
} */
|
|
109
187
|
.w-full {
|
|
110
188
|
width: 100% !important;
|
|
111
189
|
}
|