@pzh-ui/css 0.0.57 → 0.0.59
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/package.json +4 -3
- package/src/tailwind.css +85 -110
- package/src/tailwind.src.css +0 -100
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pzh-ui/css",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.59",
|
|
4
4
|
"description": "Contains default styling for projects whitin Provincie Zuid-Holland.",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"publishConfig": {
|
|
@@ -18,9 +18,10 @@
|
|
|
18
18
|
"@tailwindcss/forms": "^0.5.0",
|
|
19
19
|
"@tailwindcss/line-clamp": "^0.3.1",
|
|
20
20
|
"@tailwindcss/typography": "^0.5.9",
|
|
21
|
-
"react-datepicker": "^4.7.0"
|
|
21
|
+
"react-datepicker": "^4.7.0",
|
|
22
|
+
"react-toastify": "^9.1.2"
|
|
22
23
|
},
|
|
23
|
-
"gitHead": "
|
|
24
|
+
"gitHead": "7299b928f3e4410deb6330474b466e2b16848f76",
|
|
24
25
|
"devDependencies": {
|
|
25
26
|
"tailwindcss": "^3.0.23"
|
|
26
27
|
}
|
package/src/tailwind.css
CHANGED
|
@@ -1304,8 +1304,8 @@ select {
|
|
|
1304
1304
|
margin-top: -2px;
|
|
1305
1305
|
}
|
|
1306
1306
|
|
|
1307
|
-
.
|
|
1308
|
-
margin-
|
|
1307
|
+
.mr-\[8px\] {
|
|
1308
|
+
margin-right: 8px;
|
|
1309
1309
|
}
|
|
1310
1310
|
|
|
1311
1311
|
.-mt-0\.5 {
|
|
@@ -1316,10 +1316,6 @@ select {
|
|
|
1316
1316
|
margin-top: -0px;
|
|
1317
1317
|
}
|
|
1318
1318
|
|
|
1319
|
-
.mr-\[8px\] {
|
|
1320
|
-
margin-right: 8px;
|
|
1321
|
-
}
|
|
1322
|
-
|
|
1323
1319
|
.ml-4 {
|
|
1324
1320
|
margin-left: 1rem;
|
|
1325
1321
|
}
|
|
@@ -1332,6 +1328,10 @@ select {
|
|
|
1332
1328
|
margin-top: 0.25rem;
|
|
1333
1329
|
}
|
|
1334
1330
|
|
|
1331
|
+
.ml-2 {
|
|
1332
|
+
margin-left: 0.5rem;
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1335
1335
|
.mt-\[1px\] {
|
|
1336
1336
|
margin-top: 1px;
|
|
1337
1337
|
}
|
|
@@ -1352,6 +1352,18 @@ select {
|
|
|
1352
1352
|
margin-bottom: -2px;
|
|
1353
1353
|
}
|
|
1354
1354
|
|
|
1355
|
+
.mt-4 {
|
|
1356
|
+
margin-top: 1rem;
|
|
1357
|
+
}
|
|
1358
|
+
|
|
1359
|
+
.mt-3 {
|
|
1360
|
+
margin-top: 0.75rem;
|
|
1361
|
+
}
|
|
1362
|
+
|
|
1363
|
+
.-mt-\[4px\] {
|
|
1364
|
+
margin-top: -4px;
|
|
1365
|
+
}
|
|
1366
|
+
|
|
1355
1367
|
.mb-2 {
|
|
1356
1368
|
margin-bottom: 0.5rem;
|
|
1357
1369
|
}
|
|
@@ -1440,6 +1452,10 @@ select {
|
|
|
1440
1452
|
height: 2rem;
|
|
1441
1453
|
}
|
|
1442
1454
|
|
|
1455
|
+
.h-\[4px\] {
|
|
1456
|
+
height: 4px;
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1443
1459
|
.h-\[8px\] {
|
|
1444
1460
|
height: 8px;
|
|
1445
1461
|
}
|
|
@@ -1472,6 +1488,12 @@ select {
|
|
|
1472
1488
|
width: 1rem;
|
|
1473
1489
|
}
|
|
1474
1490
|
|
|
1491
|
+
.\!w-max {
|
|
1492
|
+
width: -webkit-max-content !important;
|
|
1493
|
+
width: -moz-max-content !important;
|
|
1494
|
+
width: max-content !important;
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1475
1497
|
.w-\[8px\] {
|
|
1476
1498
|
width: 8px;
|
|
1477
1499
|
}
|
|
@@ -1480,6 +1502,10 @@ select {
|
|
|
1480
1502
|
width: 1.75rem;
|
|
1481
1503
|
}
|
|
1482
1504
|
|
|
1505
|
+
.min-w-\[320px\] {
|
|
1506
|
+
min-width: 320px;
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1483
1509
|
.max-w-screen-xl {
|
|
1484
1510
|
max-width: 1280px;
|
|
1485
1511
|
}
|
|
@@ -1488,6 +1514,10 @@ select {
|
|
|
1488
1514
|
max-width: 72rem;
|
|
1489
1515
|
}
|
|
1490
1516
|
|
|
1517
|
+
.max-w-\[400px\] {
|
|
1518
|
+
max-width: 400px;
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1491
1521
|
.max-w-\[300px\] {
|
|
1492
1522
|
max-width: 300px;
|
|
1493
1523
|
}
|
|
@@ -1500,6 +1530,10 @@ select {
|
|
|
1500
1530
|
max-width: 100%;
|
|
1501
1531
|
}
|
|
1502
1532
|
|
|
1533
|
+
.origin-left {
|
|
1534
|
+
transform-origin: left;
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1503
1537
|
.translate-y-2 {
|
|
1504
1538
|
--tw-translate-y: 0.5rem;
|
|
1505
1539
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
@@ -1679,6 +1713,11 @@ select {
|
|
|
1679
1713
|
border-color: rgb(80 61 144 / var(--tw-border-opacity));
|
|
1680
1714
|
}
|
|
1681
1715
|
|
|
1716
|
+
.border-pzh-white {
|
|
1717
|
+
--tw-border-opacity: 1;
|
|
1718
|
+
border-color: rgb(255 255 255 / var(--tw-border-opacity));
|
|
1719
|
+
}
|
|
1720
|
+
|
|
1682
1721
|
.border-pzh-gray-600 {
|
|
1683
1722
|
--tw-border-opacity: 1;
|
|
1684
1723
|
border-color: rgb(138 136 157 / var(--tw-border-opacity));
|
|
@@ -1738,6 +1777,11 @@ select {
|
|
|
1738
1777
|
background-color: rgb(123 173 222 / var(--tw-bg-opacity));
|
|
1739
1778
|
}
|
|
1740
1779
|
|
|
1780
|
+
.bg-pzh-orange {
|
|
1781
|
+
--tw-bg-opacity: 1;
|
|
1782
|
+
background-color: rgb(255 107 2 / var(--tw-bg-opacity));
|
|
1783
|
+
}
|
|
1784
|
+
|
|
1741
1785
|
.bg-black {
|
|
1742
1786
|
--tw-bg-opacity: 1;
|
|
1743
1787
|
background-color: rgb(0 0 0 / var(--tw-bg-opacity));
|
|
@@ -1777,6 +1821,10 @@ select {
|
|
|
1777
1821
|
padding: 0.5rem;
|
|
1778
1822
|
}
|
|
1779
1823
|
|
|
1824
|
+
.p-3 {
|
|
1825
|
+
padding: 0.75rem;
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1780
1828
|
.p-4 {
|
|
1781
1829
|
padding: 1rem;
|
|
1782
1830
|
}
|
|
@@ -1899,6 +1947,10 @@ select {
|
|
|
1899
1947
|
padding-bottom: 0.25rem;
|
|
1900
1948
|
}
|
|
1901
1949
|
|
|
1950
|
+
.pr-2 {
|
|
1951
|
+
padding-right: 0.5rem;
|
|
1952
|
+
}
|
|
1953
|
+
|
|
1902
1954
|
.pl-\[34px\] {
|
|
1903
1955
|
padding-left: 34px;
|
|
1904
1956
|
}
|
|
@@ -1923,6 +1975,10 @@ select {
|
|
|
1923
1975
|
font-size: 0.875rem;
|
|
1924
1976
|
}
|
|
1925
1977
|
|
|
1978
|
+
.text-\[18px\] {
|
|
1979
|
+
font-size: 18px;
|
|
1980
|
+
}
|
|
1981
|
+
|
|
1926
1982
|
.text-xs {
|
|
1927
1983
|
font-size: 0.75rem;
|
|
1928
1984
|
}
|
|
@@ -1959,6 +2015,10 @@ select {
|
|
|
1959
2015
|
line-height: 1.5;
|
|
1960
2016
|
}
|
|
1961
2017
|
|
|
2018
|
+
.leading-none {
|
|
2019
|
+
line-height: 1;
|
|
2020
|
+
}
|
|
2021
|
+
|
|
1962
2022
|
.leading-5 {
|
|
1963
2023
|
line-height: 1.25rem;
|
|
1964
2024
|
}
|
|
@@ -1971,10 +2031,6 @@ select {
|
|
|
1971
2031
|
line-height: 1.5rem;
|
|
1972
2032
|
}
|
|
1973
2033
|
|
|
1974
|
-
.leading-none {
|
|
1975
|
-
line-height: 1;
|
|
1976
|
-
}
|
|
1977
|
-
|
|
1978
2034
|
.text-pzh-blue-dark {
|
|
1979
2035
|
--tw-text-opacity: 1;
|
|
1980
2036
|
color: rgb(22 17 59 / var(--tw-text-opacity));
|
|
@@ -2015,6 +2071,11 @@ select {
|
|
|
2015
2071
|
color: rgb(80 61 144 / var(--tw-text-opacity));
|
|
2016
2072
|
}
|
|
2017
2073
|
|
|
2074
|
+
.text-pzh-white {
|
|
2075
|
+
--tw-text-opacity: 1;
|
|
2076
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
2077
|
+
}
|
|
2078
|
+
|
|
2018
2079
|
.text-white {
|
|
2019
2080
|
--tw-text-opacity: 1;
|
|
2020
2081
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
@@ -2025,6 +2086,16 @@ select {
|
|
|
2025
2086
|
color: rgb(40 31 107 / var(--tw-text-opacity));
|
|
2026
2087
|
}
|
|
2027
2088
|
|
|
2089
|
+
.text-pzh-blue-light {
|
|
2090
|
+
--tw-text-opacity: 1;
|
|
2091
|
+
color: rgb(123 173 222 / var(--tw-text-opacity));
|
|
2092
|
+
}
|
|
2093
|
+
|
|
2094
|
+
.text-pzh-orange {
|
|
2095
|
+
--tw-text-opacity: 1;
|
|
2096
|
+
color: rgb(255 107 2 / var(--tw-text-opacity));
|
|
2097
|
+
}
|
|
2098
|
+
|
|
2028
2099
|
.text-pzh-gray-600 {
|
|
2029
2100
|
--tw-text-opacity: 1;
|
|
2030
2101
|
color: rgb(138 136 157 / var(--tw-text-opacity));
|
|
@@ -2043,6 +2114,10 @@ select {
|
|
|
2043
2114
|
text-decoration-thickness: 1px;
|
|
2044
2115
|
}
|
|
2045
2116
|
|
|
2117
|
+
.underline-offset-2 {
|
|
2118
|
+
text-underline-offset: 2px;
|
|
2119
|
+
}
|
|
2120
|
+
|
|
2046
2121
|
.opacity-0 {
|
|
2047
2122
|
opacity: 0;
|
|
2048
2123
|
}
|
|
@@ -2495,106 +2570,6 @@ b {
|
|
|
2495
2570
|
line-height: 14px;
|
|
2496
2571
|
}
|
|
2497
2572
|
|
|
2498
|
-
/*
|
|
2499
|
-
* React Quill
|
|
2500
|
-
*/
|
|
2501
|
-
|
|
2502
|
-
.quill .ql-toolbar.ql-snow {
|
|
2503
|
-
padding: 0px;
|
|
2504
|
-
border-top-left-radius: 0.25rem;
|
|
2505
|
-
border-top-right-radius: 0.25rem;
|
|
2506
|
-
background: white;
|
|
2507
|
-
border-color: rgba(203, 213, 224, 1);
|
|
2508
|
-
}
|
|
2509
|
-
|
|
2510
|
-
.quill .ql-toolbar.ql-snow button {
|
|
2511
|
-
height: 2rem;
|
|
2512
|
-
width: 2rem;
|
|
2513
|
-
display: flex;
|
|
2514
|
-
justify-content: center;
|
|
2515
|
-
align-items: center;
|
|
2516
|
-
padding: 0.5rem;
|
|
2517
|
-
}
|
|
2518
|
-
|
|
2519
|
-
.quill .ql-toolbar.ql-snow button svg path,
|
|
2520
|
-
.quill .ql-toolbar.ql-snow button svg line,
|
|
2521
|
-
.quill .ql-toolbar.ql-snow button:hover svg path,
|
|
2522
|
-
.quill .ql-toolbar.ql-snow button:hover svg line {
|
|
2523
|
-
stroke: #16113b;
|
|
2524
|
-
}
|
|
2525
|
-
|
|
2526
|
-
.quill .ql-toolbar.ql-snow button.ql-active svg path,
|
|
2527
|
-
.quill .ql-toolbar.ql-snow button.ql-active svg line {
|
|
2528
|
-
stroke: #00804d;
|
|
2529
|
-
}
|
|
2530
|
-
|
|
2531
|
-
.quill .ql-toolbar.ql-snow,
|
|
2532
|
-
.quill .ql-toolbar.ql-snow .ql-formats {
|
|
2533
|
-
display: flex;
|
|
2534
|
-
}
|
|
2535
|
-
|
|
2536
|
-
.quill .ql-toolbar.ql-snow {
|
|
2537
|
-
padding: 0 5px;
|
|
2538
|
-
}
|
|
2539
|
-
|
|
2540
|
-
.quill .ql-toolbar.ql-snow .ql-formats {
|
|
2541
|
-
margin: 0;
|
|
2542
|
-
border-right: 1px solid rgba(203, 213, 224, 1);
|
|
2543
|
-
}
|
|
2544
|
-
|
|
2545
|
-
.quill .ql-container {
|
|
2546
|
-
padding-bottom: 0.25rem;
|
|
2547
|
-
border-bottom-left-radius: 0.25rem;
|
|
2548
|
-
border-bottom-right-radius: 0.25rem;
|
|
2549
|
-
background: white;
|
|
2550
|
-
border-color: rgba(203, 213, 224, 1);
|
|
2551
|
-
font-family: 'Karbon Regular', sans-serif;
|
|
2552
|
-
font-weight: 400;
|
|
2553
|
-
font-size: 20px;
|
|
2554
|
-
}
|
|
2555
|
-
|
|
2556
|
-
.quill .editor.ql-container.ql-snow .ql-editor {
|
|
2557
|
-
color: #4a5568;
|
|
2558
|
-
line-height: 1.25;
|
|
2559
|
-
font-size: 1rem;
|
|
2560
|
-
}
|
|
2561
|
-
|
|
2562
|
-
.quill .ql-container .ql-editor p,
|
|
2563
|
-
.quill .ql-container .ql-editor ul {
|
|
2564
|
-
margin-bottom: 20px;
|
|
2565
|
-
}
|
|
2566
|
-
|
|
2567
|
-
.quill .ql-container .ql-editor ul {
|
|
2568
|
-
padding-left: 0;
|
|
2569
|
-
}
|
|
2570
|
-
|
|
2571
|
-
.quill .ql-container .ql-editor strong {
|
|
2572
|
-
font-family: 'Karbon Medium', sans-serif;
|
|
2573
|
-
font-weight: 700;
|
|
2574
|
-
}
|
|
2575
|
-
|
|
2576
|
-
.quill .ql-container .ql-editor ul li {
|
|
2577
|
-
padding-left: 20px;
|
|
2578
|
-
}
|
|
2579
|
-
|
|
2580
|
-
.quill .ql-container .ql-editor ul li.ql-indent-1 {
|
|
2581
|
-
padding-left: 40px;
|
|
2582
|
-
}
|
|
2583
|
-
|
|
2584
|
-
.quill .editor.ql-container.ql-snow .ql-editor h2 {
|
|
2585
|
-
font-size: 1.125rem;
|
|
2586
|
-
margin-top: 10px;
|
|
2587
|
-
margin-bottom: 5px;
|
|
2588
|
-
}
|
|
2589
|
-
|
|
2590
|
-
.quill .ql-disabled {
|
|
2591
|
-
background: #ebebeb;
|
|
2592
|
-
}
|
|
2593
|
-
|
|
2594
|
-
.quill .ql-disabled .ql-editor {
|
|
2595
|
-
opacity: 0.55;
|
|
2596
|
-
}
|
|
2597
|
-
|
|
2598
2573
|
.pzh-select-input input {
|
|
2599
2574
|
box-shadow: none !important;
|
|
2600
2575
|
}
|
package/src/tailwind.src.css
CHANGED
|
@@ -202,106 +202,6 @@ b {
|
|
|
202
202
|
@apply leading-[14px];
|
|
203
203
|
}
|
|
204
204
|
|
|
205
|
-
/*
|
|
206
|
-
* React Quill
|
|
207
|
-
*/
|
|
208
|
-
|
|
209
|
-
.quill .ql-toolbar.ql-snow {
|
|
210
|
-
padding: 0px;
|
|
211
|
-
border-top-left-radius: 0.25rem;
|
|
212
|
-
border-top-right-radius: 0.25rem;
|
|
213
|
-
background: white;
|
|
214
|
-
border-color: rgba(203, 213, 224, 1);
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
.quill .ql-toolbar.ql-snow button {
|
|
218
|
-
height: 2rem;
|
|
219
|
-
width: 2rem;
|
|
220
|
-
display: flex;
|
|
221
|
-
justify-content: center;
|
|
222
|
-
align-items: center;
|
|
223
|
-
padding: 0.5rem;
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
.quill .ql-toolbar.ql-snow button svg path,
|
|
227
|
-
.quill .ql-toolbar.ql-snow button svg line,
|
|
228
|
-
.quill .ql-toolbar.ql-snow button:hover svg path,
|
|
229
|
-
.quill .ql-toolbar.ql-snow button:hover svg line {
|
|
230
|
-
stroke: #16113b;
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
.quill .ql-toolbar.ql-snow button.ql-active svg path,
|
|
234
|
-
.quill .ql-toolbar.ql-snow button.ql-active svg line {
|
|
235
|
-
stroke: #00804d;
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
.quill .ql-toolbar.ql-snow,
|
|
239
|
-
.quill .ql-toolbar.ql-snow .ql-formats {
|
|
240
|
-
display: flex;
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
.quill .ql-toolbar.ql-snow {
|
|
244
|
-
padding: 0 5px;
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
.quill .ql-toolbar.ql-snow .ql-formats {
|
|
248
|
-
margin: 0;
|
|
249
|
-
border-right: 1px solid rgba(203, 213, 224, 1);
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
.quill .ql-container {
|
|
253
|
-
padding-bottom: 0.25rem;
|
|
254
|
-
border-bottom-left-radius: 0.25rem;
|
|
255
|
-
border-bottom-right-radius: 0.25rem;
|
|
256
|
-
background: white;
|
|
257
|
-
border-color: rgba(203, 213, 224, 1);
|
|
258
|
-
font-family: 'Karbon Regular', sans-serif;
|
|
259
|
-
font-weight: 400;
|
|
260
|
-
font-size: 20px;
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
.quill .editor.ql-container.ql-snow .ql-editor {
|
|
264
|
-
color: #4a5568;
|
|
265
|
-
line-height: 1.25;
|
|
266
|
-
font-size: 1rem;
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
.quill .ql-container .ql-editor p,
|
|
270
|
-
.quill .ql-container .ql-editor ul {
|
|
271
|
-
margin-bottom: 20px;
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
.quill .ql-container .ql-editor ul {
|
|
275
|
-
padding-left: 0;
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
.quill .ql-container .ql-editor strong {
|
|
279
|
-
font-family: 'Karbon Medium', sans-serif;
|
|
280
|
-
font-weight: 700;
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
.quill .ql-container .ql-editor ul li {
|
|
284
|
-
padding-left: 20px;
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
.quill .ql-container .ql-editor ul li.ql-indent-1 {
|
|
288
|
-
padding-left: 40px;
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
.quill .editor.ql-container.ql-snow .ql-editor h2 {
|
|
292
|
-
font-size: 1.125rem;
|
|
293
|
-
margin-top: 10px;
|
|
294
|
-
margin-bottom: 5px;
|
|
295
|
-
}
|
|
296
|
-
|
|
297
|
-
.quill .ql-disabled {
|
|
298
|
-
background: #ebebeb;
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
.quill .ql-disabled .ql-editor {
|
|
302
|
-
opacity: 0.55;
|
|
303
|
-
}
|
|
304
|
-
|
|
305
205
|
.pzh-select-input input {
|
|
306
206
|
box-shadow: none !important;
|
|
307
207
|
}
|