@luxonis/depthai-pipeline-lib 3.8.0 → 3.8.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/index.css CHANGED
@@ -996,6 +996,9 @@
996
996
  .bg-white {
997
997
  background-color: var(--color-white);
998
998
  }
999
+ .\!p-0 {
1000
+ padding: 0px !important;
1001
+ }
999
1002
  .p-0 {
1000
1003
  padding: 0px;
1001
1004
  }
@@ -1035,9 +1038,6 @@
1035
1038
  .px-\[5px\] {
1036
1039
  padding-inline: 5px;
1037
1040
  }
1038
- .\!py-0 {
1039
- padding-block: 0px !important;
1040
- }
1041
1041
  .py-0 {
1042
1042
  padding-block: 0px;
1043
1043
  }
@@ -1065,9 +1065,6 @@
1065
1065
  .pt-2 {
1066
1066
  padding-top: calc(var(--spacing) * 2);
1067
1067
  }
1068
- .\!pr-0 {
1069
- padding-right: 0px !important;
1070
- }
1071
1068
  .pr-2 {
1072
1069
  padding-right: calc(var(--spacing) * 2);
1073
1070
  }
@@ -1366,6 +1363,9 @@
1366
1363
  --tw-outline-style: none;
1367
1364
  outline-style: none;
1368
1365
  }
1366
+ .focus-visible\:z-10:focus-visible {
1367
+ z-index: 10;
1368
+ }
1369
1369
  .focus-visible\:ring-2:focus-visible {
1370
1370
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1371
1371
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
@@ -39,7 +39,7 @@ export const PipelineNode = (props) => {
39
39
  const link = NodesWithLinks.hasOwnProperty(node.name)
40
40
  ? `${DOCS_BASE_URL}/${NodesWithLinks[node.name]}`
41
41
  : DOCS_BASE_URL;
42
- return (_jsxs(Flex, { direction: "column", className: "min-w-[120px] border border-border rounded-sm bg-background hover:[&_.node-help-icon]:text-foreground", children: [_jsxs(Flex, { align: "center", justify: "between", gap: "xs", className: "w-full bg-muted rounded-t-sm", children: [_jsx("span", { className: "flex h-5 w-5 items-center", children: (node.nodeType === 'device' || node.nodeType === 'host') && (_jsx(Badge, { label: node.nodeType === 'device' ? 'D' : 'H', variant: node.nodeType === 'device' ? 'light' : 'filled', intent: "active", className: "flex h-5 w-5 cursor-help items-center justify-center p-0", tooltip: node.nodeType === 'device' ? 'Device Node' : 'Host Node' })) }), _jsx(Label, { text: node.id
42
+ return (_jsxs(Flex, { direction: "column", className: "min-w-[120px] border border-border rounded-sm bg-card hover:[&_.node-help-icon]:text-foreground", children: [_jsxs(Flex, { align: "center", justify: "between", gap: "xs", className: "w-full bg-muted rounded-t-sm", children: [_jsx("span", { className: "flex h-5 w-5 items-center", children: (node.nodeType === 'device' || node.nodeType === 'host') && (_jsx(Badge, { label: node.nodeType === 'device' ? 'D' : 'H', variant: node.nodeType === 'device' ? 'light' : 'filled', intent: "active", className: "flex h-5 w-5 cursor-help items-center justify-center p-0", tooltip: node.nodeType === 'device' ? 'Device Node' : 'Host Node' })) }), _jsx(Label, { text: node.id
43
43
  ? `${node.name} (${node.id}) ${node.extras?.stateInfo ? `(${node.extras.stateInfo.letter})` : ''}`
44
44
  : node.extras?.stateInfo
45
45
  ? `${node.name} (${node.extras.stateInfo.letter})`
@@ -1 +1 @@
1
- export declare const PACKAGE_VERSION = "3.8.0";
1
+ export declare const PACKAGE_VERSION = "3.8.2";
@@ -1,2 +1,2 @@
1
1
  // Do not edit it manually.
2
- export const PACKAGE_VERSION = '3.8.0';
2
+ export const PACKAGE_VERSION = '3.8.2';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luxonis/depthai-pipeline-lib",
3
- "version": "3.8.0",
3
+ "version": "3.8.2",
4
4
  "type": "module",
5
5
  "license": "UNLICENSED",
6
6
  "main": "./dist/src/index.js",
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "@dagrejs/dagre": "^1.1.3",
18
- "@luxonis/ui-components": "^1.3.2",
18
+ "@luxonis/ui-components": "^1.3.7",
19
19
  "@xyflow/react": "^12.0.4",
20
20
  "postcss-import": "^16.1.0",
21
21
  "postcss-nested": "^6.2.0",