@texturehq/edges 1.23.0 → 1.23.2
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/{colors-DZxe608j.d.cts → colors-BwEAgdTX.d.cts} +25 -1
- package/dist/{colors-4FidHJjY.d.ts → colors-yCR9yHqL.d.ts} +25 -1
- package/dist/components.manifest.json +2 -2
- package/dist/generated/tailwind-tokens-dark.css +4 -0
- package/dist/generated/tailwind-tokens-light.css +4 -0
- package/dist/generated/viz-runtime.css +2 -0
- package/dist/index.cjs +6 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +24 -4
- package/dist/index.d.ts +24 -4
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/server.cjs +1 -1
- package/dist/server.cjs.map +1 -1
- package/dist/server.d.cts +1 -1
- package/dist/server.d.ts +1 -1
- package/dist/server.js +1 -1
- package/dist/server.js.map +1 -1
- package/dist/styles.css +9 -0
- package/dist/utilities.manifest.json +2 -2
- package/package.json +1 -1
|
@@ -1458,6 +1458,22 @@ interface StaticMapProps {
|
|
|
1458
1458
|
* Additional CSS classes
|
|
1459
1459
|
*/
|
|
1460
1460
|
className?: string;
|
|
1461
|
+
/**
|
|
1462
|
+
* Show expand button to open interactive fullscreen map
|
|
1463
|
+
* When enabled, shows a button in the top-right corner that opens
|
|
1464
|
+
* the map in an interactive dialog
|
|
1465
|
+
* @default false
|
|
1466
|
+
*/
|
|
1467
|
+
showExpandToggle?: boolean;
|
|
1468
|
+
/**
|
|
1469
|
+
* Title for the expanded map dialog
|
|
1470
|
+
* @default "Explore map"
|
|
1471
|
+
*/
|
|
1472
|
+
expandedMapTitle?: string;
|
|
1473
|
+
/**
|
|
1474
|
+
* Optional address or location label to show in expanded view
|
|
1475
|
+
*/
|
|
1476
|
+
expandedMapAddressLabel?: string;
|
|
1461
1477
|
}
|
|
1462
1478
|
/**
|
|
1463
1479
|
* StaticMap
|
|
@@ -1467,7 +1483,7 @@ interface StaticMapProps {
|
|
|
1467
1483
|
*
|
|
1468
1484
|
* Automatically adapts to light/dark mode using the global ColorModeProvider.
|
|
1469
1485
|
*/
|
|
1470
|
-
declare function StaticMap({ width, height, initialViewState, isLoading, mapType, layers, mapboxAccessToken, showMarker, showAttribution, onLoad, className, }: StaticMapProps): react_jsx_runtime.JSX.Element;
|
|
1486
|
+
declare function StaticMap({ width, height, initialViewState, isLoading, mapType, layers, mapboxAccessToken, showMarker, showAttribution, onLoad, className, showExpandToggle, expandedMapTitle, expandedMapAddressLabel, }: StaticMapProps): react_jsx_runtime.JSX.Element;
|
|
1471
1487
|
|
|
1472
1488
|
/**
|
|
1473
1489
|
* Represents a geographic point with coordinates
|
|
@@ -1602,6 +1618,14 @@ interface EntityConfig {
|
|
|
1602
1618
|
description?: string;
|
|
1603
1619
|
}
|
|
1604
1620
|
declare const ENTITY_CONFIG: {
|
|
1621
|
+
readonly app: {
|
|
1622
|
+
readonly icon: "AppWindow";
|
|
1623
|
+
readonly label: {
|
|
1624
|
+
readonly singular: "App";
|
|
1625
|
+
readonly plural: "Apps";
|
|
1626
|
+
};
|
|
1627
|
+
readonly description: "Workspace and integration apps";
|
|
1628
|
+
};
|
|
1605
1629
|
readonly site: {
|
|
1606
1630
|
readonly icon: "MapPin";
|
|
1607
1631
|
readonly label: {
|
|
@@ -1458,6 +1458,22 @@ interface StaticMapProps {
|
|
|
1458
1458
|
* Additional CSS classes
|
|
1459
1459
|
*/
|
|
1460
1460
|
className?: string;
|
|
1461
|
+
/**
|
|
1462
|
+
* Show expand button to open interactive fullscreen map
|
|
1463
|
+
* When enabled, shows a button in the top-right corner that opens
|
|
1464
|
+
* the map in an interactive dialog
|
|
1465
|
+
* @default false
|
|
1466
|
+
*/
|
|
1467
|
+
showExpandToggle?: boolean;
|
|
1468
|
+
/**
|
|
1469
|
+
* Title for the expanded map dialog
|
|
1470
|
+
* @default "Explore map"
|
|
1471
|
+
*/
|
|
1472
|
+
expandedMapTitle?: string;
|
|
1473
|
+
/**
|
|
1474
|
+
* Optional address or location label to show in expanded view
|
|
1475
|
+
*/
|
|
1476
|
+
expandedMapAddressLabel?: string;
|
|
1461
1477
|
}
|
|
1462
1478
|
/**
|
|
1463
1479
|
* StaticMap
|
|
@@ -1467,7 +1483,7 @@ interface StaticMapProps {
|
|
|
1467
1483
|
*
|
|
1468
1484
|
* Automatically adapts to light/dark mode using the global ColorModeProvider.
|
|
1469
1485
|
*/
|
|
1470
|
-
declare function StaticMap({ width, height, initialViewState, isLoading, mapType, layers, mapboxAccessToken, showMarker, showAttribution, onLoad, className, }: StaticMapProps): react_jsx_runtime.JSX.Element;
|
|
1486
|
+
declare function StaticMap({ width, height, initialViewState, isLoading, mapType, layers, mapboxAccessToken, showMarker, showAttribution, onLoad, className, showExpandToggle, expandedMapTitle, expandedMapAddressLabel, }: StaticMapProps): react_jsx_runtime.JSX.Element;
|
|
1471
1487
|
|
|
1472
1488
|
/**
|
|
1473
1489
|
* Represents a geographic point with coordinates
|
|
@@ -1602,6 +1618,14 @@ interface EntityConfig {
|
|
|
1602
1618
|
description?: string;
|
|
1603
1619
|
}
|
|
1604
1620
|
declare const ENTITY_CONFIG: {
|
|
1621
|
+
readonly app: {
|
|
1622
|
+
readonly icon: "AppWindow";
|
|
1623
|
+
readonly label: {
|
|
1624
|
+
readonly singular: "App";
|
|
1625
|
+
readonly plural: "Apps";
|
|
1626
|
+
};
|
|
1627
|
+
readonly description: "Workspace and integration apps";
|
|
1628
|
+
};
|
|
1605
1629
|
readonly site: {
|
|
1606
1630
|
readonly icon: "MapPin";
|
|
1607
1631
|
readonly label: {
|
|
@@ -264,6 +264,10 @@
|
|
|
264
264
|
--color-state-auto-data: #bb5f27;
|
|
265
265
|
--color-state-auto-border: #fb923c;
|
|
266
266
|
--color-state-auto-text: #ffedd5;
|
|
267
|
+
--color-state-circulate: #312e81;
|
|
268
|
+
--color-state-circulate-data: #4f46e5;
|
|
269
|
+
--color-state-circulate-border: #818cf8;
|
|
270
|
+
--color-state-circulate-text: #e0e7ff;
|
|
267
271
|
--color-state-on: #134e4a;
|
|
268
272
|
--color-state-on-data: #138378;
|
|
269
273
|
--color-state-on-border: #14b8a6;
|
|
@@ -264,6 +264,10 @@
|
|
|
264
264
|
--color-state-auto-data: #fed3a4;
|
|
265
265
|
--color-state-auto-border: #fdba74;
|
|
266
266
|
--color-state-auto-text: #7c2d12;
|
|
267
|
+
--color-state-circulate: #ede9fe;
|
|
268
|
+
--color-state-circulate-data: #c4b5fd;
|
|
269
|
+
--color-state-circulate-border: #a78bfa;
|
|
270
|
+
--color-state-circulate-text: #4338ca;
|
|
267
271
|
--color-state-on: #ccfbf1;
|
|
268
272
|
--color-state-on-data: #7ce7d8;
|
|
269
273
|
--color-state-on-border: #2dd4bf;
|
|
@@ -119,6 +119,7 @@
|
|
|
119
119
|
--color-state-cool-data: #9dc7fc;
|
|
120
120
|
--color-state-eco-data: #88e9c5;
|
|
121
121
|
--color-state-auto-data: #fed3a4;
|
|
122
|
+
--color-state-circulate-data: #c4b5fd;
|
|
122
123
|
--color-state-on-data: #7ce7d8;
|
|
123
124
|
--color-state-idle-data: #c0c5cd;
|
|
124
125
|
--color-state-off-data: #c0c5cd;
|
|
@@ -232,6 +233,7 @@
|
|
|
232
233
|
--color-state-cool-data: #2c5ec0;
|
|
233
234
|
--color-state-eco-data: #0b835e;
|
|
234
235
|
--color-state-auto-data: #bb5f27;
|
|
236
|
+
--color-state-circulate-data: #4f46e5;
|
|
235
237
|
--color-state-on-data: #138378;
|
|
236
238
|
--color-state-idle-data: #515968;
|
|
237
239
|
--color-state-off-data: #515968;
|