@wavemaker/angular-codegen 12.0.0-next.141195 → 12.0.0-next.141937
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 +1612 -312
- angular-codegen/angular-app/package.json +10 -10
- angular-codegen/angular-app/src/assets/styles/css/wm-style.css +1 -1
- angular-codegen/dependencies/transpilation-mobile.cjs.js +5 -5
- angular-codegen/dependencies/transpilation-web.cjs.js +5 -5
- 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
|
};
|
@@ -91042,7 +91042,7 @@ var tile_build$1 = /*#__PURE__*/Object.freeze({
|
|
91042
91042
|
const tagName$16 = 'div';
|
91043
91043
|
register('wm-wizard', () => {
|
91044
91044
|
return {
|
91045
|
-
pre: attrs => `<${tagName$16} wmWizard
|
91045
|
+
pre: attrs => `<${tagName$16} wmWizard ${getAttrMarkup(attrs)}>`,
|
91046
91046
|
post: () => `</${tagName$16}>`
|
91047
91047
|
};
|
91048
91048
|
});
|
@@ -91663,7 +91663,7 @@ var calendar_build$1 = /*#__PURE__*/Object.freeze({
|
|
91663
91663
|
const tagName$T = 'ul';
|
91664
91664
|
register('wm-chips', () => {
|
91665
91665
|
return {
|
91666
|
-
pre: attrs => `<${tagName$T} wmChips
|
91666
|
+
pre: attrs => `<${tagName$T} wmChips ${getAttrMarkup(attrs)} ${getNgModelAttr(attrs)}>`,
|
91667
91667
|
post: () => `</${tagName$T}>`
|
91668
91668
|
};
|
91669
91669
|
});
|
@@ -91918,7 +91918,7 @@ register('wm-fileupload', () => {
|
|
91918
91918
|
const onDeleteBinding = getDataSource(attrs.get('delete.event'));
|
91919
91919
|
attrs.set('deletedatasource.bind', onDeleteBinding);
|
91920
91920
|
}
|
91921
|
-
return `<${tagName$C} wmFileUpload ${getAttrMarkup(attrs)}
|
91921
|
+
return `<${tagName$C} wmFileUpload ${getAttrMarkup(attrs)}>`;
|
91922
91922
|
},
|
91923
91923
|
post: () => `</${tagName$C}>`
|
91924
91924
|
};
|
@@ -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
|
};
|
@@ -102233,7 +102233,7 @@ var tile_build$1 = /*#__PURE__*/Object.freeze({
|
|
102233
102233
|
const tagName$16 = 'div';
|
102234
102234
|
register('wm-wizard', () => {
|
102235
102235
|
return {
|
102236
|
-
pre: attrs => `<${tagName$16} wmWizard
|
102236
|
+
pre: attrs => `<${tagName$16} wmWizard ${getAttrMarkup(attrs)}>`,
|
102237
102237
|
post: () => `</${tagName$16}>`
|
102238
102238
|
};
|
102239
102239
|
});
|
@@ -102854,7 +102854,7 @@ var calendar_build$1 = /*#__PURE__*/Object.freeze({
|
|
102854
102854
|
const tagName$T = 'ul';
|
102855
102855
|
register('wm-chips', () => {
|
102856
102856
|
return {
|
102857
|
-
pre: attrs => `<${tagName$T} wmChips
|
102857
|
+
pre: attrs => `<${tagName$T} wmChips ${getAttrMarkup(attrs)} ${getNgModelAttr(attrs)}>`,
|
102858
102858
|
post: () => `</${tagName$T}>`
|
102859
102859
|
};
|
102860
102860
|
});
|
@@ -103109,7 +103109,7 @@ register('wm-fileupload', () => {
|
|
103109
103109
|
const onDeleteBinding = getDataSource(attrs.get('delete.event'));
|
103110
103110
|
attrs.set('deletedatasource.bind', onDeleteBinding);
|
103111
103111
|
}
|
103112
|
-
return `<${tagName$C} wmFileUpload ${getAttrMarkup(attrs)}
|
103112
|
+
return `<${tagName$C} wmFileUpload ${getAttrMarkup(attrs)}>`;
|
103113
103113
|
},
|
103114
103114
|
post: () => `</${tagName$C}>`
|
103115
103115
|
};
|