@factorialco/f0-react 1.269.0 → 1.270.1
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 +42 -8
- package/dist/experimental.js +5893 -5815
- package/dist/f0.d.ts +15 -8
- package/dist/f0.js +290 -283
- package/dist/{hooks-CL34-HPk.js → hooks-DhSyBRGu.js} +1615 -1601
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/f0.d.ts
CHANGED
|
@@ -1435,11 +1435,18 @@ export declare const defaultTranslations: {
|
|
|
1435
1435
|
readonly cancel: "Cancel";
|
|
1436
1436
|
readonly failedToLoadOptions: "Failed to load options";
|
|
1437
1437
|
readonly retry: "Retry";
|
|
1438
|
-
readonly
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1438
|
+
readonly number: {
|
|
1439
|
+
readonly value: "Value";
|
|
1440
|
+
readonly equal: "Equal to";
|
|
1441
|
+
readonly equalTo: "Equal to {{value}}";
|
|
1442
|
+
readonly lessOrEqual: "Less or equal to";
|
|
1443
|
+
readonly greaterOrEqual: "Greater or equal to";
|
|
1444
|
+
readonly equalShort: "= {{value}}";
|
|
1445
|
+
readonly greaterThanOrEqualShort: ">= {{value}}";
|
|
1446
|
+
readonly lessThanOrEqualShort: "<= {{value}}";
|
|
1447
|
+
readonly rangeTitle: "Use range";
|
|
1448
|
+
readonly range: "Between {{min}} and {{max}}";
|
|
1449
|
+
};
|
|
1443
1450
|
};
|
|
1444
1451
|
readonly toc: {
|
|
1445
1452
|
readonly search: "Search...";
|
|
@@ -1602,9 +1609,9 @@ export declare const defaultTranslations: {
|
|
|
1602
1609
|
readonly loadingMore: "Loading...";
|
|
1603
1610
|
};
|
|
1604
1611
|
readonly numberInput: {
|
|
1605
|
-
readonly between: "
|
|
1606
|
-
readonly greaterThan: "
|
|
1607
|
-
readonly lessThan: "
|
|
1612
|
+
readonly between: "It should be between {{min}} and {{max}}";
|
|
1613
|
+
readonly greaterThan: "It should be greater than {{min}}";
|
|
1614
|
+
readonly lessThan: "It should be less than {{max}}";
|
|
1608
1615
|
};
|
|
1609
1616
|
};
|
|
1610
1617
|
|