@rezti/dsh-rez-suite 0.1.27 → 0.1.33
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/client.d.ts +4 -0
- package/lib/client.js +360 -189
- package/lib/index.js +7 -3
- package/lib/style.css +47 -0
- package/package.json +5 -5
- package/src/boss/mount.ts +2 -0
- package/src/client/assets/rez-mark.png +0 -0
- package/src/client/brand-mark.ts +4 -0
- package/src/client/brand.module.css +51 -0
- package/src/client/brand.ts +135 -0
- package/src/client/index.ts +11 -0
- package/src/client/locales.ts +8 -0
- package/src/client/panel/AuditTab.tsx +20 -19
- package/src/client/panel/ConfigTab.tsx +45 -41
- package/src/client/panel/StatusTab.tsx +11 -10
- package/src/client/panel/WeixinTab.tsx +9 -8
- package/src/client/panel/helpers.ts +20 -5
- package/src/client/settings-card.tsx +48 -42
- package/src/client/upgrade-button.tsx +24 -12
- package/src/index.ts +2 -0
- package/templates/boss/money/AGENTS.md +2 -0
- package/templates/boss/ops/AGENTS.md +2 -0
- package/templates/boss/product/AGENTS.md +4 -0
- package/templates/staff/finance/.agents/skills/staff-finance/SKILL.md +1 -1
- package/templates/staff/finance/AGENTS.md +6 -0
- package/templates/staff/finance/MEMORY.md +1 -1
- package/templates/staff/hr/.agents/skills/staff-hr/SKILL.md +1 -1
- package/templates/staff/hr/AGENTS.md +6 -0
- package/templates/staff/hr/MEMORY.md +1 -1
- package/templates/staff/legal/.agents/skills/staff-legal/SKILL.md +1 -1
- package/templates/staff/legal/AGENTS.md +6 -0
- package/templates/staff/legal/MEMORY.md +1 -1
package/lib/client.d.ts
CHANGED
|
@@ -7366,6 +7366,10 @@ declare const zh: {
|
|
|
7366
7366
|
readonly 'upgrade.reloading': "正在重载";
|
|
7367
7367
|
readonly 'upgrade.already': "已是 {version}";
|
|
7368
7368
|
readonly 'upgrade.reloadTimeout': "升级完成,但网页还没重新连上。请刷新这一页。";
|
|
7369
|
+
readonly 'brand.name': "雷泽智能";
|
|
7370
|
+
readonly 'brand.badge': "定制版";
|
|
7371
|
+
readonly 'brand.headline': "雷泽智能定制版";
|
|
7372
|
+
readonly 'brand.wordmarkAria': "雷泽智能定制版";
|
|
7369
7373
|
};
|
|
7370
7374
|
type RezKey = keyof typeof zh;
|
|
7371
7375
|
//#endregion
|