@maggioli-design-system/mds-table-row 4.5.3 → 4.6.0
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/dist/cjs/app-globals-3a1e7e63.js +5 -0
- package/dist/cjs/index-97006570.js +1198 -0
- package/dist/cjs/loader.cjs.js +4 -2
- package/dist/cjs/mds-table-row.cjs.entry.js +5 -4
- package/dist/cjs/mds-table-row.cjs.js +12 -10
- package/dist/collection/collection-manifest.json +2 -2
- package/dist/collection/common/locale.js +50 -0
- package/dist/collection/components/mds-table-row/mds-table-row.css +159 -39
- package/dist/collection/components/mds-table-row/mds-table-row.js +1 -1
- package/dist/collection/type/preference.js +1 -0
- package/dist/collection/type/variant-file-format.js +20 -11
- package/dist/components/mds-table-row.js +4 -3
- package/dist/documentation.d.ts +34 -0
- package/dist/documentation.json +3 -3
- package/dist/esm/app-globals-0f993ce5.js +3 -0
- package/dist/esm/index-ac4b33c0.js +1171 -0
- package/dist/esm/loader.js +5 -3
- package/dist/esm/mds-table-row.entry.js +5 -4
- package/dist/esm/mds-table-row.js +13 -11
- package/dist/esm-es5/app-globals-0f993ce5.js +1 -0
- package/dist/esm-es5/index-ac4b33c0.js +1 -0
- package/dist/esm-es5/loader.js +1 -1
- package/dist/esm-es5/mds-table-row.entry.js +1 -1
- package/dist/esm-es5/mds-table-row.js +1 -1
- package/dist/mds-table-row/mds-table-row.esm.js +1 -1
- package/dist/mds-table-row/mds-table-row.js +1 -1
- package/dist/mds-table-row/p-0a6d4960.js +2 -0
- package/dist/mds-table-row/p-11e2454f.system.js +1 -0
- package/dist/mds-table-row/p-24249845.entry.js +1 -0
- package/dist/mds-table-row/p-56ba5cbf.system.js +1 -0
- package/dist/mds-table-row/p-778c4fcb.system.entry.js +1 -0
- package/dist/mds-table-row/p-bc92b059.system.js +2 -0
- package/dist/mds-table-row/p-e1255160.js +1 -0
- package/dist/stats.json +45 -33
- package/dist/types/common/locale.d.ts +15 -0
- package/dist/types/stencil-public-runtime.d.ts +3 -10
- package/dist/types/type/preference.d.ts +2 -0
- package/documentation.json +43 -23
- package/loader/cdn.js +1 -2
- package/loader/index.cjs.js +1 -2
- package/loader/index.d.ts +3 -0
- package/loader/index.es2017.js +1 -2
- package/loader/index.js +1 -2
- package/package.json +4 -4
- package/src/common/locale.ts +66 -0
- package/src/components/mds-table-row/css/mds-table-row-pref-animation.css +16 -0
- package/src/components/mds-table-row/mds-table-row.css +14 -0
- package/src/fixtures/icons.json +18 -0
- package/src/fixtures/iconsauce.json +9 -0
- package/src/tailwind/components.css +71 -0
- package/src/type/preference.ts +10 -0
- package/src/type/variant-file-format.ts +20 -11
- package/www/build/mds-table-row.esm.js +1 -1
- package/www/build/mds-table-row.js +1 -1
- package/www/build/p-0a6d4960.js +2 -0
- package/www/build/p-11e2454f.system.js +1 -0
- package/www/build/p-24249845.entry.js +1 -0
- package/www/build/p-56ba5cbf.system.js +1 -0
- package/www/build/p-778c4fcb.system.entry.js +1 -0
- package/www/build/p-bc92b059.system.js +2 -0
- package/www/build/p-e1255160.js +1 -0
- package/dist/cjs/index-7b6fb148.js +0 -1644
- package/dist/esm/index-9f40909f.js +0 -1617
- package/dist/esm-es5/index-9f40909f.js +0 -1
- package/dist/mds-table-row/p-24e0f761.system.js +0 -2
- package/dist/mds-table-row/p-4e5a0559.js +0 -2
- package/dist/mds-table-row/p-65fbbba9.system.js +0 -1
- package/dist/mds-table-row/p-ab9fb13e.entry.js +0 -1
- package/dist/mds-table-row/p-f8b0aa6b.system.entry.js +0 -1
- package/www/build/p-24e0f761.system.js +0 -2
- package/www/build/p-4e5a0559.js +0 -2
- package/www/build/p-65fbbba9.system.js +0 -1
- package/www/build/p-ab9fb13e.entry.js +0 -1
- package/www/build/p-f8b0aa6b.system.entry.js +0 -1
package/dist/documentation.d.ts
CHANGED
|
@@ -347,10 +347,26 @@ export interface JsonDocsEvent {
|
|
|
347
347
|
deprecation?: string;
|
|
348
348
|
detail: string;
|
|
349
349
|
}
|
|
350
|
+
/**
|
|
351
|
+
* Type describing a CSS Style, as described by a JSDoc-style comment
|
|
352
|
+
*/
|
|
350
353
|
export interface JsonDocsStyle {
|
|
354
|
+
/**
|
|
355
|
+
* The name of the style
|
|
356
|
+
*/
|
|
351
357
|
name: string;
|
|
358
|
+
/**
|
|
359
|
+
* The type/description associated with the style
|
|
360
|
+
*/
|
|
352
361
|
docs: string;
|
|
362
|
+
/**
|
|
363
|
+
* The annotation used in the JSDoc of the style (e.g. `@prop`)
|
|
364
|
+
*/
|
|
353
365
|
annotation: string;
|
|
366
|
+
/**
|
|
367
|
+
* The mode associated with the style
|
|
368
|
+
*/
|
|
369
|
+
mode: string | undefined;
|
|
354
370
|
}
|
|
355
371
|
export interface JsonDocsListener {
|
|
356
372
|
event: string;
|
|
@@ -389,10 +405,28 @@ export interface JsonDocsPart {
|
|
|
389
405
|
*/
|
|
390
406
|
docs: string;
|
|
391
407
|
}
|
|
408
|
+
/**
|
|
409
|
+
* Represents a parsed block comment in a CSS, Sass, etc. file for a custom property.
|
|
410
|
+
*/
|
|
392
411
|
export interface StyleDoc {
|
|
412
|
+
/**
|
|
413
|
+
* The name of the CSS property
|
|
414
|
+
*/
|
|
393
415
|
name: string;
|
|
416
|
+
/**
|
|
417
|
+
* The user-defined description of the CSS property
|
|
418
|
+
*/
|
|
394
419
|
docs: string;
|
|
420
|
+
/**
|
|
421
|
+
* The JSDoc-style annotation (e.g. `@prop`) that was used in the block comment to detect the comment.
|
|
422
|
+
* Used to inform Stencil where the start of a new property's description starts (and where the previous description
|
|
423
|
+
* ends).
|
|
424
|
+
*/
|
|
395
425
|
annotation: "prop";
|
|
426
|
+
/**
|
|
427
|
+
* The Stencil style-mode that is associated with this property.
|
|
428
|
+
*/
|
|
429
|
+
mode: string | undefined;
|
|
396
430
|
}
|
|
397
431
|
|
|
398
432
|
export {};
|
package/dist/documentation.json
CHANGED