valtech-components 2.0.743 → 2.0.744

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.
@@ -22,4 +22,14 @@ export interface NotesBoxMetadata {
22
22
  padding?: string;
23
23
  allowPartialBold?: boolean;
24
24
  processLinks?: boolean;
25
+ /**
26
+ * Compact mode — renders the box as inline-block with `fit-content` width and
27
+ * tighter padding. Ideal for short labels (status chips, doc metadata, badges)
28
+ * where a full-width banner feels oversized.
29
+ */
30
+ compact?: boolean;
31
+ /**
32
+ * Text alignment inside the box. Default `'left'`.
33
+ */
34
+ align?: 'left' | 'center' | 'right';
25
35
  }
@@ -123,6 +123,10 @@ export interface ArticleNoteElement extends BaseArticleElement {
123
123
  allowPartialBold?: boolean;
124
124
  /** Procesa URLs y `[text](url)` en `text`. Default `false`. */
125
125
  processLinks?: boolean;
126
+ /** Compact mode — inline-block fit-content, padding reducido, sin left-border. */
127
+ compact?: boolean;
128
+ /** Alineación del texto. Default `'left'`. */
129
+ align?: 'left' | 'center' | 'right';
126
130
  };
127
131
  }
128
132
  /**
package/lib/version.d.ts CHANGED
@@ -2,4 +2,4 @@
2
2
  * Current version of valtech-components.
3
3
  * This is automatically updated during the publish process.
4
4
  */
5
- export declare const VERSION = "2.0.743";
5
+ export declare const VERSION = "2.0.744";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valtech-components",
3
- "version": "2.0.743",
3
+ "version": "2.0.744",
4
4
  "private": false,
5
5
  "bin": {
6
6
  "valtech-firebase-config": "./src/lib/services/firebase/scripts/generate-sw-config.js"