@factorialco/f0-react 1.311.3 → 1.313.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/experimental.css +1 -1
- package/dist/experimental.d.ts +21 -5
- package/dist/experimental.js +16910 -17298
- package/dist/f0.css +1 -1
- package/dist/f0.d.ts +21 -5
- package/dist/f0.js +2074 -2136
- package/dist/{hooks-C0PKAWXC.js → hooks-Br_NdC9x.js} +23825 -24287
- package/dist/i18n-provider-defaults.d.ts +13 -5
- package/dist/i18n-provider-defaults.js +8 -0
- package/package.json +3 -3
|
@@ -164,6 +164,14 @@ export declare const defaultTranslations: {
|
|
|
164
164
|
readonly all: "All selected";
|
|
165
165
|
};
|
|
166
166
|
};
|
|
167
|
+
readonly syncStatus: {
|
|
168
|
+
readonly synced: "Sync completed successfully.";
|
|
169
|
+
readonly syncing: "Sync in progress.";
|
|
170
|
+
readonly pending: "Not yet started.";
|
|
171
|
+
readonly partiallySynced: "All aggregated data was synced but at least 1 failed.";
|
|
172
|
+
readonly outdated: "Data might need to be synced again.";
|
|
173
|
+
readonly failed: "Sync failed.";
|
|
174
|
+
};
|
|
167
175
|
readonly filters: {
|
|
168
176
|
readonly searchPlaceholder: "Search filters...";
|
|
169
177
|
readonly inFilter: {
|
|
@@ -495,6 +503,11 @@ declare module "@tiptap/core" {
|
|
|
495
503
|
}
|
|
496
504
|
|
|
497
505
|
|
|
506
|
+
declare namespace Calendar {
|
|
507
|
+
var displayName: string;
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
|
|
498
511
|
declare module "@tiptap/core" {
|
|
499
512
|
interface Commands<ReturnType> {
|
|
500
513
|
moodTracker: {
|
|
@@ -502,8 +515,3 @@ declare module "@tiptap/core" {
|
|
|
502
515
|
};
|
|
503
516
|
}
|
|
504
517
|
}
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
declare namespace Calendar {
|
|
508
|
-
var displayName: string;
|
|
509
|
-
}
|
|
@@ -164,6 +164,14 @@ const e = {
|
|
|
164
164
|
all: "All selected"
|
|
165
165
|
}
|
|
166
166
|
},
|
|
167
|
+
syncStatus: {
|
|
168
|
+
synced: "Sync completed successfully.",
|
|
169
|
+
syncing: "Sync in progress.",
|
|
170
|
+
pending: "Not yet started.",
|
|
171
|
+
partiallySynced: "All aggregated data was synced but at least 1 failed.",
|
|
172
|
+
outdated: "Data might need to be synced again.",
|
|
173
|
+
failed: "Sync failed."
|
|
174
|
+
},
|
|
167
175
|
filters: {
|
|
168
176
|
searchPlaceholder: "Search filters...",
|
|
169
177
|
inFilter: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@factorialco/f0-react",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.313.0",
|
|
4
4
|
"main": "dist/f0.js",
|
|
5
5
|
"typings": "dist/f0.d.ts",
|
|
6
6
|
"private": false,
|
|
@@ -109,8 +109,8 @@
|
|
|
109
109
|
"chalk": "^5.4.1",
|
|
110
110
|
"chromatic": "^11.28.0",
|
|
111
111
|
"consola": "^3.4.0",
|
|
112
|
-
"dpdm": "^3.14.0",
|
|
113
112
|
"dotenv": "^16.4.7",
|
|
113
|
+
"dpdm": "^3.14.0",
|
|
114
114
|
"emoji-mart": "^5.6.0",
|
|
115
115
|
"eslint": "^9.27.0",
|
|
116
116
|
"eslint-plugin-react": "^7.37.5",
|
|
@@ -140,7 +140,7 @@
|
|
|
140
140
|
"tsup": "^8.3.5",
|
|
141
141
|
"typescript": "^5.7.2",
|
|
142
142
|
"user-agent-data-types": "^0.4.2",
|
|
143
|
-
"vite": "^
|
|
143
|
+
"vite": "^7.3.0",
|
|
144
144
|
"vite-plugin-dts": "4.3.0",
|
|
145
145
|
"vite-plugin-lib-inject-css": "^2.2.1",
|
|
146
146
|
"vitest": "^4.0.15"
|