@factorialco/f0-react 1.382.0 → 1.383.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/{DataCollectionStorageProvider-B8_-moME.js → DataCollectionStorageProvider-BBLgXK15.js} +1 -1
- package/dist/{F0AiChat-oTIR5NbZ.js → F0AiChat-CXEcOhNF.js} +318 -317
- package/dist/{F0HILActionConfirmation-C9Kwjohi.js → F0HILActionConfirmation-D_4woM1M.js} +1 -1
- package/dist/ai.d.ts +11 -5
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +11 -5
- package/dist/experimental.js +5 -5
- package/dist/f0.d.ts +222 -8
- package/dist/f0.js +6247 -5391
- package/dist/i18n-provider-defaults.d.ts +11 -5
- package/dist/i18n-provider-defaults.js +6 -0
- package/dist/styles.css +1 -1
- package/package.json +2 -2
|
@@ -569,6 +569,12 @@ export declare const defaultTranslations: {
|
|
|
569
569
|
};
|
|
570
570
|
};
|
|
571
571
|
};
|
|
572
|
+
readonly wizard: {
|
|
573
|
+
readonly previous: "Previous";
|
|
574
|
+
readonly next: "Continue";
|
|
575
|
+
readonly submit: "Submit";
|
|
576
|
+
readonly stepOf: "Step {{current}} of {{total}}";
|
|
577
|
+
};
|
|
572
578
|
};
|
|
573
579
|
|
|
574
580
|
declare type Join<T extends string[], D extends string> = T extends [] ? never : T extends [infer F] ? F : T extends [infer F, ...infer R] ? F extends string ? `${F}${D}${Join<Extract<R, string[]>, D>}` : never : string;
|
|
@@ -625,11 +631,6 @@ declare module "gridstack" {
|
|
|
625
631
|
}
|
|
626
632
|
|
|
627
633
|
|
|
628
|
-
declare namespace Calendar {
|
|
629
|
-
var displayName: string;
|
|
630
|
-
}
|
|
631
|
-
|
|
632
|
-
|
|
633
634
|
declare module "@tiptap/core" {
|
|
634
635
|
interface Commands<ReturnType> {
|
|
635
636
|
aiBlock: {
|
|
@@ -677,3 +678,8 @@ declare module "@tiptap/core" {
|
|
|
677
678
|
};
|
|
678
679
|
}
|
|
679
680
|
}
|
|
681
|
+
|
|
682
|
+
|
|
683
|
+
declare namespace Calendar {
|
|
684
|
+
var displayName: string;
|
|
685
|
+
}
|