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.
- package/esm2022/lib/components/atoms/text/text.component.mjs +3 -3
- package/esm2022/lib/examples/link-processing-example.component.mjs +23 -1
- package/esm2022/lib/services/link-processor.service.mjs +41 -35
- package/fesm2022/valtech-components.mjs +64 -36
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/examples/link-processing-example.component.d.ts +1 -0
- package/package.json +1 -1
- package/src/lib/components/styles/overrides.scss +34 -0
|
@@ -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
|
@@ -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
|
+
}
|