@versini/ui-styles 9.1.2 → 9.2.0

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.
Files changed (2) hide show
  1. package/dist/index.js +17 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- @versini/ui-styles v9.1.2
2
+ @versini/ui-styles v9.2.0
3
3
  © 2026 gizmette.com
4
4
  */
5
5
 
@@ -12,6 +12,20 @@ import colors from "tailwindcss/colors";
12
12
 
13
13
 
14
14
 
15
+ /* export default */ const menu = ({
16
+ "@keyframes av-backdrop-fade-in": {
17
+ from: {
18
+ backgroundColor: "transparent"
19
+ },
20
+ to: {
21
+ backgroundColor: "rgb(0 0 0 / 0.4)"
22
+ }
23
+ },
24
+ ".av-backdrop-animate::backdrop": {
25
+ animation: "av-backdrop-fade-in 200ms ease-out forwards"
26
+ }
27
+ });
28
+
15
29
  /* export default */ const spinner = ({
16
30
  /**
17
31
  * Blink animation for dots spinner.
@@ -268,6 +282,7 @@ const dynamicColors = ()=>{
268
282
 
269
283
 
270
284
 
285
+
271
286
  /**
272
287
  * Adding custom paths to the TailwindCSS build. This is necessary
273
288
  * to include the custom components CSS in the final build. It looks
@@ -294,6 +309,7 @@ const dynamicColors = ()=>{
294
309
  typographyPlugin,
295
310
  container_queries,
296
311
  tailwindcss_plugin(function({ addComponents, addVariant }) {
312
+ addComponents(menu);
297
313
  addComponents(textInput);
298
314
  addComponents(textArea);
299
315
  addComponents(spinner);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@versini/ui-styles",
3
- "version": "9.1.2",
3
+ "version": "9.2.0",
4
4
  "license": "MIT",
5
5
  "author": "Arno Versini",
6
6
  "publishConfig": {
@@ -50,5 +50,5 @@
50
50
  "devDependencies": {
51
51
  "rollup-plugin-copy": "3.5.0"
52
52
  },
53
- "gitHead": "5e9bc7973fad91de3634b036bfff25593c617fe1"
53
+ "gitHead": "73c5790eea7f907f78dc530236ecd5984f0b6551"
54
54
  }