@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.
@@ -203,7 +203,7 @@
203
203
  }
204
204
 
205
205
  .image {
206
- height: 180px;
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: normal;
291
- min-height: 72px !important; // 4 lines;
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: unset !important;
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
  }