@wavemaker/angular-codegen 11.2.0-rc.5220 → 11.2.0-rc.5223
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.
@@ -46940,7 +46940,7 @@ register('wm-page', () => {
|
|
46940
46940
|
},
|
46941
46941
|
pre: (attrs) => {
|
46942
46942
|
const counter = idGen$8.nextUid();
|
46943
|
-
return `<${tagName$p} wmPage #${counter}="wmPage" data-role="pageContainer" [attr.aria-label]="${counter}.hint
|
46943
|
+
return `<${tagName$p} wmPage #${counter}="wmPage" data-role="pageContainer" [attr.aria-label]="${counter}.hint" ${getAttrMarkup(attrs)}>`;
|
46944
46944
|
},
|
46945
46945
|
post: () => `</${tagName$p}>`
|
46946
46946
|
};
|
@@ -47592,12 +47592,13 @@ const tagName$5 = 'div';
|
|
47592
47592
|
const getRowExpansionActionTmpl = (attrs) => {
|
47593
47593
|
const tag = attrs.get('widget-type') === 'anchor' ? 'a' : 'button';
|
47594
47594
|
const directive = attrs.get('widget-type') === 'anchor' ? 'wmAnchor' : 'wmButton';
|
47595
|
+
const title = attrs.get('display-name') || attrs.get('title') || 'Collapse/Expand';
|
47595
47596
|
return `<ng-template #rowExpansionActionTmpl let-row="row">
|
47596
47597
|
<${tag} ${directive}
|
47597
47598
|
${getRowActionAttrs(attrs)}
|
47598
47599
|
class="${attrs.get('class')} row-expansion-button"
|
47599
47600
|
iconclass="${attrs.get('collapseicon')}"
|
47600
|
-
type="button"></${tag}>
|
47601
|
+
type="button" aria-label="${title}"></${tag}>
|
47601
47602
|
</ng-template>`;
|
47602
47603
|
};
|
47603
47604
|
const ɵ0$1$2 = getRowExpansionActionTmpl;
|
@@ -46940,7 +46940,7 @@ register('wm-page', () => {
|
|
46940
46940
|
},
|
46941
46941
|
pre: (attrs) => {
|
46942
46942
|
const counter = idGen$8.nextUid();
|
46943
|
-
return `<${tagName$p} wmPage #${counter}="wmPage" data-role="pageContainer" [attr.aria-label]="${counter}.hint
|
46943
|
+
return `<${tagName$p} wmPage #${counter}="wmPage" data-role="pageContainer" [attr.aria-label]="${counter}.hint" ${getAttrMarkup(attrs)}>`;
|
46944
46944
|
},
|
46945
46945
|
post: () => `</${tagName$p}>`
|
46946
46946
|
};
|
@@ -47592,12 +47592,13 @@ const tagName$5 = 'div';
|
|
47592
47592
|
const getRowExpansionActionTmpl = (attrs) => {
|
47593
47593
|
const tag = attrs.get('widget-type') === 'anchor' ? 'a' : 'button';
|
47594
47594
|
const directive = attrs.get('widget-type') === 'anchor' ? 'wmAnchor' : 'wmButton';
|
47595
|
+
const title = attrs.get('display-name') || attrs.get('title') || 'Collapse/Expand';
|
47595
47596
|
return `<ng-template #rowExpansionActionTmpl let-row="row">
|
47596
47597
|
<${tag} ${directive}
|
47597
47598
|
${getRowActionAttrs(attrs)}
|
47598
47599
|
class="${attrs.get('class')} row-expansion-button"
|
47599
47600
|
iconclass="${attrs.get('collapseicon')}"
|
47600
|
-
type="button"></${tag}>
|
47601
|
+
type="button" aria-label="${title}"></${tag}>
|
47601
47602
|
</ng-template>`;
|
47602
47603
|
};
|
47603
47604
|
const ɵ0$1$2 = getRowExpansionActionTmpl;
|