@arsedizioni/ars-utils 18.4.6 → 18.4.8
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/clipper.ui/ui/clipper.scss +5 -5
- package/core/system.d.ts +6 -0
- package/esm2022/clipper.ui/ui/browser-dialog/browser-dialog.component.mjs +3 -3
- package/esm2022/clipper.ui/ui/document/document.component.mjs +3 -3
- package/esm2022/clipper.ui/ui/references/references.component.mjs +3 -3
- package/esm2022/clipper.ui/ui/search-facets/search-facets.component.mjs +3 -3
- package/esm2022/clipper.ui/ui/search-result-item/search-result-item.component.mjs +3 -3
- package/esm2022/core/system.mjs +21 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +10 -10
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-core.mjs +20 -0
- package/fesm2022/arsedizioni-ars-utils-core.mjs.map +1 -1
- package/package.json +7 -7
|
@@ -203,7 +203,7 @@
|
|
|
203
203
|
}
|
|
204
204
|
|
|
205
205
|
.image {
|
|
206
|
-
height:
|
|
206
|
+
height: 150px;
|
|
207
207
|
position: relative;
|
|
208
208
|
background-color: transparent;
|
|
209
209
|
overflow: hidden;
|
|
@@ -287,12 +287,12 @@
|
|
|
287
287
|
.title {
|
|
288
288
|
text-decoration: none !important;
|
|
289
289
|
font-size: small !important;
|
|
290
|
-
font-weight:
|
|
291
|
-
min-height:
|
|
290
|
+
font-weight: 600;
|
|
291
|
+
min-height: 50px !important; // 2 lines;
|
|
292
|
+
min-height: 70px !important; // 3 lines;
|
|
292
293
|
min-width: 100%;
|
|
293
294
|
white-space: unset !important;
|
|
294
|
-
overflow:
|
|
295
|
-
padding: unset !important;
|
|
295
|
+
overflow: hidden !important;
|
|
296
296
|
}
|
|
297
297
|
|
|
298
298
|
|
package/core/system.d.ts
CHANGED
|
@@ -248,4 +248,10 @@ export declare class SystemUtils {
|
|
|
248
248
|
* @returns : a node list
|
|
249
249
|
*/
|
|
250
250
|
private static _toNodes;
|
|
251
|
+
/**
|
|
252
|
+
* Return the flags array to be used in selections
|
|
253
|
+
* @param value : the new value
|
|
254
|
+
* @param max: the max number of flags
|
|
255
|
+
*/
|
|
256
|
+
static getFlags(value: number, max?: number): number[];
|
|
251
257
|
}
|