valtech-components 2.0.289 → 2.0.290

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.
@@ -19,6 +19,7 @@ export declare class LinkProcessingExampleComponent {
19
19
  sameTabLinksProps: TextMetadata;
20
20
  markdownLinksProps: TextMetadata;
21
21
  mixedFormatsProps: TextMetadata;
22
+ punctuationTestProps: TextMetadata;
22
23
  static ɵfac: i0.ɵɵFactoryDeclaration<LinkProcessingExampleComponent, never>;
23
24
  static ɵcmp: i0.ɵɵComponentDeclaration<LinkProcessingExampleComponent, "val-link-processing-example", never, {}, {}, never, never, true, never>;
24
25
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valtech-components",
3
- "version": "2.0.289",
3
+ "version": "2.0.290",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.0.0",
6
6
  "@angular/core": "^18.0.0",
@@ -203,3 +203,37 @@ ion-modal.modal-sheet ion-header ion-toolbar:last-of-type {
203
203
  padding: 0 !important;
204
204
  padding-bottom: 0.5rem !important;
205
205
  }
206
+
207
+ // Estilos para enlaces procesados automáticamente
208
+ .processed-link {
209
+ color: var(--ion-color-primary, #3880ff);
210
+ text-decoration: underline;
211
+ text-decoration-thickness: 1px;
212
+ text-underline-offset: 2px;
213
+ transition: color 0.3s ease;
214
+
215
+ &:hover {
216
+ color: var(--ion-color-primary-shade, #3171e0);
217
+ text-decoration-thickness: 2px;
218
+ }
219
+
220
+ &:active {
221
+ color: var(--ion-color-primary-tint, #4c8dff);
222
+ }
223
+ }
224
+
225
+ .external-link {
226
+ &::after {
227
+ content: ' ↗';
228
+ font-size: 0.8em;
229
+ opacity: 0.7;
230
+ }
231
+ }
232
+
233
+ .internal-link {
234
+ color: var(--ion-color-secondary, #0cd1e8);
235
+
236
+ &:hover {
237
+ color: var(--ion-color-secondary-shade, #0bb8cc);
238
+ }
239
+ }