@pzh-ui/css 0.0.83 → 0.0.89
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 +7 -9
- package/package.json +26 -26
- package/src/tailwind.css +18 -19
package/config/index.js
CHANGED
|
@@ -28,15 +28,13 @@ module.exports = {
|
|
|
28
28
|
s: ["1rem", "1.5rem"],
|
|
29
29
|
m: ["1.25rem", "1.875rem"],
|
|
30
30
|
l: ["1.5rem", "1.875rem"],
|
|
31
|
-
heading:
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
xxxl: ["4rem", "110%"],
|
|
39
|
-
},
|
|
31
|
+
"heading-xs": ["1.125rem", "125%"],
|
|
32
|
+
"heading-s": ["1.25rem", "125%"],
|
|
33
|
+
"heading-m": ["1.5rem", "125%"],
|
|
34
|
+
"heading-l": ["2rem", "125%"],
|
|
35
|
+
"heading-xl": ["2.5rem", "125%"],
|
|
36
|
+
"heading-xxl": ["3rem", "125%"],
|
|
37
|
+
"heading-xxxl": ["4rem", "110%"],
|
|
40
38
|
},
|
|
41
39
|
colors: {
|
|
42
40
|
black: "#000000",
|
package/package.json
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
2
|
+
"name": "@pzh-ui/css",
|
|
3
|
+
"version": "0.0.89",
|
|
4
|
+
"description": "Contains default styling for projects within Provincie Zuid-Holland.",
|
|
5
|
+
"license": "ISC",
|
|
6
|
+
"publishConfig": {
|
|
7
|
+
"access": "public"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"prepare": "npm run-script build-tailwind",
|
|
11
|
+
"build-tailwind": "npx tailwindcss -c ./config/custom.js -i src/tailwind.src.css -o src/tailwind.css",
|
|
12
|
+
"watch-tailwind": "npx tailwindcss -c ./config/custom.js -i src/tailwind.src.css -o src/tailwind.css --watch",
|
|
13
|
+
"build": "npm run-script build-tailwind"
|
|
14
|
+
},
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"@rollup/plugin-typescript": "^8.3.1",
|
|
17
|
+
"@tailwindcss/custom-forms": "^0.2.1",
|
|
18
|
+
"@tailwindcss/forms": "^0.5.0",
|
|
19
|
+
"@tailwindcss/line-clamp": "^0.3.1",
|
|
20
|
+
"@tailwindcss/typography": "^0.5.9",
|
|
21
|
+
"react-datepicker": "^4.7.0",
|
|
22
|
+
"react-toastify": "^9.1.2"
|
|
23
|
+
},
|
|
24
|
+
"gitHead": "567c93e973fff39cd67a5df996a7a678d4d60504",
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"tailwindcss": "^3.3.2"
|
|
27
|
+
}
|
|
28
28
|
}
|
package/src/tailwind.css
CHANGED
|
@@ -2615,32 +2615,39 @@ select {
|
|
|
2615
2615
|
vertical-align: bottom;
|
|
2616
2616
|
}
|
|
2617
2617
|
|
|
2618
|
-
.text
|
|
2619
|
-
font-size:
|
|
2618
|
+
.text-heading-l {
|
|
2619
|
+
font-size: 2rem;
|
|
2620
|
+
line-height: 125%;
|
|
2620
2621
|
}
|
|
2621
2622
|
|
|
2622
|
-
.text
|
|
2623
|
-
font-size: 1.
|
|
2623
|
+
.text-heading-m {
|
|
2624
|
+
font-size: 1.5rem;
|
|
2625
|
+
line-height: 125%;
|
|
2624
2626
|
}
|
|
2625
2627
|
|
|
2626
|
-
.text
|
|
2627
|
-
font-size: 1.
|
|
2628
|
+
.text-heading-s {
|
|
2629
|
+
font-size: 1.25rem;
|
|
2630
|
+
line-height: 125%;
|
|
2628
2631
|
}
|
|
2629
2632
|
|
|
2630
|
-
.text
|
|
2633
|
+
.text-heading-xl {
|
|
2631
2634
|
font-size: 2.5rem;
|
|
2635
|
+
line-height: 125%;
|
|
2632
2636
|
}
|
|
2633
2637
|
|
|
2634
|
-
.text
|
|
2635
|
-
font-size:
|
|
2638
|
+
.text-heading-xs {
|
|
2639
|
+
font-size: 1.125rem;
|
|
2640
|
+
line-height: 125%;
|
|
2636
2641
|
}
|
|
2637
2642
|
|
|
2638
|
-
.text
|
|
2643
|
+
.text-heading-xxl {
|
|
2639
2644
|
font-size: 3rem;
|
|
2645
|
+
line-height: 125%;
|
|
2640
2646
|
}
|
|
2641
2647
|
|
|
2642
|
-
.text
|
|
2648
|
+
.text-heading-xxxl {
|
|
2643
2649
|
font-size: 4rem;
|
|
2650
|
+
line-height: 110%;
|
|
2644
2651
|
}
|
|
2645
2652
|
|
|
2646
2653
|
.text-l {
|
|
@@ -2686,14 +2693,6 @@ select {
|
|
|
2686
2693
|
line-height: 1.75rem;
|
|
2687
2694
|
}
|
|
2688
2695
|
|
|
2689
|
-
.leading-\[110\%\] {
|
|
2690
|
-
line-height: 110%;
|
|
2691
|
-
}
|
|
2692
|
-
|
|
2693
|
-
.leading-\[125\%\] {
|
|
2694
|
-
line-height: 125%;
|
|
2695
|
-
}
|
|
2696
|
-
|
|
2697
2696
|
.leading-none {
|
|
2698
2697
|
line-height: 1;
|
|
2699
2698
|
}
|