@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.
@@ -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: {
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "1.23.0",
3
- "generatedAt": "2025-11-24T01:13:46.625Z",
2
+ "version": "1.23.2",
3
+ "generatedAt": "2025-11-25T23:02:10.039Z",
4
4
  "components": [
5
5
  {
6
6
  "name": "ActionCell",
@@ -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;