@pzh-ui/css 0.0.95 → 0.0.97

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
@@ -180,6 +180,20 @@ module.exports = {
180
180
  boxShadow: {
181
181
  card: "0px 18px 60px rgba(0, 0, 0, 0.07), 0px 4.02054px 13.4018px rgba(0, 0, 0, 0.0417275), 0px 1.19702px 3.99006px rgba(0, 0, 0, 0.0282725)",
182
182
  },
183
+ keyframes: {
184
+ "accordion-down": {
185
+ from: { height: "0" },
186
+ to: { height: "var(--radix-accordion-content-height)" },
187
+ },
188
+ "accordion-up": {
189
+ from: { height: "var(--radix-accordion-content-height)" },
190
+ to: { height: "0" },
191
+ },
192
+ },
193
+ animation: {
194
+ "accordion-down": "accordion-down 0.2s ease-out",
195
+ "accordion-up": "accordion-up 0.2s ease-out",
196
+ },
183
197
  typography: {
184
198
  DEFAULT: {
185
199
  css: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pzh-ui/css",
3
- "version": "0.0.95",
3
+ "version": "0.0.97",
4
4
  "description": "Contains default styling for projects within Provincie Zuid-Holland.",
5
5
  "license": "ISC",
6
6
  "publishConfig": {
@@ -21,9 +21,8 @@
21
21
  "react-datepicker": "^4.7.0",
22
22
  "react-toastify": "^9.1.2"
23
23
  },
24
- "gitHead": "7e8361c07ed64e45bf99e1badc23c3f88889a526",
24
+ "gitHead": "e26cfb94f6abbbcc8ccc5bc6852b27fa9100f5d8",
25
25
  "devDependencies": {
26
- "@types/react-datepicker": "^6.2.0",
27
26
  "tailwindcss": "^3.3.2"
28
27
  }
29
28
  }
package/src/tailwind.css CHANGED
@@ -1874,10 +1874,6 @@ select {
1874
1874
  display: grid;
1875
1875
  }
1876
1876
 
1877
- .contents {
1878
- display: contents;
1879
- }
1880
-
1881
1877
  .hidden {
1882
1878
  display: none;
1883
1879
  }
@@ -1934,6 +1930,10 @@ select {
1934
1930
  min-height: 48px;
1935
1931
  }
1936
1932
 
1933
+ .min-h-\[calc\(2lh\+2\*10px\)\] {
1934
+ min-height: calc(2lh + 2 * 10px);
1935
+ }
1936
+
1937
1937
  .\!w-max {
1938
1938
  width: -moz-max-content !important;
1939
1939
  width: max-content !important;
@@ -2020,6 +2020,14 @@ select {
2020
2020
  max-width: 1280px;
2021
2021
  }
2022
2022
 
2023
+ .flex-1 {
2024
+ flex: 1 1 0%;
2025
+ }
2026
+
2027
+ .shrink-0 {
2028
+ flex-shrink: 0;
2029
+ }
2030
+
2023
2031
  .origin-left {
2024
2032
  transform-origin: left;
2025
2033
  }
@@ -2225,6 +2233,11 @@ select {
2225
2233
  border-color: rgb(92 92 92 / var(--tw-border-opacity));
2226
2234
  }
2227
2235
 
2236
+ .border-pzh-gray-200 {
2237
+ --tw-border-opacity: 1;
2238
+ border-color: rgb(230 230 230 / var(--tw-border-opacity));
2239
+ }
2240
+
2228
2241
  .border-pzh-gray-300 {
2229
2242
  --tw-border-opacity: 1;
2230
2243
  border-color: rgb(213 213 213 / var(--tw-border-opacity));
@@ -2485,6 +2498,10 @@ select {
2485
2498
  padding-bottom: 0.75rem;
2486
2499
  }
2487
2500
 
2501
+ .pb-4 {
2502
+ padding-bottom: 1rem;
2503
+ }
2504
+
2488
2505
  .pb-\[7px\] {
2489
2506
  padding-bottom: 7px;
2490
2507
  }
@@ -2831,6 +2848,18 @@ select {
2831
2848
  transition-duration: 150ms;
2832
2849
  }
2833
2850
 
2851
+ .transition-all {
2852
+ transition-property: all;
2853
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2854
+ transition-duration: 150ms;
2855
+ }
2856
+
2857
+ .transition-transform {
2858
+ transition-property: transform;
2859
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2860
+ transition-duration: 150ms;
2861
+ }
2862
+
2834
2863
  .duration-100 {
2835
2864
  transition-duration: 100ms;
2836
2865
  }
@@ -3138,6 +3167,38 @@ ol li ol li ol li {
3138
3167
  opacity: 0.4;
3139
3168
  }
3140
3169
 
3170
+ .group:focus .group-focus\:opacity-40 {
3171
+ opacity: 0.4;
3172
+ }
3173
+
3174
+ @keyframes accordion-up {
3175
+ from {
3176
+ height: var(--radix-accordion-content-height);
3177
+ }
3178
+
3179
+ to {
3180
+ height: 0;
3181
+ }
3182
+ }
3183
+
3184
+ .data-\[state\=closed\]\:animate-accordion-up[data-state=closed] {
3185
+ animation: accordion-up 0.2s ease-out;
3186
+ }
3187
+
3188
+ @keyframes accordion-down {
3189
+ from {
3190
+ height: 0;
3191
+ }
3192
+
3193
+ to {
3194
+ height: var(--radix-accordion-content-height);
3195
+ }
3196
+ }
3197
+
3198
+ .data-\[state\=open\]\:animate-accordion-down[data-state=open] {
3199
+ animation: accordion-down 0.2s ease-out;
3200
+ }
3201
+
3141
3202
  .prose-a\:text-pzh-green :is(:where(a):not(:where([class~="not-prose"] *))) {
3142
3203
  --tw-text-opacity: 1;
3143
3204
  color: rgb(0 128 77 / var(--tw-text-opacity));
@@ -3205,3 +3266,8 @@ ol li ol li ol li {
3205
3266
  padding-right: 2rem;
3206
3267
  }
3207
3268
  }
3269
+
3270
+ .\[\&\[data-state\=open\]\>svg\]\:rotate-180[data-state=open]>svg {
3271
+ --tw-rotate: 180deg;
3272
+ 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));
3273
+ }