This commit is contained in:
SyncfusionInstall 2020-05-14 10:41:29 +05:30
Родитель 88c5df7d8f
Коммит 595630641a
784 изменённых файлов: 0 добавлений и 267222 удалений

Просмотреть файл

@ -1,50 +0,0 @@

<div class="cols-sample-area">
<textarea id="rteSample" rows="10" cols="30" style="width: 740px; height: 440px">
&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;The Rich Text Editor (RTE) control is an easy to render in
client side. Customer easy to edit the contents and get the HTML content for
the displayed content. A rich text editor control provides users with a toolbar
that helps them to apply rich text formats to the text entered in the text
area. &lt;/p&gt;
&lt;p&gt;&lt;b&gt;Functional
Specifications/Requirements:&lt;/b&gt;&lt;/p&gt;
&lt;ol&gt;&lt;li&gt;&lt;p&gt;Provide
the tool bar support, its also customizable.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Options
to get the HTML elements with styles.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Support
to insert image from a defined path.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Footer
elements and styles(tag / Element information , Action button (Upload, Cancel))&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Re-size
the editor support. &lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Provide
efficient public methods and client side events.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Keyboard
navigation support.&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;
</textarea>
</div>
<script type="text/javascript" src="RTE/default.js"></script>
<style type="text/css">
#rteSample {
margin: 0 auto;
}
.customUnOrder, .customOrder {
height: 25px;
}
.customUnOrder:after {
content: "\e7f1";
font-size: 20px;
float: left;
padding: 0px 4px 0px 4px;
}
.customOrder:after {
content: "\e7f0";
font-size: 20px;
float: left;
padding: 0px 4px 0px 4px;
}
</style>

Просмотреть файл

@ -1,69 +0,0 @@
var RTEComponent;
(function (RTEComponent) {
$(function () {
var sample = new ej.RTE($("#rteSample"), {
width: "100%",
minWidth: "150px",
showFooter: true,
showHtmlSource: true,
allowEditing: true,
allowKeyboardNavigation: true,
autoFocus: true,
autoHeight: true,
colorPaletteColumns: 10,
colorPaletteRows: 5,
cssClass: 'gradient-lime',
enableResize: true,
enableTabKeyNavigation: true,
fileBrowser: {
filePath: window.baseurl + "Content/FileBrowser/",
extensionAllow: "*.png, *.doc, *.pdf, *.txt, *.docx",
ajaxAction: window.baseurl + "api/FileExplorer/FileOperations"
},
imageBrowser: {
filePath: window.baseurl + "Content/FileBrowser/",
extensionAllow: "*.png, *.gif, *.jpg, *.jpeg, *.docx",
ajaxAction: window.baseurl + "api/FileExplorer/FileOperations"
},
isResponsive: true,
showClearAll: true,
showClearFormat: true,
showDimensions: true,
showCharCount: true,
tools: {
formatStyle: ["format"],
edit: ["findAndReplace"],
font: ["fontName", "fontSize", "fontColor", "backgroundColor"],
style: ["bold", "italic", "underline", "strikethrough"],
alignment: ["justifyLeft", "justifyCenter", "justifyRight", "justifyFull"],
lists: ["unorderedList", "orderedList"],
clipboard: ["cut", "copy", "paste"],
doAction: ["undo", "redo"],
indenting: ["outdent", "indent"],
clear: ["clearFormat", "clearAll"],
links: ["createLink", "removeLink"],
images: ["image"],
media: ["video"],
tables: ["createTable", "addRowAbove", "addRowBelow", "addColumnLeft", "addColumnRight", "deleteRow", "deleteColumn", "deleteTable"],
effects: ["superscript", "subscript"],
casing: ["upperCase", "lowerCase"],
view: ["fullScreen", "zoomIn", "zoomOut"],
print: ["print"],
customUnorderedList: [{
name: "unOrderInsert",
tooltip: "Custom UnOrderList",
css: "e-rte-toolbar-icon e-rte-unlistitems customUnOrder",
text: "Smiley",
listImage: "url('../content/images/rte/Smiley-GIF.gif')"
}],
customOrderedList: [{
name: "orderInsert",
tooltip: "Custom OrderList",
css: "e-rte-toolbar-icon e-rte-listitems customOrder",
text: "Lower-Greek",
listStyle: "lower-greek"
}]
}
});
});
})(RTEComponent || (RTEComponent = {}));

Просмотреть файл

@ -1,72 +0,0 @@
/// <reference path="../tsfiles/jquery.d.ts" />
/// <reference path="../tsfiles/ej.web.all.d.ts" />
module RTEComponent {
$(function () {
var sample = new ej.RTE($("#rteSample"),{
width: "100%",
minWidth: "150px",
showFooter: true,
showHtmlSource: true,
allowEditing: true,
allowKeyboardNavigation: true,
autoFocus: true,
autoHeight: true,
colorPaletteColumns: 10,
colorPaletteRows: 5,
cssClass: 'gradient-lime',
enableResize: true,
enableTabKeyNavigation: true,
fileBrowser: {
filePath: (<any>window).baseurl + "Content/FileBrowser/",
extensionAllow: "*.png, *.doc, *.pdf, *.txt, *.docx",
ajaxAction: (<any>window).baseurl + "api/FileExplorer/FileOperations"
},
imageBrowser: {
filePath: (<any>window).baseurl + "Content/FileBrowser/",
extensionAllow: "*.png, *.gif, *.jpg, *.jpeg, *.docx",
ajaxAction: (<any>window).baseurl + "api/FileExplorer/FileOperations"
},
isResponsive: true,
showClearAll: true,
showClearFormat: true,
showDimensions: true,
showCharCount: true,
tools: {
formatStyle: ["format"],
edit: ["findAndReplace"],
font: ["fontName", "fontSize", "fontColor", "backgroundColor"],
style: ["bold", "italic", "underline", "strikethrough"],
alignment: ["justifyLeft", "justifyCenter", "justifyRight", "justifyFull"],
lists: ["unorderedList", "orderedList"],
clipboard: ["cut", "copy", "paste"],
doAction: ["undo", "redo"],
indenting: ["outdent", "indent"],
clear: ["clearFormat", "clearAll"],
links: ["createLink", "removeLink"],
images: ["image"],
media: ["video"],
tables: ["createTable", "addRowAbove", "addRowBelow", "addColumnLeft", "addColumnRight", "deleteRow", "deleteColumn", "deleteTable"],
effects: ["superscript", "subscript"],
casing: ["upperCase", "lowerCase"],
view: ["fullScreen", "zoomIn", "zoomOut"],
print: ["print"],
customUnorderedList: [{
name: "unOrderInsert",
tooltip: "Custom UnOrderList",
css: "e-rte-toolbar-icon e-rte-unlistitems customUnOrder",
text: "Smiley",
listImage: "url('../content/images/rte/Smiley-GIF.gif')"
}],
customOrderedList: [{
name: "orderInsert",
tooltip: "Custom OrderList",
css: "e-rte-toolbar-icon e-rte-listitems customOrder",
text: "Lower-Greek",
listStyle: "lower-greek"
}]
}
});
});
}

Просмотреть файл

@ -1,87 +0,0 @@
<div class="cols-sample-area">
<div id="basicAccordion" class="control_frame">
<h3>
<a href="#">Inbox</a>
</h3>
<div>
<div class="emp-list">
<img src="content/images/Employees/3.png" alt="employee" />
<div class="time-panel">7:30</div>
<b class="headername">Catriona</b><br />
All WinRT controls are optimized for touch, supporting common gestures: zooming, panning, selecting, double-tapping, rotating, resizing.
</div>
<div class="emp-list">
<img src="content/images/Employees/6.png" alt="employee" />
<div class="time-panel">5:33</div>
<b class="headername">John Linden</b><br />
All the components in the ASP.NET MVC have been built from the ground up with performance in mind and are extremely lightweight.
</div>
<div class="emp-list">
<img src="content/images/Employees/8.png" alt="employee" />
<div class="time-panel">2:10</div>
<b class="headername">Louis</b><br />
Big data is a broad term for data sets so large or complex that traditional data processing applications are inadequate. Challenges include analysis, capture, data curation, search, sharing, storage, transfer, visualization, querying and information privacy.
</div>
</div>
<h3>
<a href="#">Sent</a>
</h3>
<div>
<div class="emp-list">
<img src="content/images/Employees/8.png" alt="employee" />
<div class="time-panel">3:55</div>
<b class="headername">Louis</b><br />
Big data is a broad term for data sets so large or complex that traditional data processing applications are inadequate. Challenges include analysis, capture, data curation, search, sharing, storage, transfer, visualization, querying and information privacy.
</div>
<div class="emp-list">
<img src="content/images/Employees/6.png" alt="employee" />
<div class="time-panel">6:47</div>
<b class="headername">John Linden</b><br />
Cloud computing, also known as 'on-demand computing', is a kind of Internet-based computing, where shared resources, data and information are provided to computers and other devices on-demand.
</div>
</div>
<h3>
<a href="#">Trash</a>
</h3>
<div>
<div class="emp-list">
<img src="content/images/Employees/3.png" alt="employee" />
<div class="time-panel">8:30</div>
<b class="headername">Catriona</b><br />
With our sophisticated support system, built from the ground up to support all type of customers, you will have a streamlined experience working with our support team.
</div>
</div>
</div>
</div>
<script type="text/javascript" src="accordion/default.js"></script>
<style class="cssStyles">
#basicAccordion img {
float: left;
height: 40px;
padding-right: 6px;
}
.emp-list {
border-bottom: 1px solid #BBBCBB;
margin-bottom: 9px;
padding-bottom: 9px;
}
.emp-list:last-child {
border-bottom: none;
padding-bottom: 0;
}
.time-panel {
float: right;
color: #2382C3;
}
.headername {
font-size: 16px;
font-weight: 600;
}
</style>

Просмотреть файл

@ -1,20 +0,0 @@
var AccordionComponent;
(function (AccordionComponent) {
$(function () {
var sample = new ej.Accordion($("#basicAccordion"), {
width: "100%",
allowKeyboardNavigation: true,
collapseSpeed: 500,
collapsible: true,
enableAnimation: true,
enableMultipleOpen: true,
events: "click",
expandSpeed: 500,
headerSize: "40px",
htmlAttributes: { title: "Demo" },
selectedItemIndex: 1,
showCloseButton: true,
showRoundedCorner: true
});
});
})(AccordionComponent || (AccordionComponent = {}));

Просмотреть файл

@ -1,22 +0,0 @@
/// <reference path="../tsfiles/jquery.d.ts" />
/// <reference path="../tsfiles/ej.web.all.d.ts" />
module AccordionComponent {
$(function () {
var sample = new ej.Accordion($("#basicAccordion"), {
width: "100%",
allowKeyboardNavigation: true,
collapseSpeed: 500,
collapsible: true,
enableAnimation: true,
enableMultipleOpen: true,
events: "click",
expandSpeed: 500,
headerSize: "40px",
htmlAttributes: { title: "Demo" },
selectedItemIndex: 1,
showCloseButton: true,
showRoundedCorner: true
});
});
}

Просмотреть файл

@ -1,8 +0,0 @@
<div class="cols-sample-area">
<div class="frame">
<div class="control">
<input type="text" id="selectCar" />
</div>
</div>
</div>
<script type="text/javascript" src="autocomplete/autocomplete.js"></script>

Просмотреть файл

@ -1,34 +0,0 @@
var AutocompleteComponent;
(function (AutocompleteComponent) {
var carList = [
"Audi S6", "Austin-Healey", "Alfa Romeo", "Aston Martin",
"BMW 7", "Bentley Mulsanne", "Bugatti Veyron",
"Chevrolet Camaro", "Cadillac",
"Duesenberg J", "Dodge Sprinter",
"Elantra", "Excavator",
"Ford Boss 302", "Ferrari 360", "Ford Thunderbird",
"GAZ Siber",
"Honda S2000", "Hyundai Santro",
"Isuzu Swift", "Infiniti Skyline",
"Jaguar XJS",
"Kia Sedona EX", "Koenigsegg Agera",
"Lotus Esprit", "Lamborghini Diablo",
"Mercedes-Benz", "Mercury Coupe", "Maruti Alto 800",
"Nissan Qashqai",
"Oldsmobile S98", "Opel Superboss",
"Porsche 356", "Pontiac Sunbird",
"Scion SRS/SC/SD", "Saab Sportcombi", "Subaru Sambar", "Suzuki Swift",
"Triumph Spitfire", "Toyota 2000GT",
"Volvo P1800", "Volkswagen Shirako"
];
$(function () {
var autocompleteInstance = new ej.Autocomplete($("#selectCar"), {
width: "100%",
watermarkText: "Select a car",
dataSource: carList,
enableAutoFill: true,
showPopupButton: true,
multiSelectMode: "delimiter"
});
});
})(AutocompleteComponent || (AutocompleteComponent = {}));

Просмотреть файл

@ -1,36 +0,0 @@
/// <reference path="../tsfiles/jquery.d.ts" />
/// <reference path="../tsfiles/ej.web.all.d.ts" />
module AutocompleteComponent{
var carList = [
"Audi S6", "Austin-Healey", "Alfa Romeo", "Aston Martin",
"BMW 7", "Bentley Mulsanne", "Bugatti Veyron",
"Chevrolet Camaro", "Cadillac",
"Duesenberg J", "Dodge Sprinter",
"Elantra", "Excavator",
"Ford Boss 302", "Ferrari 360", "Ford Thunderbird",
"GAZ Siber",
"Honda S2000", "Hyundai Santro",
"Isuzu Swift", "Infiniti Skyline",
"Jaguar XJS",
"Kia Sedona EX", "Koenigsegg Agera",
"Lotus Esprit", "Lamborghini Diablo",
"Mercedes-Benz", "Mercury Coupe", "Maruti Alto 800",
"Nissan Qashqai",
"Oldsmobile S98", "Opel Superboss",
"Porsche 356", "Pontiac Sunbird",
"Scion SRS/SC/SD", "Saab Sportcombi", "Subaru Sambar", "Suzuki Swift",
"Triumph Spitfire", "Toyota 2000GT",
"Volvo P1800", "Volkswagen Shirako"
];
$(function () {
var autocompleteInstance =new ej.Autocomplete($("#selectCar"), {
width: "100%",
watermarkText: "Select a car",
dataSource: carList,
enableAutoFill: true,
showPopupButton: true,
multiSelectMode: "delimiter"
});
});
}

Просмотреть файл

@ -1,4 +0,0 @@
<div class="cols-sample-area">
<div id="Barcode" align="center" style="margin-top:100px"></div>
</div>
<script type="text/javascript" src="barcode/barcode.js"></script>

Просмотреть файл

@ -1,8 +0,0 @@
var Barcodecomponent;
(function (Barcodecomponent) {
$(function () {
var barcodesample = new ej.datavisualization.Barcode($("#Barcode"), {
text: "http://www.syncfusion.com"
});
});
})(Barcodecomponent || (Barcodecomponent = {}));

Просмотреть файл

@ -1,11 +0,0 @@
/// <reference path="../tsfiles/jquery.d.ts" />
/// <reference path="../tsfiles/ej.web.all.d.ts" />
module Barcodecomponent {
$(function () {
var barcodesample = new ej.datavisualization.Barcode($("#Barcode"), {
text:"http://www.syncfusion.com"
});
});
}

Просмотреть файл

@ -1,4 +0,0 @@
<div class="cols-sample-area">
<div id="BulletGraph" align="center" style="margin-top:100px"></div>
</div>
<script type="text/javascript" src="bulletGraph/bulletgraph.js"></script>

Просмотреть файл

@ -1,58 +0,0 @@
var Bulletgraphcomponent;
(function (Bulletgraphcomponent) {
$(function () {
var bulletsample = new ej.datavisualization.BulletGraph($("#BulletGraph"), {
isResponsive: true,
load: function () {
var sender = $("#BulletGraph").data("ejBulletGraph");
var bulletTheme = window.themeStyle + window.themeColor + window.themeVarient;
if (bulletTheme) {
switch (bulletTheme) {
case "flatdark":
case "flatazuredark":
case "flatlimedark":
case "flatsaffrondark":
case "gradientdark":
case "gradientazuredark":
case "gradientlimedark":
case "gradientsaffrondark":
case "flathigh-contrast-01dark":
case "flathigh-contrast-02dark":
bulletTheme = "flatdark";
break;
case "flatoffice-365light":
case "flatmateriallight":
bulletTheme = "material";
break;
default:
bulletTheme = "flatlight";
break;
}
sender.model.theme = bulletTheme;
}
},
tooltipSettings: { visible: true },
quantitativeScaleSettings: {
featureMeasures: [{
value: 8, comparativeMeasureValue: 6.7
}]
},
qualitativeRanges: [{
rangeEnd: 4.3, rangeStroke: "#ebebeb"
},
{
rangeEnd: 7.3, rangeStroke: "#d8d8d8"
},
{
rangeEnd: 10, rangeStroke: "#7f7f7f"
}
],
captionSettings: {
textPosition: 'right', text: 'Revenue YTD',
subTitle: {
text: "$ in Thousands", textPosition: "right"
}
}
});
});
})(Bulletgraphcomponent || (Bulletgraphcomponent = {}));

Просмотреть файл

@ -1,62 +0,0 @@
/// <reference path="../tsfiles/jquery.d.ts" />
/// <reference path="../tsfiles/ej.web.all.d.ts" />
module Bulletgraphcomponent {
$(function () {
var bulletsample = new ej.datavisualization.BulletGraph($("#BulletGraph"), {
isResponsive: true,
load: function () {
var sender = $("#BulletGraph").data("ejBulletGraph");
var bulletTheme = (<any>window).themeStyle + (<any>window).themeColor + (<any>window).themeVarient;
if (bulletTheme) {
switch (bulletTheme) {
case "flatdark":
case "flatazuredark":
case "flatlimedark":
case "flatsaffrondark":
case "gradientdark":
case "gradientazuredark":
case "gradientlimedark":
case "gradientsaffrondark":
case "flathigh-contrast-01dark":
case "flathigh-contrast-02dark":
bulletTheme = "flatdark";
break;
case "flatoffice-365light":
case "flatmateriallight":
bulletTheme = "material";
break;
default:
bulletTheme = "flatlight";
break;
}
sender.model.theme = bulletTheme;
}
},
tooltipSettings: { visible: true },
quantitativeScaleSettings: {
featureMeasures: [{
value: 8, comparativeMeasureValue:6.7
}]
},
qualitativeRanges: [{
rangeEnd: 4.3, rangeStroke:"#ebebeb",
},
{
rangeEnd: 7.3, rangeStroke:"#d8d8d8"
},
{
rangeEnd: 10, rangeStroke: "#7f7f7f"
}
],
captionSettings: {
textPosition: 'right', text: 'Revenue YTD',
subTitle: {
text: "$ in Thousands", textPosition:"right"
}
}
});
});
}

Просмотреть файл

@ -1,87 +0,0 @@
<div class="cols-sample-area">
<div class="frame">
<div class="control">
<table>
<tbody>
<tr>
<td class="btnsht">
Button
</td>
<td class="btnsht" colspan="2">
<button id="buttonnormal"></button>
</td>
</tr>
<tr>
<td class="btnsht">
Toggle Button
</td>
<td class="btnsht" colspan="2">
<input type="checkbox" id="TextOnly">
<label for="TextOnly">
Toggle
</label>
</td>
</tr>
<tr>
<td class="btnsht">
Split Button
</td>
<td class="splttd btnsht" colspan="2">
<button id="splitbuttonnormal"></button>
<ul id="menu1">
<li><span>Open</span></li>
<li><span>Save</span></li>
<li><span>Delete</span></li>
</ul>
</td>
</tr>
<tr>
<td class="btnsht">
Group Button
</td>
<td class="btnsht" colspan="2">
<div id="groupButton">
<ul>
<li>
Save
</li>
<li>
Open
</li>
<li>
Delete
</li>
</ul>
</div>
</td>
</tr>
<tr>
<td class="btnsht">
Checkbox
</td>
<td class="chkrad">
<input type="checkbox" class="nodetext" id="check1">
<label for="check1" class="clslab">File1</label>
</td>
<td class="chkrad">
<input type="checkbox" class="nodetext" id="check2">
<label for="check2" class="clslab">File2</label>
</td>
</tr>
<tr>
<td class="btnsht">
Radio Button
</td>
<td class="chkrad">
<input type="radio" name="small" id="radio1"><label for="radio1" class="clslab">Open</label>
</td>
<td class="chkrad" colspan="2">
<input type="radio" name="small" id="radio2"><label for="radio2" class="clslab">Close</label>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<script type="text/javascript" src="button/button.js"></script>

Просмотреть файл

@ -1,45 +0,0 @@
var ButtonComponent;
(function (ButtonComponent) {
$(function () {
var basicButton = new ej.Button($("#buttonnormal"), {
size: "large",
showRoundedCorner: true,
contentType: "textandimage",
prefixIcon: "e-icon e-save",
text: "Save"
});
var toggleButton = new ej.ToggleButton($("#TextOnly"), {
showRoundedCorner: true,
size: "large",
contentType: "textandimage",
defaultPrefixIcon: "e-icon e-save",
activePrefixIcon: "e-icon e-delete",
defaultText: "Save",
activeText: "Delete"
});
var splitbuttonnormal = new ej.SplitButton($("#splitbuttonnormal"), {
showRoundedCorner: true,
size: "large",
prefixIcon: "e-icon e-file-empty",
targetID: "menu1",
contentType: "textandimage",
text: "File"
});
var groupButton = new ej.GroupButton($("#groupButton"), {
showRoundedCorner: true,
size: "large"
});
var check1 = new ej.CheckBox($("#check1"), {
size: "medium", enableTriState: true
});
var check2 = new ej.CheckBox($("#check2"), {
size: "medium", enableTriState: true
});
var radio1 = new ej.RadioButton($("#radio1"), {
size: "medium"
});
var radio2 = new ej.RadioButton($("#radio2"), {
size: "medium", checked: true
});
});
})(ButtonComponent || (ButtonComponent = {}));

Просмотреть файл

@ -1,47 +0,0 @@
/// <reference path="../tsfiles/jquery.d.ts" />
/// <reference path="../tsfiles/ej.web.all.d.ts" />
module ButtonComponent {
$(function () {
var basicButton = new ej.Button($("#buttonnormal"), {
size: "large",
showRoundedCorner: true,
contentType: "textandimage",
prefixIcon: "e-icon e-save",
text: "Save"
});
var toggleButton = new ej.ToggleButton($("#TextOnly"), {
showRoundedCorner: true,
size: "large",
contentType: "textandimage",
defaultPrefixIcon: "e-icon e-save",
activePrefixIcon: "e-icon e-delete",
defaultText: "Save",
activeText: "Delete"
});
var splitbuttonnormal = new ej.SplitButton($("#splitbuttonnormal"), {
showRoundedCorner: true,
size: "large",
prefixIcon: "e-icon e-file-empty",
targetID: "menu1",
contentType: "textandimage",
text: "File"
});
var groupButton = new ej.GroupButton($("#groupButton"), {
showRoundedCorner: true,
size: "large"
});
var check1 = new ej.CheckBox($("#check1"), {
size: "medium", enableTriState: true
});
var check2 = new ej.CheckBox($("#check2"), {
size: "medium", enableTriState: true
});
var radio1 = new ej.RadioButton($("#radio1"), {
size: "medium"
});
var radio2 = new ej.RadioButton($("#radio2"), {
size: "medium", checked: true
});
});
}

Просмотреть файл

@ -1,64 +0,0 @@
<div class="cols-sample-area">
<div id="Chart"></div>
<div id="Tooltip" style="display: none;" class="tooltipDiv">
<div id="icon">
<div id="eficon">
<img src="content/images/chart/eficon.png" />
</div>
</div>
<div id="value">
<div>
<label id="efpercentage">
&nbsp;#point.y#
</label>
<label id="ef">
Efficiency
</label>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="chart/chart.js"></script>
<style class="cssStyles">
#efpercentage, #ef {
margin-bottom: -25px !important;
text-align: center !important;
}
.tooltipDiv {
background-color: #E94649;
color: white;
width: 130px;
}
#Tooltip > div:first-child {
float: left;
}
#Tooltip #value {
float: right;
height: 50px;
width: 68px;
}
#Tooltip #value > div {
margin: 5px 5px 5px 5px;
}
#Tooltip #efpercentage {
font-size: 20px;
font-family: segoe ui;
padding-left: 2px;
}
#Tooltip #ef {
font-size: 12px;
font-family: segoe ui;
}
#eficon {
height: 60px;
width: 60px;
background-repeat: no-repeat;
}
</style>

Просмотреть файл

@ -1,118 +0,0 @@
var ChartComponent;
(function (ChartComponent) {
$(function () {
var chartsample = new ej.datavisualization.Chart($("#Chart"), {
primaryXAxis: {
range: { min: 2005, max: 2011, interval: 1 },
title: { text: "Year" },
valueType: "category"
},
primaryYAxis: {
range: { min: 25, max: 50, interval: 5 },
labelFormat: "{value}%",
title: { text: "Efficiency" }
},
commonSeriesOptions: {
type: 'line', enableAnimation: true,
tooltip: { visible: true, template: 'Tooltip' },
marker: {
shape: 'circle',
size: {
height: 10, width: 10
},
visible: true
},
border: { width: 2 }
},
series: [
{
points: [{ x: 2005, y: 28 }, { x: 2006, y: 25 }, { x: 2007, y: 26 }, { x: 2008, y: 27 },
{ x: 2009, y: 32 }, { x: 2010, y: 35 }, { x: 2011, y: 30 }],
name: 'India'
},
{
points: [{ x: 2005, y: 31 }, { x: 2006, y: 28 }, { x: 2007, y: 30 }, { x: 2008, y: 36 },
{ x: 2009, y: 36 }, { x: 2010, y: 39 }, { x: 2011, y: 37 }],
name: 'Germany'
},
{
points: [{ x: 2005, y: 36 }, { x: 2006, y: 32 }, { x: 2007, y: 34 }, { x: 2008, y: 41 },
{ x: 2009, y: 42 }, { x: 2010, y: 42 }, { x: 2011, y: 43 }],
name: 'England'
},
{
points: [{ x: 2005, y: 39 }, { x: 2006, y: 36 }, { x: 2007, y: 40 }, { x: 2008, y: 44 },
{ x: 2009, y: 45 }, { x: 2010, y: 48 }, { x: 2011, y: 46 }],
name: 'France'
}
],
isResponsive: true,
load: function () {
var sender = $("#Chart").data("ejChart");
if (!!window.orientation && sender) {
var model = sender.model, seriesLength = model.series.length;
model.legend.visible = false;
model.size.height = null;
model.size.width = null;
for (var i = 0; i < seriesLength; i++) {
if (!model.series[i].marker)
model.series[i].marker = {};
if (!model.series[i].marker.size)
model.series[i].marker.size = {};
model.series[i].marker.size.width = 6;
model.series[i].marker.size.height = 6;
}
model.primaryXAxis.labelIntersectAction = "rotate45";
if (model.primaryXAxis.title)
model.primaryXAxis.title.text = "";
if (model.primaryYAxis.title)
model.primaryYAxis.title.text = "";
model.primaryXAxis.edgeLabelPlacement = "hide";
model.primaryYAxis.labelIntersectAction = "rotate45";
model.primaryYAxis.edgeLabelPlacement = "hide";
}
var theme = window.themeStyle + window.themeColor + window.themeVarient;
if (theme) {
switch (theme) {
case "flatdark":
case "flatazuredark":
case "flatlimedark":
case "flatsaffrondark":
theme = "flatdark";
break;
case "gradientlight":
case "gradientazurelight":
case "gradientlimelight":
case "gradientsaffronlight":
theme = "gradientlight";
break;
case "gradientdark":
case "gradientazuredark":
case "gradientlimedark":
case "gradientsaffrondark":
theme = "gradientdark";
break;
case "flatbootstraplight":
theme = "bootstrap";
break;
case "flathigh-contrast-01dark":
case "flathigh-contrast-02dark":
theme = "high-contrast-01";
break;
case "flatmateriallight":
case "flatoffice-365light":
theme = "material";
break;
default:
theme = "flatlight";
break;
}
sender.model.theme = theme;
}
},
title: { text: 'Efficiency of oil-fired power production' },
size: { height: "600" },
legend: { visible: true }
});
});
})(ChartComponent || (ChartComponent = {}));

Просмотреть файл

@ -1,126 +0,0 @@
/// <reference path="../tsfiles/jquery.d.ts" />
/// <reference path="../tsfiles/ej.web.all.d.ts" />
module ChartComponent {
$(function () {
var chartsample = new ej.datavisualization.Chart($("#Chart"), {
primaryXAxis: {
range: { min: 2005, max: 2011, interval: 1 },
title: { text: "Year" },
valueType: "category"
},
primaryYAxis: {
range: { min: 25, max: 50, interval: 5 },
labelFormat: "{value}%",
title: { text: "Efficiency" },
},
commonSeriesOptions:
{
type: 'line', enableAnimation: true,
tooltip:{ visible :true, template:'Tooltip'},
marker:
{
shape: 'circle',
size:
{
height: 10, width: 10
},
visible: true
},
border : {width: 2}
},
series:
[
{
points: [{ x: 2005, y: 28 }, { x: 2006, y: 25 }, { x: 2007, y: 26 }, { x: 2008, y: 27 },
{ x: 2009, y: 32 }, { x: 2010, y: 35 }, { x: 2011, y: 30 }],
name: 'India'
},
{
points: [{ x: 2005, y: 31 }, { x: 2006, y: 28 }, { x: 2007, y: 30 }, { x: 2008, y: 36 },
{ x: 2009, y: 36 }, { x: 2010, y: 39 }, { x: 2011, y: 37 }],
name: 'Germany'
},
{
points: [{ x: 2005, y: 36 }, { x: 2006, y: 32 }, { x: 2007, y: 34 }, { x: 2008, y: 41 },
{ x: 2009, y: 42 }, { x: 2010, y: 42 }, { x: 2011, y: 43 }],
name: 'England'
},
{
points: [{ x: 2005, y: 39 }, { x: 2006, y: 36 }, { x: 2007, y: 40 }, { x: 2008, y: 44 },
{ x: 2009, y: 45 }, { x: 2010, y: 48 }, { x: 2011, y: 46 }],
name: 'France'
}
],
isResponsive: true,
load: function () {
var sender = $("#Chart").data("ejChart");
if (!!window.orientation && sender) { //to modify chart properties for mobile view
var model = sender.model,
seriesLength = model.series.length;
model.legend.visible = false;
model.size.height = null;
model.size.width = null;
for (var i = 0; i < seriesLength; i++) {
if (!model.series[i].marker)
model.series[i].marker = {};
if (!model.series[i].marker.size)
model.series[i].marker.size = {};
model.series[i].marker.size.width = 6;
model.series[i].marker.size.height = 6;
}
model.primaryXAxis.labelIntersectAction = "rotate45";
if (model.primaryXAxis.title)
model.primaryXAxis.title.text = "";
if (model.primaryYAxis.title)
model.primaryYAxis.title.text = "";
model.primaryXAxis.edgeLabelPlacement = "hide";
model.primaryYAxis.labelIntersectAction = "rotate45";
model.primaryYAxis.edgeLabelPlacement = "hide";
}
var theme = (<any>window).themeStyle + (<any>window).themeColor + (<any>window).themeVarient;
if (theme) {
switch (theme) {
case "flatdark":
case "flatazuredark":
case "flatlimedark":
case "flatsaffrondark":
theme = "flatdark";
break;
case "gradientlight":
case "gradientazurelight":
case "gradientlimelight":
case "gradientsaffronlight":
theme = "gradientlight";
break;
case "gradientdark":
case "gradientazuredark":
case "gradientlimedark":
case "gradientsaffrondark":
theme = "gradientdark";
break;
case "flatbootstraplight":
theme = "bootstrap";
break;
case "flathigh-contrast-01dark":
case "flathigh-contrast-02dark":
theme = "high-contrast-01";
break;
case "flatmateriallight":
case "flatoffice-365light":
theme = "material";
break;
default:
theme = "flatlight";
break;
}
sender.model.theme = theme;
}
},
title: { text: 'Efficiency of oil-fired power production' },
size: { height: "600" },
legend: { visible: true},
});
});
}

Просмотреть файл

@ -1,4 +0,0 @@
<div class="cols-sample-area">
<div id="CircularGauge" align="center"></div>
</div>
<script type="text/javascript" src="circulargauge/circulargauge.js"></script>

Просмотреть файл

@ -1,51 +0,0 @@
var circulargaugecomponent;
(function (circulargaugecomponent) {
$(function () {
var circularsample = new ej.datavisualization.CircularGauge($("#CircularGauge"), {
enableAnimation: false,
isResponsive: true,
backgroundColor: "transparent", width: 500,
scales: [{
showRanges: true,
startAngle: 122, sweepAngle: 296, radius: 130, showScaleBar: true, size: 1, maximum: 120, majorIntervalValue: 20, minorIntervalValue: 10,
border: {
width: 0.5
},
pointers: [{
value: 60,
showBackNeedle: true,
backNeedleLength: 20,
length: 95,
width: 7
}],
ticks: [{
type: "major",
distanceFromScale: 2,
height: 16,
width: 1, color: "#8c8c8c"
}, { type: "minor", height: 8, width: 1, distanceFromScale: 2, color: "#8c8c8c" }],
labels: [{
color: "#8c8c8c"
}],
ranges: [{
distanceFromScale: -30,
startValue: 0,
endValue: 70
}, {
distanceFromScale: -30,
startValue: 70,
endValue: 110,
backgroundColor: "#fc0606",
border: { color: "#fc0606" }
},
{
distanceFromScale: -30,
startValue: 110,
endValue: 120,
backgroundColor: "#f5b43f",
border: { color: "#f5b43f" }
}]
}]
});
});
})(circulargaugecomponent || (circulargaugecomponent = {}));

Просмотреть файл

@ -1,53 +0,0 @@
/// <reference path="../tsfiles/jquery.d.ts" />
/// <reference path="../tsfiles/ej.web.all.d.ts" />
module circulargaugecomponent {
$(function () {
var circularsample = new ej.datavisualization.CircularGauge($("#CircularGauge"), {
enableAnimation: false,
isResponsive: true,
backgroundColor: "transparent", width: 500,
scales: [{
showRanges: true,
startAngle: 122, sweepAngle: 296, radius: 130, showScaleBar: true, size: 1, maximum: 120, majorIntervalValue: 20, minorIntervalValue: 10,
border: {
width: 0.5,
},
pointers: [{
value: 60,
showBackNeedle: true,
backNeedleLength: 20,
length: 95,
width: 7
}],
ticks: [{
type: "major",
distanceFromScale: 2,
height: 16,
width: 1, color: "#8c8c8c"
}, { type: "minor", height: 8, width: 1, distanceFromScale: 2, color: "#8c8c8c" }],
labels: [{
color: "#8c8c8c"
}],
ranges: [{
distanceFromScale: -30,
startValue: 0,
endValue: 70
}, {
distanceFromScale: -30,
startValue: 70,
endValue: 110,
backgroundColor: "#fc0606",
border: { color: "#fc0606" }
},
{
distanceFromScale: -30,
startValue: 110,
endValue: 120,
backgroundColor: "#f5b43f",
border: { color: "#f5b43f" }
}]
}]
});
});
}

Просмотреть файл

@ -1,14 +0,0 @@
<div class="cols-sample-area">
<div class="frame">
<div class="control">
<label>Choose Color</label>
<input type="text" id="colorpick" />
</div>
</div>
</div>
<script type="text/javascript" src="colorpicker/colorpicker.js"></script>
<style>
.control{
padding: 0 35%;
}
</style>

Просмотреть файл

@ -1,8 +0,0 @@
var ColorPickerComponent;
(function (ColorPickerComponent) {
$(function () {
var colorSample = new ej.ColorPicker($("#colorpick"), {
value: "#278787"
});
});
})(ColorPickerComponent || (ColorPickerComponent = {}));

Просмотреть файл

@ -1,10 +0,0 @@
/// <reference path="../tsfiles/jquery.d.ts" />
/// <reference path="../tsfiles/ej.web.all.d.ts" />
module ColorPickerComponent {
$(function () {
var colorSample = new ej.ColorPicker($("#colorpick"), {
value: "#278787"
});
});
}

Просмотреть файл

@ -1,8 +0,0 @@
<div class="cols-sample-area">
<div class="frame">
<div class="control">
<input type="text" id="selectCar" />
</div>
</div>
</div>
<script type="text/javascript" src="combobox/combobox.js"></script>

Просмотреть файл

@ -1,18 +0,0 @@
var ComboBoxComponent;
(function (ComboBoxComponent) {
var BikeList = [
{ empid: "bk1", text: "Apache RTR" }, { empid: "bk2", text: "CBR 150-R" }, { empid: "bk3", text: "CBZ Xtreme" },
{ empid: "bk4", text: "Discover" }, { empid: "bk5", text: "Dazzler" }, { empid: "bk6", text: "Flame" },
{ empid: "bk7", text: "Fazzer" }, { empid: "bk8", text: "FZ-S" }, { empid: "bk9", text: "Pulsar" },
{ empid: "bk10", text: "Shine" }, { empid: "bk11", text: "R15" }, { empid: "bk12", text: "Unicorn" }
];
$(function () {
var comboboxInstance = new ej.ComboBox($("#selectCar"), {
width: "100%",
placeholder: "Select a Bike",
fields: { text: "text", value: "empid" },
dataSource: BikeList,
autofill: true
});
});
})(ComboBoxComponent || (ComboBoxComponent = {}));

Просмотреть файл

@ -1,20 +0,0 @@
/// <reference path="../tsfiles/jquery.d.ts" />
/// <reference path="../tsfiles/ej.web.all.d.ts" />
module ComboBoxComponent{
var BikeList = [
{ empid: "bk1", text: "Apache RTR" }, { empid: "bk2", text: "CBR 150-R" }, { empid: "bk3", text: "CBZ Xtreme" },
{ empid: "bk4", text: "Discover" }, { empid: "bk5", text: "Dazzler" }, { empid: "bk6", text: "Flame" },
{ empid: "bk7", text: "Fazzer" }, { empid: "bk8", text: "FZ-S" }, { empid: "bk9", text: "Pulsar" },
{ empid: "bk10", text: "Shine" }, { empid: "bk11", text: "R15" }, { empid: "bk12", text: "Unicorn" }
];
$(function () {
var comboboxInstance =new ej.ComboBox($("#selectCar"), {
width: "100%",
placeholder: "Select a Bike",
fields: { text: "text", value: "empid" },
dataSource: BikeList,
autofill: true
});
});
}

5
content/bootstrap.min.css поставляемый

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -1,3 +0,0 @@
@import url("../ej.reportdesigner.core.bootstrap.min.css");
@import url("ej.reportdesigner.theme.min.css");

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

Просмотреть файл

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1,3 +0,0 @@
@import url("../ej.widgets.core.bootstrap.min.css");
@import url("ej.theme.min.css");

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.5 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 15 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 963 B

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 3.5 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 4.6 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 158 B

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 6.9 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 9.0 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 326 B

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 2.8 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 2.3 KiB

Просмотреть файл

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="36px" height="36px" viewBox="0 0 36 36" style="enable-background:new 0 0 36 36;" xml:space="preserve">
<style type="text/css">
.st0{fill:#6B6B6B;}
</style>
<rect x="5" y="20" class="st0" width="26" height="1"/>
<rect x="5" y="25" class="st0" width="26" height="1"/>
<rect x="5" y="30" class="st0" width="26" height="1"/>
</svg>

До

Ширина:  |  Высота:  |  Размер: 598 B

Просмотреть файл

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="36px" height="36px" viewBox="0 0 36 36" style="enable-background:new 0 0 36 36;" xml:space="preserve">
<style type="text/css">
.st0{fill:#6B6B6B;}
</style>
<rect x="5" y="12" class="st0" width="26" height="1"/>
<rect x="5" y="17" class="st0" width="26" height="1"/>
<rect x="5" y="22" class="st0" width="26" height="1"/>
</svg>

До

Ширина:  |  Высота:  |  Размер: 598 B

Просмотреть файл

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="36px" height="36px" viewBox="0 0 36 36" style="enable-background:new 0 0 36 36;" xml:space="preserve">
<style type="text/css">
.st0{fill:#6B6B6B;}
</style>
<rect x="5" y="5" class="st0" width="26" height="1"/>
<rect x="5" y="10" class="st0" width="26" height="1"/>
<rect x="5" y="15" class="st0" width="26" height="1"/>
</svg>

До

Ширина:  |  Высота:  |  Размер: 597 B

Просмотреть файл

@ -1,14 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="36px" height="36px" viewBox="0 0 36 36" style="enable-background:new 0 0 36 36;" xml:space="preserve">
<style type="text/css">
.st0{fill:#6B6B6B;}
</style>
<rect x="5" y="20" class="st0" width="26" height="1"/>
<rect x="5" y="25" class="st0" width="26" height="1"/>
<rect x="5" y="30" class="st0" width="16" height="1"/>
<path class="st0" d="M22,6v9h-9V6H22 M23,5H12v11h11V5L23,5z"/>
<polygon class="st0" points="18,6 17,6 17,15 18,15 18,6 "/>
<polygon class="st0" points="22,10 13,10 13,11 22,11 22,10 "/>
</svg>

До

Ширина:  |  Высота:  |  Размер: 784 B

Просмотреть файл

@ -1,14 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="36px" height="36px" viewBox="0 0 36 36" style="enable-background:new 0 0 36 36;" xml:space="preserve">
<style type="text/css">
.st0{fill:#6B6B6B;}
</style>
<rect x="5" y="20" class="st0" width="26" height="1"/>
<rect x="5" y="25" class="st0" width="26" height="1"/>
<rect x="5" y="30" class="st0" width="16" height="1"/>
<path class="st0" d="M15,6v9H6V6H15 M16,5H5v11h11V5L16,5z"/>
<polygon class="st0" points="11,6 10,6 10,15 11,15 11,6 "/>
<polygon class="st0" points="15,10 6,10 6,11 15,11 15,10 "/>
</svg>

До

Ширина:  |  Высота:  |  Размер: 780 B

Просмотреть файл

@ -1,14 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="36px" height="36px" viewBox="0 0 36 36" style="enable-background:new 0 0 36 36;" xml:space="preserve">
<style type="text/css">
.st0{fill:#6B6B6B;}
</style>
<rect x="5" y="20" class="st0" width="26" height="1"/>
<rect x="5" y="25" class="st0" width="26" height="1"/>
<rect x="5" y="30" class="st0" width="16" height="1"/>
<path class="st0" d="M30,6v9h-9V6H30 M31,5H20v11h11V5L31,5z"/>
<polygon class="st0" points="26,6 25,6 25,15 26,15 26,6 "/>
<polygon class="st0" points="30,10 21,10 21,11 30,11 30,10 "/>
</svg>

До

Ширина:  |  Высота:  |  Размер: 784 B

Двоичные данные
content/ejthemes/common-images/ejicons.eot

Двоичный файл не отображается.

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

До

Ширина:  |  Высота:  |  Размер: 366 KiB

Двоичные данные
content/ejthemes/common-images/ejicons.ttf

Двоичный файл не отображается.

Двоичные данные
content/ejthemes/common-images/ejicons.woff

Двоичный файл не отображается.

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 35 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 2.4 KiB

Просмотреть файл

@ -1,15 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 45 45" style="enable-background:new 0 0 45 45;" xml:space="preserve">
<style type="text/css">
.st0{fill:#F0F2F4;}
.st1{fill:#C4C4C4;}
.st2{fill:#EAEAEA;}
</style>
<rect x="0.8" y="0.7" class="st0" width="43.5" height="43.7"/>
<path class="st1" d="M34.6,28.5c-3.2,3-7.4,4.9-12.1,4.9s-8.9-1.9-12.1-4.9c-4.7,3.5-8.1,8.9-9.3,15.2h42.8
C42.7,37.3,39.3,31.9,34.6,28.5z"/>
<circle class="st1" cx="22.5" cy="16" r="10.4"/>
<path class="st2" d="M45,45H0V0h45V45z M1,44h43V1H1V44z"/>
</svg>

До

Ширина:  |  Высота:  |  Размер: 760 B

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 9.0 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.6 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.6 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.7 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.7 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.6 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.6 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.6 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.7 KiB

Двоичные данные
content/ejthemes/common-images/maps/Bar.png

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.1 KiB

Двоичные данные
content/ejthemes/common-images/maps/Home.png

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.8 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.7 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 20 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 20 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 20 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 20 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.0 KiB

Двоичные данные
content/ejthemes/common-images/maps/Zoom-In.png

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.2 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.2 KiB

Двоичные данные
content/ejthemes/common-images/maps/Zoom-out.png

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.1 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.1 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 26 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 15 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 421 B

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 283 B

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 88 KiB

Двоичный файл не отображается.

Просмотреть файл

@ -1,16 +0,0 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="icomoon" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
<glyph unicode="&#xe900;" glyph-name="e-home" d="M426.667 85.333v256h170.667v-256h213.333v341.333h128l-426.667 384-426.667-384h128v-341.333h213.333z" />
<glyph unicode="&#xe901;" glyph-name="e-profile" d="M512 874.667c-234.667 0-426.667-192-426.667-426.667s189.867-426.667 426.667-426.667 426.667 192 426.667 426.667-192 426.667-426.667 426.667zM512 106.667c-187.733 0-341.333 153.6-341.333 341.333s153.6 341.333 341.333 341.333 341.333-153.6 341.333-341.333-153.6-341.333-341.333-341.333zM512 473.6c57.6 0 104.533 46.933 104.533 104.533s-46.933 104.533-104.533 104.533-104.533-46.933-104.533-104.533 46.933-104.533 104.533-104.533zM512 422.4c-70.4 0-211.2-34.133-211.2-104.533v-53.333h422.4v53.333c0 68.267-140.8 104.533-211.2 104.533z" />
<glyph unicode="&#xe902;" glyph-name="e-people" d="M682.667 490.667c70.827 0 127.573 57.173 127.573 128s-56.747 128-127.573 128c-70.827 0-128-57.173-128-128s57.173-128 128-128zM341.333 490.667c70.827 0 127.573 57.173 127.573 128s-56.747 128-127.573 128c-70.827 0-128-57.173-128-128s57.173-128 128-128zM341.333 405.333c-99.413 0-298.667-49.92-298.667-149.333v-106.667h597.333v106.667c0 99.413-199.253 149.333-298.667 149.333zM682.667 405.333c-12.373 0-26.453-0.853-41.387-2.133 49.493-35.84 84.053-84.053 84.053-147.2v-106.667h256v106.667c0 99.413-199.253 149.333-298.667 149.333z" />
<glyph unicode="&#xe903;" glyph-name="e-photo" d="M896 832h-768c-42.667 0-85.333-42.667-85.333-85.333v-597.333c0-46.933 38.4-85.333 85.333-85.333h768c42.667 0 85.333 42.667 85.333 85.333v597.333c0 42.667-42.667 85.333-85.333 85.333zM213.333 234.667l149.333 192 106.667-128.427 149.333 192.427 192-256h-597.333z" />
<glyph unicode="&#xe904;" glyph-name="e-communities" d="M925.867 445.867c0 44.8-36.267 81.067-78.933 85.333-29.867 123.733-128 219.733-249.6 251.733-4.267 44.8-40.533 78.933-85.333 78.933s-81.067-34.133-85.333-78.933c-123.733-32-219.733-128-249.6-251.733-44.8-2.133-78.933-40.533-78.933-85.333s36.267-83.2 81.067-85.333c32-121.6 128-215.467 247.467-247.467 2.133-44.8 38.4-83.2 85.333-83.2s83.2 36.267 85.333 83.2c121.6 29.867 217.6 125.867 247.467 247.467 44.8 4.267 81.067 40.533 81.067 85.333zM593.067 145.067c-12.8 32-42.667 57.6-81.067 57.6s-68.267-23.467-81.067-57.6c-106.667 27.733-192 113.067-221.867 219.733 34.133 10.667 57.6 42.667 57.6 81.067s-25.6 70.4-59.733 81.067c27.733 108.8 113.067 194.133 221.867 221.867 10.667-34.133 42.667-59.733 81.067-59.733s70.4 25.6 81.067 59.733c108.8-29.867 192-115.2 221.867-221.867-34.133-10.667-59.733-42.667-59.733-81.067s23.467-68.267 57.6-81.067c-25.6-106.667-110.933-189.867-217.6-219.733z" />
<glyph unicode="&#xe905;" glyph-name="e-location" d="M512 618.667c-94.293 0-170.667-76.373-170.667-170.667s76.373-170.667 170.667-170.667 170.667 76.373 170.667 170.667-76.373 170.667-170.667 170.667zM893.44 490.667c-19.627 177.92-160.853 319.147-338.773 338.773v87.893h-85.333v-87.893c-177.92-19.627-319.147-160.853-338.773-338.773h-87.893v-85.333h87.893c19.627-177.92 160.853-319.147 338.773-338.773v-87.893h85.333v87.893c177.92 19.627 319.147 160.853 338.773 338.773h87.893v85.333h-87.893zM512 149.333c-165.12 0-298.667 133.547-298.667 298.667s133.547 298.667 298.667 298.667 298.667-133.547 298.667-298.667-133.547-298.667-298.667-298.667z" />
</font></defs></svg>

До

Ширина:  |  Высота:  |  Размер: 3.6 KiB

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 21 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.1 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.1 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.1 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.3 KiB

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше