Skip to content

Commit df18aad

Browse files
authored
Merge pull request #24 from ArunPnurA/master
v17.3.14 is released
2 parents d52b50c + efe1ba3 commit df18aad

File tree

732 files changed

+11778
-4057
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

732 files changed

+11778
-4057
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ej2-angular-samples",
3-
"version": "17.1.49",
3+
"version": "17.3.14",
44
"scripts": {
55
"start": "node --max-old-space-size=4096 ./node_modules/@angular/cli/bin/ng serve",
66
"start:prod": "node --max-old-space-size=4096 ./node_modules/@angular/cli/bin/ng serve --prod",
@@ -53,6 +53,7 @@
5353
"@syncfusion/ej2-angular-treegrid": "*",
5454
"@syncfusion/ej2-angular-treemap": "*",
5555
"@syncfusion/ej2-splitbuttons": "*",
56+
"@syncfusion/ej2-angular-spreadsheet": "*",
5657
"@types/codemirror": "0.0.56",
5758
"codemirror": "^5.37.0",
5859
"core-js": "^2.5.4",

src/app/badge/accordion-stackb.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/app/badge/accordion.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ export class accordionController {
2525
iconElement[i].appendChild(badge);
2626
}
2727
}
28-
}
28+
}

src/app/badge/accordion.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<e-accordionitems>
55
<e-accordionitem header='Robert' iconCss='e-people e-acrdn-icons' [expanded]=true>
66
<ng-template #content>
7-
<div style="display:none">
7+
<div>
88
<li class="msg">
99
<span class="e-acrdn-icons e-content-icon people"></span>Message Thread</li>
1010
<li class="msg">
@@ -14,7 +14,7 @@
1414
</e-accordionitem>
1515
<e-accordionitem header='Kevin' iconCss='e-people e-acrdn-icons'>
1616
<ng-template #content>
17-
<div style="display:none">
17+
<div>
1818
<li class="msg">
1919
<span class="e-acrdn-icons e-content-icon people"></span>Message Thread</li>
2020
<li class="msg">
@@ -24,7 +24,7 @@
2424
</e-accordionitem>
2525
<e-accordionitem header='Eric' iconCss='e-people e-acrdn-icons'>
2626
<ng-template #content>
27-
<div style="display:none">
27+
<div>
2828
<li class="msg">
2929
<span class="e-acrdn-icons e-content-icon people"></span>Message Thread</li>
3030
<li class="msg">
@@ -34,7 +34,7 @@
3434
</e-accordionitem>
3535
<e-accordionitem header='Peter' iconCss='e-people e-acrdn-icons'>
3636
<ng-template #content>
37-
<div style="display:none">
37+
<div>
3838
<li class="msg">
3939
<span class="e-acrdn-icons e-content-icon people"></span>Message Thread</li>
4040
<li class="msg">

src/app/badge/types-stackb.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/app/badge/types.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,4 +142,4 @@
142142
<li>Dark: The
143143
<code>.e-badge-dark</code> class applies the dark color.</li>
144144
</ul>
145-
</div>
145+
</div>

src/app/button/button-group-stackb.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/app/button/button.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const buttonAppRoutes: Object[] = [
1717
{ path: ':theme/button/button-group', component: ButtonGroupController, name: 'Button Group', category: 'Button', description: 'This example demonstrates the behaviors (default, checkbox, radio) of the Syncfusion Angular ButtonGroup.', ftName: 'button-group' },
1818
{ path: ':theme/button/checkbox', component: CheckBoxController, name: 'Checkbox', category: 'Button', description: 'This example demonstrates the three different states (checked, unchecked, indeterminate) of the Syncfusion Angular CheckBox.', ftName: 'checkbox' },
1919
{ path: ':theme/button/radio-button', component: RadioButtonController, name: 'Radio Button', category: 'Button', description: 'This example demonstrates the group functionality of the Syncfusion Angular RadioButton with checked and unchecked states.', ftName: 'radio-button' },
20-
{ path: ':theme/button/dropdown-button', component: DropDownButtonController, name: 'Dropdown Menu', category: 'Button', description: 'This example demonstrates the usecases of the Syncfusion Angular DropDownMenu with icons, text and separator in popup action items.', ftName: 'dropdown-menu' },
20+
{ path: ':theme/button/dropdown-button', component: DropDownButtonController, name: 'Dropdown Button', category: 'Button', description: 'This example demonstrates the usecases of the Syncfusion Angular DropDownButton with icons, text and separator in popup action items.', ftName: 'dropdown-menu' },
2121
{ path: ':theme/button/split-button', component: SplitButtonController, name: 'Split Button', category: 'Button', description: 'This example demonstrates the usecases of the Syncfusion Angular SplitButton with icons and text in primary splitbutton', ftName: 'split-button' },
2222
{ path: ':theme/button/switch', component: SwitchController, name: 'Switch', category: 'Button', description: 'This example demonstrates the toggle states (checked, unchecked) of the Syncfusion Angular Switch.', ftName: 'toggle-switch-button' },
2323
{ path: ':theme/button/progress-button', component: ProgressButtonController, name: 'Progress Button', category: 'Button', description: 'This example demonstrates the different functionalities of the Syncfusion Angular ProgressButton with spinner and progress indicator.', ftName: 'progress-button' }

src/app/button/dropdown-button.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@
1919
</div>
2020
</div>
2121
<div id="action-description">
22-
<p>This sample demonstrates the default functionalities of the DropDownMenu.
23-
Clicking DropDownMenu will display popup with list of action items.</p>
22+
<p>This sample demonstrates the default functionalities of the DropDownButton.
23+
Clicking DropDownButton will display popup with list of action items.</p>
2424
</div>
2525
<div id="description">
2626
<p>
27-
The DropDownMenu component is used to toggle contextual overlays for displaying list of action items.
27+
The DropDownButton component is used to toggle contextual overlays for displaying list of action items.
2828
It can contain both text and images.
2929
</p>
3030
<p>
31-
In this sample, DropDownMenu contains icon, content and list of action items, and can be added using
31+
In this sample, DropDownButton contains icon, content and list of action items, and can be added using
3232
<code>
3333
<a target="_blank" class="code" href="https://ej2.syncfusion.com/angular/documentation/api/drop-down-button/#iconcss">iconCss,
3434
</a>
@@ -43,7 +43,7 @@
4343
</code>property.
4444
</p>
4545
<p>
46-
More information about DropDownMenu can be found in this
46+
More information about DropDownButton can be found in this
4747
<a target="_blank" href="https://ej2.syncfusion.com/angular/documentation/drop-down-button/getting-started">
4848
documentation section</a>.
4949
</p>

src/app/calendar/date-range-stackb.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)