@parca/profile 0.19.21 → 0.19.22
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.19.22](https://github.com/parca-dev/parca/compare/@parca/profile@0.19.21...@parca/profile@0.19.22) (2025-07-16)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @parca/profile
|
|
9
|
+
|
|
6
10
|
## [0.19.21](https://github.com/parca-dev/parca/compare/@parca/profile@0.19.20...@parca/profile@0.19.21) (2025-07-16)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @parca/profile
|
|
@@ -42,29 +42,29 @@ const operatorOptions = [
|
|
|
42
42
|
{
|
|
43
43
|
key: '=',
|
|
44
44
|
element: {
|
|
45
|
-
active: _jsx(_Fragment, { children: "
|
|
46
|
-
expanded: (_jsx(_Fragment, { children: _jsx("span", { children: "
|
|
45
|
+
active: _jsx(_Fragment, { children: "Equals" }),
|
|
46
|
+
expanded: (_jsx(_Fragment, { children: _jsx("span", { children: "Equals" }) })),
|
|
47
47
|
},
|
|
48
48
|
},
|
|
49
49
|
{
|
|
50
50
|
key: '!=',
|
|
51
51
|
element: {
|
|
52
|
-
active: _jsx(_Fragment, { children:
|
|
53
|
-
expanded: (_jsx(_Fragment, { children: _jsx("span", { children:
|
|
52
|
+
active: _jsx(_Fragment, { children: "Not Equals" }),
|
|
53
|
+
expanded: (_jsx(_Fragment, { children: _jsx("span", { children: "Not Equals" }) })),
|
|
54
54
|
},
|
|
55
55
|
},
|
|
56
56
|
{
|
|
57
57
|
key: '=~',
|
|
58
58
|
element: {
|
|
59
|
-
active: _jsx(_Fragment, { children:
|
|
60
|
-
expanded: (_jsx(_Fragment, { children: _jsx("span", { children:
|
|
59
|
+
active: _jsx(_Fragment, { children: "Regex" }),
|
|
60
|
+
expanded: (_jsx(_Fragment, { children: _jsx("span", { children: "Regex" }) })),
|
|
61
61
|
},
|
|
62
62
|
},
|
|
63
63
|
{
|
|
64
64
|
key: '!~',
|
|
65
65
|
element: {
|
|
66
|
-
active: _jsx(_Fragment, { children:
|
|
67
|
-
expanded: (_jsx(_Fragment, { children: _jsx("span", { children:
|
|
66
|
+
active: _jsx(_Fragment, { children: "Not Regex" }),
|
|
67
|
+
expanded: (_jsx(_Fragment, { children: _jsx("span", { children: "Not Regex" }) })),
|
|
68
68
|
},
|
|
69
69
|
},
|
|
70
70
|
];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@parca/profile",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.22",
|
|
4
4
|
"description": "Profile viewing libraries",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@floating-ui/react": "^0.27.12",
|
|
@@ -78,5 +78,5 @@
|
|
|
78
78
|
"access": "public",
|
|
79
79
|
"registry": "https://registry.npmjs.org/"
|
|
80
80
|
},
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "a9c7c9a5b65193c81468bef98cdbbe6c3a686c78"
|
|
82
82
|
}
|
|
@@ -69,10 +69,10 @@ const operatorOptions = [
|
|
|
69
69
|
{
|
|
70
70
|
key: '=',
|
|
71
71
|
element: {
|
|
72
|
-
active:
|
|
72
|
+
active: <>Equals</>,
|
|
73
73
|
expanded: (
|
|
74
74
|
<>
|
|
75
|
-
<span
|
|
75
|
+
<span>Equals</span>
|
|
76
76
|
</>
|
|
77
77
|
),
|
|
78
78
|
},
|
|
@@ -80,10 +80,10 @@ const operatorOptions = [
|
|
|
80
80
|
{
|
|
81
81
|
key: '!=',
|
|
82
82
|
element: {
|
|
83
|
-
active: <>
|
|
83
|
+
active: <>Not Equals</>,
|
|
84
84
|
expanded: (
|
|
85
85
|
<>
|
|
86
|
-
<span>
|
|
86
|
+
<span>Not Equals</span>
|
|
87
87
|
</>
|
|
88
88
|
),
|
|
89
89
|
},
|
|
@@ -91,10 +91,10 @@ const operatorOptions = [
|
|
|
91
91
|
{
|
|
92
92
|
key: '=~',
|
|
93
93
|
element: {
|
|
94
|
-
active: <>
|
|
94
|
+
active: <>Regex</>,
|
|
95
95
|
expanded: (
|
|
96
96
|
<>
|
|
97
|
-
<span>
|
|
97
|
+
<span>Regex</span>
|
|
98
98
|
</>
|
|
99
99
|
),
|
|
100
100
|
},
|
|
@@ -102,10 +102,10 @@ const operatorOptions = [
|
|
|
102
102
|
{
|
|
103
103
|
key: '!~',
|
|
104
104
|
element: {
|
|
105
|
-
active: <>
|
|
105
|
+
active: <>Not Regex</>,
|
|
106
106
|
expanded: (
|
|
107
107
|
<>
|
|
108
|
-
<span>
|
|
108
|
+
<span>Not Regex</span>
|
|
109
109
|
</>
|
|
110
110
|
),
|
|
111
111
|
},
|