@wavemaker/angular-codegen 11.9.1-next.27512 → 11.9.1-next.27515
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.
- angular-codegen/angular-app/package-lock.json +4 -4
- angular-codegen/angular-app/package.json +2 -2
- angular-codegen/angular-app/src/assets/styles/css/wm-style.css +1 -1
- angular-codegen/dependencies/transpilation-mobile.cjs.js +2 -2
- angular-codegen/dependencies/transpilation-web.cjs.js +2 -2
- angular-codegen/package.json +1 -1
|
@@ -90781,7 +90781,7 @@ register('wm-accordion', () => {
|
|
|
90781
90781
|
// generating unique Id for the accordion
|
|
90782
90782
|
const counter = idGen$l.nextUid();
|
|
90783
90783
|
shared.set('accordion_ref', counter);
|
|
90784
|
-
return `<${tagName$1i} wmAccordion #${counter}="wmAccordion"
|
|
90784
|
+
return `<${tagName$1i} wmAccordion #${counter}="wmAccordion" ${getAttrMarkup(attrs)}>`;
|
|
90785
90785
|
},
|
|
90786
90786
|
post: () => `</${tagName$1i}>`,
|
|
90787
90787
|
template: (node, shared) => {
|
|
@@ -90820,7 +90820,7 @@ register('wm-accordionpane', () => {
|
|
|
90820
90820
|
return {
|
|
90821
90821
|
pre: (attrs) => {
|
|
90822
90822
|
const counter = idGen$k.nextUid();
|
|
90823
|
-
return `<${tagName$1h} #${counter}="wmAccordionPane"
|
|
90823
|
+
return `<${tagName$1h} #${counter}="wmAccordionPane" wmAccordionPane partialContainer wm-navigable-element="true" ${getAttrMarkup(attrs)}>`;
|
|
90824
90824
|
},
|
|
90825
90825
|
post: () => `</${tagName$1h}>`
|
|
90826
90826
|
};
|
|
@@ -101972,7 +101972,7 @@ register('wm-accordion', () => {
|
|
|
101972
101972
|
// generating unique Id for the accordion
|
|
101973
101973
|
const counter = idGen$l.nextUid();
|
|
101974
101974
|
shared.set('accordion_ref', counter);
|
|
101975
|
-
return `<${tagName$1i} wmAccordion #${counter}="wmAccordion"
|
|
101975
|
+
return `<${tagName$1i} wmAccordion #${counter}="wmAccordion" ${getAttrMarkup(attrs)}>`;
|
|
101976
101976
|
},
|
|
101977
101977
|
post: () => `</${tagName$1i}>`,
|
|
101978
101978
|
template: (node, shared) => {
|
|
@@ -102011,7 +102011,7 @@ register('wm-accordionpane', () => {
|
|
|
102011
102011
|
return {
|
|
102012
102012
|
pre: (attrs) => {
|
|
102013
102013
|
const counter = idGen$k.nextUid();
|
|
102014
|
-
return `<${tagName$1h} #${counter}="wmAccordionPane"
|
|
102014
|
+
return `<${tagName$1h} #${counter}="wmAccordionPane" wmAccordionPane partialContainer wm-navigable-element="true" ${getAttrMarkup(attrs)}>`;
|
|
102015
102015
|
},
|
|
102016
102016
|
post: () => `</${tagName$1h}>`
|
|
102017
102017
|
};
|