@tellescope/react-components 1.185.2 → 1.186.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/lib/cjs/Forms/inputs.d.ts.map +1 -1
- package/lib/cjs/Forms/inputs.js +19 -1
- package/lib/cjs/Forms/inputs.js.map +1 -1
- package/lib/esm/Forms/forms.d.ts +3 -3
- package/lib/esm/Forms/hooks.d.ts +1 -0
- package/lib/esm/Forms/hooks.d.ts.map +1 -1
- package/lib/esm/Forms/inputs.d.ts +1 -1
- package/lib/esm/Forms/inputs.d.ts.map +1 -1
- package/lib/esm/Forms/inputs.js +19 -1
- package/lib/esm/Forms/inputs.js.map +1 -1
- package/lib/esm/controls.d.ts +2 -2
- package/lib/esm/inputs.d.ts +1 -1
- package/lib/esm/state.d.ts +36 -36
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +9 -9
- package/src/Forms/inputs.tsx +43 -20
package/lib/esm/state.d.ts
CHANGED
|
@@ -1168,19 +1168,22 @@ export declare const useDataSync____internal: () => {
|
|
|
1168
1168
|
setLoadTiming: (key: string, loadTimeInMS: number) => void;
|
|
1169
1169
|
setHandler: (key: string, handler: undefined | (() => void)) => void;
|
|
1170
1170
|
removeHandler: (key: string, handler: () => void) => void;
|
|
1171
|
-
getLoaded: <T extends string>(modelName: T) => ((import("@tellescope/types-models").
|
|
1171
|
+
getLoaded: <T extends string>(modelName: T) => ((import("@tellescope/types-models").FormField & {
|
|
1172
1172
|
id: string;
|
|
1173
1173
|
createdAt: Date;
|
|
1174
|
-
}) | (import("@tellescope/types-models").
|
|
1174
|
+
}) | (import("@tellescope/types-models").Form & {
|
|
1175
1175
|
id: string;
|
|
1176
1176
|
createdAt: Date;
|
|
1177
1177
|
}) | (import("@tellescope/types-models").Enduser & {
|
|
1178
1178
|
id: string;
|
|
1179
1179
|
createdAt: Date;
|
|
1180
|
+
}) | (import("@tellescope/types-models").DatabaseRecord & {
|
|
1181
|
+
id: string;
|
|
1182
|
+
createdAt: Date;
|
|
1180
1183
|
}) | (import("@tellescope/types-models").User & {
|
|
1181
1184
|
id: string;
|
|
1182
1185
|
createdAt: Date;
|
|
1183
|
-
}) | (import("@tellescope/types-models").
|
|
1186
|
+
}) | (import("@tellescope/types-models").Product & {
|
|
1184
1187
|
id: string;
|
|
1185
1188
|
createdAt: Date;
|
|
1186
1189
|
}) | (import("@tellescope/types-models").AgentRecord & {
|
|
@@ -1252,6 +1255,9 @@ export declare const useDataSync____internal: () => {
|
|
|
1252
1255
|
}) | (import("@tellescope/types-models").MessageTemplate & {
|
|
1253
1256
|
id: string;
|
|
1254
1257
|
createdAt: Date;
|
|
1258
|
+
}) | (import("@tellescope/types-models").FormResponse & {
|
|
1259
|
+
id: string;
|
|
1260
|
+
createdAt: Date;
|
|
1255
1261
|
}) | (import("@tellescope/types-models").Journey & {
|
|
1256
1262
|
id: string;
|
|
1257
1263
|
createdAt: Date;
|
|
@@ -1294,9 +1300,6 @@ export declare const useDataSync____internal: () => {
|
|
|
1294
1300
|
}) | (import("@tellescope/types-models").Database & {
|
|
1295
1301
|
id: string;
|
|
1296
1302
|
createdAt: Date;
|
|
1297
|
-
}) | (import("@tellescope/types-models").DatabaseRecord & {
|
|
1298
|
-
id: string;
|
|
1299
|
-
createdAt: Date;
|
|
1300
1303
|
}) | (import("@tellescope/types-models").PortalCustomization & {
|
|
1301
1304
|
id: string;
|
|
1302
1305
|
createdAt: Date;
|
|
@@ -1315,9 +1318,6 @@ export declare const useDataSync____internal: () => {
|
|
|
1315
1318
|
}) | (import("@tellescope/types-models").AppointmentLocation & {
|
|
1316
1319
|
id: string;
|
|
1317
1320
|
createdAt: Date;
|
|
1318
|
-
}) | (import("@tellescope/types-models").Product & {
|
|
1319
|
-
id: string;
|
|
1320
|
-
createdAt: Date;
|
|
1321
1321
|
}) | (import("@tellescope/types-models").Purchase & {
|
|
1322
1322
|
id: string;
|
|
1323
1323
|
createdAt: Date;
|
|
@@ -1428,19 +1428,22 @@ export declare const useDataSync____internal: () => {
|
|
|
1428
1428
|
createdAt: Date;
|
|
1429
1429
|
}))[];
|
|
1430
1430
|
getDeleted: <T_1 extends string>(modelName: T_1) => string[];
|
|
1431
|
-
popLoaded: <T_2 extends string>(modelName: T_2) => ((import("@tellescope/types-models").
|
|
1431
|
+
popLoaded: <T_2 extends string>(modelName: T_2) => ((import("@tellescope/types-models").FormField & {
|
|
1432
1432
|
id: string;
|
|
1433
1433
|
createdAt: Date;
|
|
1434
|
-
}) | (import("@tellescope/types-models").
|
|
1434
|
+
}) | (import("@tellescope/types-models").Form & {
|
|
1435
1435
|
id: string;
|
|
1436
1436
|
createdAt: Date;
|
|
1437
1437
|
}) | (import("@tellescope/types-models").Enduser & {
|
|
1438
1438
|
id: string;
|
|
1439
1439
|
createdAt: Date;
|
|
1440
|
+
}) | (import("@tellescope/types-models").DatabaseRecord & {
|
|
1441
|
+
id: string;
|
|
1442
|
+
createdAt: Date;
|
|
1440
1443
|
}) | (import("@tellescope/types-models").User & {
|
|
1441
1444
|
id: string;
|
|
1442
1445
|
createdAt: Date;
|
|
1443
|
-
}) | (import("@tellescope/types-models").
|
|
1446
|
+
}) | (import("@tellescope/types-models").Product & {
|
|
1444
1447
|
id: string;
|
|
1445
1448
|
createdAt: Date;
|
|
1446
1449
|
}) | (import("@tellescope/types-models").AgentRecord & {
|
|
@@ -1512,6 +1515,9 @@ export declare const useDataSync____internal: () => {
|
|
|
1512
1515
|
}) | (import("@tellescope/types-models").MessageTemplate & {
|
|
1513
1516
|
id: string;
|
|
1514
1517
|
createdAt: Date;
|
|
1518
|
+
}) | (import("@tellescope/types-models").FormResponse & {
|
|
1519
|
+
id: string;
|
|
1520
|
+
createdAt: Date;
|
|
1515
1521
|
}) | (import("@tellescope/types-models").Journey & {
|
|
1516
1522
|
id: string;
|
|
1517
1523
|
createdAt: Date;
|
|
@@ -1554,9 +1560,6 @@ export declare const useDataSync____internal: () => {
|
|
|
1554
1560
|
}) | (import("@tellescope/types-models").Database & {
|
|
1555
1561
|
id: string;
|
|
1556
1562
|
createdAt: Date;
|
|
1557
|
-
}) | (import("@tellescope/types-models").DatabaseRecord & {
|
|
1558
|
-
id: string;
|
|
1559
|
-
createdAt: Date;
|
|
1560
1563
|
}) | (import("@tellescope/types-models").PortalCustomization & {
|
|
1561
1564
|
id: string;
|
|
1562
1565
|
createdAt: Date;
|
|
@@ -1575,9 +1578,6 @@ export declare const useDataSync____internal: () => {
|
|
|
1575
1578
|
}) | (import("@tellescope/types-models").AppointmentLocation & {
|
|
1576
1579
|
id: string;
|
|
1577
1580
|
createdAt: Date;
|
|
1578
|
-
}) | (import("@tellescope/types-models").Product & {
|
|
1579
|
-
id: string;
|
|
1580
|
-
createdAt: Date;
|
|
1581
1581
|
}) | (import("@tellescope/types-models").Purchase & {
|
|
1582
1582
|
id: string;
|
|
1583
1583
|
createdAt: Date;
|
|
@@ -1696,19 +1696,22 @@ export declare const useSyncContext: () => {
|
|
|
1696
1696
|
setLoadTiming: (key: string, loadTimeInMS: number) => void;
|
|
1697
1697
|
setHandler: (key: string, handler: undefined | (() => void)) => void;
|
|
1698
1698
|
removeHandler: (key: string, handler: () => void) => void;
|
|
1699
|
-
getLoaded: <T extends string>(modelName: T) => ((import("@tellescope/types-models").
|
|
1699
|
+
getLoaded: <T extends string>(modelName: T) => ((import("@tellescope/types-models").FormField & {
|
|
1700
1700
|
id: string;
|
|
1701
1701
|
createdAt: Date;
|
|
1702
|
-
}) | (import("@tellescope/types-models").
|
|
1702
|
+
}) | (import("@tellescope/types-models").Form & {
|
|
1703
1703
|
id: string;
|
|
1704
1704
|
createdAt: Date;
|
|
1705
1705
|
}) | (import("@tellescope/types-models").Enduser & {
|
|
1706
1706
|
id: string;
|
|
1707
1707
|
createdAt: Date;
|
|
1708
|
+
}) | (import("@tellescope/types-models").DatabaseRecord & {
|
|
1709
|
+
id: string;
|
|
1710
|
+
createdAt: Date;
|
|
1708
1711
|
}) | (import("@tellescope/types-models").User & {
|
|
1709
1712
|
id: string;
|
|
1710
1713
|
createdAt: Date;
|
|
1711
|
-
}) | (import("@tellescope/types-models").
|
|
1714
|
+
}) | (import("@tellescope/types-models").Product & {
|
|
1712
1715
|
id: string;
|
|
1713
1716
|
createdAt: Date;
|
|
1714
1717
|
}) | (import("@tellescope/types-models").AgentRecord & {
|
|
@@ -1780,6 +1783,9 @@ export declare const useSyncContext: () => {
|
|
|
1780
1783
|
}) | (import("@tellescope/types-models").MessageTemplate & {
|
|
1781
1784
|
id: string;
|
|
1782
1785
|
createdAt: Date;
|
|
1786
|
+
}) | (import("@tellescope/types-models").FormResponse & {
|
|
1787
|
+
id: string;
|
|
1788
|
+
createdAt: Date;
|
|
1783
1789
|
}) | (import("@tellescope/types-models").Journey & {
|
|
1784
1790
|
id: string;
|
|
1785
1791
|
createdAt: Date;
|
|
@@ -1822,9 +1828,6 @@ export declare const useSyncContext: () => {
|
|
|
1822
1828
|
}) | (import("@tellescope/types-models").Database & {
|
|
1823
1829
|
id: string;
|
|
1824
1830
|
createdAt: Date;
|
|
1825
|
-
}) | (import("@tellescope/types-models").DatabaseRecord & {
|
|
1826
|
-
id: string;
|
|
1827
|
-
createdAt: Date;
|
|
1828
1831
|
}) | (import("@tellescope/types-models").PortalCustomization & {
|
|
1829
1832
|
id: string;
|
|
1830
1833
|
createdAt: Date;
|
|
@@ -1843,9 +1846,6 @@ export declare const useSyncContext: () => {
|
|
|
1843
1846
|
}) | (import("@tellescope/types-models").AppointmentLocation & {
|
|
1844
1847
|
id: string;
|
|
1845
1848
|
createdAt: Date;
|
|
1846
|
-
}) | (import("@tellescope/types-models").Product & {
|
|
1847
|
-
id: string;
|
|
1848
|
-
createdAt: Date;
|
|
1849
1849
|
}) | (import("@tellescope/types-models").Purchase & {
|
|
1850
1850
|
id: string;
|
|
1851
1851
|
createdAt: Date;
|
|
@@ -1956,19 +1956,22 @@ export declare const useSyncContext: () => {
|
|
|
1956
1956
|
createdAt: Date;
|
|
1957
1957
|
}))[];
|
|
1958
1958
|
getDeleted: <T_1 extends string>(modelName: T_1) => string[];
|
|
1959
|
-
popLoaded: <T_2 extends string>(modelName: T_2) => ((import("@tellescope/types-models").
|
|
1959
|
+
popLoaded: <T_2 extends string>(modelName: T_2) => ((import("@tellescope/types-models").FormField & {
|
|
1960
1960
|
id: string;
|
|
1961
1961
|
createdAt: Date;
|
|
1962
|
-
}) | (import("@tellescope/types-models").
|
|
1962
|
+
}) | (import("@tellescope/types-models").Form & {
|
|
1963
1963
|
id: string;
|
|
1964
1964
|
createdAt: Date;
|
|
1965
1965
|
}) | (import("@tellescope/types-models").Enduser & {
|
|
1966
1966
|
id: string;
|
|
1967
1967
|
createdAt: Date;
|
|
1968
|
+
}) | (import("@tellescope/types-models").DatabaseRecord & {
|
|
1969
|
+
id: string;
|
|
1970
|
+
createdAt: Date;
|
|
1968
1971
|
}) | (import("@tellescope/types-models").User & {
|
|
1969
1972
|
id: string;
|
|
1970
1973
|
createdAt: Date;
|
|
1971
|
-
}) | (import("@tellescope/types-models").
|
|
1974
|
+
}) | (import("@tellescope/types-models").Product & {
|
|
1972
1975
|
id: string;
|
|
1973
1976
|
createdAt: Date;
|
|
1974
1977
|
}) | (import("@tellescope/types-models").AgentRecord & {
|
|
@@ -2040,6 +2043,9 @@ export declare const useSyncContext: () => {
|
|
|
2040
2043
|
}) | (import("@tellescope/types-models").MessageTemplate & {
|
|
2041
2044
|
id: string;
|
|
2042
2045
|
createdAt: Date;
|
|
2046
|
+
}) | (import("@tellescope/types-models").FormResponse & {
|
|
2047
|
+
id: string;
|
|
2048
|
+
createdAt: Date;
|
|
2043
2049
|
}) | (import("@tellescope/types-models").Journey & {
|
|
2044
2050
|
id: string;
|
|
2045
2051
|
createdAt: Date;
|
|
@@ -2082,9 +2088,6 @@ export declare const useSyncContext: () => {
|
|
|
2082
2088
|
}) | (import("@tellescope/types-models").Database & {
|
|
2083
2089
|
id: string;
|
|
2084
2090
|
createdAt: Date;
|
|
2085
|
-
}) | (import("@tellescope/types-models").DatabaseRecord & {
|
|
2086
|
-
id: string;
|
|
2087
|
-
createdAt: Date;
|
|
2088
2091
|
}) | (import("@tellescope/types-models").PortalCustomization & {
|
|
2089
2092
|
id: string;
|
|
2090
2093
|
createdAt: Date;
|
|
@@ -2103,9 +2106,6 @@ export declare const useSyncContext: () => {
|
|
|
2103
2106
|
}) | (import("@tellescope/types-models").AppointmentLocation & {
|
|
2104
2107
|
id: string;
|
|
2105
2108
|
createdAt: Date;
|
|
2106
|
-
}) | (import("@tellescope/types-models").Product & {
|
|
2107
|
-
id: string;
|
|
2108
|
-
createdAt: Date;
|
|
2109
2109
|
}) | (import("@tellescope/types-models").Purchase & {
|
|
2110
2110
|
id: string;
|
|
2111
2111
|
createdAt: Date;
|