@windrun-huaiin/third-ui 5.13.4 → 5.13.6
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/fuma/mdx/index.d.mts +5 -1
- package/dist/fuma/mdx/index.d.ts +5 -1
- package/dist/fuma/mdx/index.js +2717 -326
- package/dist/fuma/mdx/index.js.map +1 -1
- package/dist/fuma/mdx/index.mjs +2717 -326
- package/dist/fuma/mdx/index.mjs.map +1 -1
- package/dist/fuma/server.js +2471 -212
- package/dist/fuma/server.js.map +1 -1
- package/dist/fuma/server.mjs +2468 -209
- package/dist/fuma/server.mjs.map +1 -1
- package/dist/lib/server.d.mts +148 -0
- package/dist/lib/server.d.ts +148 -0
- package/package.json +2 -2
- package/src/fuma/mdx/mermaid.tsx +141 -3
package/dist/lib/server.d.ts
CHANGED
|
@@ -121,6 +121,7 @@ declare const clerkIntl: {
|
|
|
121
121
|
defaultFreePlanActive: _clerk_types.LocalizationValue;
|
|
122
122
|
viewFeatures: _clerk_types.LocalizationValue;
|
|
123
123
|
seeAllFeatures: _clerk_types.LocalizationValue;
|
|
124
|
+
viewPayment: _clerk_types.LocalizationValue;
|
|
124
125
|
availableFeatures: _clerk_types.LocalizationValue;
|
|
125
126
|
subtotal: _clerk_types.LocalizationValue;
|
|
126
127
|
credit: _clerk_types.LocalizationValue;
|
|
@@ -1087,6 +1088,9 @@ declare const clerkIntl: {
|
|
|
1087
1088
|
form_username_invalid_character: _clerk_types.LocalizationValue;
|
|
1088
1089
|
form_param_format_invalid: _clerk_types.LocalizationValue;
|
|
1089
1090
|
form_param_format_invalid__email_address: _clerk_types.LocalizationValue;
|
|
1091
|
+
form_param_type_invalid: _clerk_types.LocalizationValue;
|
|
1092
|
+
form_param_type_invalid__phone_number: _clerk_types.LocalizationValue;
|
|
1093
|
+
form_param_type_invalid__email_address: _clerk_types.LocalizationValue;
|
|
1090
1094
|
form_password_length_too_short: _clerk_types.LocalizationValue;
|
|
1091
1095
|
form_param_nil: _clerk_types.LocalizationValue;
|
|
1092
1096
|
form_code_incorrect: _clerk_types.LocalizationValue;
|
|
@@ -1174,6 +1178,9 @@ declare const clerkIntl: {
|
|
|
1174
1178
|
form_username_invalid_character__name?: string | undefined;
|
|
1175
1179
|
form_param_format_invalid__name?: string | undefined;
|
|
1176
1180
|
form_param_format_invalid__email_address__name?: string | undefined;
|
|
1181
|
+
form_param_type_invalid__name?: string | undefined;
|
|
1182
|
+
form_param_type_invalid__phone_number__name?: string | undefined;
|
|
1183
|
+
form_param_type_invalid__email_address__name?: string | undefined;
|
|
1177
1184
|
form_password_length_too_short__name?: string | undefined;
|
|
1178
1185
|
form_param_nil__name?: string | undefined;
|
|
1179
1186
|
form_code_incorrect__name?: string | undefined;
|
|
@@ -1215,6 +1222,9 @@ declare const clerkIntl: {
|
|
|
1215
1222
|
form_username_invalid_character__code?: string | undefined;
|
|
1216
1223
|
form_param_format_invalid__code?: string | undefined;
|
|
1217
1224
|
form_param_format_invalid__email_address__code?: string | undefined;
|
|
1225
|
+
form_param_type_invalid__code?: string | undefined;
|
|
1226
|
+
form_param_type_invalid__phone_number__code?: string | undefined;
|
|
1227
|
+
form_param_type_invalid__email_address__code?: string | undefined;
|
|
1218
1228
|
form_password_length_too_short__code?: string | undefined;
|
|
1219
1229
|
form_param_nil__code?: string | undefined;
|
|
1220
1230
|
form_code_incorrect__code?: string | undefined;
|
|
@@ -1256,6 +1266,9 @@ declare const clerkIntl: {
|
|
|
1256
1266
|
form_username_invalid_character__slug?: string | undefined;
|
|
1257
1267
|
form_param_format_invalid__slug?: string | undefined;
|
|
1258
1268
|
form_param_format_invalid__email_address__slug?: string | undefined;
|
|
1269
|
+
form_param_type_invalid__slug?: string | undefined;
|
|
1270
|
+
form_param_type_invalid__phone_number__slug?: string | undefined;
|
|
1271
|
+
form_param_type_invalid__email_address__slug?: string | undefined;
|
|
1259
1272
|
form_password_length_too_short__slug?: string | undefined;
|
|
1260
1273
|
form_param_nil__slug?: string | undefined;
|
|
1261
1274
|
form_code_incorrect__slug?: string | undefined;
|
|
@@ -1297,6 +1310,9 @@ declare const clerkIntl: {
|
|
|
1297
1310
|
form_username_invalid_character__username?: string | undefined;
|
|
1298
1311
|
form_param_format_invalid__username?: string | undefined;
|
|
1299
1312
|
form_param_format_invalid__email_address__username?: string | undefined;
|
|
1313
|
+
form_param_type_invalid__username?: string | undefined;
|
|
1314
|
+
form_param_type_invalid__phone_number__username?: string | undefined;
|
|
1315
|
+
form_param_type_invalid__email_address__username?: string | undefined;
|
|
1300
1316
|
form_password_length_too_short__username?: string | undefined;
|
|
1301
1317
|
form_param_nil__username?: string | undefined;
|
|
1302
1318
|
form_code_incorrect__username?: string | undefined;
|
|
@@ -1337,6 +1353,9 @@ declare const clerkIntl: {
|
|
|
1337
1353
|
form_username_invalid_character__password?: string | undefined;
|
|
1338
1354
|
form_param_format_invalid__password?: string | undefined;
|
|
1339
1355
|
form_param_format_invalid__email_address__password?: string | undefined;
|
|
1356
|
+
form_param_type_invalid__password?: string | undefined;
|
|
1357
|
+
form_param_type_invalid__phone_number__password?: string | undefined;
|
|
1358
|
+
form_param_type_invalid__email_address__password?: string | undefined;
|
|
1340
1359
|
form_password_length_too_short__password?: string | undefined;
|
|
1341
1360
|
form_param_nil__password?: string | undefined;
|
|
1342
1361
|
form_code_incorrect__password?: string | undefined;
|
|
@@ -1378,6 +1397,9 @@ declare const clerkIntl: {
|
|
|
1378
1397
|
form_username_invalid_character__identifier?: string | undefined;
|
|
1379
1398
|
form_param_format_invalid__identifier?: string | undefined;
|
|
1380
1399
|
form_param_format_invalid__email_address__identifier?: string | undefined;
|
|
1400
|
+
form_param_type_invalid__identifier?: string | undefined;
|
|
1401
|
+
form_param_type_invalid__phone_number__identifier?: string | undefined;
|
|
1402
|
+
form_param_type_invalid__email_address__identifier?: string | undefined;
|
|
1381
1403
|
form_password_length_too_short__identifier?: string | undefined;
|
|
1382
1404
|
form_param_nil__identifier?: string | undefined;
|
|
1383
1405
|
form_code_incorrect__identifier?: string | undefined;
|
|
@@ -1419,6 +1441,9 @@ declare const clerkIntl: {
|
|
|
1419
1441
|
form_username_invalid_character__first_name?: string | undefined;
|
|
1420
1442
|
form_param_format_invalid__first_name?: string | undefined;
|
|
1421
1443
|
form_param_format_invalid__email_address__first_name?: string | undefined;
|
|
1444
|
+
form_param_type_invalid__first_name?: string | undefined;
|
|
1445
|
+
form_param_type_invalid__phone_number__first_name?: string | undefined;
|
|
1446
|
+
form_param_type_invalid__email_address__first_name?: string | undefined;
|
|
1422
1447
|
form_password_length_too_short__first_name?: string | undefined;
|
|
1423
1448
|
form_param_nil__first_name?: string | undefined;
|
|
1424
1449
|
form_code_incorrect__first_name?: string | undefined;
|
|
@@ -1460,6 +1485,9 @@ declare const clerkIntl: {
|
|
|
1460
1485
|
form_username_invalid_character__last_name?: string | undefined;
|
|
1461
1486
|
form_param_format_invalid__last_name?: string | undefined;
|
|
1462
1487
|
form_param_format_invalid__email_address__last_name?: string | undefined;
|
|
1488
|
+
form_param_type_invalid__last_name?: string | undefined;
|
|
1489
|
+
form_param_type_invalid__phone_number__last_name?: string | undefined;
|
|
1490
|
+
form_param_type_invalid__email_address__last_name?: string | undefined;
|
|
1463
1491
|
form_password_length_too_short__last_name?: string | undefined;
|
|
1464
1492
|
form_param_nil__last_name?: string | undefined;
|
|
1465
1493
|
form_code_incorrect__last_name?: string | undefined;
|
|
@@ -1500,6 +1528,8 @@ declare const clerkIntl: {
|
|
|
1500
1528
|
form_username_invalid_length__email_address?: string | undefined;
|
|
1501
1529
|
form_username_invalid_character__email_address?: string | undefined;
|
|
1502
1530
|
form_param_format_invalid__email_address__email_address?: string | undefined;
|
|
1531
|
+
form_param_type_invalid__phone_number__email_address?: string | undefined;
|
|
1532
|
+
form_param_type_invalid__email_address__email_address?: string | undefined;
|
|
1503
1533
|
form_password_length_too_short__email_address?: string | undefined;
|
|
1504
1534
|
form_param_nil__email_address?: string | undefined;
|
|
1505
1535
|
form_code_incorrect__email_address?: string | undefined;
|
|
@@ -1540,6 +1570,8 @@ declare const clerkIntl: {
|
|
|
1540
1570
|
form_username_invalid_character__phone_number?: string | undefined;
|
|
1541
1571
|
form_param_format_invalid__phone_number?: string | undefined;
|
|
1542
1572
|
form_param_format_invalid__email_address__phone_number?: string | undefined;
|
|
1573
|
+
form_param_type_invalid__phone_number__phone_number?: string | undefined;
|
|
1574
|
+
form_param_type_invalid__email_address__phone_number?: string | undefined;
|
|
1543
1575
|
form_password_length_too_short__phone_number?: string | undefined;
|
|
1544
1576
|
form_param_nil__phone_number?: string | undefined;
|
|
1545
1577
|
form_code_incorrect__phone_number?: string | undefined;
|
|
@@ -1580,6 +1612,9 @@ declare const clerkIntl: {
|
|
|
1580
1612
|
form_username_invalid_character__current_password?: string | undefined;
|
|
1581
1613
|
form_param_format_invalid__current_password?: string | undefined;
|
|
1582
1614
|
form_param_format_invalid__email_address__current_password?: string | undefined;
|
|
1615
|
+
form_param_type_invalid__current_password?: string | undefined;
|
|
1616
|
+
form_param_type_invalid__phone_number__current_password?: string | undefined;
|
|
1617
|
+
form_param_type_invalid__email_address__current_password?: string | undefined;
|
|
1583
1618
|
form_password_length_too_short__current_password?: string | undefined;
|
|
1584
1619
|
form_param_nil__current_password?: string | undefined;
|
|
1585
1620
|
form_code_incorrect__current_password?: string | undefined;
|
|
@@ -1621,6 +1656,9 @@ declare const clerkIntl: {
|
|
|
1621
1656
|
form_username_invalid_character__new_password?: string | undefined;
|
|
1622
1657
|
form_param_format_invalid__new_password?: string | undefined;
|
|
1623
1658
|
form_param_format_invalid__email_address__new_password?: string | undefined;
|
|
1659
|
+
form_param_type_invalid__new_password?: string | undefined;
|
|
1660
|
+
form_param_type_invalid__phone_number__new_password?: string | undefined;
|
|
1661
|
+
form_param_type_invalid__email_address__new_password?: string | undefined;
|
|
1624
1662
|
form_password_length_too_short__new_password?: string | undefined;
|
|
1625
1663
|
form_param_nil__new_password?: string | undefined;
|
|
1626
1664
|
form_code_incorrect__new_password?: string | undefined;
|
|
@@ -1662,6 +1700,9 @@ declare const clerkIntl: {
|
|
|
1662
1700
|
form_username_invalid_character__sign_out_of_other_sessions?: string | undefined;
|
|
1663
1701
|
form_param_format_invalid__sign_out_of_other_sessions?: string | undefined;
|
|
1664
1702
|
form_param_format_invalid__email_address__sign_out_of_other_sessions?: string | undefined;
|
|
1703
|
+
form_param_type_invalid__sign_out_of_other_sessions?: string | undefined;
|
|
1704
|
+
form_param_type_invalid__phone_number__sign_out_of_other_sessions?: string | undefined;
|
|
1705
|
+
form_param_type_invalid__email_address__sign_out_of_other_sessions?: string | undefined;
|
|
1665
1706
|
form_password_length_too_short__sign_out_of_other_sessions?: string | undefined;
|
|
1666
1707
|
form_param_nil__sign_out_of_other_sessions?: string | undefined;
|
|
1667
1708
|
form_code_incorrect__sign_out_of_other_sessions?: string | undefined;
|
|
@@ -1703,6 +1744,9 @@ declare const clerkIntl: {
|
|
|
1703
1744
|
form_username_invalid_character__passkey_name?: string | undefined;
|
|
1704
1745
|
form_param_format_invalid__passkey_name?: string | undefined;
|
|
1705
1746
|
form_param_format_invalid__email_address__passkey_name?: string | undefined;
|
|
1747
|
+
form_param_type_invalid__passkey_name?: string | undefined;
|
|
1748
|
+
form_param_type_invalid__phone_number__passkey_name?: string | undefined;
|
|
1749
|
+
form_param_type_invalid__email_address__passkey_name?: string | undefined;
|
|
1706
1750
|
form_password_length_too_short__passkey_name?: string | undefined;
|
|
1707
1751
|
form_param_nil__passkey_name?: string | undefined;
|
|
1708
1752
|
form_code_incorrect__passkey_name?: string | undefined;
|
|
@@ -1744,6 +1788,9 @@ declare const clerkIntl: {
|
|
|
1744
1788
|
form_username_invalid_character__confirm_password?: string | undefined;
|
|
1745
1789
|
form_param_format_invalid__confirm_password?: string | undefined;
|
|
1746
1790
|
form_param_format_invalid__email_address__confirm_password?: string | undefined;
|
|
1791
|
+
form_param_type_invalid__confirm_password?: string | undefined;
|
|
1792
|
+
form_param_type_invalid__phone_number__confirm_password?: string | undefined;
|
|
1793
|
+
form_param_type_invalid__email_address__confirm_password?: string | undefined;
|
|
1747
1794
|
form_password_length_too_short__confirm_password?: string | undefined;
|
|
1748
1795
|
form_param_nil__confirm_password?: string | undefined;
|
|
1749
1796
|
form_code_incorrect__confirm_password?: string | undefined;
|
|
@@ -1785,6 +1832,9 @@ declare const clerkIntl: {
|
|
|
1785
1832
|
form_username_invalid_character__delete_confirmation?: string | undefined;
|
|
1786
1833
|
form_param_format_invalid__delete_confirmation?: string | undefined;
|
|
1787
1834
|
form_param_format_invalid__email_address__delete_confirmation?: string | undefined;
|
|
1835
|
+
form_param_type_invalid__delete_confirmation?: string | undefined;
|
|
1836
|
+
form_param_type_invalid__phone_number__delete_confirmation?: string | undefined;
|
|
1837
|
+
form_param_type_invalid__email_address__delete_confirmation?: string | undefined;
|
|
1788
1838
|
form_password_length_too_short__delete_confirmation?: string | undefined;
|
|
1789
1839
|
form_param_nil__delete_confirmation?: string | undefined;
|
|
1790
1840
|
form_code_incorrect__delete_confirmation?: string | undefined;
|
|
@@ -1826,6 +1876,9 @@ declare const clerkIntl: {
|
|
|
1826
1876
|
form_username_invalid_character__delete_organization_confirmation?: string | undefined;
|
|
1827
1877
|
form_param_format_invalid__delete_organization_confirmation?: string | undefined;
|
|
1828
1878
|
form_param_format_invalid__email_address__delete_organization_confirmation?: string | undefined;
|
|
1879
|
+
form_param_type_invalid__delete_organization_confirmation?: string | undefined;
|
|
1880
|
+
form_param_type_invalid__phone_number__delete_organization_confirmation?: string | undefined;
|
|
1881
|
+
form_param_type_invalid__email_address__delete_organization_confirmation?: string | undefined;
|
|
1829
1882
|
form_password_length_too_short__delete_organization_confirmation?: string | undefined;
|
|
1830
1883
|
form_param_nil__delete_organization_confirmation?: string | undefined;
|
|
1831
1884
|
form_code_incorrect__delete_organization_confirmation?: string | undefined;
|
|
@@ -1867,6 +1920,9 @@ declare const clerkIntl: {
|
|
|
1867
1920
|
form_username_invalid_character__enrollment_mode?: string | undefined;
|
|
1868
1921
|
form_param_format_invalid__enrollment_mode?: string | undefined;
|
|
1869
1922
|
form_param_format_invalid__email_address__enrollment_mode?: string | undefined;
|
|
1923
|
+
form_param_type_invalid__enrollment_mode?: string | undefined;
|
|
1924
|
+
form_param_type_invalid__phone_number__enrollment_mode?: string | undefined;
|
|
1925
|
+
form_param_type_invalid__email_address__enrollment_mode?: string | undefined;
|
|
1870
1926
|
form_password_length_too_short__enrollment_mode?: string | undefined;
|
|
1871
1927
|
form_param_nil__enrollment_mode?: string | undefined;
|
|
1872
1928
|
form_code_incorrect__enrollment_mode?: string | undefined;
|
|
@@ -1908,6 +1964,9 @@ declare const clerkIntl: {
|
|
|
1908
1964
|
form_username_invalid_character__affiliation_email_address?: string | undefined;
|
|
1909
1965
|
form_param_format_invalid__affiliation_email_address?: string | undefined;
|
|
1910
1966
|
form_param_format_invalid__email_address__affiliation_email_address?: string | undefined;
|
|
1967
|
+
form_param_type_invalid__affiliation_email_address?: string | undefined;
|
|
1968
|
+
form_param_type_invalid__phone_number__affiliation_email_address?: string | undefined;
|
|
1969
|
+
form_param_type_invalid__email_address__affiliation_email_address?: string | undefined;
|
|
1911
1970
|
form_password_length_too_short__affiliation_email_address?: string | undefined;
|
|
1912
1971
|
form_param_nil__affiliation_email_address?: string | undefined;
|
|
1913
1972
|
form_code_incorrect__affiliation_email_address?: string | undefined;
|
|
@@ -1949,6 +2008,9 @@ declare const clerkIntl: {
|
|
|
1949
2008
|
form_username_invalid_character__delete_existing_invitations_suggestions?: string | undefined;
|
|
1950
2009
|
form_param_format_invalid__delete_existing_invitations_suggestions?: string | undefined;
|
|
1951
2010
|
form_param_format_invalid__email_address__delete_existing_invitations_suggestions?: string | undefined;
|
|
2011
|
+
form_param_type_invalid__delete_existing_invitations_suggestions?: string | undefined;
|
|
2012
|
+
form_param_type_invalid__phone_number__delete_existing_invitations_suggestions?: string | undefined;
|
|
2013
|
+
form_param_type_invalid__email_address__delete_existing_invitations_suggestions?: string | undefined;
|
|
1952
2014
|
form_password_length_too_short__delete_existing_invitations_suggestions?: string | undefined;
|
|
1953
2015
|
form_param_nil__delete_existing_invitations_suggestions?: string | undefined;
|
|
1954
2016
|
form_code_incorrect__delete_existing_invitations_suggestions?: string | undefined;
|
|
@@ -1990,6 +2052,9 @@ declare const clerkIntl: {
|
|
|
1990
2052
|
form_username_invalid_character__legal_accepted?: string | undefined;
|
|
1991
2053
|
form_param_format_invalid__legal_accepted?: string | undefined;
|
|
1992
2054
|
form_param_format_invalid__email_address__legal_accepted?: string | undefined;
|
|
2055
|
+
form_param_type_invalid__legal_accepted?: string | undefined;
|
|
2056
|
+
form_param_type_invalid__phone_number__legal_accepted?: string | undefined;
|
|
2057
|
+
form_param_type_invalid__email_address__legal_accepted?: string | undefined;
|
|
1993
2058
|
form_password_length_too_short__legal_accepted?: string | undefined;
|
|
1994
2059
|
form_param_nil__legal_accepted?: string | undefined;
|
|
1995
2060
|
form_code_incorrect__legal_accepted?: string | undefined;
|
|
@@ -2031,6 +2096,9 @@ declare const clerkIntl: {
|
|
|
2031
2096
|
form_username_invalid_character__api_key_description?: string | undefined;
|
|
2032
2097
|
form_param_format_invalid__api_key_description?: string | undefined;
|
|
2033
2098
|
form_param_format_invalid__email_address__api_key_description?: string | undefined;
|
|
2099
|
+
form_param_type_invalid__api_key_description?: string | undefined;
|
|
2100
|
+
form_param_type_invalid__phone_number__api_key_description?: string | undefined;
|
|
2101
|
+
form_param_type_invalid__email_address__api_key_description?: string | undefined;
|
|
2034
2102
|
form_password_length_too_short__api_key_description?: string | undefined;
|
|
2035
2103
|
form_param_nil__api_key_description?: string | undefined;
|
|
2036
2104
|
form_code_incorrect__api_key_description?: string | undefined;
|
|
@@ -2072,6 +2140,9 @@ declare const clerkIntl: {
|
|
|
2072
2140
|
form_username_invalid_character__api_key_expiration_date?: string | undefined;
|
|
2073
2141
|
form_param_format_invalid__api_key_expiration_date?: string | undefined;
|
|
2074
2142
|
form_param_format_invalid__email_address__api_key_expiration_date?: string | undefined;
|
|
2143
|
+
form_param_type_invalid__api_key_expiration_date?: string | undefined;
|
|
2144
|
+
form_param_type_invalid__phone_number__api_key_expiration_date?: string | undefined;
|
|
2145
|
+
form_param_type_invalid__email_address__api_key_expiration_date?: string | undefined;
|
|
2075
2146
|
form_password_length_too_short__api_key_expiration_date?: string | undefined;
|
|
2076
2147
|
form_param_nil__api_key_expiration_date?: string | undefined;
|
|
2077
2148
|
form_code_incorrect__api_key_expiration_date?: string | undefined;
|
|
@@ -2113,6 +2184,9 @@ declare const clerkIntl: {
|
|
|
2113
2184
|
form_username_invalid_character__api_key_revoke_confirmation?: string | undefined;
|
|
2114
2185
|
form_param_format_invalid__api_key_revoke_confirmation?: string | undefined;
|
|
2115
2186
|
form_param_format_invalid__email_address__api_key_revoke_confirmation?: string | undefined;
|
|
2187
|
+
form_param_type_invalid__api_key_revoke_confirmation?: string | undefined;
|
|
2188
|
+
form_param_type_invalid__phone_number__api_key_revoke_confirmation?: string | undefined;
|
|
2189
|
+
form_param_type_invalid__email_address__api_key_revoke_confirmation?: string | undefined;
|
|
2116
2190
|
form_password_length_too_short__api_key_revoke_confirmation?: string | undefined;
|
|
2117
2191
|
form_param_nil__api_key_revoke_confirmation?: string | undefined;
|
|
2118
2192
|
form_code_incorrect__api_key_revoke_confirmation?: string | undefined;
|
|
@@ -2308,6 +2382,7 @@ declare const clerkIntl: {
|
|
|
2308
2382
|
defaultFreePlanActive: _clerk_types.LocalizationValue;
|
|
2309
2383
|
viewFeatures: _clerk_types.LocalizationValue;
|
|
2310
2384
|
seeAllFeatures: _clerk_types.LocalizationValue;
|
|
2385
|
+
viewPayment: _clerk_types.LocalizationValue;
|
|
2311
2386
|
availableFeatures: _clerk_types.LocalizationValue;
|
|
2312
2387
|
subtotal: _clerk_types.LocalizationValue;
|
|
2313
2388
|
credit: _clerk_types.LocalizationValue;
|
|
@@ -3274,6 +3349,9 @@ declare const clerkIntl: {
|
|
|
3274
3349
|
form_username_invalid_character: _clerk_types.LocalizationValue;
|
|
3275
3350
|
form_param_format_invalid: _clerk_types.LocalizationValue;
|
|
3276
3351
|
form_param_format_invalid__email_address: _clerk_types.LocalizationValue;
|
|
3352
|
+
form_param_type_invalid: _clerk_types.LocalizationValue;
|
|
3353
|
+
form_param_type_invalid__phone_number: _clerk_types.LocalizationValue;
|
|
3354
|
+
form_param_type_invalid__email_address: _clerk_types.LocalizationValue;
|
|
3277
3355
|
form_password_length_too_short: _clerk_types.LocalizationValue;
|
|
3278
3356
|
form_param_nil: _clerk_types.LocalizationValue;
|
|
3279
3357
|
form_code_incorrect: _clerk_types.LocalizationValue;
|
|
@@ -3361,6 +3439,9 @@ declare const clerkIntl: {
|
|
|
3361
3439
|
form_username_invalid_character__name?: string | undefined;
|
|
3362
3440
|
form_param_format_invalid__name?: string | undefined;
|
|
3363
3441
|
form_param_format_invalid__email_address__name?: string | undefined;
|
|
3442
|
+
form_param_type_invalid__name?: string | undefined;
|
|
3443
|
+
form_param_type_invalid__phone_number__name?: string | undefined;
|
|
3444
|
+
form_param_type_invalid__email_address__name?: string | undefined;
|
|
3364
3445
|
form_password_length_too_short__name?: string | undefined;
|
|
3365
3446
|
form_param_nil__name?: string | undefined;
|
|
3366
3447
|
form_code_incorrect__name?: string | undefined;
|
|
@@ -3402,6 +3483,9 @@ declare const clerkIntl: {
|
|
|
3402
3483
|
form_username_invalid_character__code?: string | undefined;
|
|
3403
3484
|
form_param_format_invalid__code?: string | undefined;
|
|
3404
3485
|
form_param_format_invalid__email_address__code?: string | undefined;
|
|
3486
|
+
form_param_type_invalid__code?: string | undefined;
|
|
3487
|
+
form_param_type_invalid__phone_number__code?: string | undefined;
|
|
3488
|
+
form_param_type_invalid__email_address__code?: string | undefined;
|
|
3405
3489
|
form_password_length_too_short__code?: string | undefined;
|
|
3406
3490
|
form_param_nil__code?: string | undefined;
|
|
3407
3491
|
form_code_incorrect__code?: string | undefined;
|
|
@@ -3443,6 +3527,9 @@ declare const clerkIntl: {
|
|
|
3443
3527
|
form_username_invalid_character__slug?: string | undefined;
|
|
3444
3528
|
form_param_format_invalid__slug?: string | undefined;
|
|
3445
3529
|
form_param_format_invalid__email_address__slug?: string | undefined;
|
|
3530
|
+
form_param_type_invalid__slug?: string | undefined;
|
|
3531
|
+
form_param_type_invalid__phone_number__slug?: string | undefined;
|
|
3532
|
+
form_param_type_invalid__email_address__slug?: string | undefined;
|
|
3446
3533
|
form_password_length_too_short__slug?: string | undefined;
|
|
3447
3534
|
form_param_nil__slug?: string | undefined;
|
|
3448
3535
|
form_code_incorrect__slug?: string | undefined;
|
|
@@ -3484,6 +3571,9 @@ declare const clerkIntl: {
|
|
|
3484
3571
|
form_username_invalid_character__username?: string | undefined;
|
|
3485
3572
|
form_param_format_invalid__username?: string | undefined;
|
|
3486
3573
|
form_param_format_invalid__email_address__username?: string | undefined;
|
|
3574
|
+
form_param_type_invalid__username?: string | undefined;
|
|
3575
|
+
form_param_type_invalid__phone_number__username?: string | undefined;
|
|
3576
|
+
form_param_type_invalid__email_address__username?: string | undefined;
|
|
3487
3577
|
form_password_length_too_short__username?: string | undefined;
|
|
3488
3578
|
form_param_nil__username?: string | undefined;
|
|
3489
3579
|
form_code_incorrect__username?: string | undefined;
|
|
@@ -3524,6 +3614,9 @@ declare const clerkIntl: {
|
|
|
3524
3614
|
form_username_invalid_character__password?: string | undefined;
|
|
3525
3615
|
form_param_format_invalid__password?: string | undefined;
|
|
3526
3616
|
form_param_format_invalid__email_address__password?: string | undefined;
|
|
3617
|
+
form_param_type_invalid__password?: string | undefined;
|
|
3618
|
+
form_param_type_invalid__phone_number__password?: string | undefined;
|
|
3619
|
+
form_param_type_invalid__email_address__password?: string | undefined;
|
|
3527
3620
|
form_password_length_too_short__password?: string | undefined;
|
|
3528
3621
|
form_param_nil__password?: string | undefined;
|
|
3529
3622
|
form_code_incorrect__password?: string | undefined;
|
|
@@ -3565,6 +3658,9 @@ declare const clerkIntl: {
|
|
|
3565
3658
|
form_username_invalid_character__identifier?: string | undefined;
|
|
3566
3659
|
form_param_format_invalid__identifier?: string | undefined;
|
|
3567
3660
|
form_param_format_invalid__email_address__identifier?: string | undefined;
|
|
3661
|
+
form_param_type_invalid__identifier?: string | undefined;
|
|
3662
|
+
form_param_type_invalid__phone_number__identifier?: string | undefined;
|
|
3663
|
+
form_param_type_invalid__email_address__identifier?: string | undefined;
|
|
3568
3664
|
form_password_length_too_short__identifier?: string | undefined;
|
|
3569
3665
|
form_param_nil__identifier?: string | undefined;
|
|
3570
3666
|
form_code_incorrect__identifier?: string | undefined;
|
|
@@ -3606,6 +3702,9 @@ declare const clerkIntl: {
|
|
|
3606
3702
|
form_username_invalid_character__first_name?: string | undefined;
|
|
3607
3703
|
form_param_format_invalid__first_name?: string | undefined;
|
|
3608
3704
|
form_param_format_invalid__email_address__first_name?: string | undefined;
|
|
3705
|
+
form_param_type_invalid__first_name?: string | undefined;
|
|
3706
|
+
form_param_type_invalid__phone_number__first_name?: string | undefined;
|
|
3707
|
+
form_param_type_invalid__email_address__first_name?: string | undefined;
|
|
3609
3708
|
form_password_length_too_short__first_name?: string | undefined;
|
|
3610
3709
|
form_param_nil__first_name?: string | undefined;
|
|
3611
3710
|
form_code_incorrect__first_name?: string | undefined;
|
|
@@ -3647,6 +3746,9 @@ declare const clerkIntl: {
|
|
|
3647
3746
|
form_username_invalid_character__last_name?: string | undefined;
|
|
3648
3747
|
form_param_format_invalid__last_name?: string | undefined;
|
|
3649
3748
|
form_param_format_invalid__email_address__last_name?: string | undefined;
|
|
3749
|
+
form_param_type_invalid__last_name?: string | undefined;
|
|
3750
|
+
form_param_type_invalid__phone_number__last_name?: string | undefined;
|
|
3751
|
+
form_param_type_invalid__email_address__last_name?: string | undefined;
|
|
3650
3752
|
form_password_length_too_short__last_name?: string | undefined;
|
|
3651
3753
|
form_param_nil__last_name?: string | undefined;
|
|
3652
3754
|
form_code_incorrect__last_name?: string | undefined;
|
|
@@ -3687,6 +3789,8 @@ declare const clerkIntl: {
|
|
|
3687
3789
|
form_username_invalid_length__email_address?: string | undefined;
|
|
3688
3790
|
form_username_invalid_character__email_address?: string | undefined;
|
|
3689
3791
|
form_param_format_invalid__email_address__email_address?: string | undefined;
|
|
3792
|
+
form_param_type_invalid__phone_number__email_address?: string | undefined;
|
|
3793
|
+
form_param_type_invalid__email_address__email_address?: string | undefined;
|
|
3690
3794
|
form_password_length_too_short__email_address?: string | undefined;
|
|
3691
3795
|
form_param_nil__email_address?: string | undefined;
|
|
3692
3796
|
form_code_incorrect__email_address?: string | undefined;
|
|
@@ -3727,6 +3831,8 @@ declare const clerkIntl: {
|
|
|
3727
3831
|
form_username_invalid_character__phone_number?: string | undefined;
|
|
3728
3832
|
form_param_format_invalid__phone_number?: string | undefined;
|
|
3729
3833
|
form_param_format_invalid__email_address__phone_number?: string | undefined;
|
|
3834
|
+
form_param_type_invalid__phone_number__phone_number?: string | undefined;
|
|
3835
|
+
form_param_type_invalid__email_address__phone_number?: string | undefined;
|
|
3730
3836
|
form_password_length_too_short__phone_number?: string | undefined;
|
|
3731
3837
|
form_param_nil__phone_number?: string | undefined;
|
|
3732
3838
|
form_code_incorrect__phone_number?: string | undefined;
|
|
@@ -3767,6 +3873,9 @@ declare const clerkIntl: {
|
|
|
3767
3873
|
form_username_invalid_character__current_password?: string | undefined;
|
|
3768
3874
|
form_param_format_invalid__current_password?: string | undefined;
|
|
3769
3875
|
form_param_format_invalid__email_address__current_password?: string | undefined;
|
|
3876
|
+
form_param_type_invalid__current_password?: string | undefined;
|
|
3877
|
+
form_param_type_invalid__phone_number__current_password?: string | undefined;
|
|
3878
|
+
form_param_type_invalid__email_address__current_password?: string | undefined;
|
|
3770
3879
|
form_password_length_too_short__current_password?: string | undefined;
|
|
3771
3880
|
form_param_nil__current_password?: string | undefined;
|
|
3772
3881
|
form_code_incorrect__current_password?: string | undefined;
|
|
@@ -3808,6 +3917,9 @@ declare const clerkIntl: {
|
|
|
3808
3917
|
form_username_invalid_character__new_password?: string | undefined;
|
|
3809
3918
|
form_param_format_invalid__new_password?: string | undefined;
|
|
3810
3919
|
form_param_format_invalid__email_address__new_password?: string | undefined;
|
|
3920
|
+
form_param_type_invalid__new_password?: string | undefined;
|
|
3921
|
+
form_param_type_invalid__phone_number__new_password?: string | undefined;
|
|
3922
|
+
form_param_type_invalid__email_address__new_password?: string | undefined;
|
|
3811
3923
|
form_password_length_too_short__new_password?: string | undefined;
|
|
3812
3924
|
form_param_nil__new_password?: string | undefined;
|
|
3813
3925
|
form_code_incorrect__new_password?: string | undefined;
|
|
@@ -3849,6 +3961,9 @@ declare const clerkIntl: {
|
|
|
3849
3961
|
form_username_invalid_character__sign_out_of_other_sessions?: string | undefined;
|
|
3850
3962
|
form_param_format_invalid__sign_out_of_other_sessions?: string | undefined;
|
|
3851
3963
|
form_param_format_invalid__email_address__sign_out_of_other_sessions?: string | undefined;
|
|
3964
|
+
form_param_type_invalid__sign_out_of_other_sessions?: string | undefined;
|
|
3965
|
+
form_param_type_invalid__phone_number__sign_out_of_other_sessions?: string | undefined;
|
|
3966
|
+
form_param_type_invalid__email_address__sign_out_of_other_sessions?: string | undefined;
|
|
3852
3967
|
form_password_length_too_short__sign_out_of_other_sessions?: string | undefined;
|
|
3853
3968
|
form_param_nil__sign_out_of_other_sessions?: string | undefined;
|
|
3854
3969
|
form_code_incorrect__sign_out_of_other_sessions?: string | undefined;
|
|
@@ -3890,6 +4005,9 @@ declare const clerkIntl: {
|
|
|
3890
4005
|
form_username_invalid_character__passkey_name?: string | undefined;
|
|
3891
4006
|
form_param_format_invalid__passkey_name?: string | undefined;
|
|
3892
4007
|
form_param_format_invalid__email_address__passkey_name?: string | undefined;
|
|
4008
|
+
form_param_type_invalid__passkey_name?: string | undefined;
|
|
4009
|
+
form_param_type_invalid__phone_number__passkey_name?: string | undefined;
|
|
4010
|
+
form_param_type_invalid__email_address__passkey_name?: string | undefined;
|
|
3893
4011
|
form_password_length_too_short__passkey_name?: string | undefined;
|
|
3894
4012
|
form_param_nil__passkey_name?: string | undefined;
|
|
3895
4013
|
form_code_incorrect__passkey_name?: string | undefined;
|
|
@@ -3931,6 +4049,9 @@ declare const clerkIntl: {
|
|
|
3931
4049
|
form_username_invalid_character__confirm_password?: string | undefined;
|
|
3932
4050
|
form_param_format_invalid__confirm_password?: string | undefined;
|
|
3933
4051
|
form_param_format_invalid__email_address__confirm_password?: string | undefined;
|
|
4052
|
+
form_param_type_invalid__confirm_password?: string | undefined;
|
|
4053
|
+
form_param_type_invalid__phone_number__confirm_password?: string | undefined;
|
|
4054
|
+
form_param_type_invalid__email_address__confirm_password?: string | undefined;
|
|
3934
4055
|
form_password_length_too_short__confirm_password?: string | undefined;
|
|
3935
4056
|
form_param_nil__confirm_password?: string | undefined;
|
|
3936
4057
|
form_code_incorrect__confirm_password?: string | undefined;
|
|
@@ -3972,6 +4093,9 @@ declare const clerkIntl: {
|
|
|
3972
4093
|
form_username_invalid_character__delete_confirmation?: string | undefined;
|
|
3973
4094
|
form_param_format_invalid__delete_confirmation?: string | undefined;
|
|
3974
4095
|
form_param_format_invalid__email_address__delete_confirmation?: string | undefined;
|
|
4096
|
+
form_param_type_invalid__delete_confirmation?: string | undefined;
|
|
4097
|
+
form_param_type_invalid__phone_number__delete_confirmation?: string | undefined;
|
|
4098
|
+
form_param_type_invalid__email_address__delete_confirmation?: string | undefined;
|
|
3975
4099
|
form_password_length_too_short__delete_confirmation?: string | undefined;
|
|
3976
4100
|
form_param_nil__delete_confirmation?: string | undefined;
|
|
3977
4101
|
form_code_incorrect__delete_confirmation?: string | undefined;
|
|
@@ -4013,6 +4137,9 @@ declare const clerkIntl: {
|
|
|
4013
4137
|
form_username_invalid_character__delete_organization_confirmation?: string | undefined;
|
|
4014
4138
|
form_param_format_invalid__delete_organization_confirmation?: string | undefined;
|
|
4015
4139
|
form_param_format_invalid__email_address__delete_organization_confirmation?: string | undefined;
|
|
4140
|
+
form_param_type_invalid__delete_organization_confirmation?: string | undefined;
|
|
4141
|
+
form_param_type_invalid__phone_number__delete_organization_confirmation?: string | undefined;
|
|
4142
|
+
form_param_type_invalid__email_address__delete_organization_confirmation?: string | undefined;
|
|
4016
4143
|
form_password_length_too_short__delete_organization_confirmation?: string | undefined;
|
|
4017
4144
|
form_param_nil__delete_organization_confirmation?: string | undefined;
|
|
4018
4145
|
form_code_incorrect__delete_organization_confirmation?: string | undefined;
|
|
@@ -4054,6 +4181,9 @@ declare const clerkIntl: {
|
|
|
4054
4181
|
form_username_invalid_character__enrollment_mode?: string | undefined;
|
|
4055
4182
|
form_param_format_invalid__enrollment_mode?: string | undefined;
|
|
4056
4183
|
form_param_format_invalid__email_address__enrollment_mode?: string | undefined;
|
|
4184
|
+
form_param_type_invalid__enrollment_mode?: string | undefined;
|
|
4185
|
+
form_param_type_invalid__phone_number__enrollment_mode?: string | undefined;
|
|
4186
|
+
form_param_type_invalid__email_address__enrollment_mode?: string | undefined;
|
|
4057
4187
|
form_password_length_too_short__enrollment_mode?: string | undefined;
|
|
4058
4188
|
form_param_nil__enrollment_mode?: string | undefined;
|
|
4059
4189
|
form_code_incorrect__enrollment_mode?: string | undefined;
|
|
@@ -4095,6 +4225,9 @@ declare const clerkIntl: {
|
|
|
4095
4225
|
form_username_invalid_character__affiliation_email_address?: string | undefined;
|
|
4096
4226
|
form_param_format_invalid__affiliation_email_address?: string | undefined;
|
|
4097
4227
|
form_param_format_invalid__email_address__affiliation_email_address?: string | undefined;
|
|
4228
|
+
form_param_type_invalid__affiliation_email_address?: string | undefined;
|
|
4229
|
+
form_param_type_invalid__phone_number__affiliation_email_address?: string | undefined;
|
|
4230
|
+
form_param_type_invalid__email_address__affiliation_email_address?: string | undefined;
|
|
4098
4231
|
form_password_length_too_short__affiliation_email_address?: string | undefined;
|
|
4099
4232
|
form_param_nil__affiliation_email_address?: string | undefined;
|
|
4100
4233
|
form_code_incorrect__affiliation_email_address?: string | undefined;
|
|
@@ -4136,6 +4269,9 @@ declare const clerkIntl: {
|
|
|
4136
4269
|
form_username_invalid_character__delete_existing_invitations_suggestions?: string | undefined;
|
|
4137
4270
|
form_param_format_invalid__delete_existing_invitations_suggestions?: string | undefined;
|
|
4138
4271
|
form_param_format_invalid__email_address__delete_existing_invitations_suggestions?: string | undefined;
|
|
4272
|
+
form_param_type_invalid__delete_existing_invitations_suggestions?: string | undefined;
|
|
4273
|
+
form_param_type_invalid__phone_number__delete_existing_invitations_suggestions?: string | undefined;
|
|
4274
|
+
form_param_type_invalid__email_address__delete_existing_invitations_suggestions?: string | undefined;
|
|
4139
4275
|
form_password_length_too_short__delete_existing_invitations_suggestions?: string | undefined;
|
|
4140
4276
|
form_param_nil__delete_existing_invitations_suggestions?: string | undefined;
|
|
4141
4277
|
form_code_incorrect__delete_existing_invitations_suggestions?: string | undefined;
|
|
@@ -4177,6 +4313,9 @@ declare const clerkIntl: {
|
|
|
4177
4313
|
form_username_invalid_character__legal_accepted?: string | undefined;
|
|
4178
4314
|
form_param_format_invalid__legal_accepted?: string | undefined;
|
|
4179
4315
|
form_param_format_invalid__email_address__legal_accepted?: string | undefined;
|
|
4316
|
+
form_param_type_invalid__legal_accepted?: string | undefined;
|
|
4317
|
+
form_param_type_invalid__phone_number__legal_accepted?: string | undefined;
|
|
4318
|
+
form_param_type_invalid__email_address__legal_accepted?: string | undefined;
|
|
4180
4319
|
form_password_length_too_short__legal_accepted?: string | undefined;
|
|
4181
4320
|
form_param_nil__legal_accepted?: string | undefined;
|
|
4182
4321
|
form_code_incorrect__legal_accepted?: string | undefined;
|
|
@@ -4218,6 +4357,9 @@ declare const clerkIntl: {
|
|
|
4218
4357
|
form_username_invalid_character__api_key_description?: string | undefined;
|
|
4219
4358
|
form_param_format_invalid__api_key_description?: string | undefined;
|
|
4220
4359
|
form_param_format_invalid__email_address__api_key_description?: string | undefined;
|
|
4360
|
+
form_param_type_invalid__api_key_description?: string | undefined;
|
|
4361
|
+
form_param_type_invalid__phone_number__api_key_description?: string | undefined;
|
|
4362
|
+
form_param_type_invalid__email_address__api_key_description?: string | undefined;
|
|
4221
4363
|
form_password_length_too_short__api_key_description?: string | undefined;
|
|
4222
4364
|
form_param_nil__api_key_description?: string | undefined;
|
|
4223
4365
|
form_code_incorrect__api_key_description?: string | undefined;
|
|
@@ -4259,6 +4401,9 @@ declare const clerkIntl: {
|
|
|
4259
4401
|
form_username_invalid_character__api_key_expiration_date?: string | undefined;
|
|
4260
4402
|
form_param_format_invalid__api_key_expiration_date?: string | undefined;
|
|
4261
4403
|
form_param_format_invalid__email_address__api_key_expiration_date?: string | undefined;
|
|
4404
|
+
form_param_type_invalid__api_key_expiration_date?: string | undefined;
|
|
4405
|
+
form_param_type_invalid__phone_number__api_key_expiration_date?: string | undefined;
|
|
4406
|
+
form_param_type_invalid__email_address__api_key_expiration_date?: string | undefined;
|
|
4262
4407
|
form_password_length_too_short__api_key_expiration_date?: string | undefined;
|
|
4263
4408
|
form_param_nil__api_key_expiration_date?: string | undefined;
|
|
4264
4409
|
form_code_incorrect__api_key_expiration_date?: string | undefined;
|
|
@@ -4300,6 +4445,9 @@ declare const clerkIntl: {
|
|
|
4300
4445
|
form_username_invalid_character__api_key_revoke_confirmation?: string | undefined;
|
|
4301
4446
|
form_param_format_invalid__api_key_revoke_confirmation?: string | undefined;
|
|
4302
4447
|
form_param_format_invalid__email_address__api_key_revoke_confirmation?: string | undefined;
|
|
4448
|
+
form_param_type_invalid__api_key_revoke_confirmation?: string | undefined;
|
|
4449
|
+
form_param_type_invalid__phone_number__api_key_revoke_confirmation?: string | undefined;
|
|
4450
|
+
form_param_type_invalid__email_address__api_key_revoke_confirmation?: string | undefined;
|
|
4303
4451
|
form_password_length_too_short__api_key_revoke_confirmation?: string | undefined;
|
|
4304
4452
|
form_param_nil__api_key_revoke_confirmation?: string | undefined;
|
|
4305
4453
|
form_code_incorrect__api_key_revoke_confirmation?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@windrun-huaiin/third-ui",
|
|
3
|
-
"version": "5.13.
|
|
3
|
+
"version": "5.13.6",
|
|
4
4
|
"description": "Third-party integrated UI components for windrun-huaiin projects",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"mermaid": "^11.6.0",
|
|
55
55
|
"react-medium-image-zoom": "^5.2.14",
|
|
56
56
|
"zod": "^3.22.4",
|
|
57
|
-
"@windrun-huaiin/base-ui": "^6.0.
|
|
57
|
+
"@windrun-huaiin/base-ui": "^6.0.3"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
60
|
"react": "19.1.0",
|