@famibee/skynovel 1.23.0 → 1.24.1
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/CHANGELOG.md +46 -0
- package/app.js +105 -121
- package/core/lib/sn/Config.d.ts.map +1 -1
- package/core/lib/sn/Layer.d.ts.map +1 -1
- package/core/lib/sn/PropParser.d.ts.map +1 -1
- package/core/lib/sn/TxtLayer.d.ts +1 -35
- package/core/lib/sn/TxtLayer.d.ts.map +1 -1
- package/core/lib/sn/TxtStage.d.ts +6 -6
- package/core/lib/sn/TxtStage.d.ts.map +1 -1
- package/package.json +4 -4
- package/web.js +105 -121
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,49 @@
|
|
|
1
|
+
## [1.24.1](https://github.com/famibee/SKYNovel/compare/v1.24.0...v1.24.1) (2021-12-19)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* [tcy](縦中横)を使うとフリーズする場合がある件 ([4419df4](https://github.com/famibee/SKYNovel/commit/4419df48599026460985ad5b5b27ee981fe26683))
|
|
7
|
+
|
|
8
|
+
- fix: [tcy](縦中横)を使うとフリーズする場合がある件
|
|
9
|
+
- fix: [ch]で wait属性を指定しないと、他のstyle指定などが無効になる件
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
# [1.24.0](https://github.com/famibee/SKYNovel/compare/v1.23.2...v1.24.0) (2021-12-16)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* isNaN()演算子サポート ([33883dd](https://github.com/famibee/SKYNovel/commit/33883dd5241a0a2548649a2a1d13a1b464f241fd))
|
|
18
|
+
|
|
19
|
+
- feat: isNaN()演算子サポート
|
|
20
|
+
- > https://www.ikkitang1211.site/entry/defer-null-undefined
|
|
21
|
+
- > JavaScriptの仕様として、 toNumber(null) は 0 / toNumber(undefined) は NaN とするという取り決めがある
|
|
22
|
+
- NaN が判定できると数値 undefined 判定の取りこぼししなくなる
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## [1.23.2](https://github.com/famibee/SKYNovel/compare/v1.23.1...v1.23.2) (2021-12-13)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* 通常文字表示待ち・既読文字表示待ちなどが0になる不具合(直前のデグレード) ([cdae513](https://github.com/famibee/SKYNovel/commit/cdae513f56342a63c0b1559b93206d605a9f2273))
|
|
31
|
+
|
|
32
|
+
- fix: 通常文字表示待ち・既読文字表示待ちなどが0になる不具合(1.23.0のデグレード)
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
## [1.23.1](https://github.com/famibee/SKYNovel/compare/v1.23.0...v1.23.1) (2021-12-12)
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Bug Fixes
|
|
39
|
+
|
|
40
|
+
* 文字レイヤサイズが[trans]などで正しくコピーされない件 ([925d84e](https://github.com/famibee/SKYNovel/commit/925d84efad4dcd13e826287fc8cd19a3eceea9c3))
|
|
41
|
+
|
|
42
|
+
- fix: 文字レイヤサイズが[trans]などで正しくコピーされない件
|
|
43
|
+
- docs: 文字レイヤ b_left、b_top、b_width、b_height 属性についての記述を削除
|
|
44
|
+
- (SKYNovelには存在しない・高級な文字レイヤ背景は b_pic でやってもらう)
|
|
45
|
+
|
|
46
|
+
|
|
1
47
|
# [1.23.0](https://github.com/famibee/SKYNovel/compare/v1.22.3...v1.23.0) (2021-12-11)
|
|
2
48
|
|
|
3
49
|
|
package/app.js
CHANGED
|
@@ -67475,14 +67475,7 @@ class Config {
|
|
|
67475
67475
|
this.oCfg.book = { ...this.oCfg.book, ...oCfg.book };
|
|
67476
67476
|
this.oCfg.log.max_len = oCfg.log?.max_len?.max_len ?? this.oCfg.log.max_len;
|
|
67477
67477
|
this.oCfg.init = { ...this.oCfg.init, ...oCfg.init };
|
|
67478
|
-
|
|
67479
|
-
for (const n in this.oCfg.init) {
|
|
67480
|
-
const v = String(this.oCfg.init[n]);
|
|
67481
|
-
if (n === 'bg_color')
|
|
67482
|
-
this.oCfg.init[n] = (0, CmnLib_1.parseColor)(v);
|
|
67483
|
-
else
|
|
67484
|
-
this.oCfg.init[n] = parseInt(v.slice(1), 16);
|
|
67485
|
-
}
|
|
67478
|
+
this.oCfg.init.bg_color = (0, CmnLib_1.parseColor)(String(this.oCfg.init.bg_color));
|
|
67486
67479
|
this.oCfg.debug = { ...this.oCfg.debug, ...oCfg.debug };
|
|
67487
67480
|
CmnLib_1.CmnLib.debugLog = this.oCfg.debug.debugLog;
|
|
67488
67481
|
this.oCfg.debuger_token = oCfg.debuger_token;
|
|
@@ -68254,7 +68247,7 @@ class TxtLayDesignCast extends DesignCast {
|
|
|
68254
68247
|
};
|
|
68255
68248
|
}
|
|
68256
68249
|
getRect() {
|
|
68257
|
-
const it = this.ts.
|
|
68250
|
+
const it = this.ts.infTL;
|
|
68258
68251
|
return new pixi_js_1.Rectangle(this.spLay.x, this.spLay.y, it.$width, it.$height);
|
|
68259
68252
|
}
|
|
68260
68253
|
cnvPosArg(left, top) { return { left, top }; }
|
|
@@ -68282,12 +68275,12 @@ class TxtLayPadDesignCast extends DesignCast {
|
|
|
68282
68275
|
this.rotatable = false;
|
|
68283
68276
|
}
|
|
68284
68277
|
getRect() {
|
|
68285
|
-
const it = this.ts.
|
|
68278
|
+
const it = this.ts.infTL;
|
|
68286
68279
|
return new pixi_js_1.Rectangle(it.pad_left, it.pad_top, it.$width - it.pad_left - it.pad_right, it.$height - it.pad_top - it.pad_bottom);
|
|
68287
68280
|
}
|
|
68288
68281
|
cnvPosArg(pl, pt) { return { pl, pt }; }
|
|
68289
68282
|
cnvSizeArg(w, h) {
|
|
68290
|
-
const it = this.ts.
|
|
68283
|
+
const it = this.ts.infTL;
|
|
68291
68284
|
return {
|
|
68292
68285
|
pr: it.$width - it.pad_left - w,
|
|
68293
68286
|
pb: it.$height - it.pad_top - h,
|
|
@@ -68298,7 +68291,7 @@ class TxtLayPadDesignCast extends DesignCast {
|
|
|
68298
68291
|
this.ts.lay({ ...this.cnvSizeArg(w, h), ':redraw': true });
|
|
68299
68292
|
}
|
|
68300
68293
|
setOther(hPrm) {
|
|
68301
|
-
const it = this.ts.
|
|
68294
|
+
const it = this.ts.infTL;
|
|
68302
68295
|
if ('pl' in hPrm || 'pt' in hPrm) {
|
|
68303
68296
|
this.setPos(this.rect.x = parseFloat(DesignCast.prpPrs.getValAmpersand(hPrm.pl?.val ?? `${it.pad_left}`)), this.rect.y = parseFloat(DesignCast.prpPrs.getValAmpersand(hPrm.pt?.val ?? `${it.pad_top}`)));
|
|
68304
68297
|
this.cvsResize();
|
|
@@ -68326,7 +68319,7 @@ exports.TxtLayPadDesignCast = TxtLayPadDesignCast;
|
|
|
68326
68319
|
_TxtLayPadDesignCast_instances = new WeakSet(), _TxtLayPadDesignCast_procHint = function _TxtLayPadDesignCast_procHint(left, top, dx, dy) {
|
|
68327
68320
|
const x = this.rect.x, y = this.rect.y;
|
|
68328
68321
|
const w = this.rect.width, h = this.rect.height;
|
|
68329
|
-
const it = this.ts.
|
|
68322
|
+
const it = this.ts.infTL;
|
|
68330
68323
|
const pl = (0, CmnLib_1.int)(x + dx / CmnLib_1.CmnLib.cvsScale);
|
|
68331
68324
|
const pt = (0, CmnLib_1.int)(y + dy / CmnLib_1.CmnLib.cvsScale);
|
|
68332
68325
|
const pr = (0, CmnLib_1.int)(it.$width - pl - w);
|
|
@@ -71477,14 +71470,14 @@ _a = LayerMng, _LayerMng_stage = new WeakMap(), _LayerMng_fore = new WeakMap(),
|
|
|
71477
71470
|
const txt = hArg.text;
|
|
71478
71471
|
if (!txt)
|
|
71479
71472
|
throw 'textは必須です';
|
|
71480
|
-
let wait = (0, CmnLib_1.argChk_Num)(hArg, 'wait', -1);
|
|
71481
|
-
if (wait > 0 && this.val.getVal('tmp:sn.skip.enabled'))
|
|
71482
|
-
wait = 0;
|
|
71483
|
-
hArg.wait = wait;
|
|
71484
71473
|
const tl = __classPrivateFieldGet(this, _LayerMng_getTxtLayer, "f").call(this, hArg);
|
|
71485
71474
|
delete hArg.text;
|
|
71486
|
-
if (wait
|
|
71487
|
-
|
|
71475
|
+
if ('wait' in hArg) {
|
|
71476
|
+
(0, CmnLib_1.argChk_Num)(hArg, 'wait', NaN);
|
|
71477
|
+
if (this.val.getVal('tmp:sn.skip.enabled'))
|
|
71478
|
+
hArg.wait = 0;
|
|
71479
|
+
}
|
|
71480
|
+
__classPrivateFieldGet(this, _LayerMng_cmdTxt, "f").call(this, 'add|' + JSON.stringify(hArg), tl);
|
|
71488
71481
|
const record = (0, CmnLib_1.argChk_Boolean)(hArg, 'record', true);
|
|
71489
71482
|
const doRecLog = this.val.doRecLog();
|
|
71490
71483
|
if (!record)
|
|
@@ -71492,8 +71485,7 @@ _a = LayerMng, _LayerMng_stage = new WeakMap(), _LayerMng_fore = new WeakMap(),
|
|
|
71492
71485
|
tl.tagCh(txt.replaceAll('[r]', '\n'));
|
|
71493
71486
|
if (!record)
|
|
71494
71487
|
this.val.setVal_Nochk('save', 'sn.doRecLog', doRecLog);
|
|
71495
|
-
|
|
71496
|
-
__classPrivateFieldGet(this, _LayerMng_cmdTxt, "f").call(this, `add_close|`, tl);
|
|
71488
|
+
__classPrivateFieldGet(this, _LayerMng_cmdTxt, "f").call(this, `add_close|`, tl);
|
|
71497
71489
|
return false;
|
|
71498
71490
|
}, _LayerMng_$getTxtLayer = function _LayerMng_$getTxtLayer(hArg) {
|
|
71499
71491
|
const layer = __classPrivateFieldGet(this, _LayerMng_instances, "m", _LayerMng_argChk_layer).call(this, hArg, __classPrivateFieldGet(this, _LayerMng_curTxtlay, "f"));
|
|
@@ -72041,6 +72033,7 @@ class PropParser {
|
|
|
72041
72033
|
'ceil': a => Math.ceil(__classPrivateFieldGet(this, _PropParser_instances, "m", _PropParser_fncSub_ChkNum).call(this, a.shift())),
|
|
72042
72034
|
'floor': a => Math.floor(__classPrivateFieldGet(this, _PropParser_instances, "m", _PropParser_fncSub_ChkNum).call(this, a.shift())),
|
|
72043
72035
|
'round': a => Math.round(__classPrivateFieldGet(this, _PropParser_instances, "m", _PropParser_fncSub_ChkNum).call(this, a.shift())),
|
|
72036
|
+
'isNaN': a => isNaN(Number(__classPrivateFieldGet(this, _PropParser_instances, "m", _PropParser_calc).call(this, a.shift()))),
|
|
72044
72037
|
'<<': a => Number(__classPrivateFieldGet(this, _PropParser_instances, "m", _PropParser_calc).call(this, a.shift())) <<
|
|
72045
72038
|
Number(__classPrivateFieldGet(this, _PropParser_instances, "m", _PropParser_calc).call(this, a.shift())),
|
|
72046
72039
|
'>>': a => Number(__classPrivateFieldGet(this, _PropParser_instances, "m", _PropParser_calc).call(this, a.shift())) >>
|
|
@@ -74743,7 +74736,7 @@ var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (
|
|
|
74743
74736
|
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
74744
74737
|
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
|
74745
74738
|
};
|
|
74746
|
-
var _TxtLayer_instances, _a, _TxtLayer_cfg, _TxtLayer_val, _TxtLayer_recText, _TxtLayer_isPageFore, _TxtLayer_ch_in_style, _TxtLayer_ch_out_style, _TxtLayer_main, _TxtLayer_evtMng, _TxtLayer_doAutoWc, _TxtLayer_hAutoWc, _TxtLayer_autowc,
|
|
74739
|
+
var _TxtLayer_instances, _a, _TxtLayer_cfg, _TxtLayer_val, _TxtLayer_recText, _TxtLayer_isPageFore, _TxtLayer_ch_in_style, _TxtLayer_ch_out_style, _TxtLayer_main, _TxtLayer_evtMng, _TxtLayer_doAutoWc, _TxtLayer_hAutoWc, _TxtLayer_autowc, _TxtLayer_b_color, _TxtLayer_b_alpha, _TxtLayer_b_alpha_isfixed, _TxtLayer_b_do, _TxtLayer_b_pic, _TxtLayer_txs, _TxtLayer_rbSpl, _TxtLayer_cntBtn, _TxtLayer_set_ch_in, _TxtLayer_$ch_in_style, _TxtLayer_ch_in_join, _TxtLayer_set_ch_out, _TxtLayer_$ch_out_style, _TxtLayer_drawBack, _TxtLayer_setFfs, _TxtLayer_ffs, _TxtLayer_fncFFSStyle, _TxtLayer_fncFFSSpan, _TxtLayer_strNoFFS, _TxtLayer_regNoFFS, _TxtLayer_ruby_pd, _TxtLayer_r_align, _TxtLayer_mkStyle_r_align4ff, _TxtLayer_needGoTxt, _TxtLayer_putCh, _TxtLayer_tagCh_sub, _TxtLayer_cumDelay, _TxtLayer_firstCh, _TxtLayer_aSpan, _TxtLayer_aSpan_bk, _TxtLayer_aSpan_link, _TxtLayer_hSpanBk, _TxtLayer_beginSpan, _TxtLayer_autoCloseSpan, _TxtLayer_page_text;
|
|
74747
74740
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
74748
74741
|
exports.TxtLayer = void 0;
|
|
74749
74742
|
const Layer_1 = __webpack_require__(/*! ./Layer */ "./core/src/sn/Layer.ts");
|
|
@@ -74759,21 +74752,12 @@ class TxtLayer extends Layer_1.Layer {
|
|
|
74759
74752
|
constructor() {
|
|
74760
74753
|
super();
|
|
74761
74754
|
_TxtLayer_instances.add(this);
|
|
74762
|
-
_TxtLayer_infTL.set(this, {
|
|
74763
|
-
fontsize: 24,
|
|
74764
|
-
$width: 0,
|
|
74765
|
-
$height: 0,
|
|
74766
|
-
pad_left: 0,
|
|
74767
|
-
pad_right: 0,
|
|
74768
|
-
pad_top: 0,
|
|
74769
|
-
pad_bottom: 0,
|
|
74770
|
-
});
|
|
74771
74755
|
_TxtLayer_b_color.set(this, 0x000000);
|
|
74772
74756
|
_TxtLayer_b_alpha.set(this, 0);
|
|
74773
74757
|
_TxtLayer_b_alpha_isfixed.set(this, false);
|
|
74774
74758
|
_TxtLayer_b_do.set(this, null);
|
|
74775
74759
|
_TxtLayer_b_pic.set(this, '');
|
|
74776
|
-
_TxtLayer_txs.set(this, new TxtStage_1.TxtStage(
|
|
74760
|
+
_TxtLayer_txs.set(this, new TxtStage_1.TxtStage(this.spLay, () => this.canFocus()));
|
|
74777
74761
|
_TxtLayer_rbSpl.set(this, new RubySpliter_1.RubySpliter);
|
|
74778
74762
|
_TxtLayer_cntBtn.set(this, new pixi_js_1.Container);
|
|
74779
74763
|
_TxtLayer_$ch_in_style.set(this, '');
|
|
@@ -74994,43 +74978,32 @@ class TxtLayer extends Layer_1.Layer {
|
|
|
74994
74978
|
if (isSkip)
|
|
74995
74979
|
__classPrivateFieldSet(this, _TxtLayer_cumDelay, 0, "f");
|
|
74996
74980
|
const rs = this.mkStyle_r_align(tx, rb, __classPrivateFieldGet(this, _TxtLayer_r_align, "f"));
|
|
74981
|
+
const da = ` data-add='{"ch_in_style":"${__classPrivateFieldGet(this, _TxtLayer_$ch_in_style, "f")}", "ch_out_style":"${__classPrivateFieldGet(this, _TxtLayer_$ch_out_style, "f")}"}'`;
|
|
74982
|
+
const st = `<span data-tcy='${id_tcy}' style='
|
|
74983
|
+
text-combine-upright: all;
|
|
74984
|
+
-webkit-text-combine: horizontal;
|
|
74985
|
+
${__classPrivateFieldGet(this, _TxtLayer_fncFFSStyle, "f").call(this, tx)}`;
|
|
74997
74986
|
add_htm = rb
|
|
74998
74987
|
? (__classPrivateFieldGet(this, _TxtLayer_aSpan_bk, "f")
|
|
74999
|
-
?
|
|
75000
|
-
|
|
75001
|
-
|
|
75002
|
-
|
|
75003
|
-
|
|
75004
|
-
|
|
75005
|
-
: (`<span class='sn_ch sn_ch_in_${__classPrivateFieldGet(this, _TxtLayer_$ch_in_style, "f")}' style='animation-delay: ${__classPrivateFieldGet(this, _TxtLayer_cumDelay, "f")}ms;'>`
|
|
75006
|
-
+ `<ruby><span data-tcy='${id_tcy}' style='
|
|
75007
|
-
text-combine-upright: all;
|
|
75008
|
-
-webkit-text-combine: horizontal;
|
|
75009
|
-
${__classPrivateFieldGet(this, _TxtLayer_fncFFSStyle, "f").call(this, tx)}
|
|
75010
|
-
' data-add='{"ch_in_style":"${__classPrivateFieldGet(this, _TxtLayer_$ch_in_style, "f")}", "ch_out_style":"${__classPrivateFieldGet(this, _TxtLayer_$ch_out_style, "f")}"}'>${tx}</span>`
|
|
75011
|
-
+ `<rt${rs}>${rb}</rt></ruby>`
|
|
75012
|
-
+ `</span>`))
|
|
74988
|
+
? `<ruby>${st}'${da} data-cmd='linkrsv'>${tx}</span>
|
|
74989
|
+
<rt${rs}>${rb}</rt></ruby>`
|
|
74990
|
+
: `<span class='sn_ch sn_ch_in_${__classPrivateFieldGet(this, _TxtLayer_$ch_in_style, "f")}' style='animation-delay: ${__classPrivateFieldGet(this, _TxtLayer_cumDelay, "f")}ms;'>
|
|
74991
|
+
<ruby>${st}'${da}>${tx}</span>
|
|
74992
|
+
<rt${rs}>${rb}</rt></ruby>
|
|
74993
|
+
</span>`)
|
|
75013
74994
|
: (__classPrivateFieldGet(this, _TxtLayer_aSpan_bk, "f")
|
|
75014
|
-
?
|
|
75015
|
-
|
|
75016
|
-
-webkit-text-combine: horizontal;
|
|
75017
|
-
${__classPrivateFieldGet(this, _TxtLayer_fncFFSStyle, "f").call(this, tx)}
|
|
75018
|
-
' data-add='{"ch_in_style":"${__classPrivateFieldGet(this, _TxtLayer_$ch_in_style, "f")}", "ch_out_style":"${__classPrivateFieldGet(this, _TxtLayer_$ch_out_style, "f")}"}' data-cmd='linkrsv'>${tx}</span>`)
|
|
75019
|
-
: `<span data-tcy='${id_tcy}' style='
|
|
75020
|
-
text-combine-upright: all;
|
|
75021
|
-
-webkit-text-combine: horizontal;
|
|
74995
|
+
? `${st}'${da} data-cmd='linkrsv'>${tx}</span>`
|
|
74996
|
+
: `${st}
|
|
75022
74997
|
animation-delay: ${__classPrivateFieldGet(this, _TxtLayer_cumDelay, "f")}ms;
|
|
75023
74998
|
height: 1em;
|
|
75024
|
-
|
|
75025
|
-
' class='sn_ch sn_ch_in_${__classPrivateFieldGet(this, _TxtLayer_$ch_in_style, "f")}' data-add='{"ch_in_style":"${__classPrivateFieldGet(this, _TxtLayer_$ch_in_style, "f")}", "ch_out_style":"${__classPrivateFieldGet(this, _TxtLayer_$ch_out_style, "f")}"}'>${tx}</span>`);
|
|
74999
|
+
' class='sn_ch sn_ch_in_${__classPrivateFieldGet(this, _TxtLayer_$ch_in_style, "f")}'${da}>${tx}</span>`);
|
|
75026
75000
|
if (__classPrivateFieldGet(this, _TxtLayer_ch_in_join, "f"))
|
|
75027
75001
|
__classPrivateFieldSet(this, _TxtLayer_cumDelay, __classPrivateFieldGet(this, _TxtLayer_cumDelay, "f") + ((__classPrivateFieldGet(TxtLayer, _a, "f", _TxtLayer_doAutoWc))
|
|
75028
75002
|
? __classPrivateFieldGet(TxtLayer, _a, "f", _TxtLayer_hAutoWc)[ch.charAt(0)] ?? 0
|
|
75029
75003
|
: LayerMng_1.LayerMng.msecChWait), "f");
|
|
75030
75004
|
}
|
|
75031
75005
|
break;
|
|
75032
|
-
default:
|
|
75033
|
-
throw `異常な値です putCh(text: ${ch}, ruby: ${ruby})`;
|
|
75006
|
+
default: throw `異常な値です putCh(text: ${ch}, ruby: ${ruby})`;
|
|
75034
75007
|
}
|
|
75035
75008
|
break;
|
|
75036
75009
|
}
|
|
@@ -75189,8 +75162,8 @@ class TxtLayer extends Layer_1.Layer {
|
|
|
75189
75162
|
return __classPrivateFieldGet(this, _TxtLayer_instances, "m", _TxtLayer_drawBack).call(this, hArg, isStop => { if (isStop)
|
|
75190
75163
|
__classPrivateFieldGet(TxtLayer, _a, "f", _TxtLayer_main).resume(); });
|
|
75191
75164
|
}
|
|
75192
|
-
get width() { return __classPrivateFieldGet(this, _TxtLayer_txs, "f").getWidth
|
|
75193
|
-
get height() { return __classPrivateFieldGet(this, _TxtLayer_txs, "f").getHeight
|
|
75165
|
+
get width() { return __classPrivateFieldGet(this, _TxtLayer_txs, "f").getWidth; }
|
|
75166
|
+
get height() { return __classPrivateFieldGet(this, _TxtLayer_txs, "f").getHeight; }
|
|
75194
75167
|
chgBackAlpha(g_alpha) {
|
|
75195
75168
|
const alpha = __classPrivateFieldGet(this, _TxtLayer_b_alpha_isfixed, "f")
|
|
75196
75169
|
? __classPrivateFieldGet(this, _TxtLayer_b_alpha, "f")
|
|
@@ -75200,13 +75173,12 @@ class TxtLayer extends Layer_1.Layer {
|
|
|
75200
75173
|
this.spLay.removeChild(__classPrivateFieldGet(this, _TxtLayer_b_do, "f"));
|
|
75201
75174
|
__classPrivateFieldGet(this, _TxtLayer_b_do, "f").destroy();
|
|
75202
75175
|
}
|
|
75203
|
-
|
|
75204
|
-
|
|
75205
|
-
|
|
75206
|
-
|
|
75207
|
-
|
|
75208
|
-
|
|
75209
|
-
this.spLay.addChildAt(grp, 0);
|
|
75176
|
+
this.spLay.addChildAt((__classPrivateFieldSet(this, _TxtLayer_b_do, new pixi_js_1.Graphics, "f"))
|
|
75177
|
+
.beginFill(__classPrivateFieldGet(this, _TxtLayer_b_color, "f"))
|
|
75178
|
+
.lineStyle(undefined)
|
|
75179
|
+
.drawRect(0, 0, __classPrivateFieldGet(this, _TxtLayer_txs, "f").getWidth, __classPrivateFieldGet(this, _TxtLayer_txs, "f").getHeight)
|
|
75180
|
+
.endFill(), 0);
|
|
75181
|
+
__classPrivateFieldGet(this, _TxtLayer_b_do, "f").name = 'back(color)';
|
|
75210
75182
|
}
|
|
75211
75183
|
if (__classPrivateFieldGet(this, _TxtLayer_b_do, "f")) {
|
|
75212
75184
|
__classPrivateFieldGet(this, _TxtLayer_b_do, "f").visible = (alpha > 0);
|
|
@@ -75271,6 +75243,8 @@ class TxtLayer extends Layer_1.Layer {
|
|
|
75271
75243
|
this.enabled = hLay.enabled;
|
|
75272
75244
|
__classPrivateFieldSet(this, _TxtLayer_r_align, hLay.r_align, "f");
|
|
75273
75245
|
this.cvsResize();
|
|
75246
|
+
__classPrivateFieldGet(this, _TxtLayer_instances, "m", _TxtLayer_setFfs).call(this, hLay);
|
|
75247
|
+
__classPrivateFieldGet(this, _TxtLayer_txs, "f").playback(hLay.txs);
|
|
75274
75248
|
__classPrivateFieldSet(this, _TxtLayer_b_alpha, hLay.b_alpha, "f");
|
|
75275
75249
|
__classPrivateFieldSet(this, _TxtLayer_b_alpha_isfixed, hLay.b_alpha_isfixed, "f");
|
|
75276
75250
|
aPrm.push(new Promise(re => {
|
|
@@ -75282,8 +75256,6 @@ class TxtLayer extends Layer_1.Layer {
|
|
|
75282
75256
|
re(); }))
|
|
75283
75257
|
re();
|
|
75284
75258
|
}));
|
|
75285
|
-
__classPrivateFieldGet(this, _TxtLayer_instances, "m", _TxtLayer_setFfs).call(this, hLay);
|
|
75286
|
-
__classPrivateFieldGet(this, _TxtLayer_txs, "f").playback(hLay.txs);
|
|
75287
75259
|
const aBtn = hLay.btns;
|
|
75288
75260
|
aPrm = aPrm.concat(aBtn.map(v => this.addButton(JSON.parse(v.replaceAll(`'`, '"')))));
|
|
75289
75261
|
}
|
|
@@ -75308,11 +75280,11 @@ class TxtLayer extends Layer_1.Layer {
|
|
|
75308
75280
|
}
|
|
75309
75281
|
dump() {
|
|
75310
75282
|
__classPrivateFieldGet(this, _TxtLayer_putCh, "f").call(this, '', 'gotxt|');
|
|
75311
|
-
return super.dump() + `, "enabled":"${this.enabled}", ${__classPrivateFieldGet(this, _TxtLayer_txs, "f").dump()}, "b_pic":"${__classPrivateFieldGet(this, _TxtLayer_b_pic, "f")}", "b_color":"${__classPrivateFieldGet(this, _TxtLayer_b_color, "f")}", "b_alpha":${__classPrivateFieldGet(this, _TxtLayer_b_alpha, "f")}, "b_alpha_isfixed":"${__classPrivateFieldGet(this, _TxtLayer_b_alpha_isfixed, "f")}", "
|
|
75283
|
+
return super.dump() + `, "enabled":"${this.enabled}", ${__classPrivateFieldGet(this, _TxtLayer_txs, "f").dump()}, "b_pic":"${__classPrivateFieldGet(this, _TxtLayer_b_pic, "f")}", "b_color":"${__classPrivateFieldGet(this, _TxtLayer_b_color, "f")}", "b_alpha":${__classPrivateFieldGet(this, _TxtLayer_b_alpha, "f")}, "b_alpha_isfixed":"${__classPrivateFieldGet(this, _TxtLayer_b_alpha_isfixed, "f")}", "width":${__classPrivateFieldGet(this, _TxtLayer_txs, "f").getWidth}, "height":${__classPrivateFieldGet(this, _TxtLayer_txs, "f").getHeight}, "pixi_obj":[${this.spLay.children.map(e => `{"class":"${(e instanceof pixi_js_1.Sprite) ? 'Sprite' : ((e instanceof pixi_js_1.Graphics) ? 'Graphics' : ((e instanceof pixi_js_1.Container) ? 'Container' : '?'))}", "name":"${e.name}", "alpha":${e.alpha}, "x":${e.x}, "y":${e.y}, "visible":"${e.visible}"}`).join(',')}], "button":[${__classPrivateFieldGet(this, _TxtLayer_cntBtn, "f").children.map(d => d.children[0].name ?? '{}').join(',')}]`;
|
|
75312
75284
|
}
|
|
75313
75285
|
}
|
|
75314
75286
|
exports.TxtLayer = TxtLayer;
|
|
75315
|
-
_a = TxtLayer,
|
|
75287
|
+
_a = TxtLayer, _TxtLayer_b_color = new WeakMap(), _TxtLayer_b_alpha = new WeakMap(), _TxtLayer_b_alpha_isfixed = new WeakMap(), _TxtLayer_b_do = new WeakMap(), _TxtLayer_b_pic = new WeakMap(), _TxtLayer_txs = new WeakMap(), _TxtLayer_rbSpl = new WeakMap(), _TxtLayer_cntBtn = new WeakMap(), _TxtLayer_$ch_in_style = new WeakMap(), _TxtLayer_ch_in_join = new WeakMap(), _TxtLayer_$ch_out_style = new WeakMap(), _TxtLayer_ffs = new WeakMap(), _TxtLayer_fncFFSStyle = new WeakMap(), _TxtLayer_fncFFSSpan = new WeakMap(), _TxtLayer_strNoFFS = new WeakMap(), _TxtLayer_regNoFFS = new WeakMap(), _TxtLayer_ruby_pd = new WeakMap(), _TxtLayer_r_align = new WeakMap(), _TxtLayer_needGoTxt = new WeakMap(), _TxtLayer_putCh = new WeakMap(), _TxtLayer_cumDelay = new WeakMap(), _TxtLayer_firstCh = new WeakMap(), _TxtLayer_aSpan = new WeakMap(), _TxtLayer_aSpan_bk = new WeakMap(), _TxtLayer_aSpan_link = new WeakMap(), _TxtLayer_hSpanBk = new WeakMap(), _TxtLayer_page_text = new WeakMap(), _TxtLayer_instances = new WeakSet(), _TxtLayer_ch_in_style = function _TxtLayer_ch_in_style(hArg) {
|
|
75316
75288
|
const o = TxtStage_1.TxtStage.ch_in_style(hArg);
|
|
75317
75289
|
const x = (o.x.charAt(0) === '=') ? `${o.nx * 100}%` : `${o.nx}px`;
|
|
75318
75290
|
const y = (o.y.charAt(0) === '=') ? `${o.ny * 100}%` : `${o.ny}px`;
|
|
@@ -75431,13 +75403,12 @@ _a = TxtLayer, _TxtLayer_infTL = new WeakMap(), _TxtLayer_b_color = new WeakMap(
|
|
|
75431
75403
|
__classPrivateFieldGet(this, _TxtLayer_b_do, "f").destroy();
|
|
75432
75404
|
}
|
|
75433
75405
|
__classPrivateFieldSet(this, _TxtLayer_b_pic, '', "f");
|
|
75434
|
-
|
|
75435
|
-
|
|
75436
|
-
|
|
75437
|
-
|
|
75438
|
-
|
|
75439
|
-
|
|
75440
|
-
this.spLay.addChildAt(grp, 0);
|
|
75406
|
+
this.spLay.addChildAt((__classPrivateFieldSet(this, _TxtLayer_b_do, new pixi_js_1.Graphics, "f"))
|
|
75407
|
+
.beginFill(__classPrivateFieldGet(this, _TxtLayer_b_color, "f"))
|
|
75408
|
+
.lineStyle(undefined)
|
|
75409
|
+
.drawRect(0, 0, __classPrivateFieldGet(this, _TxtLayer_txs, "f").getWidth, __classPrivateFieldGet(this, _TxtLayer_txs, "f").getHeight)
|
|
75410
|
+
.endFill(), 0);
|
|
75411
|
+
__classPrivateFieldGet(this, _TxtLayer_b_do, "f").name = 'back(color)';
|
|
75441
75412
|
}
|
|
75442
75413
|
if (__classPrivateFieldGet(this, _TxtLayer_b_do, "f")) {
|
|
75443
75414
|
__classPrivateFieldGet(this, _TxtLayer_b_do, "f").visible = (alpha > 0);
|
|
@@ -75514,15 +75485,16 @@ _a = TxtLayer, _TxtLayer_infTL = new WeakMap(), _TxtLayer_b_color = new WeakMap(
|
|
|
75514
75485
|
const rs = this.mkStyle_r_align(ch, ruby, r_align);
|
|
75515
75486
|
if (isSkip)
|
|
75516
75487
|
__classPrivateFieldSet(this, _TxtLayer_cumDelay, 0, "f");
|
|
75488
|
+
const da = ` data-add='{"ch_in_style":"${__classPrivateFieldGet(this, _TxtLayer_$ch_in_style, "f")}", "ch_out_style":"${__classPrivateFieldGet(this, _TxtLayer_$ch_out_style, "f")}"}'`;
|
|
75517
75489
|
add_htm = ruby
|
|
75518
75490
|
? (__classPrivateFieldGet(this, _TxtLayer_aSpan_bk, "f")
|
|
75519
|
-
? `<ruby style='${__classPrivateFieldGet(this, _TxtLayer_fncFFSStyle, "f").call(this, ch)}'
|
|
75520
|
-
:
|
|
75521
|
-
|
|
75522
|
-
|
|
75491
|
+
? `<ruby style='${__classPrivateFieldGet(this, _TxtLayer_fncFFSStyle, "f").call(this, ch)}'${da} data-cmd='linkrsv'>${ch}<rt${rs}>${ruby}</rt></ruby>`
|
|
75492
|
+
: `<span class='sn_ch sn_ch_in_${__classPrivateFieldGet(this, _TxtLayer_$ch_in_style, "f")}' style='animation-delay: ${__classPrivateFieldGet(this, _TxtLayer_cumDelay, "f")}ms;${__classPrivateFieldGet(this, _TxtLayer_fncFFSStyle, "f").call(this, ch)}'>
|
|
75493
|
+
<ruby${da}>${ch}<rt${rs}>${ruby}</rt></ruby>
|
|
75494
|
+
</span>`)
|
|
75523
75495
|
: (__classPrivateFieldGet(this, _TxtLayer_aSpan_bk, "f")
|
|
75524
75496
|
? __classPrivateFieldGet(this, _TxtLayer_fncFFSSpan, "f").call(this, ch)
|
|
75525
|
-
: `<span class='sn_ch sn_ch_in_${__classPrivateFieldGet(this, _TxtLayer_$ch_in_style, "f")}' style='animation-delay: ${__classPrivateFieldGet(this, _TxtLayer_cumDelay, "f")}ms;${__classPrivateFieldGet(this, _TxtLayer_fncFFSStyle, "f").call(this, ch)}'
|
|
75497
|
+
: `<span class='sn_ch sn_ch_in_${__classPrivateFieldGet(this, _TxtLayer_$ch_in_style, "f")}' style='animation-delay: ${__classPrivateFieldGet(this, _TxtLayer_cumDelay, "f")}ms;${__classPrivateFieldGet(this, _TxtLayer_fncFFSStyle, "f").call(this, ch)}'${da}>${ch}</span>`);
|
|
75526
75498
|
if (__classPrivateFieldGet(this, _TxtLayer_ch_in_join, "f"))
|
|
75527
75499
|
__classPrivateFieldSet(this, _TxtLayer_cumDelay, __classPrivateFieldGet(this, _TxtLayer_cumDelay, "f") + (__classPrivateFieldGet(TxtLayer, _a, "f", _TxtLayer_doAutoWc)
|
|
75528
75500
|
? __classPrivateFieldGet(TxtLayer, _a, "f", _TxtLayer_hAutoWc)[ch.charAt(0)] ?? 0
|
|
@@ -75578,7 +75550,7 @@ var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (
|
|
|
75578
75550
|
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
75579
75551
|
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
|
75580
75552
|
};
|
|
75581
|
-
var _TxtStage_instances, _a, _TxtStage_cfg, _TxtStage_cvs, _TxtStage_evtMng, _TxtStage_htmTxt, _TxtStage_cntTxt, _TxtStage_grpDbgMasume, _TxtStage_idc, _TxtStage_idcCh, _TxtStage_lay_sub, _TxtStage_left, _TxtStage_isTategaki, _TxtStage_padTx4x, _TxtStage_padTx4y, _TxtStage_hWarning, _TxtStage_htm2tx, _TxtStage_ch_filter, _TxtStage_aSpTw, _TxtStage_aRect, _TxtStage_lenHtmTxt, _TxtStage_reg行頭禁則, _TxtStage_reg行末禁則, _TxtStage_reg分割禁止, _TxtStage_beforeHTMLElm, _TxtStage_rctm, _TxtStage_REGDS, _TxtStage_fncEndChIn, _TxtStage_spWork, _TxtStage_isChInIng, _TxtStage_hChInStyle, _TxtStage_REG_NG_CHSTYLE_NAME_CHR, _TxtStage_hChOutStyle, _TxtStage_cntBreak, _TxtStage_lh_half, _TxtStage_getChRects, _TxtStage_fi_easing, _TxtStage_fo_easing, _TxtStage_clearText, _TxtStage_sss;
|
|
75553
|
+
var _TxtStage_instances, _a, _TxtStage_cfg, _TxtStage_cvs, _TxtStage_evtMng, _TxtStage_htmTxt, _TxtStage_cntTxt, _TxtStage_grpDbgMasume, _TxtStage_idc, _TxtStage_idcCh, _TxtStage_infTL, _TxtStage_lay_sub, _TxtStage_left, _TxtStage_isTategaki, _TxtStage_padTx4x, _TxtStage_padTx4y, _TxtStage_hWarning, _TxtStage_htm2tx, _TxtStage_ch_filter, _TxtStage_aSpTw, _TxtStage_aRect, _TxtStage_lenHtmTxt, _TxtStage_reg行頭禁則, _TxtStage_reg行末禁則, _TxtStage_reg分割禁止, _TxtStage_beforeHTMLElm, _TxtStage_rctm, _TxtStage_REGDS, _TxtStage_fncEndChIn, _TxtStage_spWork, _TxtStage_isChInIng, _TxtStage_hChInStyle, _TxtStage_REG_NG_CHSTYLE_NAME_CHR, _TxtStage_hChOutStyle, _TxtStage_cntBreak, _TxtStage_lh_half, _TxtStage_getChRects, _TxtStage_fi_easing, _TxtStage_fo_easing, _TxtStage_clearText, _TxtStage_sss;
|
|
75582
75554
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75583
75555
|
exports.TxtStage = void 0;
|
|
75584
75556
|
const CmnLib_1 = __webpack_require__(/*! ./CmnLib */ "./core/src/sn/CmnLib.ts");
|
|
@@ -75591,9 +75563,8 @@ const tween_js_1 = __webpack_require__(/*! @tweenjs/tween.js */ "./node_modules/
|
|
|
75591
75563
|
;
|
|
75592
75564
|
;
|
|
75593
75565
|
class TxtStage extends pixi_js_1.Container {
|
|
75594
|
-
constructor(
|
|
75566
|
+
constructor(spLay, canFocus) {
|
|
75595
75567
|
super();
|
|
75596
|
-
this.infTL = infTL;
|
|
75597
75568
|
this.spLay = spLay;
|
|
75598
75569
|
this.canFocus = canFocus;
|
|
75599
75570
|
_TxtStage_instances.add(this);
|
|
@@ -75602,6 +75573,15 @@ class TxtStage extends pixi_js_1.Container {
|
|
|
75602
75573
|
_TxtStage_grpDbgMasume.set(this, new pixi_js_1.Graphics);
|
|
75603
75574
|
_TxtStage_idc.set(this, new DesignCast_1.TxtLayDesignCast(this.spLay, this));
|
|
75604
75575
|
_TxtStage_idcCh.set(this, new DesignCast_1.TxtLayPadDesignCast(this));
|
|
75576
|
+
_TxtStage_infTL.set(this, {
|
|
75577
|
+
fontsize: 24,
|
|
75578
|
+
$width: 0,
|
|
75579
|
+
$height: 0,
|
|
75580
|
+
pad_left: 0,
|
|
75581
|
+
pad_right: 0,
|
|
75582
|
+
pad_top: 0,
|
|
75583
|
+
pad_bottom: 0,
|
|
75584
|
+
});
|
|
75605
75585
|
_TxtStage_left.set(this, 0);
|
|
75606
75586
|
_TxtStage_isTategaki.set(this, false);
|
|
75607
75587
|
_TxtStage_padTx4x.set(this, 0);
|
|
@@ -75651,7 +75631,6 @@ class TxtStage extends pixi_js_1.Container {
|
|
|
75651
75631
|
__classPrivateFieldSet(TxtStage, _a, Object.create(null), "f", _TxtStage_hChOutStyle);
|
|
75652
75632
|
__classPrivateFieldSet(TxtStage, _a, new pixi_js_1.Container, "f", _TxtStage_cntBreak);
|
|
75653
75633
|
}
|
|
75654
|
-
getInfTL() { return this.infTL; }
|
|
75655
75634
|
lay(hArg) {
|
|
75656
75635
|
const s = __classPrivateFieldGet(this, _TxtStage_htmTxt, "f").style;
|
|
75657
75636
|
if (hArg.style) {
|
|
@@ -75687,7 +75666,7 @@ class TxtStage extends pixi_js_1.Container {
|
|
|
75687
75666
|
__classPrivateFieldGet(this, _TxtStage_idc, "f").sethArg(hArg);
|
|
75688
75667
|
__classPrivateFieldSet(this, _TxtStage_left, this.spLay.position.x
|
|
75689
75668
|
- (CmnLib_1.CmnLib.isSafari && !CmnLib_1.CmnLib.isMobile && __classPrivateFieldGet(this, _TxtStage_isTategaki, "f")
|
|
75690
|
-
? this.
|
|
75669
|
+
? __classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_left + __classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_right
|
|
75691
75670
|
: 0), "f");
|
|
75692
75671
|
s.transformOrigin = `${this.spLay.pivot.x}px ${this.spLay.pivot.y}px`;
|
|
75693
75672
|
this.cvsResize();
|
|
@@ -75711,13 +75690,14 @@ class TxtStage extends pixi_js_1.Container {
|
|
|
75711
75690
|
__classPrivateFieldGet(this, _TxtStage_idcCh, "f").cvsResize();
|
|
75712
75691
|
}
|
|
75713
75692
|
get tategaki() { return __classPrivateFieldGet(this, _TxtStage_isTategaki, "f"); }
|
|
75714
|
-
|
|
75715
|
-
|
|
75693
|
+
get infTL() { return __classPrivateFieldGet(this, _TxtStage_infTL, "f"); }
|
|
75694
|
+
get getWidth() { return __classPrivateFieldGet(this, _TxtStage_infTL, "f").$width; }
|
|
75695
|
+
get getHeight() { return __classPrivateFieldGet(this, _TxtStage_infTL, "f").$height; }
|
|
75716
75696
|
setSize(width, height) {
|
|
75717
|
-
this
|
|
75718
|
-
this
|
|
75719
|
-
__classPrivateFieldGet(this, _TxtStage_htmTxt, "f").style.width = this
|
|
75720
|
-
__classPrivateFieldGet(this, _TxtStage_htmTxt, "f").style.height = this
|
|
75697
|
+
__classPrivateFieldGet(this, _TxtStage_infTL, "f").$width = width;
|
|
75698
|
+
__classPrivateFieldGet(this, _TxtStage_infTL, "f").$height = height;
|
|
75699
|
+
__classPrivateFieldGet(this, _TxtStage_htmTxt, "f").style.width = __classPrivateFieldGet(this, _TxtStage_infTL, "f").$width + 'px';
|
|
75700
|
+
__classPrivateFieldGet(this, _TxtStage_htmTxt, "f").style.height = __classPrivateFieldGet(this, _TxtStage_infTL, "f").$height + 'px';
|
|
75721
75701
|
}
|
|
75722
75702
|
goTxt(aSpan) {
|
|
75723
75703
|
var _b;
|
|
@@ -75726,15 +75706,15 @@ class TxtStage extends pixi_js_1.Container {
|
|
|
75726
75706
|
if (begin === 0) {
|
|
75727
75707
|
if (__classPrivateFieldGet(TxtStage, _a, "f", _TxtStage_cfg).oCfg.debug.masume) {
|
|
75728
75708
|
if (CmnLib_1.CmnLib.debugLog)
|
|
75729
|
-
console.log(`🍌 masume ${this.name} v:${this.visible} l:${this.x} t:${this.y} a:${this.alpha} pl:${this.
|
|
75709
|
+
console.log(`🍌 masume ${this.name} v:${this.visible} l:${this.x} t:${this.y} a:${this.alpha} pl:${__classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_left} pr:${__classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_right} pt:${__classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_top} pb:${__classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_bottom} w:${__classPrivateFieldGet(this, _TxtStage_infTL, "f").$width} h:${__classPrivateFieldGet(this, _TxtStage_infTL, "f").$height}`);
|
|
75730
75710
|
__classPrivateFieldGet(this, _TxtStage_grpDbgMasume, "f").clear()
|
|
75731
75711
|
.beginFill(0x33FF00, 0.2)
|
|
75732
75712
|
.lineStyle(1, 0x33FF00, 1)
|
|
75733
|
-
.drawRect(-this.
|
|
75713
|
+
.drawRect(-__classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_left, -__classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_top, __classPrivateFieldGet(this, _TxtStage_infTL, "f").$width, __classPrivateFieldGet(this, _TxtStage_infTL, "f").$height)
|
|
75734
75714
|
.endFill()
|
|
75735
75715
|
.beginFill(0x0033FF, 0.2)
|
|
75736
75716
|
.lineStyle(2, 0x0033FF, 1)
|
|
75737
|
-
.drawRect(0, 0, this
|
|
75717
|
+
.drawRect(0, 0, __classPrivateFieldGet(this, _TxtStage_infTL, "f").$width - __classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_left - __classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_right, __classPrivateFieldGet(this, _TxtStage_infTL, "f").$height - __classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_top - __classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_bottom)
|
|
75738
75718
|
.endFill();
|
|
75739
75719
|
}
|
|
75740
75720
|
__classPrivateFieldGet(this, _TxtStage_htmTxt, "f").innerHTML = [...aSpan].join('');
|
|
@@ -75772,11 +75752,12 @@ class TxtStage extends pixi_js_1.Container {
|
|
|
75772
75752
|
if (he.elm.outerHTML.slice(0, 3) === '<rt')
|
|
75773
75753
|
continue;
|
|
75774
75754
|
const xy = this.tategaki ? he.rect.y : he.rect.x;
|
|
75775
|
-
if (sl_xy
|
|
75755
|
+
if (sl_xy <= xy) {
|
|
75776
75756
|
sl_xy = xy;
|
|
75777
75757
|
continue;
|
|
75778
75758
|
}
|
|
75779
75759
|
sl_xy = -Infinity;
|
|
75760
|
+
const oldJ = j;
|
|
75780
75761
|
if (__classPrivateFieldGet(TxtStage, _a, "f", _TxtStage_reg分割禁止).test(e[j - 1].ch)
|
|
75781
75762
|
&& (e[j - 1].ch === he.ch)) {
|
|
75782
75763
|
if (CmnLib_1.CmnLib.debugLog)
|
|
@@ -75812,6 +75793,8 @@ class TxtStage extends pixi_js_1.Container {
|
|
|
75812
75793
|
else
|
|
75813
75794
|
pal.parentElement.insertBefore(br, pal);
|
|
75814
75795
|
j += 2;
|
|
75796
|
+
if (j < oldJ)
|
|
75797
|
+
j = oldJ;
|
|
75815
75798
|
len = -1;
|
|
75816
75799
|
break;
|
|
75817
75800
|
}
|
|
@@ -75831,8 +75814,8 @@ class TxtStage extends pixi_js_1.Container {
|
|
|
75831
75814
|
: () => { };
|
|
75832
75815
|
const ease = CmnTween_1.CmnTween.ease(__classPrivateFieldGet(this, _TxtStage_fi_easing, "f"));
|
|
75833
75816
|
const bcr = __classPrivateFieldGet(this, _TxtStage_htmTxt, "f").getBoundingClientRect();
|
|
75834
|
-
const sx = bcr.left + globalThis.scrollX + this.
|
|
75835
|
-
const sy = bcr.top + globalThis.scrollY + this.
|
|
75817
|
+
const sx = bcr.left + globalThis.scrollX + __classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_left;
|
|
75818
|
+
const sy = bcr.top + globalThis.scrollY + __classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_top;
|
|
75836
75819
|
for (let i = begin; i < len; ++i) {
|
|
75837
75820
|
const v = __classPrivateFieldGet(this, _TxtStage_aRect, "f")[i];
|
|
75838
75821
|
const rct = v.rect;
|
|
@@ -76013,7 +75996,8 @@ class TxtStage extends pixi_js_1.Container {
|
|
|
76013
75996
|
}
|
|
76014
75997
|
reNew() {
|
|
76015
75998
|
__classPrivateFieldGet(this, _TxtStage_instances, "m", _TxtStage_clearText).call(this);
|
|
76016
|
-
const to = new TxtStage(this.
|
|
75999
|
+
const to = new TxtStage(this.spLay, () => this.canFocus());
|
|
76000
|
+
__classPrivateFieldSet(to, _TxtStage_infTL, __classPrivateFieldGet(this, _TxtStage_infTL, "f"), "f");
|
|
76017
76001
|
__classPrivateFieldGet(to, _TxtStage_htmTxt, "f").style.cssText = __classPrivateFieldGet(this, _TxtStage_htmTxt, "f").style.cssText;
|
|
76018
76002
|
__classPrivateFieldSet(to, _TxtStage_left, __classPrivateFieldGet(this, _TxtStage_left, "f"), "f");
|
|
76019
76003
|
to.name = this.name;
|
|
@@ -76027,7 +76011,7 @@ class TxtStage extends pixi_js_1.Container {
|
|
|
76027
76011
|
}
|
|
76028
76012
|
record() {
|
|
76029
76013
|
return {
|
|
76030
|
-
infTL: this
|
|
76014
|
+
infTL: __classPrivateFieldGet(this, _TxtStage_infTL, "f"),
|
|
76031
76015
|
cssText: __classPrivateFieldGet(this, _TxtStage_htmTxt, "f").style.cssText,
|
|
76032
76016
|
left: __classPrivateFieldGet(this, _TxtStage_left, "f"),
|
|
76033
76017
|
idc_hArg: __classPrivateFieldGet(this, _TxtStage_idc, "f").gethArg(),
|
|
@@ -76038,8 +76022,8 @@ class TxtStage extends pixi_js_1.Container {
|
|
|
76038
76022
|
}
|
|
76039
76023
|
;
|
|
76040
76024
|
playback(hLay) {
|
|
76041
|
-
this
|
|
76042
|
-
this.position.set(this.
|
|
76025
|
+
__classPrivateFieldSet(this, _TxtStage_infTL, hLay.infTL, "f");
|
|
76026
|
+
this.position.set(__classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_left, __classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_top);
|
|
76043
76027
|
__classPrivateFieldGet(this, _TxtStage_htmTxt, "f").style.cssText = hLay.cssText;
|
|
76044
76028
|
__classPrivateFieldSet(this, _TxtStage_left, hLay.left, "f");
|
|
76045
76029
|
__classPrivateFieldGet(this, _TxtStage_instances, "m", _TxtStage_lay_sub).call(this);
|
|
@@ -76052,13 +76036,13 @@ class TxtStage extends pixi_js_1.Container {
|
|
|
76052
76036
|
__classPrivateFieldGet(this, _TxtStage_instances, "m", _TxtStage_htm2tx).call(this, tx => {
|
|
76053
76037
|
__classPrivateFieldSet(this, _TxtStage_sss, new pixi_js_1.Sprite(tx), "f");
|
|
76054
76038
|
if (__classPrivateFieldGet(this, _TxtStage_isTategaki, "f")) {
|
|
76055
|
-
__classPrivateFieldGet(this, _TxtStage_sss, "f").x += CmnLib_1.CmnLib.stageW - (__classPrivateFieldGet(this, _TxtStage_left, "f") + this
|
|
76039
|
+
__classPrivateFieldGet(this, _TxtStage_sss, "f").x += CmnLib_1.CmnLib.stageW - (__classPrivateFieldGet(this, _TxtStage_left, "f") + __classPrivateFieldGet(this, _TxtStage_infTL, "f").$width)
|
|
76056
76040
|
- ((CmnLib_1.CmnLib.isSafari && !CmnLib_1.CmnLib.isMobile)
|
|
76057
76041
|
? 0
|
|
76058
|
-
: this.
|
|
76042
|
+
: __classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_left + __classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_right);
|
|
76059
76043
|
}
|
|
76060
76044
|
__classPrivateFieldGet(this, _TxtStage_sss, "f").y -= __classPrivateFieldGet(this, _TxtStage_padTx4y, "f");
|
|
76061
|
-
__classPrivateFieldGet(this, _TxtStage_sss, "f").texture.frame = new pixi_js_1.Rectangle(0, 0, this
|
|
76045
|
+
__classPrivateFieldGet(this, _TxtStage_sss, "f").texture.frame = new pixi_js_1.Rectangle(0, 0, __classPrivateFieldGet(this, _TxtStage_infTL, "f").$width - __classPrivateFieldGet(this, _TxtStage_left, "f"), __classPrivateFieldGet(this, _TxtStage_infTL, "f").$height);
|
|
76062
76046
|
__classPrivateFieldGet(this, _TxtStage_cntTxt, "f").addChild(__classPrivateFieldGet(this, _TxtStage_sss, "f"));
|
|
76063
76047
|
rnd.render(__classPrivateFieldGet(this, _TxtStage_sss, "f"), undefined, false);
|
|
76064
76048
|
re();
|
|
@@ -76096,17 +76080,17 @@ class TxtStage extends pixi_js_1.Container {
|
|
|
76096
76080
|
}
|
|
76097
76081
|
}
|
|
76098
76082
|
exports.TxtStage = TxtStage;
|
|
76099
|
-
_a = TxtStage, _TxtStage_htmTxt = new WeakMap(), _TxtStage_cntTxt = new WeakMap(), _TxtStage_grpDbgMasume = new WeakMap(), _TxtStage_idc = new WeakMap(), _TxtStage_idcCh = new WeakMap(), _TxtStage_left = new WeakMap(), _TxtStage_isTategaki = new WeakMap(), _TxtStage_padTx4x = new WeakMap(), _TxtStage_padTx4y = new WeakMap(), _TxtStage_ch_filter = new WeakMap(), _TxtStage_aSpTw = new WeakMap(), _TxtStage_aRect = new WeakMap(), _TxtStage_lenHtmTxt = new WeakMap(), _TxtStage_beforeHTMLElm = new WeakMap(), _TxtStage_rctm = new WeakMap(), _TxtStage_REGDS = new WeakMap(), _TxtStage_fncEndChIn = new WeakMap(), _TxtStage_isChInIng = new WeakMap(), _TxtStage_lh_half = new WeakMap(), _TxtStage_fi_easing = new WeakMap(), _TxtStage_fo_easing = new WeakMap(), _TxtStage_sss = new WeakMap(), _TxtStage_instances = new WeakSet(), _TxtStage_lay_sub = function _TxtStage_lay_sub() {
|
|
76083
|
+
_a = TxtStage, _TxtStage_htmTxt = new WeakMap(), _TxtStage_cntTxt = new WeakMap(), _TxtStage_grpDbgMasume = new WeakMap(), _TxtStage_idc = new WeakMap(), _TxtStage_idcCh = new WeakMap(), _TxtStage_infTL = new WeakMap(), _TxtStage_left = new WeakMap(), _TxtStage_isTategaki = new WeakMap(), _TxtStage_padTx4x = new WeakMap(), _TxtStage_padTx4y = new WeakMap(), _TxtStage_ch_filter = new WeakMap(), _TxtStage_aSpTw = new WeakMap(), _TxtStage_aRect = new WeakMap(), _TxtStage_lenHtmTxt = new WeakMap(), _TxtStage_beforeHTMLElm = new WeakMap(), _TxtStage_rctm = new WeakMap(), _TxtStage_REGDS = new WeakMap(), _TxtStage_fncEndChIn = new WeakMap(), _TxtStage_isChInIng = new WeakMap(), _TxtStage_lh_half = new WeakMap(), _TxtStage_fi_easing = new WeakMap(), _TxtStage_fo_easing = new WeakMap(), _TxtStage_sss = new WeakMap(), _TxtStage_instances = new WeakSet(), _TxtStage_lay_sub = function _TxtStage_lay_sub() {
|
|
76100
76084
|
const s = __classPrivateFieldGet(this, _TxtStage_htmTxt, "f").style;
|
|
76101
76085
|
const fs = parseFloat(s.fontSize || '0');
|
|
76102
|
-
this.
|
|
76103
|
-
this.
|
|
76104
|
-
this.
|
|
76105
|
-
this.
|
|
76106
|
-
this.
|
|
76107
|
-
this
|
|
76108
|
-
this
|
|
76109
|
-
this.position.set(this.
|
|
76086
|
+
__classPrivateFieldGet(this, _TxtStage_infTL, "f").fontsize = fs;
|
|
76087
|
+
__classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_left = parseFloat(s.paddingLeft || '0');
|
|
76088
|
+
__classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_right = parseFloat(s.paddingRight || '0');
|
|
76089
|
+
__classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_top = parseFloat(s.paddingTop || '0');
|
|
76090
|
+
__classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_bottom = parseFloat(s.paddingBottom || '0');
|
|
76091
|
+
__classPrivateFieldGet(this, _TxtStage_infTL, "f").$width = parseFloat(s.width || '0');
|
|
76092
|
+
__classPrivateFieldGet(this, _TxtStage_infTL, "f").$height = parseFloat(s.height || '0');
|
|
76093
|
+
this.position.set(__classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_left, __classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_top);
|
|
76110
76094
|
__classPrivateFieldSet(this, _TxtStage_isTategaki, (s.writingMode === 'vertical-rl'), "f");
|
|
76111
76095
|
__classPrivateFieldSet(this, _TxtStage_padTx4x, 0, "f");
|
|
76112
76096
|
__classPrivateFieldSet(this, _TxtStage_padTx4y, 0, "f");
|
|
@@ -76318,8 +76302,8 @@ _a = TxtStage, _TxtStage_htmTxt = new WeakMap(), _TxtStage_cntTxt = new WeakMap(
|
|
|
76318
76302
|
cln.style.paddingTop = __classPrivateFieldGet(this, _TxtStage_padTx4y, "f") + 'px';
|
|
76319
76303
|
cln.style.left = '0px';
|
|
76320
76304
|
cln.style.top = '0px';
|
|
76321
|
-
cln.style.width = (this
|
|
76322
|
-
cln.style.height = (this
|
|
76305
|
+
cln.style.width = (__classPrivateFieldGet(this, _TxtStage_infTL, "f").$width - __classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_left - __classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_right) + 'px';
|
|
76306
|
+
cln.style.height = (__classPrivateFieldGet(this, _TxtStage_infTL, "f").$height - __classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_top - __classPrivateFieldGet(this, _TxtStage_infTL, "f").pad_bottom) + 'px';
|
|
76323
76307
|
__classPrivateFieldGet(this, _TxtStage_htmTxt, "f").hidden = hidden;
|
|
76324
76308
|
return cln;
|
|
76325
76309
|
})
|
|
@@ -76327,15 +76311,15 @@ _a = TxtStage, _TxtStage_htmTxt = new WeakMap(), _TxtStage_cntTxt = new WeakMap(
|
|
|
76327
76311
|
.then(node => {
|
|
76328
76312
|
node.setAttribute('xmlns', 'http://www.w3.org/1999/xhtml');
|
|
76329
76313
|
const img = new Image;
|
|
76330
|
-
img.src = `data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="${this
|
|
76314
|
+
img.src = `data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="${__classPrivateFieldGet(this, _TxtStage_infTL, "f").$width}px" height="${__classPrivateFieldGet(this, _TxtStage_infTL, "f").$height}px"><foreignObject x="0" y="0" width="100%" height="100%">${new XMLSerializer().serializeToString(node)
|
|
76331
76315
|
.replaceAll('#', '%23').replaceAll('\n', '%0A')}</foreignObject></svg>`;
|
|
76332
76316
|
return new Promise(resolve => img.onload = () => resolve(img));
|
|
76333
76317
|
})
|
|
76334
76318
|
.then(img => new Promise(resolve => setTimeout(() => resolve(img), 100)))
|
|
76335
76319
|
.then((img) => {
|
|
76336
76320
|
const canvas = document.createElement('canvas');
|
|
76337
|
-
canvas.width = this
|
|
76338
|
-
canvas.height = this
|
|
76321
|
+
canvas.width = __classPrivateFieldGet(this, _TxtStage_infTL, "f").$width;
|
|
76322
|
+
canvas.height = __classPrivateFieldGet(this, _TxtStage_infTL, "f").$height;
|
|
76339
76323
|
canvas.getContext('2d').drawImage(img, 0, 0);
|
|
76340
76324
|
canvas.toBlob(blob => {
|
|
76341
76325
|
if (!blob)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Config.d.ts","sourceRoot":"","sources":["../../src/sn/Config.ts"],"names":[],"mappings":"AAQA,OAAO,EAAC,OAAO,EAAE,KAAK,EAAE,QAAQ,IAAI,SAAS,EAAC,MAAM,gBAAgB,CAAC;AACrE,OAAO,EAAC,OAAO,EAAC,MAAM,WAAW,CAAC;AAElC,qBAAa,MAAO,YAAW,OAAO;;IAiDzB,QAAQ,CAAC,GAAG,EAAE,OAAO;IAhDjC,IAAI,EAAE,GAAG,CAqCP;IACF,UAAU,SAAM;IAEhB,YAAY,EAAG,SAAS,CAAM;IAC9B,MAAM,CAAC,QAAQ,CAAC,UAAU,yCAAyC;IAEnE,MAAM,CAAC,QAAQ,CAAC,UAAU,YAAY;IACtC,MAAM,CAAC,QAAQ,CAAC,QAAQ,mBAAmB;IAC3C,MAAM,CAAC,QAAQ,CAAC,SAAS,8BAA8B;IACvD,MAAM,CAAC,QAAQ,CAAC,QAAQ,cAAc;gBAEjB,GAAG,EAAE,OAAO;WACpB,QAAQ,CAAC,GAAG,EAAE,OAAO;IAQ5B,IAAI,CAAC,IAAI,EAAE,GAAG;
|
|
1
|
+
{"version":3,"file":"Config.d.ts","sourceRoot":"","sources":["../../src/sn/Config.ts"],"names":[],"mappings":"AAQA,OAAO,EAAC,OAAO,EAAE,KAAK,EAAE,QAAQ,IAAI,SAAS,EAAC,MAAM,gBAAgB,CAAC;AACrE,OAAO,EAAC,OAAO,EAAC,MAAM,WAAW,CAAC;AAElC,qBAAa,MAAO,YAAW,OAAO;;IAiDzB,QAAQ,CAAC,GAAG,EAAE,OAAO;IAhDjC,IAAI,EAAE,GAAG,CAqCP;IACF,UAAU,SAAM;IAEhB,YAAY,EAAG,SAAS,CAAM;IAC9B,MAAM,CAAC,QAAQ,CAAC,UAAU,yCAAyC;IAEnE,MAAM,CAAC,QAAQ,CAAC,UAAU,YAAY;IACtC,MAAM,CAAC,QAAQ,CAAC,QAAQ,mBAAmB;IAC3C,MAAM,CAAC,QAAQ,CAAC,SAAS,8BAA8B;IACvD,MAAM,CAAC,QAAQ,CAAC,QAAQ,cAAc;gBAEjB,GAAG,EAAE,OAAO;WACpB,QAAQ,CAAC,GAAG,EAAE,OAAO;IAQ5B,IAAI,CAAC,IAAI,EAAE,GAAG;IA4CpB,IAAI,eAAe,IAAI,OAAO,CAA+B;IAE7D,IAAI,eAAe,IAAI,OAAO,CAA+B;IAE7D,KAAK;IAIL,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,SAAK,GAAG,MAAM;IAyE7C,SAAS,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,SAAK,GAAG,aAAa,CAAC,KAAK,CAAC;IAuB3D,OAAO,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK;CAQjC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Layer.d.ts","sourceRoot":"","sources":["../../src/sn/Layer.ts"],"names":[],"mappings":"AAOA,OAAO,EAAC,WAAW,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,EAAW,gBAAgB,EAAC,MAAM,SAAS,CAAC;AAEjG,OAAO,EAAC,IAAI,EAAC,MAAM,gBAAgB,CAAC;AACpC,OAAO,EAAC,eAAe,EAAC,MAAM,YAAY,CAAC;AAE3C,qBAAa,KAAK;;
|
|
1
|
+
{"version":3,"file":"Layer.d.ts","sourceRoot":"","sources":["../../src/sn/Layer.ts"],"names":[],"mappings":"AAOA,OAAO,EAAC,WAAW,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,EAAW,gBAAgB,EAAC,MAAM,SAAS,CAAC;AAEjG,OAAO,EAAC,IAAI,EAAC,MAAM,gBAAgB,CAAC;AACpC,OAAO,EAAC,eAAe,EAAC,MAAM,YAAY,CAAC;AAE3C,qBAAa,KAAK;;IACd,OAAO,SAAM;IAChB,SAAS,CAAC,KAAK,SAAM;IACrB,IAAI,IAAI,CAAC,EAAE,QAAA,EAAoB;IAC/B,IAAI,IAAI,WAAuB;IAC/B,QAAQ,CAAC,KAAK,SAA6B;IAG3C,IAAI,KAAK,WAA4B;IACrC,IAAI,KAAK,CAAC,CAAC,QAAA,EAAwB;IACnC,IAAI,MAAM,WAA6B;IACvC,IAAI,QAAQ,WAA4B;IACxC,IAAI,QAAQ,CAAC,CAAC,QAAA,EAAwB;IACtC,IAAI,OAAO,WAA8B;IACzC,IAAI,OAAO,CAAC,CAAC,QAAA,EAA0B;IACvC,IAAI,OAAO,WAA8B;IACzC,IAAI,OAAO,CAAC,CAAC,QAAA,EAA0B;IACvC,IAAI,KAAK,WAA4B;IACrC,IAAI,CAAC,WAAwB;IAC7B,IAAI,CAAC,CAAC,CAAC,QAAA,EAAoB;IAC3B,IAAI,CAAC,WAAwB;IAC7B,IAAI,CAAC,CAAC,CAAC,QAAA,EAAoB;IAE3B,OAAO;IAEP,GAAG,CAAC,IAAI,EAAE,IAAI,GAAG,OAAO;IAwBxB,MAAM,CAAC,YAAY,CAAC,GAAG,EAAE,SAAS,EAAE,IAAI,EAAE,IAAI;IAa9C,MAAM,CAAC,eAAe,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM;IA8C/C,QAAQ,CAAC,IAAI,EAAE,IAAI,GAAG,IAAI;IAU1B,IAAI,CAAC,SAAS,EAAE,KAAK,EAAE,IAAI,EAAE,OAAO,CAAC,IAAI,CAAC,EAAE,GAAG,IAAI;IAKnD,MAAM;;;;;;;;;;;;;;IAcN,QAAQ,CAAC,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,OAAO,CAAC,IAAI,CAAC,EAAE,GAAG,IAAI;IAcjD,QAAQ,CAAC,GAAG,EAAE,gBAAgB,EAAE,EAAE,EAAE,MAAK,IAAI;IAI7C,YAAY;IAEZ,cAAc,CAAC,IAAI,EAAE,eAAe;IACpC,sBAAsB,CAAC,IAAI,EAAE,eAAe;IAE5C,cAAc;IACd,sBAAsB;IAEtB,SAAS;IACT,iBAAiB;IAEjB,IAAI,IAAI,MAAM;IAQd,MAAM,CAAC,KAAK,CAAC,IAAI,EAAE,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,SAAS,EAAE,KAAK,UAAQ,EAAE,QAAQ,UAAQ,GAAG,IAAI;IA6EpG,MAAM,CAAC,UAAU,CAAC,IAAI,EAAE,aAAa,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,aAAa,GAAG,IAAI;IAwB7E,MAAM,CAAC,WAAW,CAAC,GAAG,EAAE,aAAa,GAAG,IAAI;CAM5C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PropParser.d.ts","sourceRoot":"","sources":["../../src/sn/PropParser.ts"],"names":[],"mappings":"AASA,OAAO,EAAC,WAAW,EAAE,SAAS,EAAC,MAAM,gBAAgB,CAAC;AAKtD,qBAAa,UAAW,YAAW,WAAW;;IAGjC,OAAO,CAAC,QAAQ,CAAC,GAAG;gBAAH,GAAG,EAAE,SAAS,EAAE,EAAE,SAAO;IAiItD,KAAK,CAAC,CAAC,EAAE,MAAM,GAAG,GAAG;
|
|
1
|
+
{"version":3,"file":"PropParser.d.ts","sourceRoot":"","sources":["../../src/sn/PropParser.ts"],"names":[],"mappings":"AASA,OAAO,EAAC,WAAW,EAAE,SAAS,EAAC,MAAM,gBAAgB,CAAC;AAKtD,qBAAa,UAAW,YAAW,WAAW;;IAGjC,OAAO,CAAC,QAAQ,CAAC,GAAG;gBAAH,GAAG,EAAE,SAAS,EAAE,EAAE,SAAO;IAiItD,KAAK,CAAC,CAAC,EAAE,MAAM,GAAG,GAAG;IAoKrB,eAAe,QAAS,MAAM,YAEvB;IAOP,MAAM,CAAC,UAAU,CAAC,QAAQ,EAAE,MAAM,GAAG;QAAC,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAA;KAAC,GAAG,SAAS;CAqCzE"}
|