@pzh-ui/css 0.0.17 → 0.0.20

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/config/index.js CHANGED
@@ -208,6 +208,11 @@ module.exports = {
208
208
  light: '#beb1a7',
209
209
  dark: '#584b41',
210
210
  },
211
+ 'pzh-badge': {
212
+ green: '#50A658',
213
+ red: '#CB3B36',
214
+ orange: '#F9B53C',
215
+ },
211
216
  },
212
217
  extend: {
213
218
  opacity: {
File without changes
File without changes
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@pzh-ui/css",
3
- "version": "0.0.17",
3
+ "version": "0.0.20",
4
4
  "description": "Contains default styling for projects whitin Provincie Zuid-Holland.",
5
5
  "license": "ISC",
6
6
  "publishConfig": {
7
7
  "access": "public"
8
8
  },
9
9
  "scripts": {
10
- "prerelease": "npm run-script build-tailwind",
10
+ "prepare": "npm run-script build-tailwind",
11
11
  "build-tailwind": "npx tailwindcss -c ./config/custom.js -i src/tailwind.src.css -o src/tailwind.css",
12
12
  "watch-tailwind": "npx tailwindcss -c ./config/custom.js -i src/tailwind.src.css -o src/tailwind.css --watch",
13
13
  "build": "npm run-script build-tailwind"
@@ -19,7 +19,7 @@
19
19
  "@tailwindcss/line-clamp": "^0.3.1",
20
20
  "react-datepicker": "^4.7.0"
21
21
  },
22
- "gitHead": "8dc2a9aa4ea3a425ac7d0b2f384570032f6af27b",
22
+ "gitHead": "debc8d599b0e3c27834eea46e0b22d86f457121b",
23
23
  "devDependencies": {
24
24
  "tailwindcss": "^3.0.23"
25
25
  }
package/src/tailwind.css CHANGED
@@ -836,6 +836,10 @@ select{
836
836
  display: none;
837
837
  }
838
838
 
839
+ .h-\[28px\]{
840
+ height: 28px;
841
+ }
842
+
839
843
  .h-6{
840
844
  height: 1.5rem;
841
845
  }
@@ -964,6 +968,26 @@ select{
964
968
  border-style: dashed;
965
969
  }
966
970
 
971
+ .border-pzh-badge-green{
972
+ --tw-border-opacity: 1;
973
+ border-color: rgb(80 166 88 / var(--tw-border-opacity));
974
+ }
975
+
976
+ .border-pzh-badge-orange{
977
+ --tw-border-opacity: 1;
978
+ border-color: rgb(249 181 60 / var(--tw-border-opacity));
979
+ }
980
+
981
+ .border-pzh-badge-red{
982
+ --tw-border-opacity: 1;
983
+ border-color: rgb(203 59 54 / var(--tw-border-opacity));
984
+ }
985
+
986
+ .border-pzh-cool-gray{
987
+ --tw-border-opacity: 1;
988
+ border-color: rgb(131 131 131 / var(--tw-border-opacity));
989
+ }
990
+
967
991
  .border-pzh-blue-dark{
968
992
  --tw-border-opacity: 1;
969
993
  border-color: rgb(22 17 59 / var(--tw-border-opacity));
@@ -1037,6 +1061,16 @@ select{
1037
1061
  padding: 0.5rem;
1038
1062
  }
1039
1063
 
1064
+ .px-1\.5{
1065
+ padding-left: 0.375rem;
1066
+ padding-right: 0.375rem;
1067
+ }
1068
+
1069
+ .px-1{
1070
+ padding-left: 0.25rem;
1071
+ padding-right: 0.25rem;
1072
+ }
1073
+
1040
1074
  .px-3{
1041
1075
  padding-left: 0.75rem;
1042
1076
  padding-right: 0.75rem;
@@ -1156,6 +1190,10 @@ select{
1156
1190
  vertical-align: bottom;
1157
1191
  }
1158
1192
 
1193
+ .text-\[16px\]{
1194
+ font-size: 16px;
1195
+ }
1196
+
1159
1197
  .text-sm{
1160
1198
  font-size: 0.875rem;
1161
1199
  }
@@ -1168,14 +1206,14 @@ select{
1168
1206
  font-size: 1rem;
1169
1207
  }
1170
1208
 
1171
- .text-\[16px\]{
1172
- font-size: 16px;
1173
- }
1174
-
1175
1209
  .text-\[0\.8rem\]{
1176
1210
  font-size: 0.8rem;
1177
1211
  }
1178
1212
 
1213
+ .uppercase{
1214
+ text-transform: uppercase;
1215
+ }
1216
+
1179
1217
  .italic{
1180
1218
  font-style: italic;
1181
1219
  }
@@ -1196,6 +1234,26 @@ select{
1196
1234
  line-height: 1;
1197
1235
  }
1198
1236
 
1237
+ .text-pzh-badge-green{
1238
+ --tw-text-opacity: 1;
1239
+ color: rgb(80 166 88 / var(--tw-text-opacity));
1240
+ }
1241
+
1242
+ .text-pzh-badge-orange{
1243
+ --tw-text-opacity: 1;
1244
+ color: rgb(249 181 60 / var(--tw-text-opacity));
1245
+ }
1246
+
1247
+ .text-pzh-badge-red{
1248
+ --tw-text-opacity: 1;
1249
+ color: rgb(203 59 54 / var(--tw-text-opacity));
1250
+ }
1251
+
1252
+ .text-pzh-cool-gray{
1253
+ --tw-text-opacity: 1;
1254
+ color: rgb(131 131 131 / var(--tw-text-opacity));
1255
+ }
1256
+
1199
1257
  .text-white{
1200
1258
  --tw-text-opacity: 1;
1201
1259
  color: rgb(255 255 255 / var(--tw-text-opacity));
@@ -1312,7 +1370,7 @@ select{
1312
1370
  @font-face {
1313
1371
  font-family: 'Karbon Regular';
1314
1372
 
1315
- src: url('../assets/Karbon-Regular.woff2') format('woff2');
1373
+ src: url('./../fonts/Karbon-Regular.woff2') format('woff2');
1316
1374
 
1317
1375
  font-weight: normal;
1318
1376
 
@@ -1322,7 +1380,7 @@ select{
1322
1380
  @font-face {
1323
1381
  font-family: 'Karbon Medium';
1324
1382
 
1325
- src: url('../assets/Karbon-Medium.woff2') format('woff2');
1383
+ src: url('./../fonts/Karbon-Medium.woff2') format('woff2');
1326
1384
 
1327
1385
  font-weight: bold;
1328
1386
 
@@ -6,14 +6,14 @@
6
6
 
7
7
  @font-face {
8
8
  font-family: 'Karbon Regular';
9
- src: url('../assets/Karbon-Regular.woff2') format('woff2');
9
+ src: url('./../fonts/Karbon-Regular.woff2') format('woff2');
10
10
  font-weight: normal;
11
11
  font-display: swap;
12
12
  }
13
13
 
14
14
  @font-face {
15
15
  font-family: 'Karbon Medium';
16
- src: url('../assets/Karbon-Medium.woff2') format('woff2');
16
+ src: url('./../fonts/Karbon-Medium.woff2') format('woff2');
17
17
  font-weight: bold;
18
18
  font-display: swap;
19
19
  }