@paubox/ui 3.1.0 → 3.2.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/index.esm.js
CHANGED
|
@@ -23890,7 +23890,8 @@ var MenuItem = function(_param) {
|
|
|
23890
23890
|
children: [
|
|
23891
23891
|
checkbox && /*#__PURE__*/ jsx(Checkbox, {
|
|
23892
23892
|
checked: selected,
|
|
23893
|
-
onClick: onClick
|
|
23893
|
+
onClick: onClick,
|
|
23894
|
+
readOnly: true
|
|
23894
23895
|
}),
|
|
23895
23896
|
/*#__PURE__*/ jsxs(Typography, {
|
|
23896
23897
|
style: {
|
|
@@ -36595,8 +36596,8 @@ function _templateObject3$1() {
|
|
|
36595
36596
|
}
|
|
36596
36597
|
function _templateObject4$1() {
|
|
36597
36598
|
var data = _tagged_template_literal$2([
|
|
36598
|
-
"\n display: flex;\n align-items: center;\n justify-content: center;\n padding: ",
|
|
36599
|
-
"px;\n background: none;\n font-size: 20px;\n"
|
|
36599
|
+
"\n display: flex;\n align-items: center;\n justify-content: center;\n /* The kebab icon is 1em (20px here) — already equal to a cell's text\n line-height (paragraph200Regular = 20px). The BaseButton's border (2px) and\n vertical padding (8px) were the only things making rows with a context menu\n ~10px taller than rows without one. Drop both so the trigger occupies exactly\n one text line and row height matches a table with no context column. Keep the\n horizontal padding for a comfortable hit area. */\n padding: 0 ",
|
|
36600
|
+
"px;\n border: none;\n background: none;\n font-size: 20px;\n"
|
|
36600
36601
|
]);
|
|
36601
36602
|
_templateObject4$1 = function _templateObject() {
|
|
36602
36603
|
return data;
|
package/package.json
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Identifier for which search bar in the dashboard a request originated from.
|
|
3
|
-
*
|
|
4
|
-
*
|
|
3
|
+
* Passed as the `bar` query param / body field to pb_search endpoints.
|
|
4
|
+
*
|
|
5
|
+
* Any string is valid — pb_search accepts arbitrary bar values and uses Redis-only
|
|
6
|
+
* recent-search history for bars it doesn't recognise. Only bars with a corresponding
|
|
7
|
+
* OpenSearch index (mail logs, quarantine, archive) return autocomplete / search results.
|
|
8
|
+
* Pick a descriptive snake_case string for any new bar (e.g. `"email_api_templates"`).
|
|
5
9
|
*/
|
|
6
|
-
export type SearchBarKey =
|
|
10
|
+
export type SearchBarKey = string;
|
|
7
11
|
export interface SearchOmniboxResult {
|
|
8
12
|
message_id: string;
|
|
9
13
|
customer_id: string;
|