@factorialco/f0-react 1.273.1 → 1.275.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.d.ts +13 -5
- package/dist/experimental.js +967 -948
- package/dist/f0.d.ts +13 -5
- package/dist/f0.js +110 -102
- package/dist/{hooks-DhSyBRGu.js → hooks-BaU58qvY.js} +547 -543
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/f0.d.ts
CHANGED
|
@@ -1447,6 +1447,8 @@ export declare const defaultTranslations: {
|
|
|
1447
1447
|
readonly rangeTitle: "Use range";
|
|
1448
1448
|
readonly range: "Between {{min}} and {{max}}";
|
|
1449
1449
|
};
|
|
1450
|
+
readonly selectAll: "Select all";
|
|
1451
|
+
readonly clear: "Clear";
|
|
1450
1452
|
};
|
|
1451
1453
|
readonly toc: {
|
|
1452
1454
|
readonly search: "Search...";
|
|
@@ -1476,6 +1478,12 @@ export declare const defaultTranslations: {
|
|
|
1476
1478
|
readonly settings: "{{visualizationName}} settings";
|
|
1477
1479
|
readonly reset: "Reset to default";
|
|
1478
1480
|
};
|
|
1481
|
+
readonly table: {
|
|
1482
|
+
readonly settings: {
|
|
1483
|
+
readonly showAllColumns: "Show all";
|
|
1484
|
+
readonly hideAllColumns: "Hide all";
|
|
1485
|
+
};
|
|
1486
|
+
};
|
|
1479
1487
|
readonly itemsCount: "items";
|
|
1480
1488
|
readonly emptyStates: {
|
|
1481
1489
|
readonly noData: {
|
|
@@ -3993,11 +4001,6 @@ declare module "@tiptap/core" {
|
|
|
3993
4001
|
}
|
|
3994
4002
|
|
|
3995
4003
|
|
|
3996
|
-
declare namespace Calendar {
|
|
3997
|
-
var displayName: string;
|
|
3998
|
-
}
|
|
3999
|
-
|
|
4000
|
-
|
|
4001
4004
|
declare module "@tiptap/core" {
|
|
4002
4005
|
interface Commands<ReturnType> {
|
|
4003
4006
|
moodTracker: {
|
|
@@ -4005,3 +4008,8 @@ declare module "@tiptap/core" {
|
|
|
4005
4008
|
};
|
|
4006
4009
|
}
|
|
4007
4010
|
}
|
|
4011
|
+
|
|
4012
|
+
|
|
4013
|
+
declare namespace Calendar {
|
|
4014
|
+
var displayName: string;
|
|
4015
|
+
}
|