@pzh-ui/css 0.0.104 → 0.0.106
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/.yarn/install-state.gz +0 -0
- package/config/{custom.js → custom.ts} +1 -2
- package/config/index.ts +25 -0
- package/package.json +23 -26
- package/src/tailwind.css +599 -3427
- package/src/tailwind.src.css +373 -237
- package/config/index.js +0 -216
|
Binary file
|
package/config/index.ts
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type { Config } from 'tailwindcss'
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
theme: {
|
|
5
|
+
extend: {
|
|
6
|
+
typography: {
|
|
7
|
+
DEFAULT: {
|
|
8
|
+
css: {
|
|
9
|
+
li: {
|
|
10
|
+
p: {
|
|
11
|
+
margin: 0,
|
|
12
|
+
},
|
|
13
|
+
'&>ol': {
|
|
14
|
+
margin: 0,
|
|
15
|
+
},
|
|
16
|
+
'&>ul': {
|
|
17
|
+
margin: 0,
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
},
|
|
21
|
+
},
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
} satisfies Config
|
package/package.json
CHANGED
|
@@ -1,28 +1,25 @@
|
|
|
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
|
-
"devDependencies": {
|
|
26
|
-
"tailwindcss": "^3.4.10"
|
|
27
|
-
}
|
|
2
|
+
"name": "@pzh-ui/css",
|
|
3
|
+
"version": "0.0.106",
|
|
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/cli -i src/tailwind.src.css -o src/tailwind.css",
|
|
12
|
+
"watch-tailwind": "npx @tailwindcss/cli -c ./config/custom.ts -i src/tailwind.src.css -o src/tailwind.css --watch",
|
|
13
|
+
"build": "npm run-script build-tailwind"
|
|
14
|
+
},
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"@rollup/plugin-typescript": "^12.1.2",
|
|
17
|
+
"@tailwindcss/typography": "^0.5.16",
|
|
18
|
+
"react-toastify": "^9.1.2"
|
|
19
|
+
},
|
|
20
|
+
"gitHead": "ce3d927918327e7deedddce1aa3d8b23b9d8df49",
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"@tailwindcss/cli": "^4.1.4",
|
|
23
|
+
"tailwindcss": "^4.1.4"
|
|
24
|
+
}
|
|
28
25
|
}
|