@itwin/ecschema-rpcinterface-tests 5.3.0-dev.2 → 5.3.0-dev.3
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/lib/dist/bundled-tests.js +73 -80
- package/lib/dist/bundled-tests.js.map +1 -1
- package/package.json +16 -16
|
@@ -43505,17 +43505,17 @@ class TextBlockComponent {
|
|
|
43505
43505
|
_styleOverrides;
|
|
43506
43506
|
/** @internal */
|
|
43507
43507
|
constructor(props) {
|
|
43508
|
-
this._styleOverrides =
|
|
43508
|
+
this._styleOverrides = structuredClone(props?.styleOverrides ?? {});
|
|
43509
43509
|
}
|
|
43510
43510
|
/** Deviations in individual properties of the [[TextStyleSettings]] in the [AnnotationTextStyle]($backend).
|
|
43511
|
-
* For example, if the style uses the "Arial" font, you can override that by settings `styleOverrides.
|
|
43511
|
+
* For example, if the style uses the "Arial" font, you can override that by settings `styleOverrides.font.name` to "Comic Sans".
|
|
43512
43512
|
* @see [[clearStyleOverrides]] to reset this to an empty object.
|
|
43513
43513
|
*/
|
|
43514
43514
|
get styleOverrides() {
|
|
43515
43515
|
return this._styleOverrides;
|
|
43516
43516
|
}
|
|
43517
43517
|
set styleOverrides(overrides) {
|
|
43518
|
-
this._styleOverrides =
|
|
43518
|
+
this._styleOverrides = structuredClone(overrides);
|
|
43519
43519
|
}
|
|
43520
43520
|
/** Reset any [[styleOverrides]] applied to this component. */
|
|
43521
43521
|
clearStyleOverrides(_options) {
|
|
@@ -43536,23 +43536,14 @@ class TextBlockComponent {
|
|
|
43536
43536
|
/** Convert this component to its JSON representation. */
|
|
43537
43537
|
toJSON() {
|
|
43538
43538
|
return {
|
|
43539
|
-
styleOverrides:
|
|
43539
|
+
styleOverrides: structuredClone(this.styleOverrides),
|
|
43540
43540
|
};
|
|
43541
43541
|
}
|
|
43542
43542
|
/** Returns true if `this` is equivalent to `other`. */
|
|
43543
43543
|
equals(other) {
|
|
43544
|
-
const
|
|
43545
|
-
const
|
|
43546
|
-
|
|
43547
|
-
return false;
|
|
43548
|
-
}
|
|
43549
|
-
for (const name of myKeys) {
|
|
43550
|
-
const key = name;
|
|
43551
|
-
if (this.styleOverrides[key] !== other.styleOverrides[key]) {
|
|
43552
|
-
return false;
|
|
43553
|
-
}
|
|
43554
|
-
}
|
|
43555
|
-
return true;
|
|
43544
|
+
const mySettings = _TextStyle__WEBPACK_IMPORTED_MODULE_0__.TextStyleSettings.fromJSON(this.styleOverrides);
|
|
43545
|
+
const otherSettings = _TextStyle__WEBPACK_IMPORTED_MODULE_0__.TextStyleSettings.fromJSON(other.styleOverrides);
|
|
43546
|
+
return mySettings.equals(otherSettings);
|
|
43556
43547
|
}
|
|
43557
43548
|
}
|
|
43558
43549
|
/** A sequence of characters within a [[Paragraph]] that share a single style. Runs are the leaf nodes of a [[TextBlock]] document. When laid out for display, a single run may span
|
|
@@ -43920,7 +43911,6 @@ class List extends TextBlockComponent {
|
|
|
43920
43911
|
return (other instanceof List) && super.equals(other);
|
|
43921
43912
|
}
|
|
43922
43913
|
}
|
|
43923
|
-
;
|
|
43924
43914
|
/** Represents a formatted text document consisting of a series of [[Paragraph]]s, each laid out on a separate line and containing their own content.
|
|
43925
43915
|
* No word-wrapping is applied to the document unless a [[width]] greater than zero is specified.
|
|
43926
43916
|
* @see [[TextAnnotation]] to position a text block as an annotation in 2d or 3d space.
|
|
@@ -43933,21 +43923,9 @@ class TextBlock extends TextBlockComponent {
|
|
|
43933
43923
|
* Default: 0
|
|
43934
43924
|
*/
|
|
43935
43925
|
width;
|
|
43936
|
-
/** The alignment of the document's content. */
|
|
43937
|
-
justification;
|
|
43938
|
-
/** The margins of the document. */
|
|
43939
|
-
margins;
|
|
43940
43926
|
constructor(props) {
|
|
43941
43927
|
super(props);
|
|
43942
43928
|
this.width = props.width ?? 0;
|
|
43943
|
-
this.justification = props.justification ?? "left";
|
|
43944
|
-
// Assign default margins if not provided
|
|
43945
|
-
this.margins = {
|
|
43946
|
-
left: props.margins?.left ?? 0,
|
|
43947
|
-
right: props.margins?.right ?? 0,
|
|
43948
|
-
top: props.margins?.top ?? 0,
|
|
43949
|
-
bottom: props.margins?.bottom ?? 0,
|
|
43950
|
-
};
|
|
43951
43929
|
this.children = props?.children?.map((para) => Paragraph.create(para)) ?? [];
|
|
43952
43930
|
}
|
|
43953
43931
|
clearStyleOverrides(options) {
|
|
@@ -43957,8 +43935,6 @@ class TextBlock extends TextBlockComponent {
|
|
|
43957
43935
|
return {
|
|
43958
43936
|
...super.toJSON(),
|
|
43959
43937
|
width: this.width,
|
|
43960
|
-
justification: this.justification,
|
|
43961
|
-
margins: this.margins,
|
|
43962
43938
|
children: this.children.map((x) => x.toJSON()),
|
|
43963
43939
|
};
|
|
43964
43940
|
}
|
|
@@ -44003,12 +43979,9 @@ class TextBlock extends TextBlockComponent {
|
|
|
44003
43979
|
if (!super.equals(other)) {
|
|
44004
43980
|
return false;
|
|
44005
43981
|
}
|
|
44006
|
-
if (this.width !== other.width
|
|
43982
|
+
if (this.width !== other.width) {
|
|
44007
43983
|
return false;
|
|
44008
43984
|
}
|
|
44009
|
-
const marginsAreEqual = Object.entries(this.margins).every(([key, value]) => value === other.margins[key]);
|
|
44010
|
-
if (!marginsAreEqual)
|
|
44011
|
-
return false;
|
|
44012
43985
|
if (this.children && other.children) {
|
|
44013
43986
|
if (this.children.length !== other.children.length) {
|
|
44014
43987
|
return false;
|
|
@@ -44173,6 +44146,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
44173
44146
|
/* harmony export */ textAnnotationFrameShapes: () => (/* binding */ textAnnotationFrameShapes)
|
|
44174
44147
|
/* harmony export */ });
|
|
44175
44148
|
/* harmony import */ var _ColorDef__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../ColorDef */ "../../core/common/lib/esm/ColorDef.js");
|
|
44149
|
+
/* harmony import */ var _Fonts__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Fonts */ "../../core/common/lib/esm/Fonts.js");
|
|
44176
44150
|
/*---------------------------------------------------------------------------------------------
|
|
44177
44151
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
44178
44152
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -44181,6 +44155,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
44181
44155
|
* @module Annotation
|
|
44182
44156
|
*/
|
|
44183
44157
|
|
|
44158
|
+
|
|
44184
44159
|
/** Predefined markers for list items in text annotations.
|
|
44185
44160
|
* These values control the appearance of list item markers (e.g., bullet, circle, square, dash, number) that denote the start of a list item in a list.
|
|
44186
44161
|
* @beta
|
|
@@ -44202,6 +44177,7 @@ var ListMarkerEnumerator;
|
|
|
44202
44177
|
*/
|
|
44203
44178
|
const textAnnotationFrameShapes = ["none", "line", "rectangle", "circle", "equilateralTriangle", "diamond", "square", "pentagon", "hexagon", "octagon", "capsule", "roundedRectangle"];
|
|
44204
44179
|
;
|
|
44180
|
+
;
|
|
44205
44181
|
function deepFreeze(obj) {
|
|
44206
44182
|
if (obj === null || typeof obj !== "object" || Object.isFrozen(obj))
|
|
44207
44183
|
return;
|
|
@@ -44222,20 +44198,20 @@ function deepFreeze(obj) {
|
|
|
44222
44198
|
class TextStyleSettings {
|
|
44223
44199
|
/** The color of the text. */
|
|
44224
44200
|
color;
|
|
44225
|
-
/** The
|
|
44201
|
+
/** The font stored in an iModel, used to draw the contents of a [[TextRun]].
|
|
44226
44202
|
*/
|
|
44227
|
-
|
|
44228
|
-
/** The height
|
|
44229
|
-
* For example, the height and offset from baseline of a subscript [[TextRun]] are computed as
|
|
44230
|
-
*
|
|
44203
|
+
font;
|
|
44204
|
+
/** The height of the text, in meters. Many other settings use the text height as the basis for computing their own values.
|
|
44205
|
+
* For example, the height and offset from baseline of a subscript [[TextRun]] are computed as textHeight * [[subScriptScale]] and
|
|
44206
|
+
* textHeight * [[subScriptOffsetFactor]], respectively.
|
|
44231
44207
|
*/
|
|
44232
|
-
|
|
44208
|
+
textHeight;
|
|
44233
44209
|
/** Multiplier used to compute the vertical distance between two lines of text.
|
|
44234
|
-
* The distance is computed in meters as lineSpacingFactor * [[
|
|
44210
|
+
* The distance is computed in meters as lineSpacingFactor * [[textHeight]] of the [[TextBlock]].
|
|
44235
44211
|
*/
|
|
44236
44212
|
lineSpacingFactor;
|
|
44237
44213
|
/** Multiplier used to compute the vertical distance between two paragraphs of text.
|
|
44238
|
-
* The distance is computed in meters as paragraphSpacingFactor * [[
|
|
44214
|
+
* The distance is computed in meters as paragraphSpacingFactor * the [[TextBlock]]'s [[textHeight]].
|
|
44239
44215
|
*/
|
|
44240
44216
|
paragraphSpacingFactor;
|
|
44241
44217
|
/** Specifies whether the content of a [[TextRun]] should be rendered **bold**. */
|
|
@@ -44245,28 +44221,28 @@ class TextStyleSettings {
|
|
|
44245
44221
|
/** Specifies whether the content of a [[TextRun]] should be underlined. */
|
|
44246
44222
|
isUnderlined;
|
|
44247
44223
|
/** Multiplier used to compute the height of both the numerator and denominator of a [[FractionRun]].
|
|
44248
|
-
* The height is computed in meters as stackedFractionScale * [[
|
|
44224
|
+
* The height is computed in meters as stackedFractionScale * [[textHeight]].
|
|
44249
44225
|
*/
|
|
44250
44226
|
stackedFractionScale;
|
|
44251
44227
|
/** Specifies how to separate the numerator and denominator of a [[FractionRun]]. */
|
|
44252
44228
|
stackedFractionType;
|
|
44253
44229
|
/** Multiplier used to compute the vertical offset from the baseline for a subscript [[TextRun]].
|
|
44254
|
-
* The offset is computed in meters as subScriptOffsetFactor * [[
|
|
44230
|
+
* The offset is computed in meters as subScriptOffsetFactor * [[textHeight]].
|
|
44255
44231
|
*/
|
|
44256
44232
|
subScriptOffsetFactor;
|
|
44257
44233
|
/** Multiplier used to compute the height of a subscript [[TextRun]].
|
|
44258
|
-
* The height is computed as subScriptScale * [[
|
|
44234
|
+
* The height is computed as subScriptScale * [[textHeight]].
|
|
44259
44235
|
*/
|
|
44260
44236
|
subScriptScale;
|
|
44261
44237
|
/** Multiplier used to compute the vertical offset from the baseline for a super [[TextRun]].
|
|
44262
|
-
* The offset is computed in meters as superScriptOffsetFactor * [[
|
|
44238
|
+
* The offset is computed in meters as superScriptOffsetFactor * [[textHeight]].
|
|
44263
44239
|
*/
|
|
44264
44240
|
superScriptOffsetFactor;
|
|
44265
44241
|
/** Multiplier used to compute the height of a superscript [[TextRun]].
|
|
44266
|
-
* The height is computed as superScriptScale * [[
|
|
44242
|
+
* The height is computed as superScriptScale * [[textHeight]].
|
|
44267
44243
|
*/
|
|
44268
44244
|
superScriptScale;
|
|
44269
|
-
/** Multiplier used to compute the width of each glyph, relative to [[
|
|
44245
|
+
/** Multiplier used to compute the width of each glyph, relative to [[textHeight]]. */
|
|
44270
44246
|
widthFactor;
|
|
44271
44247
|
/** Properties describing appearance of leaders in a [[TextAnnotation]].
|
|
44272
44248
|
* Used when producing geometry for [[TextAnnotation]].
|
|
@@ -44291,11 +44267,15 @@ class TextStyleSettings {
|
|
|
44291
44267
|
listMarker;
|
|
44292
44268
|
/** The frame settings of the [[TextAnnotation]]. */
|
|
44293
44269
|
frame;
|
|
44294
|
-
/**
|
|
44270
|
+
/** The margins to surround the document content. */
|
|
44271
|
+
margins;
|
|
44272
|
+
/** The alignment of the text content. */
|
|
44273
|
+
justification;
|
|
44274
|
+
/** A fully-populated JSON representation of the default settings. A real `font` must be provided before use. */
|
|
44295
44275
|
static defaultProps = {
|
|
44296
44276
|
color: "subcategory",
|
|
44297
|
-
|
|
44298
|
-
|
|
44277
|
+
font: { name: "", type: _Fonts__WEBPACK_IMPORTED_MODULE_1__.FontType.TrueType },
|
|
44278
|
+
textHeight: 1,
|
|
44299
44279
|
lineSpacingFactor: 0.5,
|
|
44300
44280
|
paragraphSpacingFactor: 0.5,
|
|
44301
44281
|
isBold: false,
|
|
@@ -44320,10 +44300,17 @@ class TextStyleSettings {
|
|
|
44320
44300
|
listMarker: { enumerator: "1", terminator: "period", case: "lower" },
|
|
44321
44301
|
frame: {
|
|
44322
44302
|
shape: "none",
|
|
44323
|
-
|
|
44324
|
-
|
|
44303
|
+
fillColor: "none",
|
|
44304
|
+
borderColor: _ColorDef__WEBPACK_IMPORTED_MODULE_0__.ColorDef.black.toJSON(),
|
|
44325
44305
|
borderWeight: 1,
|
|
44326
44306
|
},
|
|
44307
|
+
margins: {
|
|
44308
|
+
left: 0,
|
|
44309
|
+
right: 0,
|
|
44310
|
+
top: 0,
|
|
44311
|
+
bottom: 0
|
|
44312
|
+
},
|
|
44313
|
+
justification: "left",
|
|
44327
44314
|
};
|
|
44328
44315
|
/** Settings initialized to all default values. */
|
|
44329
44316
|
static defaults = new TextStyleSettings({});
|
|
@@ -44332,8 +44319,12 @@ class TextStyleSettings {
|
|
|
44332
44319
|
defaults = TextStyleSettings.defaultProps;
|
|
44333
44320
|
}
|
|
44334
44321
|
this.color = props.color ?? defaults.color;
|
|
44335
|
-
|
|
44336
|
-
|
|
44322
|
+
const font = {
|
|
44323
|
+
name: props.font?.name ?? defaults.font.name,
|
|
44324
|
+
type: props.font?.type ?? defaults.font.type,
|
|
44325
|
+
};
|
|
44326
|
+
this.font = Object.freeze(font);
|
|
44327
|
+
this.textHeight = props.textHeight ?? defaults.textHeight;
|
|
44337
44328
|
this.lineSpacingFactor = props.lineSpacingFactor ?? defaults.lineSpacingFactor;
|
|
44338
44329
|
this.paragraphSpacingFactor = props.paragraphSpacingFactor ?? defaults.paragraphSpacingFactor;
|
|
44339
44330
|
this.isBold = props.isBold ?? defaults.isBold;
|
|
@@ -44359,34 +44350,30 @@ class TextStyleSettings {
|
|
|
44359
44350
|
this.listMarker = props.listMarker ?? defaults.listMarker;
|
|
44360
44351
|
const frame = {
|
|
44361
44352
|
shape: props.frame?.shape ?? defaults.frame.shape,
|
|
44362
|
-
|
|
44363
|
-
|
|
44353
|
+
fillColor: props.frame?.fillColor ?? defaults.frame.fillColor,
|
|
44354
|
+
borderColor: props.frame?.borderColor ?? defaults.frame.borderColor,
|
|
44364
44355
|
borderWeight: props.frame?.borderWeight ?? defaults.frame.borderWeight,
|
|
44365
44356
|
};
|
|
44366
44357
|
// Cast to indicate to TypeScript that the frame properties are all defined
|
|
44367
44358
|
this.frame = Object.freeze(frame);
|
|
44359
|
+
this.margins = Object.freeze({
|
|
44360
|
+
left: props.margins?.left ?? defaults.margins.left,
|
|
44361
|
+
right: props.margins?.right ?? defaults.margins.right,
|
|
44362
|
+
top: props.margins?.top ?? defaults.margins.top,
|
|
44363
|
+
bottom: props.margins?.bottom ?? defaults.margins.bottom,
|
|
44364
|
+
});
|
|
44365
|
+
this.justification = props.justification ?? defaults.justification;
|
|
44368
44366
|
}
|
|
44369
44367
|
/** Create a copy of these settings, modified according to the properties defined by `alteredProps`. */
|
|
44370
44368
|
clone(alteredProps) {
|
|
44371
44369
|
return alteredProps ? new TextStyleSettings(alteredProps, this) : this;
|
|
44372
44370
|
}
|
|
44373
|
-
/** Creates a deep copy of the `TextStyleSettingsProps`. */
|
|
44374
|
-
static cloneProps(props) {
|
|
44375
|
-
const copy = { ...props };
|
|
44376
|
-
if (props.leader) {
|
|
44377
|
-
copy.leader = { ...props.leader };
|
|
44378
|
-
}
|
|
44379
|
-
if (props.frame) {
|
|
44380
|
-
copy.frame = { ...props.frame };
|
|
44381
|
-
}
|
|
44382
|
-
return copy;
|
|
44383
|
-
}
|
|
44384
44371
|
/** Create settings from their JSON representation. */
|
|
44385
44372
|
static fromJSON(props) {
|
|
44386
44373
|
return props ? new TextStyleSettings(props) : TextStyleSettings.defaults;
|
|
44387
44374
|
}
|
|
44388
44375
|
toJSON() {
|
|
44389
|
-
return
|
|
44376
|
+
return structuredClone(this);
|
|
44390
44377
|
}
|
|
44391
44378
|
/** Compare two [[TextLeaderStyleProps]] for equality.
|
|
44392
44379
|
* @param other The other leader style properties to compare against.
|
|
@@ -44399,21 +44386,27 @@ class TextStyleSettings {
|
|
|
44399
44386
|
}
|
|
44400
44387
|
frameEquals(other) {
|
|
44401
44388
|
return this.frame?.shape === other.shape
|
|
44402
|
-
&& this.frame?.
|
|
44403
|
-
&& this.frame?.
|
|
44389
|
+
&& this.frame?.fillColor === other.fillColor
|
|
44390
|
+
&& this.frame?.borderColor === other.borderColor
|
|
44404
44391
|
&& this.frame?.borderWeight === other.borderWeight;
|
|
44405
44392
|
}
|
|
44393
|
+
marginsEqual(other) {
|
|
44394
|
+
return Object.entries(this.margins).every(([key, value]) => value === other[key]);
|
|
44395
|
+
}
|
|
44406
44396
|
equals(other) {
|
|
44407
|
-
return this.color === other.color && this.
|
|
44408
|
-
&& this.
|
|
44397
|
+
return this.color === other.color && this.font.name === other.font.name && this.font.type === other.font.type
|
|
44398
|
+
&& this.textHeight === other.textHeight && this.widthFactor === other.widthFactor
|
|
44399
|
+
&& this.lineSpacingFactor === other.lineSpacingFactor && this.paragraphSpacingFactor === other.paragraphSpacingFactor
|
|
44409
44400
|
&& this.isBold === other.isBold && this.isItalic === other.isItalic && this.isUnderlined === other.isUnderlined
|
|
44410
44401
|
&& this.stackedFractionType === other.stackedFractionType && this.stackedFractionScale === other.stackedFractionScale
|
|
44411
44402
|
&& this.subScriptOffsetFactor === other.subScriptOffsetFactor && this.subScriptScale === other.subScriptScale
|
|
44412
44403
|
&& this.superScriptOffsetFactor === other.superScriptOffsetFactor && this.superScriptScale === other.superScriptScale
|
|
44413
44404
|
&& this.tabInterval === other.tabInterval && this.indentation === other.indentation
|
|
44414
44405
|
&& this.listMarker.case === other.listMarker.case && this.listMarker.enumerator === other.listMarker.enumerator && this.listMarker.terminator === other.listMarker.terminator
|
|
44406
|
+
&& this.justification === other.justification
|
|
44415
44407
|
&& this.leaderEquals(other.leader)
|
|
44416
|
-
&& this.frameEquals(other.frame)
|
|
44408
|
+
&& this.frameEquals(other.frame)
|
|
44409
|
+
&& this.marginsEqual(other.margins);
|
|
44417
44410
|
}
|
|
44418
44411
|
/**
|
|
44419
44412
|
* Returns a list of validation errors for this instance.
|
|
@@ -44427,11 +44420,11 @@ class TextStyleSettings {
|
|
|
44427
44420
|
*/
|
|
44428
44421
|
getValidationErrors() {
|
|
44429
44422
|
const errorMessages = [];
|
|
44430
|
-
if (this.
|
|
44431
|
-
errorMessages.push("
|
|
44423
|
+
if (this.font.name.trim() === "") {
|
|
44424
|
+
errorMessages.push("font name must be provided");
|
|
44432
44425
|
}
|
|
44433
|
-
if (this.
|
|
44434
|
-
errorMessages.push("
|
|
44426
|
+
if (this.textHeight <= 0) {
|
|
44427
|
+
errorMessages.push("textHeight must be greater than 0");
|
|
44435
44428
|
}
|
|
44436
44429
|
if (this.stackedFractionScale <= 0) {
|
|
44437
44430
|
errorMessages.push("stackedFractionScale must be greater than 0");
|
|
@@ -320733,7 +320726,7 @@ var loadLanguages = instance.loadLanguages;
|
|
|
320733
320726
|
/***/ ((module) => {
|
|
320734
320727
|
|
|
320735
320728
|
"use strict";
|
|
320736
|
-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.3.0-dev.
|
|
320729
|
+
module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.3.0-dev.3","description":"iTwin.js frontend components","main":"lib/cjs/core-frontend.js","module":"lib/esm/core-frontend.js","typings":"lib/cjs/core-frontend","license":"MIT","scripts":{"build":"npm run -s copy:public && npm run -s build:cjs && npm run -s build:esm && npm run -s webpackWorkers && npm run -s copy:workers && npm run -s copy:draco","build:cjs":"npm run -s copy:js:cjs && tsc 1>&2 --outDir lib/cjs","build:esm":"npm run -s copy:js:esm && tsc 1>&2 --module ES2022 --outDir lib/esm","clean":"rimraf -g lib .rush/temp/package-deps*.json","copy:public":"cpx \\"./src/public/**/*\\" ./lib/public","copy:js:cjs":"cpx \\"./src/**/*.js\\" ./lib/cjs","copy:js:esm":"cpx \\"./src/**/*.js\\" ./lib/esm","copy:workers":"cpx \\"./lib/workers/webpack/parse-imdl-worker.js\\" ./lib/public/scripts","copy:draco":"cpx \\"./node_modules/@loaders.gl/draco/dist/libs/*\\" ./lib/public/scripts","docs":"betools docs --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/map/*.d.ts,**/tile/*.d.ts,**/*-css.ts","extract-api":"betools extract-api --entry=core-frontend && npm run extract-extension-api","extract-extension-api":"eslint --no-inline-config -c extraction.eslint.config.js \\"./src/**/*.ts\\" 1>&2","lint":"eslint \\"./src/**/*.ts\\" 1>&2","lint-fix":"eslint --fix -f visualstudio \\"./src/**/*.ts\\" 1>&2","lint-deprecation":"eslint --fix -f visualstudio --no-inline-config -c ../../common/config/eslint/eslint.config.deprecation-policy.js \\"./src/**/*.ts\\"","pseudolocalize":"betools pseudolocalize --englishDir ./src/public/locales/en --out ./public/locales/en-PSEUDO","test":"npm run webpackTestWorker && vitest --run","cover":"npm run webpackTestWorker && vitest --run","webpackTests":"webpack --config ./src/test/utils/webpack.config.js 1>&2 && npm run -s webpackTestWorker","webpackTestWorker":"webpack --config ./src/test/worker/webpack.config.js 1>&2 && cpx \\"./lib/test/test-worker.js\\" ./lib/test","webpackWorkers":"webpack --config ./src/workers/ImdlParser/webpack.config.js 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core.git","directory":"core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*"},"//devDependencies":["NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install","NOTE: All tools used by scripts in this package must be listed as devDependencies"],"devDependencies":{"@itwin/appui-abstract":"workspace:*","@itwin/build-tools":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*","@itwin/eslint-plugin":"5.2.2-dev.2","@types/chai-as-promised":"^7","@types/draco3d":"^1.4.10","@types/sinon":"^17.0.2","@vitest/browser":"^3.0.6","@vitest/coverage-v8":"^3.0.6","cpx2":"^8.0.0","eslint":"^9.31.0","glob":"^10.3.12","playwright":"~1.47.1","rimraf":"^6.0.1","sinon":"^17.0.2","source-map-loader":"^5.0.0","typescript":"~5.6.2","typemoq":"^2.1.0","vitest":"^3.0.6","vite-multiple-assets":"^1.3.1","vite-plugin-static-copy":"2.2.0","webpack":"^5.97.1"},"//dependencies":["NOTE: these dependencies should be only for things that DO NOT APPEAR IN THE API","NOTE: core-frontend should remain UI technology agnostic, so no react/angular dependencies are allowed"],"dependencies":{"@itwin/cloud-agnostic-core":"^2.2.4","@itwin/object-storage-core":"^2.3.0","@itwin/core-i18n":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"^4.3.4","@loaders.gl/draco":"^4.3.4","fuse.js":"^3.3.0","wms-capabilities":"0.4.0"}}');
|
|
320737
320730
|
|
|
320738
320731
|
/***/ })
|
|
320739
320732
|
|