@joint/core 4.0.3 → 4.0.4
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.
- package/README.md +2 -2
- package/dist/geometry.js +1 -1
- package/dist/geometry.min.js +1 -1
- package/dist/joint.d.ts +13 -3
- package/dist/joint.js +52 -12
- package/dist/joint.min.js +2 -2
- package/dist/joint.nowrap.js +52 -12
- package/dist/joint.nowrap.min.js +2 -2
- package/dist/vectorizer.js +1 -1
- package/dist/vectorizer.min.js +1 -1
- package/dist/version.mjs +1 -1
- package/package.json +1 -1
- package/src/dia/LinkView.mjs +19 -1
- package/src/dia/attributes/text.mjs +26 -10
- package/src/env/index.mjs +5 -0
- package/types/joint.d.ts +12 -2
package/dist/vectorizer.js
CHANGED
package/dist/vectorizer.min.js
CHANGED
package/dist/version.mjs
CHANGED
package/package.json
CHANGED
package/src/dia/LinkView.mjs
CHANGED
|
@@ -5,7 +5,7 @@ import { addClassNamePrefix, merge, assign, isObject, isFunction, clone, isPerce
|
|
|
5
5
|
import { Point, Line, Path, normalizeAngle, Rect, Polyline } from '../g/index.mjs';
|
|
6
6
|
import * as routers from '../routers/index.mjs';
|
|
7
7
|
import * as connectors from '../connectors/index.mjs';
|
|
8
|
-
|
|
8
|
+
import { env } from '../env/index.mjs';
|
|
9
9
|
|
|
10
10
|
const Flags = {
|
|
11
11
|
TOOLS: CellView.Flags.TOOLS,
|
|
@@ -99,6 +99,11 @@ export const LinkView = CellView.extend({
|
|
|
99
99
|
this.updateHighlighters(true);
|
|
100
100
|
this.updateTools(opt);
|
|
101
101
|
flags = this.removeFlag(flags, [Flags.RENDER, Flags.UPDATE, Flags.LABELS, Flags.TOOLS, Flags.CONNECTOR]);
|
|
102
|
+
|
|
103
|
+
if (env.test('isSafari')) {
|
|
104
|
+
this.__fixSafariBug268376();
|
|
105
|
+
}
|
|
106
|
+
|
|
102
107
|
return flags;
|
|
103
108
|
}
|
|
104
109
|
|
|
@@ -151,6 +156,19 @@ export const LinkView = CellView.extend({
|
|
|
151
156
|
return flags;
|
|
152
157
|
},
|
|
153
158
|
|
|
159
|
+
__fixSafariBug268376: function() {
|
|
160
|
+
// Safari has a bug where any change after the first render is not reflected in the DOM.
|
|
161
|
+
// https://bugs.webkit.org/show_bug.cgi?id=268376
|
|
162
|
+
const { el } = this;
|
|
163
|
+
const childNodes = Array.from(el.childNodes);
|
|
164
|
+
const fragment = document.createDocumentFragment();
|
|
165
|
+
for (let i = 0, n = childNodes.length; i < n; i++) {
|
|
166
|
+
el.removeChild(childNodes[i]);
|
|
167
|
+
fragment.appendChild(childNodes[i]);
|
|
168
|
+
}
|
|
169
|
+
el.appendChild(fragment);
|
|
170
|
+
},
|
|
171
|
+
|
|
154
172
|
requestConnectionUpdate: function(opt) {
|
|
155
173
|
this.requestUpdate(this.getFlag(Flags.UPDATE), opt);
|
|
156
174
|
},
|
|
@@ -7,6 +7,8 @@ function isTextInUse(_value, _node, attrs) {
|
|
|
7
7
|
return (attrs.text !== undefined);
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
+
const FONT_ATTRIBUTES = ['font-weight', 'font-family', 'font-size', 'letter-spacing', 'text-transform'];
|
|
11
|
+
|
|
10
12
|
const textAttributesNS = {
|
|
11
13
|
|
|
12
14
|
'line-height': {
|
|
@@ -122,18 +124,28 @@ const textAttributesNS = {
|
|
|
122
124
|
var text = value.text;
|
|
123
125
|
if (text === undefined) text = attrs.text;
|
|
124
126
|
if (text !== undefined) {
|
|
127
|
+
|
|
125
128
|
const breakTextFn = value.breakText || breakText;
|
|
126
129
|
const computedStyles = getComputedStyle(node);
|
|
130
|
+
const wrapFontAttributes = {};
|
|
131
|
+
// The font size attributes must be set on the node
|
|
132
|
+
// to get the correct text wrapping.
|
|
133
|
+
// TODO: set the native SVG attributes before special attributes
|
|
134
|
+
for (let i = 0; i < FONT_ATTRIBUTES.length; i++) {
|
|
135
|
+
const name = FONT_ATTRIBUTES[i];
|
|
136
|
+
if (name in attrs) {
|
|
137
|
+
node.setAttribute(name, attrs[name]);
|
|
138
|
+
}
|
|
139
|
+
// Note: computedStyles is a live object
|
|
140
|
+
// i.e. the properties are evaluated when accessed.
|
|
141
|
+
wrapFontAttributes[name] = computedStyles[name];
|
|
142
|
+
}
|
|
127
143
|
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
'letter-spacing': computedStyles.letterSpacing,
|
|
134
|
-
// The `line-height` attribute in SVG is JoinJS specific.
|
|
135
|
-
'lineHeight': attrs['line-height'],
|
|
136
|
-
}, {
|
|
144
|
+
// The `line-height` attribute in SVG is JoinJS specific.
|
|
145
|
+
// TODO: change the `lineHeight` to breakText option.
|
|
146
|
+
wrapFontAttributes.lineHeight = attrs['line-height'];
|
|
147
|
+
|
|
148
|
+
wrappedText = breakTextFn('' + text, size, wrapFontAttributes, {
|
|
137
149
|
// Provide an existing SVG Document here
|
|
138
150
|
// instead of creating a temporary one over again.
|
|
139
151
|
svgDocument: this.paper.svg,
|
|
@@ -147,7 +159,11 @@ const textAttributesNS = {
|
|
|
147
159
|
wrappedText = '';
|
|
148
160
|
}
|
|
149
161
|
textAttributesNS.text.set.call(this, wrappedText, refBBox, node, attrs);
|
|
150
|
-
}
|
|
162
|
+
},
|
|
163
|
+
// We expose the font attributes list to allow
|
|
164
|
+
// the user to take other custom font attributes into account
|
|
165
|
+
// when wrapping the text.
|
|
166
|
+
FONT_ATTRIBUTES
|
|
151
167
|
},
|
|
152
168
|
|
|
153
169
|
'title': {
|
package/src/env/index.mjs
CHANGED
|
@@ -7,6 +7,11 @@ export const env = {
|
|
|
7
7
|
svgforeignobject: function() {
|
|
8
8
|
return !!document.createElementNS &&
|
|
9
9
|
/SVGForeignObject/.test(({}).toString.call(document.createElementNS('http://www.w3.org/2000/svg', 'foreignObject')));
|
|
10
|
+
},
|
|
11
|
+
|
|
12
|
+
// works for iOS browsers too
|
|
13
|
+
isSafari: function() {
|
|
14
|
+
return /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor);
|
|
10
15
|
}
|
|
11
16
|
},
|
|
12
17
|
|
package/types/joint.d.ts
CHANGED
|
@@ -12,6 +12,16 @@ export namespace config {
|
|
|
12
12
|
|
|
13
13
|
type NativeEvent = Event;
|
|
14
14
|
|
|
15
|
+
type _DeepRequired<T> = {
|
|
16
|
+
[P in keyof T]-?: T[P] extends object ? _DeepRequired<T[P]> : T[P];
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
type _DeepPartial<T> = {
|
|
20
|
+
[P in keyof T]?: T[P] extends object ? _DeepPartial<T[P]> : T[P];
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
type DeepPartial<T> = _DeepPartial<_DeepRequired<T>>;
|
|
24
|
+
|
|
15
25
|
export namespace dia {
|
|
16
26
|
|
|
17
27
|
type Event = mvc.TriggeredEvent;
|
|
@@ -327,7 +337,7 @@ export namespace dia {
|
|
|
327
337
|
|
|
328
338
|
class Cell<A extends ObjectHash = Cell.Attributes, S extends mvc.ModelSetOptions = dia.ModelSetOptions> extends mvc.Model<A, S> {
|
|
329
339
|
|
|
330
|
-
constructor(attributes?: A
|
|
340
|
+
constructor(attributes?: DeepPartial<A>, opt?: Cell.ConstructorOptions);
|
|
331
341
|
|
|
332
342
|
id: Cell.ID;
|
|
333
343
|
graph: Graph;
|
|
@@ -361,7 +371,7 @@ export namespace dia {
|
|
|
361
371
|
isEmbedded(): boolean;
|
|
362
372
|
|
|
363
373
|
prop(key: Path): any;
|
|
364
|
-
prop(object:
|
|
374
|
+
prop(object: DeepPartial<A>, opt?: Cell.Options): this;
|
|
365
375
|
prop(key: Path, value: any, opt?: Cell.Options): this;
|
|
366
376
|
|
|
367
377
|
removeProp(path: Path, opt?: Cell.Options): this;
|