@cnwenf/occ 2.1.250 → 2.1.251
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/dist/cli.js +3 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -567762,7 +567762,7 @@ var init_ThemePicker = __esm(() => {
|
|
|
567762
567762
|
// src/components/EffortIndicator.ts
|
|
567763
567763
|
function getEffortNotificationText(effortValue, model) {
|
|
567764
567764
|
if (isUltracodeEnabled()) {
|
|
567765
|
-
return "
|
|
567765
|
+
return source_default.rgb(135, 0, 255)("ultracode");
|
|
567766
567766
|
}
|
|
567767
567767
|
if (!modelSupportsEffort(model))
|
|
567768
567768
|
return;
|
|
@@ -567786,6 +567786,7 @@ function effortLevelToSymbol(level) {
|
|
|
567786
567786
|
}
|
|
567787
567787
|
}
|
|
567788
567788
|
var init_EffortIndicator = __esm(() => {
|
|
567789
|
+
init_source();
|
|
567789
567790
|
init_figures2();
|
|
567790
567791
|
init_effort();
|
|
567791
567792
|
init_ultracode();
|
|
@@ -691795,7 +691796,7 @@ function PromptInput({
|
|
|
691795
691796
|
const fastModeCooldown = isFastModeEnabled() ? isFastModeCooldown() : false;
|
|
691796
691797
|
const showFastIcon = isFastModeEnabled() ? isFastMode && (isFastModeAvailable() || fastModeCooldown) : false;
|
|
691797
691798
|
const showFastIconHint = useShowFastIconHint(showFastIcon ?? false);
|
|
691798
|
-
const effortNotificationText = ultracodeBadgeActive ? "
|
|
691799
|
+
const effortNotificationText = ultracodeBadgeActive ? source_default.rgb(135, 0, 255)("ultracode") : briefOwnsGap ? undefined : getEffortNotificationText(effortValue, mainLoopModel);
|
|
691799
691800
|
useBuddyNotification();
|
|
691800
691801
|
const companionSpeaking = feature("BUDDY") ? useAppState((s4) => s4.companionReaction !== undefined) : false;
|
|
691801
691802
|
const {
|