Skip to content

Commit a726eee

Browse files
author
pipeline
committed
v24.2.3 is released
1 parent 05c114c commit a726eee

Some content is hidden

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

76 files changed

+669
-1138
lines changed

README.md

Lines changed: 484 additions & 10 deletions
Large diffs are not rendered by default.

gulpfile.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,9 @@ function processFile(filePath, replacementRules) {
216216

217217
// Remove stackBlitz and newWindow labels from the application
218218
gulp.task('remove-labels', function(done) {
219+
fs.rename('./public/source', './public/src', (err) => {
220+
if (err) { console.log(`Error renaming file: ${err}`); }
221+
});
219222
const indexHtmlPath = './public/index.html';
220223
const appVuePath = './src/App.vue';
221224

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ej2-vue-samples",
3-
"version": "24.1.41",
3+
"version": "24.2.3",
44
"description": "Examples of Vue UI Components",
55
"keywords": [],
66
"dependencies": {
File renamed without changes.

src/App.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1437,7 +1437,6 @@ const updateStackBlitz = () => {
14371437
let path: string = hash.slice(1).join('/').replace('.html', '');
14381438
let fileName: string = 'src/' + path + '-stack.json';
14391439
let stack: Fetch = new Fetch(fileName, 'GET');
1440-
stack.emitError = false;
14411440
stack.send().then((result: Object) => {
14421441
if (select('#open-plnkr') as any) {
14431442
(select('#open-plnkr') as any).disabled = false;

src/diagram/annotation.vue

Lines changed: 4 additions & 46 deletions
Large diffs are not rendered by default.

src/diagram/bpmn-editor.vue

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

src/diagram/commands.vue

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
</div>
5454
</template>
5555
<style>
56+
/* These styles are used for property panel icons*/
5657
@font-face {
5758
font-family: 'Bootstrap5 Diagram Builder';
5859
src:
@@ -171,21 +172,9 @@ import {
171172
OverviewComponent,
172173
Diagram,
173174
DiagramComponent,
174-
ConnectorModel,
175-
Node,
176-
SnapConstraints,
177-
Container,
178-
TextElement,
179-
StackPanel,
180-
ImageElement,
181-
DataBinding,
182-
HierarchicalTree,
183-
TreeInfo,
184175
NodeConstraints,
185-
DiagramTools
186176
} from "@syncfusion/ej2-vue-diagrams";
187-
import { DataManager } from "@syncfusion/ej2-data";
188-
import { data } from "./diagram-data";
177+
189178
import {
190179
Toolbar,
191180
ToolbarComponent,

src/diagram/complex-hierarchicaltree.vue

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@
114114
</div>
115115
</template>
116116
<style scoped>
117+
/* Css for images in property panel */
117118
.image-pattern-style {
118119
background-color: white;
119120
background-size: contain;
@@ -135,16 +136,12 @@
135136
font-size: 15px;
136137
font-weight: 500;
137138
}
138-
139+
/* Selection indicator */
139140
.e-selected-style {
140141
border-color: #6c6c6c;
141142
border-width: 2px;
142143
}
143144
144-
.e-checkbox-wrapper .e-label {
145-
font-size: 12px;
146-
}
147-
148145
.col-xs-6 {
149146
padding-left: 0px;
150147
padding-right: 0px;
@@ -155,13 +152,9 @@
155152
import {
156153
DiagramComponent,
157154
Diagram,
158-
NodeModel,
159-
Node,
160-
Connector,
161155
DataBinding,
162156
DiagramTools,ConnectionPointOrigin,
163157
ComplexHierarchicalTree,LineDistribution,
164-
LayoutOrientation
165158
} from "@syncfusion/ej2-vue-diagrams";
166159
import { DataManager } from "@syncfusion/ej2-data";
167160
import { ChangeEventArgs } from "@syncfusion/ej2-vue-dropdowns";

src/diagram/connector.vue

Lines changed: 4 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
<div class="row row-header">
9090
<b>Appearance</b>
9191
</div>
92-
<div class="row" style="padding-top: 8px; display: flex;">
92+
<div class="row" style="padding-top: 8px; display: flex; margin-right: 50px;">
9393
<label>Line color</label>
9494
<ejs-colorpicker id="color" :mode='colorMode' :showButtons='colorShowButton' :modeSwitcher='colorModeSwitch' :value='fillColorValue' :change='colorChange'></ejs-colorpicker>
9595
</div>
@@ -126,6 +126,7 @@
126126
</template>
127127

128128
<style scoped>
129+
/* Css for images in property panel */
129130
.image-pattern-style {
130131
background-color: white;
131132
background-size: contain;
@@ -153,24 +154,12 @@
153154
font-weight: 500;
154155
}
155156
156-
.col-xs-6 {
157-
padding-left: 0px;
158-
padding-right: 0px;
159-
}
160-
157+
/* Selection indicator */
161158
.e-selected-style {
162159
border-color: #006ce6;
163160
border-width: 2px;
164161
}
165-
166-
.e-colorpicker-wrapper .e-split-btn-wrapper .e-split-colorpicker.e-split-btn .e-selected-color .e-split-preview{
167-
width: 100px!important;
168-
margin-left: -40px!important;
169-
}
170-
.e-colorpicker-wrapper .e-split-btn-wrapper .e-split-colorpicker.e-split-btn{
171-
width: 110px!important;
172-
}
173-
162+
/* Align the names in property panel */
174163
label{
175164
display: inline-block;
176165
font-size: 13px;
@@ -188,19 +177,12 @@ import {
188177
HierarchicalTree,
189178
ConnectorConstraints,
190179
ConnectorEditing,
191-
Segments,
192180
StackPanel,
193-
PointPortModel,
194-
Connector,
195-
BasicShapeModel,
196181
SelectorConstraints,
197182
DiagramComponent,
198183
Diagram,
199-
NodeModel,
200-
ConnectorModel,
201184
randomId,
202185
PortVisibility,
203-
StrokeStyleModel
204186
} from "@syncfusion/ej2-vue-diagrams";
205187
import {
206188
DropDownList,

0 commit comments

Comments
 (0)