@fenglimg/fabric-shared 2.3.0-rc.9 → 2.3.0
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/{chunk-TV264D7E.js → chunk-5M3HB554.js} +178 -37
- package/dist/{chunk-ASS2KBB7.js → chunk-OX6DWUK4.js} +31 -2
- package/dist/{chunk-KFFBQRL5.js → chunk-V7IUN5U2.js} +9 -7
- package/dist/{chunk-P6INRP3A.js → chunk-WXVFJBL5.js} +194 -39
- package/dist/i18n/index.js +3 -2
- package/dist/{index-B2e0wKJi.d.ts → index-KvxqMZV1.d.ts} +6 -0
- package/dist/index.d.ts +474 -25
- package/dist/index.js +311 -44
- package/dist/schemas/api-contracts.d.ts +554 -151
- package/dist/schemas/api-contracts.js +1 -1
- package/dist/templates/bootstrap-canonical.d.ts +2 -2
- package/dist/templates/bootstrap-canonical.js +3 -2
- package/dist/theme.d.ts +6 -3
- package/dist/theme.js +27 -5
- package/dist/types/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/i18n/index.js
CHANGED
|
@@ -5,12 +5,13 @@ import {
|
|
|
5
5
|
enMessages,
|
|
6
6
|
resolveFabricLocale,
|
|
7
7
|
zhCNMessages
|
|
8
|
-
} from "../chunk-
|
|
8
|
+
} from "../chunk-WXVFJBL5.js";
|
|
9
9
|
import {
|
|
10
10
|
detectNodeLocale,
|
|
11
11
|
normalizeLocale,
|
|
12
12
|
resolveGlobalLocale
|
|
13
|
-
} from "../chunk-
|
|
13
|
+
} from "../chunk-OX6DWUK4.js";
|
|
14
|
+
import "../chunk-C7WZPYZE.js";
|
|
14
15
|
export {
|
|
15
16
|
PROTECTED_TOKENS,
|
|
16
17
|
createTranslator,
|
|
@@ -480,6 +480,7 @@ declare const fabricConfigSchema: z.ZodObject<{
|
|
|
480
480
|
hint_dismiss_signals: z.ZodOptional<z.ZodArray<z.ZodEnum<["archive", "review", "import", "maintenance", "narrow", "cite-evict"]>, "many">>;
|
|
481
481
|
cite_policy_enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
482
482
|
self_archive_policy_enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
483
|
+
altitude_propose_gate: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
483
484
|
hint_narrow_top_k: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
484
485
|
hint_narrow_dedup_window_turns: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
485
486
|
hint_broad_cooldown_hours: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -524,6 +525,7 @@ declare const fabricConfigSchema: z.ZodObject<{
|
|
|
524
525
|
broad_index_backstop: number;
|
|
525
526
|
cite_policy_enabled: boolean;
|
|
526
527
|
self_archive_policy_enabled: boolean;
|
|
528
|
+
altitude_propose_gate: boolean;
|
|
527
529
|
hint_narrow_top_k: number;
|
|
528
530
|
hint_narrow_dedup_window_turns: number;
|
|
529
531
|
hint_broad_cooldown_hours: number;
|
|
@@ -632,6 +634,7 @@ declare const fabricConfigSchema: z.ZodObject<{
|
|
|
632
634
|
hint_dismiss_signals?: ("narrow" | "archive" | "review" | "import" | "maintenance" | "cite-evict")[] | undefined;
|
|
633
635
|
cite_policy_enabled?: boolean | undefined;
|
|
634
636
|
self_archive_policy_enabled?: boolean | undefined;
|
|
637
|
+
altitude_propose_gate?: boolean | undefined;
|
|
635
638
|
hint_narrow_top_k?: number | undefined;
|
|
636
639
|
hint_narrow_dedup_window_turns?: number | undefined;
|
|
637
640
|
hint_broad_cooldown_hours?: number | undefined;
|
|
@@ -733,6 +736,7 @@ declare const fabricConfigLoadSchema: z.ZodObject<{
|
|
|
733
736
|
hint_dismiss_signals: z.ZodOptional<z.ZodArray<z.ZodEnum<["archive", "review", "import", "maintenance", "narrow", "cite-evict"]>, "many">>;
|
|
734
737
|
cite_policy_enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
735
738
|
self_archive_policy_enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
739
|
+
altitude_propose_gate: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
736
740
|
hint_narrow_top_k: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
737
741
|
hint_narrow_dedup_window_turns: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
738
742
|
hint_broad_cooldown_hours: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -788,6 +792,7 @@ declare const fabricConfigLoadSchema: z.ZodObject<{
|
|
|
788
792
|
broad_index_backstop: number;
|
|
789
793
|
cite_policy_enabled: boolean;
|
|
790
794
|
self_archive_policy_enabled: boolean;
|
|
795
|
+
altitude_propose_gate: boolean;
|
|
791
796
|
hint_narrow_top_k: number;
|
|
792
797
|
hint_narrow_dedup_window_turns: number;
|
|
793
798
|
hint_broad_cooldown_hours: number;
|
|
@@ -896,6 +901,7 @@ declare const fabricConfigLoadSchema: z.ZodObject<{
|
|
|
896
901
|
hint_dismiss_signals?: ("narrow" | "archive" | "review" | "import" | "maintenance" | "cite-evict")[] | undefined;
|
|
897
902
|
cite_policy_enabled?: boolean | undefined;
|
|
898
903
|
self_archive_policy_enabled?: boolean | undefined;
|
|
904
|
+
altitude_propose_gate?: boolean | undefined;
|
|
899
905
|
hint_narrow_top_k?: number | undefined;
|
|
900
906
|
hint_narrow_dedup_window_turns?: number | undefined;
|
|
901
907
|
hint_broad_cooldown_hours?: number | undefined;
|