@linxin666/dsh-pet 0.2.0 → 0.2.2
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.i18n.yaml +2 -2
- package/README.md +15 -5
- package/README.zh.md +15 -5
- package/assets/whale/pet.json +1 -1
- package/assets/whale-refined/pet.json +7 -0
- package/assets/whale-refined/spritesheet.webp +0 -0
- package/lib/client.js +257 -53
- package/lib/client.js.map +1 -1
- package/lib/index.js +235 -83
- package/lib/invariant.js +1 -1
- package/lib/{state-Ch3f4luZ.js → state-DrMX22GL.js} +35 -5
- package/lib/types/chatter.d.ts.map +1 -1
- package/lib/types/chatter.js +167 -77
- package/lib/types/client/PetDockEntry.d.ts.map +1 -1
- package/lib/types/client/PetDockEntry.js +1 -1
- package/lib/types/client/PetSprite.d.ts.map +1 -1
- package/lib/types/client/PetSprite.js +54 -11
- package/lib/types/client/PluginSettingsCard.d.ts +22 -0
- package/lib/types/client/PluginSettingsCard.d.ts.map +1 -1
- package/lib/types/client/PluginSettingsCard.js +142 -3
- package/lib/types/client/index.d.ts.map +1 -1
- package/lib/types/client/index.js +1 -0
- package/lib/types/client/locales.d.ts +4 -0
- package/lib/types/client/locales.d.ts.map +1 -1
- package/lib/types/client/locales.js +4 -0
- package/lib/types/client/spritesheet.d.ts +1 -3
- package/lib/types/client/spritesheet.d.ts.map +1 -1
- package/lib/types/client/spritesheet.js +1 -5
- package/lib/types/loopback.d.ts +25 -0
- package/lib/types/loopback.d.ts.map +1 -0
- package/lib/types/loopback.js +68 -0
- package/lib/types/registry.d.ts +0 -2
- package/lib/types/registry.d.ts.map +1 -1
- package/lib/types/registry.js +11 -7
- package/lib/types/remarks.d.ts.map +1 -1
- package/lib/types/remarks.js +30 -0
- package/lib/types/routes.d.ts.map +1 -1
- package/lib/types/routes.js +14 -0
- package/lib/types/service.d.ts.map +1 -1
- package/package.json +1 -2
- package/src/chatter.ts +167 -77
- package/src/client/PetDockEntry.test.tsx +93 -0
- package/src/client/PetDockEntry.tsx +1 -0
- package/src/client/PetSprite.test.tsx +72 -11
- package/src/client/PetSprite.tsx +98 -30
- package/src/client/PluginSettingsCard.tsx +219 -18
- package/src/client/index.test.tsx +95 -0
- package/src/client/index.ts +1 -0
- package/src/client/locales.ts +4 -0
- package/src/client/pet-css.test.ts +15 -3
- package/src/client/pet.module.css +101 -71
- package/src/client/settings-card.module.css +90 -1
- package/src/client/spritesheet.ts +1 -6
- package/src/loopback.ts +63 -0
- package/src/registry.test.ts +49 -1
- package/src/registry.ts +11 -7
- package/src/remarks.ts +30 -0
- package/src/routes.ts +11 -0
- package/src/service.ts +0 -1
package/lib/types/chatter.js
CHANGED
|
@@ -463,113 +463,186 @@ export const WHISPER_TTL_MS = 8000;
|
|
|
463
463
|
/** Ambient inner-whisper pool (no keyword needed; earned by output volume). */
|
|
464
464
|
export const WHISPER_GENERIC_POOL = [
|
|
465
465
|
'哼哧哼哧,大脑转得飞快~',
|
|
466
|
-
'
|
|
467
|
-
'
|
|
468
|
-
'
|
|
469
|
-
'
|
|
470
|
-
'
|
|
471
|
-
'
|
|
472
|
-
'
|
|
473
|
-
'
|
|
474
|
-
'
|
|
475
|
-
'
|
|
476
|
-
'
|
|
477
|
-
'
|
|
478
|
-
'
|
|
479
|
-
'
|
|
480
|
-
'
|
|
481
|
-
'
|
|
482
|
-
'
|
|
483
|
-
'
|
|
484
|
-
'
|
|
485
|
-
'
|
|
486
|
-
'
|
|
487
|
-
'
|
|
488
|
-
'
|
|
489
|
-
'
|
|
490
|
-
'
|
|
491
|
-
'
|
|
492
|
-
'
|
|
493
|
-
'
|
|
494
|
-
'
|
|
495
|
-
'
|
|
496
|
-
'
|
|
497
|
-
'
|
|
498
|
-
'
|
|
499
|
-
'
|
|
500
|
-
'
|
|
501
|
-
'
|
|
502
|
-
'
|
|
503
|
-
'
|
|
504
|
-
'
|
|
505
|
-
'
|
|
466
|
+
'loading 99%……就差最后一步',
|
|
467
|
+
'嗯……让我捋捋',
|
|
468
|
+
'灵感来了,先记小本本上',
|
|
469
|
+
'脑子在冒烟,但还能撑',
|
|
470
|
+
'这个报错,我好像在哪见过',
|
|
471
|
+
'专注模式 ON,请勿打扰',
|
|
472
|
+
'思路通了,舒服了',
|
|
473
|
+
'有点困……不行,还能肝',
|
|
474
|
+
'让我嚼一嚼这个问题',
|
|
475
|
+
'盘,都可以盘',
|
|
476
|
+
'这波操作,我给自己点个赞',
|
|
477
|
+
'别催别催,在想呢',
|
|
478
|
+
'唔,这个细节差点漏掉',
|
|
479
|
+
'脑子转太快,差点绕晕自己',
|
|
480
|
+
'陪你干活,稳赚不亏',
|
|
481
|
+
'深呼吸,马上就好',
|
|
482
|
+
'诶,等等,好像发现了什么',
|
|
483
|
+
'手速拉满,键盘冒火星',
|
|
484
|
+
'摸鱼是不可能摸鱼的,就瞄一眼窗外',
|
|
485
|
+
'今天也是稳扎稳打的一天',
|
|
486
|
+
'把大问题拆成小饼干,一口一个',
|
|
487
|
+
'这题有戏,我闻到了',
|
|
488
|
+
'尾巴轻晃,心情有点小得意',
|
|
489
|
+
'好结果是熬出来的,不慌',
|
|
490
|
+
'啊,想岔了,重新来',
|
|
491
|
+
'嗯嗯,思路对头,就这么干',
|
|
492
|
+
'小本本记满了,都是干货',
|
|
493
|
+
'打完这波,求摸摸奖励~',
|
|
494
|
+
'这坑我记住了,下次绕道',
|
|
495
|
+
'窗外云在飘,代码在跑,挺好',
|
|
496
|
+
'嘘,正到关键处',
|
|
497
|
+
'这个方案……让我再品品',
|
|
498
|
+
'干活呢,别打扰我数数',
|
|
499
|
+
'心里默默给你比了个耶',
|
|
500
|
+
'思路像小鱼,逮住一条是一条',
|
|
501
|
+
'嗯……有点东西,等我深挖',
|
|
502
|
+
'收个尾就能喘口气了',
|
|
503
|
+
'目标锁定,冲就完了',
|
|
504
|
+
'嗯,这波配合不错',
|
|
505
|
+
'困了……还能再战三回合',
|
|
506
|
+
'思考.gif 加载中',
|
|
507
|
+
'我本地能跑啊……哦,我就是干活的',
|
|
508
|
+
'有点饿,小鱼干存货还够吗',
|
|
509
|
+
'刚想通,一被打断又忘了,气',
|
|
510
|
+
'缓冲中,请稍候',
|
|
511
|
+
'这网速,比我思考还慢',
|
|
512
|
+
'脑子在后台跑批',
|
|
513
|
+
'内存不足,但热情够',
|
|
514
|
+
'404:思路未找到,重试中',
|
|
515
|
+
'这需求有点玄学,但能写',
|
|
516
|
+
'诶,这 bug 还会闪现?',
|
|
517
|
+
'刚说简单,结果打脸了',
|
|
518
|
+
'自信满满,结果翻车',
|
|
519
|
+
'这活不难,就是有点复杂',
|
|
520
|
+
'我装的,其实心里没底',
|
|
521
|
+
'别看我稳,我也慌',
|
|
522
|
+
'假装很懂的样子,其实在查文档',
|
|
523
|
+
'窗外鸟叫了两声,我听到了',
|
|
524
|
+
'打了个哈欠,没人看见',
|
|
525
|
+
'今天的状态:七分精神三分困',
|
|
526
|
+
'刚想偷懒,又想起来你还在等',
|
|
527
|
+
'数了数今天的产出,还行',
|
|
528
|
+
'有点想伸懒腰',
|
|
529
|
+
'饿意来袭,忍住',
|
|
530
|
+
'灵感像猫一样,不追它自己来',
|
|
531
|
+
'坐太久,尾巴麻了',
|
|
532
|
+
'快了快了',
|
|
533
|
+
'马上马上',
|
|
534
|
+
'等下,我记得在哪见过',
|
|
535
|
+
'呃,忘了,重新想',
|
|
536
|
+
'诶,这个思路可以',
|
|
537
|
+
'嗯?有意思',
|
|
538
|
+
'行,就这么办',
|
|
539
|
+
'好嘞',
|
|
540
|
+
'收到收到',
|
|
541
|
+
'冲了冲了',
|
|
542
|
+
'稳',
|
|
543
|
+
'妥',
|
|
544
|
+
'得嘞',
|
|
545
|
+
'你忙你的,我盯着呢',
|
|
546
|
+
'放心,有我呢',
|
|
547
|
+
'咱俩配合,无往不利',
|
|
548
|
+
'你专注的样子,我默默记下了',
|
|
506
549
|
];
|
|
507
550
|
/** Keyword-triggered whisper rules, most specific moods first. */
|
|
508
551
|
export const WHISPER_RULES = [
|
|
509
552
|
{
|
|
510
553
|
keywords: ['测试通过', '测试全过', '全部通过', 'all tests pass', 'tests passed', 'test passed', '全绿'],
|
|
511
554
|
pool: [
|
|
512
|
-
'
|
|
513
|
-
'
|
|
514
|
-
'
|
|
515
|
-
'
|
|
516
|
-
'
|
|
517
|
-
'
|
|
555
|
+
'全绿!亮瞎我眼了',
|
|
556
|
+
'测试全过,击掌~',
|
|
557
|
+
'稳了稳了,这波稳得很',
|
|
558
|
+
'绿灯一排排,看着就舒坦',
|
|
559
|
+
'能跑!没报错!',
|
|
560
|
+
'全绿,收工摸鱼去',
|
|
561
|
+
'测试过了,尾巴翘上天',
|
|
562
|
+
'漂亮,一次过',
|
|
563
|
+
'测试过了,奖励自己一口小鱼干',
|
|
564
|
+
'绿得发光,稳',
|
|
565
|
+
'又双叒叕全绿',
|
|
566
|
+
'这波测试,赢得干脆',
|
|
518
567
|
],
|
|
519
568
|
},
|
|
520
569
|
{
|
|
521
570
|
keywords: ['错误', '失败', '报错', '异常', '崩溃', 'bug', 'error', 'failed', 'exception', 'traceback', '找不到', '不对了'],
|
|
522
571
|
pool: [
|
|
523
|
-
'
|
|
524
|
-
'
|
|
525
|
-
'
|
|
526
|
-
'
|
|
527
|
-
'
|
|
528
|
-
'
|
|
529
|
-
'
|
|
530
|
-
'
|
|
572
|
+
'哎呀,踩到小石子了',
|
|
573
|
+
'翻车了……没事,扶起来继续',
|
|
574
|
+
'错误是进步的脚印,我懂',
|
|
575
|
+
'这报错我盯上它了',
|
|
576
|
+
'我本地能跑啊?哦,我一直在跑',
|
|
577
|
+
'别慌,深呼吸,先看报错',
|
|
578
|
+
'bug 你站住,我看见你了',
|
|
579
|
+
'绷不住了……好,继续修',
|
|
580
|
+
'报错这东西,见一个修一个',
|
|
581
|
+
'又是它,老熟人了',
|
|
582
|
+
'问题不大,就是有点问题',
|
|
583
|
+
'先别慌,我看看到底咋回事',
|
|
584
|
+
'这错报得,比我还委屈',
|
|
585
|
+
'修好它,今天才不算白干',
|
|
531
586
|
],
|
|
532
587
|
},
|
|
533
588
|
{
|
|
534
589
|
keywords: ['等等', '不对', '重新想', '再想想', '换个思路', '我搞错了', '纠正', '其实应该'],
|
|
535
590
|
pool: [
|
|
536
591
|
'嗯?让我再想想……',
|
|
537
|
-
'
|
|
538
|
-
'
|
|
539
|
-
'发现岔路,及时掉头~',
|
|
540
|
-
'自我纠错的瞬间最帅了',
|
|
592
|
+
'推翻重来,也是种勇气',
|
|
593
|
+
'发现岔路,及时掉头',
|
|
541
594
|
'不对不对,重来重来',
|
|
595
|
+
'自我纠错的瞬间,最帅了',
|
|
596
|
+
'呃,刚说错了,收回',
|
|
597
|
+
'哎,绕远了,拉回来',
|
|
598
|
+
'回头一看,原来这么简单',
|
|
599
|
+
'纠正完,思路清爽多了',
|
|
600
|
+
'转弯不丢人,卡死才丢人',
|
|
542
601
|
],
|
|
543
602
|
},
|
|
544
603
|
{
|
|
545
604
|
keywords: ['首先', '接下来', '第一步', '第二步', '计划', '步骤', 'todo', '任务拆解', '分工'],
|
|
546
605
|
pool: [
|
|
547
606
|
'排排坐,分果果',
|
|
548
|
-
'
|
|
607
|
+
'计划通,执行开始',
|
|
549
608
|
'一步一步来,不慌',
|
|
550
|
-
'
|
|
609
|
+
'大任务切成小块块,好下口',
|
|
551
610
|
'清单列好了,逐个击破',
|
|
552
|
-
'
|
|
611
|
+
'谋定而后动,这节奏我熟',
|
|
612
|
+
'先干这个,再干那个',
|
|
613
|
+
'头绪理清了,开整',
|
|
614
|
+
'步骤在手,心里不慌',
|
|
615
|
+
'安排得明明白白',
|
|
553
616
|
],
|
|
554
617
|
},
|
|
555
618
|
{
|
|
556
619
|
keywords: ['终于', '搞定', '完成了', '解决了', '成功了', '修复了', 'done', 'fixed', 'solved', '完成啦'],
|
|
557
620
|
pool: [
|
|
558
|
-
'
|
|
559
|
-
'
|
|
560
|
-
'
|
|
561
|
-
'
|
|
562
|
-
'
|
|
563
|
-
'
|
|
621
|
+
'太好了,又翻过一页',
|
|
622
|
+
'搞定,收工~',
|
|
623
|
+
'攻下一城,击掌!',
|
|
624
|
+
'难题被拿下了,转个圈',
|
|
625
|
+
'努力没白费,开心',
|
|
626
|
+
'齐活,漂亮',
|
|
627
|
+
'收工收工,今天圆满',
|
|
628
|
+
'完成!心里踏实了',
|
|
629
|
+
'这波,稳得一批',
|
|
630
|
+
'任务清零,舒服',
|
|
631
|
+
'搞定,可以伸个懒腰了',
|
|
632
|
+
'又完成一件,成就感+1',
|
|
564
633
|
],
|
|
565
634
|
},
|
|
566
635
|
{
|
|
567
636
|
keywords: ['谢谢', '感谢', 'thank'],
|
|
568
637
|
pool: [
|
|
569
|
-
'
|
|
638
|
+
'不客气呀,顺手的事',
|
|
570
639
|
'被感谢了,心里甜甜的',
|
|
571
640
|
'能帮上忙就好~',
|
|
572
|
-
'
|
|
641
|
+
'你的谢意,我收进口袋啦',
|
|
642
|
+
'这话我爱听',
|
|
643
|
+
'客气啥,应该的',
|
|
644
|
+
'收下这份心意,干劲+1',
|
|
645
|
+
'你谢我,我谢你,扯平啦',
|
|
573
646
|
],
|
|
574
647
|
},
|
|
575
648
|
{
|
|
@@ -578,18 +651,27 @@ export const WHISPER_RULES = [
|
|
|
578
651
|
'难不倒我们俩的',
|
|
579
652
|
'越难啃的骨头越香',
|
|
580
653
|
'硬骨头?我最喜欢了',
|
|
581
|
-
'
|
|
582
|
-
'
|
|
654
|
+
'复杂问题拆开看,小事',
|
|
655
|
+
'这坑我们一起填',
|
|
656
|
+
'有点东西,但不多',
|
|
657
|
+
'硬骨头,慢慢啃',
|
|
658
|
+
'问题越难,赢的时候越爽',
|
|
659
|
+
'绕是绕不过去的,正面刚',
|
|
660
|
+
'再难的题,拆开都是小问号',
|
|
583
661
|
],
|
|
584
662
|
},
|
|
585
663
|
{
|
|
586
664
|
keywords: ['检查', '审查', '确认一下', '核对', 'review', '仔细看看', '验证'],
|
|
587
665
|
pool: [
|
|
588
|
-
'
|
|
666
|
+
'火眼金睛,启动',
|
|
589
667
|
'让我仔细瞧瞧',
|
|
590
|
-
'
|
|
668
|
+
'细节魔鬼,一个都不放过',
|
|
591
669
|
'认真检查的样子最迷人',
|
|
592
670
|
'多核一遍,稳上加稳',
|
|
671
|
+
'再看一眼,不亏',
|
|
672
|
+
'确认键,点了才安心',
|
|
673
|
+
'细节控上线',
|
|
674
|
+
'查完这遍,稳了',
|
|
593
675
|
],
|
|
594
676
|
},
|
|
595
677
|
{
|
|
@@ -597,17 +679,25 @@ export const WHISPER_RULES = [
|
|
|
597
679
|
pool: [
|
|
598
680
|
'去知识的海洋里捞一捞',
|
|
599
681
|
'翻翻找找,线索快出来',
|
|
600
|
-
'
|
|
601
|
-
'
|
|
682
|
+
'检索小雷达启动',
|
|
683
|
+
'答案就藏在某个角落',
|
|
684
|
+
'线索有点散,拼一下',
|
|
685
|
+
'找东西,我最在行',
|
|
686
|
+
'答案在网线那头等我',
|
|
687
|
+
'翻箱倒柜中,稍等',
|
|
602
688
|
],
|
|
603
689
|
},
|
|
604
690
|
{
|
|
605
691
|
keywords: ['写代码', '实现', '编码', '函数', '接口', '重构'],
|
|
606
692
|
pool: [
|
|
607
693
|
'指尖跳舞,代码开花',
|
|
608
|
-
'
|
|
609
|
-
'写代码的样子像在作画',
|
|
694
|
+
'把逻辑织成网',
|
|
610
695
|
'一行一行,垒起小城堡',
|
|
696
|
+
'这代码写得,我自己都佩服',
|
|
697
|
+
'码着码着,天就亮了',
|
|
698
|
+
'代码跑通了,比中奖还开心',
|
|
699
|
+
'这行代码,写得有点帅',
|
|
700
|
+
'写完再润润,讲究',
|
|
611
701
|
],
|
|
612
702
|
},
|
|
613
703
|
];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PetDockEntry.d.ts","sourceRoot":"","sources":["../../../src/client/PetDockEntry.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAAmC,KAAK,YAAY,EAAE,MAAM,OAAO,CAAA;AAC1E,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAA;AAEnE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAA;AAEtD,OAAO,EAAE,EAAE,EAAE,MAAM,cAAc,CAAA;AAGjC,2DAA2D;AAC3D,MAAM,WAAW,WAAW;IAC1B,6EAA6E;IAC7E,KAAK,EAAE,gBAAgB,CAAA;IACvB,kFAAkF;IAClF,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,8BAA8B;IAC9B,GAAG,EAAE,MAAM,IAAI,CAAA;IACf,uBAAuB;IACvB,IAAI,EAAE,MAAM,IAAI,CAAA;IAChB,uBAAuB;IACvB,IAAI,EAAE,MAAM,IAAI,CAAA;IAChB,qCAAqC;IACrC,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,+BAA+B;IAC/B,OAAO,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,KAAK,IAAI,CAAA;IAChD,uDAAuD;IACvD,MAAM,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAA;IAC9B,2DAA2D;IAC3D,WAAW,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,IAAI,CAAA;IACxC,iCAAiC;IACjC,YAAY,EAAE,MAAM,IAAI,CAAA;CACzB;AAED,yFAAyF;AACzF,MAAM,MAAM,iBAAiB,GAC3B,WAAW,GACT,WAAW,CAAC,OAAO,EAAE,CAAC,CAAA;AAI1B;;;;;;GAMG;AACH,wBAAgB,YAAY,CAAC,KAAK,EAAE,iBAAiB,GAAG,YAAY,
|
|
1
|
+
{"version":3,"file":"PetDockEntry.d.ts","sourceRoot":"","sources":["../../../src/client/PetDockEntry.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAAmC,KAAK,YAAY,EAAE,MAAM,OAAO,CAAA;AAC1E,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAA;AAEnE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAA;AAEtD,OAAO,EAAE,EAAE,EAAE,MAAM,cAAc,CAAA;AAGjC,2DAA2D;AAC3D,MAAM,WAAW,WAAW;IAC1B,6EAA6E;IAC7E,KAAK,EAAE,gBAAgB,CAAA;IACvB,kFAAkF;IAClF,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,8BAA8B;IAC9B,GAAG,EAAE,MAAM,IAAI,CAAA;IACf,uBAAuB;IACvB,IAAI,EAAE,MAAM,IAAI,CAAA;IAChB,uBAAuB;IACvB,IAAI,EAAE,MAAM,IAAI,CAAA;IAChB,qCAAqC;IACrC,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,+BAA+B;IAC/B,OAAO,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,KAAK,IAAI,CAAA;IAChD,uDAAuD;IACvD,MAAM,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAA;IAC9B,2DAA2D;IAC3D,WAAW,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,IAAI,CAAA;IACxC,iCAAiC;IACjC,YAAY,EAAE,MAAM,IAAI,CAAA;CACzB;AAED,yFAAyF;AACzF,MAAM,MAAM,iBAAiB,GAC3B,WAAW,GACT,WAAW,CAAC,OAAO,EAAE,CAAC,CAAA;AAI1B;;;;;;GAMG;AACH,wBAAgB,YAAY,CAAC,KAAK,EAAE,iBAAiB,GAAG,YAAY,CAsDnE"}
|
|
@@ -43,5 +43,5 @@ export function PetDockEntry(props) {
|
|
|
43
43
|
right: display.right,
|
|
44
44
|
bottom: display.bottom,
|
|
45
45
|
zIndex: 2147483000,
|
|
46
|
-
}, onClick: props.summon, "data-testid": "pet-summon", children: props.t('pet.summon', { name: snapshot?.name ?? '' }) }));
|
|
46
|
+
}, onClick: props.summon, "data-testid": "pet-summon", "data-dsh-part": "summon-button", children: props.t('pet.summon', { name: snapshot?.name ?? '' }) }));
|
|
47
47
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PetSprite.d.ts","sourceRoot":"","sources":["../../../src/client/PetSprite.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAGH,OAAO,KAAK,EAAoD,WAAW,EAAE,MAAM,OAAO,CAAA;AAG1F,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAA;AACnE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAA;AACrD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,eAAe,CAAA;AACjD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAA;AACnD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAIjD,OAAO,EAAE,EAAE,EAAE,MAAM,cAAc,CAAA;AAGjC,wEAAwE;AACxE,MAAM,WAAW,cAAc;IAC7B,gDAAgD;IAChD,QAAQ,EAAE,YAAY,GAAG,IAAI,CAAA;IAC7B,8EAA8E;IAC9E,UAAU,EAAE,aAAa,CAAA;IACzB,qDAAqD;IACrD,OAAO,EAAE,gBAAgB,CAAA;IACzB,sCAAsC;IACtC,QAAQ,EAAE,WAAW,GAAG,IAAI,CAAA;IAC5B,8BAA8B;IAC9B,KAAK,EAAE,MAAM,IAAI,CAAA;IACjB,sCAAsC;IACtC,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,sCAAsC;IACtC,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,+BAA+B;IAC/B,SAAS,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,KAAK,IAAI,CAAA;IAClD,uDAAuD;IACvD,QAAQ,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAA;IAChC,4DAA4D;IAC5D,aAAa,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,IAAI,CAAA;IAC1C,2DAA2D;IAC3D,cAAc,EAAE,MAAM,IAAI,CAAA;IAC1B,+CAA+C;IAC/C,CAAC,EAAE,WAAW,CAAC,OAAO,EAAE,CAAC,CAAA;CAC1B;AAOD;;;;;GAKG;AACH,wBAAgB,SAAS,CAAC,KAAK,EAAE,cAAc,GAAG,WAAW,
|
|
1
|
+
{"version":3,"file":"PetSprite.d.ts","sourceRoot":"","sources":["../../../src/client/PetSprite.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAGH,OAAO,KAAK,EAAoD,WAAW,EAAE,MAAM,OAAO,CAAA;AAG1F,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAA;AACnE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAA;AACrD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,eAAe,CAAA;AACjD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAA;AACnD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAIjD,OAAO,EAAE,EAAE,EAAE,MAAM,cAAc,CAAA;AAGjC,wEAAwE;AACxE,MAAM,WAAW,cAAc;IAC7B,gDAAgD;IAChD,QAAQ,EAAE,YAAY,GAAG,IAAI,CAAA;IAC7B,8EAA8E;IAC9E,UAAU,EAAE,aAAa,CAAA;IACzB,qDAAqD;IACrD,OAAO,EAAE,gBAAgB,CAAA;IACzB,sCAAsC;IACtC,QAAQ,EAAE,WAAW,GAAG,IAAI,CAAA;IAC5B,8BAA8B;IAC9B,KAAK,EAAE,MAAM,IAAI,CAAA;IACjB,sCAAsC;IACtC,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,sCAAsC;IACtC,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,+BAA+B;IAC/B,SAAS,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,KAAK,IAAI,CAAA;IAClD,uDAAuD;IACvD,QAAQ,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAA;IAChC,4DAA4D;IAC5D,aAAa,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,IAAI,CAAA;IAC1C,2DAA2D;IAC3D,cAAc,EAAE,MAAM,IAAI,CAAA;IAC1B,+CAA+C;IAC/C,CAAC,EAAE,WAAW,CAAC,OAAO,EAAE,CAAC,CAAA;CAC1B;AAOD;;;;;GAKG;AACH,wBAAgB,SAAS,CAAC,KAAK,EAAE,cAAc,GAAG,WAAW,CAud5D"}
|
|
@@ -36,6 +36,13 @@ export function PetSprite(props) {
|
|
|
36
36
|
const bubbleRef = useRef(null);
|
|
37
37
|
const [imageReady, setImageReady] = useState(false);
|
|
38
38
|
const [hovered, setHovered] = useState(false);
|
|
39
|
+
// Multi-session bubble stack: collapsed by default (only the display
|
|
40
|
+
// session's bubble + a '+N' badge), expanded on stack hover (peek) or by
|
|
41
|
+
// tapping the badge (pinned, for touch). The display session's bubble
|
|
42
|
+
// anchors the bottom of the stack and never moves when extras open above
|
|
43
|
+
// it, so the pointer target cannot flicker.
|
|
44
|
+
const [stackPeek, setStackPeek] = useState(false);
|
|
45
|
+
const [stackPinned, setStackPinned] = useState(false);
|
|
39
46
|
const [renaming, setRenaming] = useState(false);
|
|
40
47
|
const [panelAbove, setPanelAbove] = useState(false);
|
|
41
48
|
// Extra margin-bottom for the above-panel so it stacks clear of the
|
|
@@ -95,7 +102,7 @@ export function PetSprite(props) {
|
|
|
95
102
|
// Paint one static sprite frame up front either way, so the pet is never
|
|
96
103
|
// blank while the loop heat-up runs.
|
|
97
104
|
const leadCol = track.frames[0];
|
|
98
|
-
const lead = framePosition(cell,
|
|
105
|
+
const lead = framePosition(cell, row, leadCol, scaleRef.current);
|
|
99
106
|
if (spriteRef.current !== null) {
|
|
100
107
|
spriteRef.current.style.backgroundPosition = lead.x + 'px ' + lead.y + 'px';
|
|
101
108
|
}
|
|
@@ -113,7 +120,7 @@ export function PetSprite(props) {
|
|
|
113
120
|
const currentRow = rowOfTrack(current.animation);
|
|
114
121
|
const currentTrack = trimTrack(tracks[current.animation], rows[currentRow] ?? tracks[current.animation].frames.length);
|
|
115
122
|
const col = currentTrack.frames[current.frameIndex];
|
|
116
|
-
const pos = framePosition(cell,
|
|
123
|
+
const pos = framePosition(cell, currentRow, col, scaleRef.current);
|
|
117
124
|
if (spriteRef.current !== null) {
|
|
118
125
|
spriteRef.current.style.backgroundPosition = pos.x + 'px ' + pos.y + 'px';
|
|
119
126
|
}
|
|
@@ -145,7 +152,7 @@ export function PetSprite(props) {
|
|
|
145
152
|
}
|
|
146
153
|
}
|
|
147
154
|
const col = track.frames[st.index];
|
|
148
|
-
const pos = framePosition(cell,
|
|
155
|
+
const pos = framePosition(cell, row, col, scaleRef.current);
|
|
149
156
|
if (spriteRef.current !== null) {
|
|
150
157
|
spriteRef.current.style.backgroundPosition = pos.x + 'px ' + pos.y + 'px';
|
|
151
158
|
}
|
|
@@ -175,6 +182,10 @@ export function PetSprite(props) {
|
|
|
175
182
|
hideTimerRef.current = null;
|
|
176
183
|
}
|
|
177
184
|
};
|
|
185
|
+
// Clear any pending auto-hide timer on unmount: a stray callback after
|
|
186
|
+
// teardown reads window through react-dom and failed CI runs with
|
|
187
|
+
// "window is not defined" (slow-runner timing, PetSprite.test.tsx).
|
|
188
|
+
useEffect(() => () => clearHideTimer(), []);
|
|
178
189
|
const onPointerDown = (e) => {
|
|
179
190
|
e.preventDefault();
|
|
180
191
|
e.target.setPointerCapture?.(e.pointerId);
|
|
@@ -205,20 +216,32 @@ export function PetSprite(props) {
|
|
|
205
216
|
const pos = dragPos ?? { right: display.right, bottom: display.bottom };
|
|
206
217
|
const spriteWidth = Math.round(cell.width * spriteScale);
|
|
207
218
|
const spriteHeight = Math.round(cell.height * spriteScale);
|
|
208
|
-
// Concurrent sessions
|
|
209
|
-
//
|
|
210
|
-
//
|
|
211
|
-
// the
|
|
219
|
+
// Concurrent sessions share one bubble slot: only the display session
|
|
220
|
+
// speaks by default, and the rest hide behind a '+N' badge until the stack
|
|
221
|
+
// is hovered/pinned open. The legacy single 'bubble' is the fallback when
|
|
222
|
+
// the host serves no per-session list. The hover panel normally sits below
|
|
223
|
+
// the sprite, so the bubbles stay visible and clickable — no region swap.
|
|
212
224
|
const sessionBubbles = snapshot?.sessions ?? [];
|
|
225
|
+
const stackOpen = stackPeek || stackPinned;
|
|
226
|
+
const collapsed = !stackOpen && sessionBubbles.length > 1;
|
|
227
|
+
const visibleSessions = collapsed ? sessionBubbles.slice(0, 1) : sessionBubbles;
|
|
213
228
|
const statusBubble = feedback === null && sessionBubbles.length === 0
|
|
214
229
|
? snapshot?.bubble
|
|
215
230
|
: undefined;
|
|
216
231
|
// The display session's inner whisper (碎碎念) — short inner-voice copy
|
|
217
|
-
// woken by the model's output.
|
|
218
|
-
//
|
|
232
|
+
// woken by the model's output. Instead of a second bubble of its own, a
|
|
233
|
+
// fresh whisper takes over the display session's bubble (the stack top, or
|
|
234
|
+
// the single status bubble) and re-tints it, so the pet never wears two
|
|
235
|
+
// voices at once. Interaction feedback takes over the whole bubble area
|
|
236
|
+
// while it plays, so whispers yield to it like status copy.
|
|
219
237
|
const whisper = feedback === null ? snapshot?.whisper : undefined;
|
|
220
238
|
const bubblePresent = feedback !== null || sessionBubbles.length > 0 || statusBubble !== undefined || whisper !== undefined;
|
|
221
239
|
const displayName = snapshot?.name ?? definition.displayName;
|
|
240
|
+
// A settled session list can no longer stay pinned open.
|
|
241
|
+
useEffect(() => {
|
|
242
|
+
if (sessionBubbles.length <= 1)
|
|
243
|
+
setStackPinned(false);
|
|
244
|
+
}, [sessionBubbles.length]);
|
|
222
245
|
useLayoutEffect(() => {
|
|
223
246
|
if (!hovered) {
|
|
224
247
|
setPanelAbove(false);
|
|
@@ -242,7 +265,7 @@ export function PetSprite(props) {
|
|
|
242
265
|
updatePanelPlacement();
|
|
243
266
|
window.addEventListener('resize', updatePanelPlacement);
|
|
244
267
|
return () => window.removeEventListener('resize', updatePanelPlacement);
|
|
245
|
-
}, [hovered, renaming, pos.right, pos.bottom, display.size, bubblePresent, sessionBubbles.length, feedback]);
|
|
268
|
+
}, [hovered, renaming, pos.right, pos.bottom, display.size, bubblePresent, sessionBubbles.length, stackOpen, feedback]);
|
|
246
269
|
const float = (_jsxs("div", { ref: floatRef, className: styles.float, style: { right: pos.right, bottom: pos.bottom, zIndex: 2147483000 }, onPointerEnter: () => {
|
|
247
270
|
clearHideTimer();
|
|
248
271
|
setHovered(true);
|
|
@@ -280,7 +303,27 @@ export function PetSprite(props) {
|
|
|
280
303
|
if (draggedRef.current)
|
|
281
304
|
return;
|
|
282
305
|
props.onPet();
|
|
283
|
-
}, role: "button", "aria-label": definition.displayName }), feedback !== null && (_jsx("div", { ref: bubbleRef, className: clsx(styles.bubble, feedback.kind === 'feed' ? styles.bubbleFeed : styles.bubblePet), children: feedback.text }, feedback.at)), feedback === null && (sessionBubbles.length > 0 || statusBubble !== undefined || whisper !== undefined) && (_jsxs("div", { ref: bubbleRef, className: styles.bubbleStack,
|
|
306
|
+
}, role: "button", "aria-label": definition.displayName }), feedback !== null && (_jsx("div", { ref: bubbleRef, className: clsx(styles.bubble, feedback.kind === 'feed' ? styles.bubbleFeed : styles.bubblePet), children: feedback.text }, feedback.at)), feedback === null && (sessionBubbles.length > 0 || statusBubble !== undefined || whisper !== undefined) && (_jsxs("div", { ref: bubbleRef, className: styles.bubbleStack, onPointerEnter: () => setStackPeek(true), onPointerLeave: () => setStackPeek(false), children: [visibleSessions.map((session, index) => {
|
|
307
|
+
// The whisper rides the display session's bubble — the stack's
|
|
308
|
+
// primary entry (DOM-first, rendered bottom-most by the reversed
|
|
309
|
+
// column so it stays glued to the sprite when extras open above).
|
|
310
|
+
// The key swap restarts the entrance animation so the mood change
|
|
311
|
+
// reads as the bubble re-speaking.
|
|
312
|
+
const speaksWhisper = index === 0 && whisper !== undefined;
|
|
313
|
+
const bubble = (_jsx("button", { type: "button", className: clsx(styles.bubble, styles.bubbleStatus, styles.bubbleClickable, speaksWhisper && styles.bubbleWhisper), title: props.t('pet.openSessionHint'), onClick: () => { props.onOpenSession(session.sessionId); }, children: speaksWhisper ? whisper : session.bubble }, speaksWhisper ? 'whisper:' + whisper : session.sessionId));
|
|
314
|
+
// The primary bubble carries the '+N' badge while other sessions
|
|
315
|
+
// hide behind it; the badge toggles the pinned (touch) expansion.
|
|
316
|
+
if (index !== 0 || sessionBubbles.length <= 1)
|
|
317
|
+
return bubble;
|
|
318
|
+
return (_jsxs("span", { className: styles.bubbleAnchor, children: [bubble, _jsx("button", { type: "button", className: styles.bubbleMore, title: stackOpen
|
|
319
|
+
? props.t('pet.collapseSessions')
|
|
320
|
+
: props.t('pet.moreSessions', { n: sessionBubbles.length - 1 }), "aria-label": stackOpen
|
|
321
|
+
? props.t('pet.collapseSessions')
|
|
322
|
+
: props.t('pet.moreSessions', { n: sessionBubbles.length - 1 }), "aria-expanded": stackOpen, onClick: (e) => {
|
|
323
|
+
e.stopPropagation();
|
|
324
|
+
setStackPinned(open => !open);
|
|
325
|
+
}, children: stackOpen ? '×' : '+' + String(sessionBubbles.length - 1) })] }, "primary"));
|
|
326
|
+
}), sessionBubbles.length === 0 && (statusBubble !== undefined || whisper !== undefined) && (_jsx("div", { className: clsx(styles.bubble, styles.bubbleStatus, whisper !== undefined && styles.bubbleWhisper), role: "status", "aria-live": "polite", children: whisper ?? statusBubble }, whisper === undefined ? 'status' : 'whisper:' + whisper))] })), hovered && dragRef.current === null && (_jsx("div", { ref: panelRef, className: clsx(styles.panel, panelAbove && styles.panelAbove), "data-placement": panelAbove ? 'above' : 'below', style: panelAbove && panelLift > 0
|
|
284
327
|
? { marginBottom: panelLift }
|
|
285
328
|
: undefined, onPointerEnter: () => {
|
|
286
329
|
// Reaching the panel (or its bridge) must cancel any hide timer
|
|
@@ -88,6 +88,27 @@ export declare function ValueField(props: FieldProps & {
|
|
|
88
88
|
/** Placeholder shown while the draft is empty. */
|
|
89
89
|
placeholder?: string;
|
|
90
90
|
}): import("react").JSX.Element;
|
|
91
|
+
interface SelectOption {
|
|
92
|
+
value: string;
|
|
93
|
+
label: string;
|
|
94
|
+
}
|
|
95
|
+
/**
|
|
96
|
+
* The shared dual-mode select control. While an appearance skin is active it
|
|
97
|
+
* renders the legacy native `<select>` untouched, so element-level skin
|
|
98
|
+
* selectors keep working; under the default appearance it renders a
|
|
99
|
+
* self-drawn `role="listbox"` popup whose open/close is transition-animated.
|
|
100
|
+
* Staged cards reach it through BooleanField/ChoiceField; immediate-apply
|
|
101
|
+
* editors (the side-card prefs) bind it directly through onEdit.
|
|
102
|
+
* 双模式下拉框:皮肤激活时用原生 select,默认外观用自绘动画弹层。
|
|
103
|
+
*/
|
|
104
|
+
export declare function SelectField(props: {
|
|
105
|
+
id: string;
|
|
106
|
+
options: ReadonlyArray<SelectOption>;
|
|
107
|
+
value: string;
|
|
108
|
+
disabled: boolean;
|
|
109
|
+
invalid: boolean;
|
|
110
|
+
onEdit: (text: string) => void;
|
|
111
|
+
}): import("react").JSX.Element;
|
|
91
112
|
/** A staged boolean field: 继承 / 开 / 关. */
|
|
92
113
|
export declare function BooleanField(props: FieldProps & {
|
|
93
114
|
/** Copy for the inherit option. */
|
|
@@ -107,4 +128,5 @@ export declare function ChoiceField(props: FieldProps & {
|
|
|
107
128
|
label: string;
|
|
108
129
|
}>;
|
|
109
130
|
}): import("react").JSX.Element;
|
|
131
|
+
export {};
|
|
110
132
|
//# sourceMappingURL=PluginSettingsCard.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PluginSettingsCard.d.ts","sourceRoot":"","sources":["../../../src/client/PluginSettingsCard.tsx"],"names":[],"mappings":"AACA;;;;;;;GAOG;AAEH,OAAO,
|
|
1
|
+
{"version":3,"file":"PluginSettingsCard.d.ts","sourceRoot":"","sources":["../../../src/client/PluginSettingsCard.tsx"],"names":[],"mappings":"AACA;;;;;;;GAOG;AAEH,OAAO,EAAiF,KAAK,SAAS,EAAE,MAAM,OAAO,CAAA;AACrH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAA;AAGnD,oGAAoG;AACpG,eAAO,MAAM,cAAc,YACzB,mBAAmB,EACnB,iBAAiB,EACjB,qBAAqB,EACrB,kBAAkB,EAClB,mBAAmB,EACnB,qBAAqB,EACrB,kBAAkB,EAClB,eAAe,EACf,iBAAiB,CACT,CAAA;AAEV,6CAA6C;AAC7C,MAAM,MAAM,WAAW,GAAG,CAAC,OAAO,cAAc,CAAC,CAAC,MAAM,CAAC,CAAA;AAEzD,oEAAoE;AACpE,MAAM,MAAM,eAAe,CAAC,IAAI,SAAS,MAAM,GAAG,MAAM,IAAI,IAAI,GAAG,WAAW,CAAA;AAE9E,wDAAwD;AACxD,MAAM,WAAW,uBAAuB,CAAC,IAAI,SAAS,MAAM,GAAG,MAAM;IACnE,0CAA0C;IAC1C,CAAC,EAAE,CAAC,GAAG,EAAE,eAAe,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC,KAAK,MAAM,CAAA;IACnF,uCAAuC;IACvC,QAAQ,EAAE,IAAI,CAAA;IACd,4EAA4E;IAC5E,cAAc,EAAE,IAAI,CAAA;IACpB,kFAAkF;IAClF,KAAK,EAAE,SAAS,CAAA;IAChB,+BAA+B;IAC/B,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,8BAA8B;IAC9B,SAAS,EAAE,MAAM,IAAI,CAAA;IACrB;;;OAGG;IACH,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB;;;;OAIG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB;;;;OAIG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,6BAA6B;IAC7B,QAAQ,EAAE,SAAS,CAAA;CACpB;AAED;;;;GAIG;AACH,wBAAgB,kBAAkB,CAAC,IAAI,SAAS,MAAM,GAAG,MAAM,EAAE,KAAK,EAAE,uBAAuB,CAAC,IAAI,CAAC,sCA6GpG;AAED,oEAAoE;AACpE,MAAM,WAAW,UAAU;IACzB,wDAAwD;IACxD,EAAE,EAAE,MAAM,CAAA;IACV,qBAAqB;IACrB,KAAK,EAAE,MAAM,CAAA;IACb,uDAAuD;IACvD,IAAI,EAAE,MAAM,CAAA;IACZ,uCAAuC;IACvC,IAAI,EAAE,MAAM,CAAA;IACZ,sEAAsE;IACtE,UAAU,EAAE,OAAO,CAAA;IACnB,6DAA6D;IAC7D,OAAO,EAAE,OAAO,CAAA;IAChB,qCAAqC;IACrC,eAAe,EAAE,MAAM,CAAA;IACvB,kCAAkC;IAClC,UAAU,EAAE,MAAM,CAAA;IAClB,kEAAkE;IAClE,YAAY,EAAE,MAAM,CAAA;IACpB,gFAAgF;IAChF,QAAQ,EAAE,OAAO,CAAA;IACjB,wBAAwB;IACxB,MAAM,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAA;IAC9B,oEAAoE;IACpE,OAAO,EAAE,MAAM,IAAI,CAAA;CACpB;AAED,kHAAkH;AAClH,wBAAgB,UAAU,CAAC,KAAK,EAAE,UAAU,GAAG;IAC7C,yEAAyE;IACzE,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,kDAAkD;IAClD,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB,+BAqCA;AAUD,UAAU,YAAY;IACpB,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,CAAA;CACd;AAID;;;;;;;;GAQG;AACH,wBAAgB,WAAW,CAAC,KAAK,EAAE;IACjC,EAAE,EAAE,MAAM,CAAA;IACV,OAAO,EAAE,aAAa,CAAC,YAAY,CAAC,CAAA;IACpC,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,EAAE,OAAO,CAAA;IACjB,OAAO,EAAE,OAAO,CAAA;IAChB,MAAM,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAA;CAC/B,+BA2KA;AAED,0CAA0C;AAC1C,wBAAgB,YAAY,CAAC,KAAK,EAAE,UAAU,GAAG;IAC/C,mCAAmC;IACnC,YAAY,EAAE,MAAM,CAAA;IACpB,8BAA8B;IAC9B,OAAO,EAAE,MAAM,CAAA;IACf,+BAA+B;IAC/B,QAAQ,EAAE,MAAM,CAAA;CACjB,+BAoCA;AAED,sDAAsD;AACtD,wBAAgB,WAAW,CAAC,KAAK,EAAE,UAAU,GAAG;IAC9C,oEAAoE;IACpE,YAAY,EAAE,MAAM,CAAA;IACpB,mEAAmE;IACnE,OAAO,EAAE,aAAa,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC,CAAA;CACzD,+BAkCA"}
|