Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump tailwindcss from 3.4.14 to 3.4.15 #409

Merged
merged 2 commits into from
Nov 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 50 additions & 16 deletions gen/Tailwind/Utilities.elm
Original file line number Diff line number Diff line change
Expand Up @@ -100320,7 +100320,10 @@ Make sure to check out the [tailwind documentation](https://tailwindcss.com/docs
-}
bg_color : Color -> Css.Style
bg_color color =
Tw.propertyWithColor "background-color" (\c -> c) (Just "--tw-bg-opacity") color
Css.batch
[ Css.property "--tw-bg-opacity" "1"
, Tw.propertyWithColor "background-color" (\c -> c) (Just "--tw-bg-opacity, 1") color
]


{-| This class has effects of css declarations similar to the following:
Expand All @@ -100339,7 +100342,10 @@ Make sure to check out the [tailwind documentation](https://tailwindcss.com/docs
-}
border_b_color : Color -> Css.Style
border_b_color color =
Tw.propertyWithColor "border-bottom-color" (\c -> c) (Just "--tw-border-opacity") color
Css.batch
[ Css.property "--tw-border-opacity" "1"
, Tw.propertyWithColor "border-bottom-color" (\c -> c) (Just "--tw-border-opacity, 1") color
]


{-| This class has effects of css declarations similar to the following:
Expand All @@ -100358,7 +100364,10 @@ Make sure to check out the [tailwind documentation](https://tailwindcss.com/docs
-}
border_color : Color -> Css.Style
border_color color =
Tw.propertyWithColor "border-color" (\c -> c) (Just "--tw-border-opacity") color
Css.batch
[ Css.property "--tw-border-opacity" "1"
, Tw.propertyWithColor "border-color" (\c -> c) (Just "--tw-border-opacity, 1") color
]


{-| This class has effects of css declarations similar to the following:
Expand All @@ -100377,7 +100386,10 @@ Make sure to check out the [tailwind documentation](https://tailwindcss.com/docs
-}
border_e_color : Color -> Css.Style
border_e_color color =
Tw.propertyWithColor "border-inline-end-color" (\c -> c) (Just "--tw-border-opacity") color
Css.batch
[ Css.property "--tw-border-opacity" "1"
, Tw.propertyWithColor "border-inline-end-color" (\c -> c) (Just "--tw-border-opacity, 1") color
]


{-| This class has effects of css declarations similar to the following:
Expand All @@ -100396,7 +100408,10 @@ Make sure to check out the [tailwind documentation](https://tailwindcss.com/docs
-}
border_l_color : Color -> Css.Style
border_l_color color =
Tw.propertyWithColor "border-left-color" (\c -> c) (Just "--tw-border-opacity") color
Css.batch
[ Css.property "--tw-border-opacity" "1"
, Tw.propertyWithColor "border-left-color" (\c -> c) (Just "--tw-border-opacity, 1") color
]


{-| This class has effects of css declarations similar to the following:
Expand All @@ -100415,7 +100430,10 @@ Make sure to check out the [tailwind documentation](https://tailwindcss.com/docs
-}
border_r_color : Color -> Css.Style
border_r_color color =
Tw.propertyWithColor "border-right-color" (\c -> c) (Just "--tw-border-opacity") color
Css.batch
[ Css.property "--tw-border-opacity" "1"
, Tw.propertyWithColor "border-right-color" (\c -> c) (Just "--tw-border-opacity, 1") color
]


{-| This class has effects of css declarations similar to the following:
Expand All @@ -100434,7 +100452,10 @@ Make sure to check out the [tailwind documentation](https://tailwindcss.com/docs
-}
border_s_color : Color -> Css.Style
border_s_color color =
Tw.propertyWithColor "border-inline-start-color" (\c -> c) (Just "--tw-border-opacity") color
Css.batch
[ Css.property "--tw-border-opacity" "1"
, Tw.propertyWithColor "border-inline-start-color" (\c -> c) (Just "--tw-border-opacity, 1") color
]


{-| This class has effects of css declarations similar to the following:
Expand All @@ -100453,7 +100474,10 @@ Make sure to check out the [tailwind documentation](https://tailwindcss.com/docs
-}
border_t_color : Color -> Css.Style
border_t_color color =
Tw.propertyWithColor "border-top-color" (\c -> c) (Just "--tw-border-opacity") color
Css.batch
[ Css.property "--tw-border-opacity" "1"
, Tw.propertyWithColor "border-top-color" (\c -> c) (Just "--tw-border-opacity, 1") color
]


{-| This class has effects of css declarations similar to the following:
Expand All @@ -100474,8 +100498,9 @@ Make sure to check out the [tailwind documentation](https://tailwindcss.com/docs
border_x_color : Color -> Css.Style
border_x_color color =
Css.batch
[ Tw.propertyWithColor "border-left-color" (\c -> c) (Just "--tw-border-opacity") color
, Tw.propertyWithColor "border-right-color" (\c -> c) (Just "--tw-border-opacity") color
[ Css.property "--tw-border-opacity" "1"
, Tw.propertyWithColor "border-left-color" (\c -> c) (Just "--tw-border-opacity, 1") color
, Tw.propertyWithColor "border-right-color" (\c -> c) (Just "--tw-border-opacity, 1") color
]


Expand All @@ -100497,8 +100522,9 @@ Make sure to check out the [tailwind documentation](https://tailwindcss.com/docs
border_y_color : Color -> Css.Style
border_y_color color =
Css.batch
[ Tw.propertyWithColor "border-top-color" (\c -> c) (Just "--tw-border-opacity") color
, Tw.propertyWithColor "border-bottom-color" (\c -> c) (Just "--tw-border-opacity") color
[ Css.property "--tw-border-opacity" "1"
, Tw.propertyWithColor "border-top-color" (\c -> c) (Just "--tw-border-opacity, 1") color
, Tw.propertyWithColor "border-bottom-color" (\c -> c) (Just "--tw-border-opacity, 1") color
]


Expand Down Expand Up @@ -100556,7 +100582,8 @@ divide_color : Color -> Css.Style
divide_color color =
Css.Global.children
[ Css.Global.selector ":not([hidden]) ~ :not([hidden])"
[ Tw.propertyWithColor "border-color" (\c -> c) (Just "--tw-divide-opacity") color
[ Css.property "--tw-divide-opacity" "1"
, Tw.propertyWithColor "border-color" (\c -> c) (Just "--tw-divide-opacity, 1") color
]
]

Expand Down Expand Up @@ -100639,7 +100666,8 @@ Make sure to check out the [tailwind documentation](https://tailwindcss.com/docs
placeholder_color : Color -> Css.Style
placeholder_color color =
Css.pseudoElement "placeholder"
[ Tw.propertyWithColor "color" (\c -> c) (Just "--tw-placeholder-opacity") color
[ Css.property "--tw-placeholder-opacity" "1"
, Tw.propertyWithColor "color" (\c -> c) (Just "--tw-placeholder-opacity, 1") color
]


Expand All @@ -100659,7 +100687,10 @@ Make sure to check out the [tailwind documentation](https://tailwindcss.com/docs
-}
ring_color : Color -> Css.Style
ring_color color =
Tw.propertyWithColor "--tw-ring-color" (\c -> c) (Just "--tw-ring-opacity") color
Css.batch
[ Css.property "--tw-ring-opacity" "1"
, Tw.propertyWithColor "--tw-ring-color" (\c -> c) (Just "--tw-ring-opacity, 1") color
]


{-| This class has effects of css declarations similar to the following:
Expand Down Expand Up @@ -100736,7 +100767,10 @@ Make sure to check out the [tailwind documentation](https://tailwindcss.com/docs
-}
text_color : Color -> Css.Style
text_color color =
Tw.propertyWithColor "color" (\c -> c) (Just "--tw-text-opacity") color
Css.batch
[ Css.property "--tw-text-opacity" "1"
, Tw.propertyWithColor "color" (\c -> c) (Just "--tw-text-opacity, 1") color
]


{-| This class has effects of css declarations similar to the following:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"parcel-reporter-static-files-copy": "^1.5.3",
"postcss": "^8.4.49",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.14",
"tailwindcss": "^3.4.15",
"typescript": "^5.6.3"
},
"dependencies": {}
Expand Down
70 changes: 35 additions & 35 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1284,7 +1284,7 @@ chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1:
ansi-styles "^4.1.0"
supports-color "^7.1.0"

chokidar@^3.5.2, chokidar@^3.5.3:
chokidar@^3.5.2, chokidar@^3.6.0:
version "3.6.0"
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b"
integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==
Expand Down Expand Up @@ -1845,7 +1845,7 @@ escape-string-regexp@^1.0.5:
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==

fast-glob@^3.3.0:
fast-glob@^3.3.0, fast-glob@^3.3.2:
version "3.3.2"
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129"
integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==
Expand Down Expand Up @@ -2434,10 +2434,10 @@ jackspeak@^4.0.1:
dependencies:
"@isaacs/cliui" "^8.0.2"

jiti@^1.21.0:
version "1.21.0"
resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.0.tgz#7c97f8fe045724e136a397f7340475244156105d"
integrity sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==
jiti@^1.21.6:
version "1.21.6"
resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.6.tgz#6c7f7398dd4b3142767f9a168af2f317a428d268"
integrity sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==

js-tokens@^4.0.0:
version "4.0.0"
Expand Down Expand Up @@ -2654,7 +2654,7 @@ merge2@^1.3.0, merge2@^1.4.1:
resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==

micromatch@^4.0.4, micromatch@^4.0.5:
micromatch@^4.0.4, micromatch@^4.0.5, micromatch@^4.0.8:
version "4.0.8"
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202"
integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==
Expand Down Expand Up @@ -3118,25 +3118,25 @@ postcss-js@^4.0.1:
dependencies:
camelcase-css "^2.0.1"

postcss-load-config@^4.0.1:
postcss-load-config@^4.0.2:
version "4.0.2"
resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-4.0.2.tgz#7159dcf626118d33e299f485d6afe4aff7c4a3e3"
integrity sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==
dependencies:
lilconfig "^3.0.0"
yaml "^2.3.4"

postcss-nested@^6.0.1:
version "6.0.1"
resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.0.1.tgz#f83dc9846ca16d2f4fa864f16e9d9f7d0961662c"
integrity sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==
postcss-nested@^6.2.0:
version "6.2.0"
resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.2.0.tgz#4c2d22ab5f20b9cb61e2c5c5915950784d068131"
integrity sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==
dependencies:
postcss-selector-parser "^6.0.11"
postcss-selector-parser "^6.1.1"

postcss-selector-parser@^6.0.11:
version "6.0.16"
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz#3b88b9f5c5abd989ef4e2fc9ec8eedd34b20fb04"
integrity sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==
postcss-selector-parser@^6.1.1, postcss-selector-parser@^6.1.2:
version "6.1.2"
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz#27ecb41fb0e3b6ba7a1ec84fff347f734c7929de"
integrity sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==
dependencies:
cssesc "^3.0.0"
util-deprecate "^1.0.2"
Expand All @@ -3146,7 +3146,7 @@ postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0:
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==

postcss@^8.4.23, postcss@^8.4.49:
postcss@^8.4.47, postcss@^8.4.49:
version "8.4.49"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.49.tgz#4ea479048ab059ab3ae61d082190fabfd994fe19"
integrity sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==
Expand Down Expand Up @@ -3277,7 +3277,7 @@ resolve-from@^4.0.0:
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==

resolve@^1.1.7, resolve@^1.10.0, resolve@^1.22.2:
resolve@^1.1.7, resolve@^1.10.0, resolve@^1.22.8:
version "1.22.8"
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d"
integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==
Expand Down Expand Up @@ -3618,7 +3618,7 @@ strip-bom@^3.0.0:
resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==

sucrase@^3.32.0:
sucrase@^3.35.0:
version "3.35.0"
resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.35.0.tgz#57f17a3d7e19b36d8995f06679d121be914ae263"
integrity sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==
Expand Down Expand Up @@ -3671,33 +3671,33 @@ svgo@^2.4.0:
picocolors "^1.0.0"
stable "^0.1.8"

tailwindcss@^3.4.14:
version "3.4.14"
resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.14.tgz#6dd23a7f54ec197b19159e91e3bb1e55e7aa73ac"
integrity sha512-IcSvOcTRcUtQQ7ILQL5quRDg7Xs93PdJEk1ZLbhhvJc7uj/OAhYOnruEiwnGgBvUtaUAJ8/mhSw1o8L2jCiENA==
tailwindcss@^3.4.15:
version "3.4.15"
resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.15.tgz#04808bf4bf1424b105047d19e7d4bfab368044a9"
integrity sha512-r4MeXnfBmSOuKUWmXe6h2CcyfzJCEk4F0pptO5jlnYSIViUkVmsawj80N5h2lO3gwcmSb4n3PuN+e+GC1Guylw==
dependencies:
"@alloc/quick-lru" "^5.2.0"
arg "^5.0.2"
chokidar "^3.5.3"
chokidar "^3.6.0"
didyoumean "^1.2.2"
dlv "^1.1.3"
fast-glob "^3.3.0"
fast-glob "^3.3.2"
glob-parent "^6.0.2"
is-glob "^4.0.3"
jiti "^1.21.0"
jiti "^1.21.6"
lilconfig "^2.1.0"
micromatch "^4.0.5"
micromatch "^4.0.8"
normalize-path "^3.0.0"
object-hash "^3.0.0"
picocolors "^1.0.0"
postcss "^8.4.23"
picocolors "^1.1.1"
postcss "^8.4.47"
postcss-import "^15.1.0"
postcss-js "^4.0.1"
postcss-load-config "^4.0.1"
postcss-nested "^6.0.1"
postcss-selector-parser "^6.0.11"
resolve "^1.22.2"
sucrase "^3.32.0"
postcss-load-config "^4.0.2"
postcss-nested "^6.2.0"
postcss-selector-parser "^6.1.2"
resolve "^1.22.8"
sucrase "^3.35.0"

temp@^0.9.0:
version "0.9.4"
Expand Down
Loading