@zanichelli/albe-web-components 2.24.11 → 2.26.1
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/loader.cjs.js +1 -1
- package/dist/cjs/web-components-library.cjs.js +1 -1
- package/dist/cjs/{z-alert_65.cjs.entry.js → z-alert_66.cjs.entry.js} +109 -75
- package/dist/collection/components/modal/z-modal/styles.css +2 -2
- package/dist/collection/components/navigation/z-user-dropdown/styles.css +5 -6
- package/dist/collection/snowflakes/registro-table/z-registro-table-header/index.js +39 -12
- package/dist/esm/loader.js +1 -1
- package/dist/esm/web-components-library.js +1 -1
- package/dist/esm/{z-alert_65.entry.js → z-alert_66.entry.js} +109 -76
- package/dist/types/components.d.ts +8 -0
- package/dist/types/snowflakes/registro-table/z-registro-table-header/index.d.ts +2 -0
- package/dist/web-components-library/{p-fc1676f7.entry.js → p-c824afd3.entry.js} +2 -2
- package/dist/web-components-library/web-components-library.esm.js +1 -1
- package/package.json +1 -1
- package/www/build/p-002ed333.js +1 -0
- package/www/build/{p-fc1676f7.entry.js → p-c824afd3.entry.js} +2 -2
- package/www/build/web-components-library.esm.js +1 -1
- package/www/index.html +11 -5
- package/CHANGELOG.md +0 -1013
- package/dist/cjs/z-modal.cjs.entry.js +0 -36
- package/dist/esm/z-modal.entry.js +0 -32
- package/dist/web-components-library/p-139b1c56.entry.js +0 -1
- package/src-react/index.ts +0 -1
- package/www/build/p-139b1c56.entry.js +0 -1
- package/www/build/p-4d24bb8e.js +0 -1
|
@@ -1239,6 +1239,10 @@ export namespace Components {
|
|
|
1239
1239
|
* Column ID
|
|
1240
1240
|
*/
|
|
1241
1241
|
"columnId": string;
|
|
1242
|
+
/**
|
|
1243
|
+
* [Optional] Default sort order
|
|
1244
|
+
*/
|
|
1245
|
+
"defaultSortDirection"?: SortDirection;
|
|
1242
1246
|
/**
|
|
1243
1247
|
* [Optional] Show contextual menu button
|
|
1244
1248
|
*/
|
|
@@ -3485,6 +3489,10 @@ declare namespace LocalJSX {
|
|
|
3485
3489
|
* Column ID
|
|
3486
3490
|
*/
|
|
3487
3491
|
"columnId"?: string;
|
|
3492
|
+
/**
|
|
3493
|
+
* [Optional] Default sort order
|
|
3494
|
+
*/
|
|
3495
|
+
"defaultSortDirection"?: SortDirection;
|
|
3488
3496
|
/**
|
|
3489
3497
|
* [Optional] callback for sorting
|
|
3490
3498
|
*/
|
|
@@ -10,6 +10,8 @@ export declare class ZRegistroTableHeader {
|
|
|
10
10
|
sortable?: boolean;
|
|
11
11
|
/** [Optional] Show contextual menu button */
|
|
12
12
|
showButton?: boolean;
|
|
13
|
+
/** [Optional] Default sort order */
|
|
14
|
+
defaultSortDirection?: SortDirection;
|
|
13
15
|
sortDirection: SortDirection;
|
|
14
16
|
isMenuOpened: boolean;
|
|
15
17
|
constructor();
|