@tellescope/react-components 1.160.0 → 1.160.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/lib/cjs/Forms/forms.d.ts +2 -2
- package/lib/cjs/Forms/forms.d.ts.map +1 -1
- package/lib/cjs/Forms/forms.js +4 -4
- package/lib/cjs/Forms/forms.js.map +1 -1
- package/lib/cjs/Forms/inputs.d.ts +1 -1
- package/lib/cjs/Forms/inputs.d.ts.map +1 -1
- package/lib/cjs/Forms/inputs.js +3 -2
- package/lib/cjs/Forms/inputs.js.map +1 -1
- package/lib/cjs/Forms/types.d.ts +1 -0
- package/lib/cjs/Forms/types.d.ts.map +1 -1
- package/lib/esm/CMS/components.d.ts +0 -1
- package/lib/esm/CMS/components.d.ts.map +1 -1
- package/lib/esm/Forms/form_responses.d.ts +0 -1
- package/lib/esm/Forms/form_responses.d.ts.map +1 -1
- package/lib/esm/Forms/forms.d.ts +4 -4
- package/lib/esm/Forms/forms.d.ts.map +1 -1
- package/lib/esm/Forms/forms.js +4 -4
- package/lib/esm/Forms/forms.js.map +1 -1
- package/lib/esm/Forms/hooks.d.ts +0 -1
- package/lib/esm/Forms/hooks.d.ts.map +1 -1
- package/lib/esm/Forms/inputs.d.ts +2 -2
- package/lib/esm/Forms/inputs.d.ts.map +1 -1
- package/lib/esm/Forms/inputs.js +3 -2
- package/lib/esm/Forms/inputs.js.map +1 -1
- package/lib/esm/Forms/inputs.native.d.ts +0 -1
- package/lib/esm/Forms/inputs.native.d.ts.map +1 -1
- package/lib/esm/Forms/types.d.ts +1 -0
- package/lib/esm/Forms/types.d.ts.map +1 -1
- package/lib/esm/controls.d.ts +2 -2
- package/lib/esm/inputs.d.ts +1 -1
- package/lib/esm/inputs.native.d.ts +0 -1
- package/lib/esm/inputs.native.d.ts.map +1 -1
- package/lib/esm/layout.d.ts +1 -1
- package/lib/esm/state.d.ts +52 -52
- package/lib/esm/theme.native.d.ts +0 -1
- package/lib/esm/theme.native.d.ts.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +9 -9
- package/src/Forms/forms.tsx +5 -4
- package/src/Forms/inputs.tsx +3 -2
- package/src/Forms/types.ts +1 -0
package/lib/esm/layout.d.ts
CHANGED
|
@@ -51,7 +51,7 @@ export interface Flex_T {
|
|
|
51
51
|
}
|
|
52
52
|
interface Flex_Web extends Flex_T, Styled, ClickableWeb {
|
|
53
53
|
}
|
|
54
|
-
export declare const resolve_direction_for_props: (row?: boolean, col?: boolean) => "
|
|
54
|
+
export declare const resolve_direction_for_props: (row?: boolean, col?: boolean) => "column" | "row";
|
|
55
55
|
export declare const compute_flex_direction_with_props: <T extends string>(direction: T, reverse?: boolean) => T | `${T}-reverse`;
|
|
56
56
|
export interface WithHoverColors {
|
|
57
57
|
hoveredColor?: CSSProperties['backgroundColor'];
|
package/lib/esm/state.d.ts
CHANGED
|
@@ -1118,24 +1118,15 @@ export declare const lastActiveForSync: {
|
|
|
1118
1118
|
export declare const useDataSync____internal: () => {
|
|
1119
1119
|
setLoadTiming: (key: string, loadTimeInMS: number) => void;
|
|
1120
1120
|
setHandler: (key: string, handler: undefined | (() => void)) => void;
|
|
1121
|
-
getLoaded: <T extends string>(modelName: T) => ((import("@tellescope/types-models").
|
|
1122
|
-
id: string;
|
|
1123
|
-
createdAt: Date;
|
|
1124
|
-
}) | (import("@tellescope/types-models").Form & {
|
|
1121
|
+
getLoaded: <T extends string>(modelName: T) => ((import("@tellescope/types-models").File & {
|
|
1125
1122
|
id: string;
|
|
1126
1123
|
createdAt: Date;
|
|
1127
1124
|
}) | (import("@tellescope/types-models").Enduser & {
|
|
1128
1125
|
id: string;
|
|
1129
1126
|
createdAt: Date;
|
|
1130
|
-
}) | (import("@tellescope/types-models").DatabaseRecord & {
|
|
1131
|
-
id: string;
|
|
1132
|
-
createdAt: Date;
|
|
1133
1127
|
}) | (import("@tellescope/types-models").User & {
|
|
1134
1128
|
id: string;
|
|
1135
1129
|
createdAt: Date;
|
|
1136
|
-
}) | (import("@tellescope/types-models").Product & {
|
|
1137
|
-
id: string;
|
|
1138
|
-
createdAt: Date;
|
|
1139
1130
|
}) | (import("@tellescope/types-models").IntegrationLog & {
|
|
1140
1131
|
id: string;
|
|
1141
1132
|
createdAt: Date;
|
|
@@ -1190,15 +1181,18 @@ export declare const useDataSync____internal: () => {
|
|
|
1190
1181
|
}) | (import("@tellescope/types-models").Meeting & {
|
|
1191
1182
|
id: string;
|
|
1192
1183
|
createdAt: Date;
|
|
1193
|
-
}) | (import("@tellescope/types-models").File & {
|
|
1194
|
-
id: string;
|
|
1195
|
-
createdAt: Date;
|
|
1196
1184
|
}) | (import("@tellescope/types-models").Note & {
|
|
1197
1185
|
id: string;
|
|
1198
1186
|
createdAt: Date;
|
|
1199
1187
|
}) | (import("@tellescope/types-models").MessageTemplate & {
|
|
1200
1188
|
id: string;
|
|
1201
1189
|
createdAt: Date;
|
|
1190
|
+
}) | (import("@tellescope/types-models").Form & {
|
|
1191
|
+
id: string;
|
|
1192
|
+
createdAt: Date;
|
|
1193
|
+
}) | (import("@tellescope/types-models").FormField & {
|
|
1194
|
+
id: string;
|
|
1195
|
+
createdAt: Date;
|
|
1202
1196
|
}) | (import("@tellescope/types-models").FormResponse & {
|
|
1203
1197
|
id: string;
|
|
1204
1198
|
createdAt: Date;
|
|
@@ -1244,6 +1238,9 @@ export declare const useDataSync____internal: () => {
|
|
|
1244
1238
|
}) | (import("@tellescope/types-models").Database & {
|
|
1245
1239
|
id: string;
|
|
1246
1240
|
createdAt: Date;
|
|
1241
|
+
}) | (import("@tellescope/types-models").DatabaseRecord & {
|
|
1242
|
+
id: string;
|
|
1243
|
+
createdAt: Date;
|
|
1247
1244
|
}) | (import("@tellescope/types-models").PortalCustomization & {
|
|
1248
1245
|
id: string;
|
|
1249
1246
|
createdAt: Date;
|
|
@@ -1262,6 +1259,9 @@ export declare const useDataSync____internal: () => {
|
|
|
1262
1259
|
}) | (import("@tellescope/types-models").AppointmentLocation & {
|
|
1263
1260
|
id: string;
|
|
1264
1261
|
createdAt: Date;
|
|
1262
|
+
}) | (import("@tellescope/types-models").Product & {
|
|
1263
|
+
id: string;
|
|
1264
|
+
createdAt: Date;
|
|
1265
1265
|
}) | (import("@tellescope/types-models").Purchase & {
|
|
1266
1266
|
id: string;
|
|
1267
1267
|
createdAt: Date;
|
|
@@ -1369,24 +1369,15 @@ export declare const useDataSync____internal: () => {
|
|
|
1369
1369
|
createdAt: Date;
|
|
1370
1370
|
}))[];
|
|
1371
1371
|
getDeleted: <T_1 extends string>(modelName: T_1) => string[];
|
|
1372
|
-
popLoaded: <T_2 extends string>(modelName: T_2) => ((import("@tellescope/types-models").
|
|
1373
|
-
id: string;
|
|
1374
|
-
createdAt: Date;
|
|
1375
|
-
}) | (import("@tellescope/types-models").Form & {
|
|
1372
|
+
popLoaded: <T_2 extends string>(modelName: T_2) => ((import("@tellescope/types-models").File & {
|
|
1376
1373
|
id: string;
|
|
1377
1374
|
createdAt: Date;
|
|
1378
1375
|
}) | (import("@tellescope/types-models").Enduser & {
|
|
1379
1376
|
id: string;
|
|
1380
1377
|
createdAt: Date;
|
|
1381
|
-
}) | (import("@tellescope/types-models").DatabaseRecord & {
|
|
1382
|
-
id: string;
|
|
1383
|
-
createdAt: Date;
|
|
1384
1378
|
}) | (import("@tellescope/types-models").User & {
|
|
1385
1379
|
id: string;
|
|
1386
1380
|
createdAt: Date;
|
|
1387
|
-
}) | (import("@tellescope/types-models").Product & {
|
|
1388
|
-
id: string;
|
|
1389
|
-
createdAt: Date;
|
|
1390
1381
|
}) | (import("@tellescope/types-models").IntegrationLog & {
|
|
1391
1382
|
id: string;
|
|
1392
1383
|
createdAt: Date;
|
|
@@ -1441,15 +1432,18 @@ export declare const useDataSync____internal: () => {
|
|
|
1441
1432
|
}) | (import("@tellescope/types-models").Meeting & {
|
|
1442
1433
|
id: string;
|
|
1443
1434
|
createdAt: Date;
|
|
1444
|
-
}) | (import("@tellescope/types-models").File & {
|
|
1445
|
-
id: string;
|
|
1446
|
-
createdAt: Date;
|
|
1447
1435
|
}) | (import("@tellescope/types-models").Note & {
|
|
1448
1436
|
id: string;
|
|
1449
1437
|
createdAt: Date;
|
|
1450
1438
|
}) | (import("@tellescope/types-models").MessageTemplate & {
|
|
1451
1439
|
id: string;
|
|
1452
1440
|
createdAt: Date;
|
|
1441
|
+
}) | (import("@tellescope/types-models").Form & {
|
|
1442
|
+
id: string;
|
|
1443
|
+
createdAt: Date;
|
|
1444
|
+
}) | (import("@tellescope/types-models").FormField & {
|
|
1445
|
+
id: string;
|
|
1446
|
+
createdAt: Date;
|
|
1453
1447
|
}) | (import("@tellescope/types-models").FormResponse & {
|
|
1454
1448
|
id: string;
|
|
1455
1449
|
createdAt: Date;
|
|
@@ -1495,6 +1489,9 @@ export declare const useDataSync____internal: () => {
|
|
|
1495
1489
|
}) | (import("@tellescope/types-models").Database & {
|
|
1496
1490
|
id: string;
|
|
1497
1491
|
createdAt: Date;
|
|
1492
|
+
}) | (import("@tellescope/types-models").DatabaseRecord & {
|
|
1493
|
+
id: string;
|
|
1494
|
+
createdAt: Date;
|
|
1498
1495
|
}) | (import("@tellescope/types-models").PortalCustomization & {
|
|
1499
1496
|
id: string;
|
|
1500
1497
|
createdAt: Date;
|
|
@@ -1513,6 +1510,9 @@ export declare const useDataSync____internal: () => {
|
|
|
1513
1510
|
}) | (import("@tellescope/types-models").AppointmentLocation & {
|
|
1514
1511
|
id: string;
|
|
1515
1512
|
createdAt: Date;
|
|
1513
|
+
}) | (import("@tellescope/types-models").Product & {
|
|
1514
|
+
id: string;
|
|
1515
|
+
createdAt: Date;
|
|
1516
1516
|
}) | (import("@tellescope/types-models").Purchase & {
|
|
1517
1517
|
id: string;
|
|
1518
1518
|
createdAt: Date;
|
|
@@ -1627,24 +1627,15 @@ export declare const WithDataSync: ({ children }: {
|
|
|
1627
1627
|
export declare const useSyncContext: () => {
|
|
1628
1628
|
setLoadTiming: (key: string, loadTimeInMS: number) => void;
|
|
1629
1629
|
setHandler: (key: string, handler: undefined | (() => void)) => void;
|
|
1630
|
-
getLoaded: <T extends string>(modelName: T) => ((import("@tellescope/types-models").
|
|
1631
|
-
id: string;
|
|
1632
|
-
createdAt: Date;
|
|
1633
|
-
}) | (import("@tellescope/types-models").Form & {
|
|
1630
|
+
getLoaded: <T extends string>(modelName: T) => ((import("@tellescope/types-models").File & {
|
|
1634
1631
|
id: string;
|
|
1635
1632
|
createdAt: Date;
|
|
1636
1633
|
}) | (import("@tellescope/types-models").Enduser & {
|
|
1637
1634
|
id: string;
|
|
1638
1635
|
createdAt: Date;
|
|
1639
|
-
}) | (import("@tellescope/types-models").DatabaseRecord & {
|
|
1640
|
-
id: string;
|
|
1641
|
-
createdAt: Date;
|
|
1642
1636
|
}) | (import("@tellescope/types-models").User & {
|
|
1643
1637
|
id: string;
|
|
1644
1638
|
createdAt: Date;
|
|
1645
|
-
}) | (import("@tellescope/types-models").Product & {
|
|
1646
|
-
id: string;
|
|
1647
|
-
createdAt: Date;
|
|
1648
1639
|
}) | (import("@tellescope/types-models").IntegrationLog & {
|
|
1649
1640
|
id: string;
|
|
1650
1641
|
createdAt: Date;
|
|
@@ -1699,15 +1690,18 @@ export declare const useSyncContext: () => {
|
|
|
1699
1690
|
}) | (import("@tellescope/types-models").Meeting & {
|
|
1700
1691
|
id: string;
|
|
1701
1692
|
createdAt: Date;
|
|
1702
|
-
}) | (import("@tellescope/types-models").File & {
|
|
1703
|
-
id: string;
|
|
1704
|
-
createdAt: Date;
|
|
1705
1693
|
}) | (import("@tellescope/types-models").Note & {
|
|
1706
1694
|
id: string;
|
|
1707
1695
|
createdAt: Date;
|
|
1708
1696
|
}) | (import("@tellescope/types-models").MessageTemplate & {
|
|
1709
1697
|
id: string;
|
|
1710
1698
|
createdAt: Date;
|
|
1699
|
+
}) | (import("@tellescope/types-models").Form & {
|
|
1700
|
+
id: string;
|
|
1701
|
+
createdAt: Date;
|
|
1702
|
+
}) | (import("@tellescope/types-models").FormField & {
|
|
1703
|
+
id: string;
|
|
1704
|
+
createdAt: Date;
|
|
1711
1705
|
}) | (import("@tellescope/types-models").FormResponse & {
|
|
1712
1706
|
id: string;
|
|
1713
1707
|
createdAt: Date;
|
|
@@ -1753,6 +1747,9 @@ export declare const useSyncContext: () => {
|
|
|
1753
1747
|
}) | (import("@tellescope/types-models").Database & {
|
|
1754
1748
|
id: string;
|
|
1755
1749
|
createdAt: Date;
|
|
1750
|
+
}) | (import("@tellescope/types-models").DatabaseRecord & {
|
|
1751
|
+
id: string;
|
|
1752
|
+
createdAt: Date;
|
|
1756
1753
|
}) | (import("@tellescope/types-models").PortalCustomization & {
|
|
1757
1754
|
id: string;
|
|
1758
1755
|
createdAt: Date;
|
|
@@ -1771,6 +1768,9 @@ export declare const useSyncContext: () => {
|
|
|
1771
1768
|
}) | (import("@tellescope/types-models").AppointmentLocation & {
|
|
1772
1769
|
id: string;
|
|
1773
1770
|
createdAt: Date;
|
|
1771
|
+
}) | (import("@tellescope/types-models").Product & {
|
|
1772
|
+
id: string;
|
|
1773
|
+
createdAt: Date;
|
|
1774
1774
|
}) | (import("@tellescope/types-models").Purchase & {
|
|
1775
1775
|
id: string;
|
|
1776
1776
|
createdAt: Date;
|
|
@@ -1878,24 +1878,15 @@ export declare const useSyncContext: () => {
|
|
|
1878
1878
|
createdAt: Date;
|
|
1879
1879
|
}))[];
|
|
1880
1880
|
getDeleted: <T_1 extends string>(modelName: T_1) => string[];
|
|
1881
|
-
popLoaded: <T_2 extends string>(modelName: T_2) => ((import("@tellescope/types-models").
|
|
1882
|
-
id: string;
|
|
1883
|
-
createdAt: Date;
|
|
1884
|
-
}) | (import("@tellescope/types-models").Form & {
|
|
1881
|
+
popLoaded: <T_2 extends string>(modelName: T_2) => ((import("@tellescope/types-models").File & {
|
|
1885
1882
|
id: string;
|
|
1886
1883
|
createdAt: Date;
|
|
1887
1884
|
}) | (import("@tellescope/types-models").Enduser & {
|
|
1888
1885
|
id: string;
|
|
1889
1886
|
createdAt: Date;
|
|
1890
|
-
}) | (import("@tellescope/types-models").DatabaseRecord & {
|
|
1891
|
-
id: string;
|
|
1892
|
-
createdAt: Date;
|
|
1893
1887
|
}) | (import("@tellescope/types-models").User & {
|
|
1894
1888
|
id: string;
|
|
1895
1889
|
createdAt: Date;
|
|
1896
|
-
}) | (import("@tellescope/types-models").Product & {
|
|
1897
|
-
id: string;
|
|
1898
|
-
createdAt: Date;
|
|
1899
1890
|
}) | (import("@tellescope/types-models").IntegrationLog & {
|
|
1900
1891
|
id: string;
|
|
1901
1892
|
createdAt: Date;
|
|
@@ -1950,15 +1941,18 @@ export declare const useSyncContext: () => {
|
|
|
1950
1941
|
}) | (import("@tellescope/types-models").Meeting & {
|
|
1951
1942
|
id: string;
|
|
1952
1943
|
createdAt: Date;
|
|
1953
|
-
}) | (import("@tellescope/types-models").File & {
|
|
1954
|
-
id: string;
|
|
1955
|
-
createdAt: Date;
|
|
1956
1944
|
}) | (import("@tellescope/types-models").Note & {
|
|
1957
1945
|
id: string;
|
|
1958
1946
|
createdAt: Date;
|
|
1959
1947
|
}) | (import("@tellescope/types-models").MessageTemplate & {
|
|
1960
1948
|
id: string;
|
|
1961
1949
|
createdAt: Date;
|
|
1950
|
+
}) | (import("@tellescope/types-models").Form & {
|
|
1951
|
+
id: string;
|
|
1952
|
+
createdAt: Date;
|
|
1953
|
+
}) | (import("@tellescope/types-models").FormField & {
|
|
1954
|
+
id: string;
|
|
1955
|
+
createdAt: Date;
|
|
1962
1956
|
}) | (import("@tellescope/types-models").FormResponse & {
|
|
1963
1957
|
id: string;
|
|
1964
1958
|
createdAt: Date;
|
|
@@ -2004,6 +1998,9 @@ export declare const useSyncContext: () => {
|
|
|
2004
1998
|
}) | (import("@tellescope/types-models").Database & {
|
|
2005
1999
|
id: string;
|
|
2006
2000
|
createdAt: Date;
|
|
2001
|
+
}) | (import("@tellescope/types-models").DatabaseRecord & {
|
|
2002
|
+
id: string;
|
|
2003
|
+
createdAt: Date;
|
|
2007
2004
|
}) | (import("@tellescope/types-models").PortalCustomization & {
|
|
2008
2005
|
id: string;
|
|
2009
2006
|
createdAt: Date;
|
|
@@ -2022,6 +2019,9 @@ export declare const useSyncContext: () => {
|
|
|
2022
2019
|
}) | (import("@tellescope/types-models").AppointmentLocation & {
|
|
2023
2020
|
id: string;
|
|
2024
2021
|
createdAt: Date;
|
|
2022
|
+
}) | (import("@tellescope/types-models").Product & {
|
|
2023
|
+
id: string;
|
|
2024
|
+
createdAt: Date;
|
|
2025
2025
|
}) | (import("@tellescope/types-models").Purchase & {
|
|
2026
2026
|
id: string;
|
|
2027
2027
|
createdAt: Date;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"theme.native.d.ts","sourceRoot":"","sources":["../../src/theme.native.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"theme.native.d.ts","sourceRoot":"","sources":["../../src/theme.native.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAA6B,MAAM,oBAAoB,CAAC;AAS7E,OAAO,EAEL,aAAa,EACd,MAAM,SAAS,CAAA;AAEhB,KAAK,cAAc,GAAG,OAAO,YAAY,CAAA;AACzC,KAAK,oBAAoB,GAAG,OAAO,YAAY,CAAC,MAAM,CAAA;AAEtD,OAAO,QAAQ,oBAAoB,CAAC;IAClC,UAAU,KAAM,SAAQ,cAAc;QACpC,KAAK,EAAE,MAAM,CAAC;KACf;CACF;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,gBAAgB,CAAC;QACzB,UAAU,WAAY,SAAQ,oBAAoB;YAChD,KAAK,EAAE,MAAM,CAAC;YACd,OAAO,EAAE,MAAM,CAAC;YAChB,SAAS,EAAE,MAAM,CAAC;SACnB;KACF;CACF;AAcD,eAAO,MAAM,SAAS,wBAAyB,aAAa,gBAM3D,CAAA"}
|