* Run npx saas-migrator division

* Switch to dart sass

* Upgrade blueprint

* Remove deprecated import syntax

* Prettify

* Snapshots
This commit is contained in:
John Gozde 2023-03-16 13:44:24 -06:00 committed by GitHub
parent bf13156b55
commit 38adac4369
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
59 changed files with 3298 additions and 3652 deletions

File diff suppressed because it is too large Load Diff

View File

@ -66,10 +66,10 @@
"not ie 11"
],
"dependencies": {
"@blueprintjs/core": "^4.0.3",
"@blueprintjs/datetime": "^4.0.3",
"@blueprintjs/icons": "^4.1.1",
"@blueprintjs/popover2": "^1.0.3",
"@blueprintjs/core": "^4.17.6",
"@blueprintjs/datetime": "^4.4.25",
"@blueprintjs/icons": "^4.14.3",
"@blueprintjs/popover2": "^1.13.10",
"ace-builds": "^1.4.13",
"axios": "^0.26.1",
"classnames": "^2.2.6",
@ -152,7 +152,6 @@
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.0",
"license-checker": "^25.0.1",
"node-sass": "^6.0.1",
"playwright-chromium": "^1.24.1",
"postcss": "^8.3.0",
"postcss-loader": "^5.3.0",
@ -160,7 +159,8 @@
"prettier": "^2.5.1",
"react-shallow-renderer": "^16.15.0",
"replace": "^1.2.2",
"sass-loader": "^11.1.0",
"sass": "^1.59.3",
"sass-loader": "^13.2.0",
"snarkdown": "^2.0.0",
"style-loader": "^2.0.0",
"stylelint": "^13.12.0",

View File

@ -16,6 +16,8 @@
* limitations under the License.
*/
@use 'sass:math';
// Namespace appended to the beginning of each CSS class: `.#{$ns}-button`.
// Do not quote this value, for Less consumers.
$ns: bp4;
@ -37,7 +39,7 @@ $pt-font-size-large: $pt-grid-size * 1.6;
$pt-font-size-small: $pt-grid-size * 1.2;
// a little bit extra to ensure the height comes out to just over 18px (and browser rounds to 18px)
$pt-line-height: ($pt-grid-size * 1.8) / $pt-font-size + 0.0001;
$pt-line-height: math.div($pt-grid-size * 1.8, $pt-font-size) + 0.0001;
// Icon variables

View File

@ -16,12 +16,14 @@
* limitations under the License.
*/
@use 'sass:math';
$button-border-width: 1px;
$button-padding: ($pt-grid-size / 2) ($pt-grid-size * 1.3);
$button-padding: ($pt-grid-size * 0.5) ($pt-grid-size * 1.3);
$button-padding-small: 0 ($pt-grid-size * 0.7);
$button-padding-large: ($pt-grid-size / 2) ($pt-grid-size * 1.5);
$button-icon-spacing: ($pt-button-height - $pt-icon-size-standard) / 1.6;
$button-icon-spacing-large: ($pt-button-height-large - $pt-icon-size-large) / 1.8;
$button-padding-large: ($pt-grid-size * 0.5) ($pt-grid-size * 1.5);
$button-icon-spacing: math.div($pt-button-height - $pt-icon-size-standard, 1.6);
$button-icon-spacing-large: math.div($pt-button-height-large - $pt-icon-size-large, 1.8);
/*
CSS `border` property issues:

View File

@ -12,6 +12,7 @@ exports[`ActionCell matches snapshot 1`] = `
<svg
data-icon="search-template"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -9,6 +9,7 @@ exports[`ActionIcon matches snapshot 1`] = `
<svg
data-icon="clipboard"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -22,11 +22,11 @@ exports[`ArrayInput matches snapshot 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-plus"
icon="plus"
tabindex="0"
>
<svg
data-icon="plus"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -22,11 +22,11 @@ exports[`ClearableInput matches snapshot 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-cross"
icon="cross"
tabindex="0"
>
<svg
data-icon="cross"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -24,6 +24,7 @@ exports[`FormGroupWithInfo matches snapshot 1`] = `
<svg
data-icon="info-sign"
height="14"
role="img"
viewBox="0 0 16 16"
width="14"
>

View File

@ -77,6 +77,7 @@ exports[`HeaderBar matches snapshot 1`] = `
hoverOpenDelay={150}
inheritDarkTheme={true}
interactionKind="click"
matchTargetWidth={false}
minimal={false}
openOnTargetFocus={true}
position="bottom-left"
@ -158,6 +159,7 @@ exports[`HeaderBar matches snapshot 1`] = `
hoverOpenDelay={150}
inheritDarkTheme={true}
interactionKind="click"
matchTargetWidth={false}
minimal={false}
openOnTargetFocus={true}
position="bottom-left"
@ -292,6 +294,7 @@ exports[`HeaderBar matches snapshot 1`] = `
hoverOpenDelay={150}
inheritDarkTheme={true}
interactionKind="click"
matchTargetWidth={false}
minimal={false}
openOnTargetFocus={true}
position="bottom-right"
@ -381,6 +384,7 @@ exports[`HeaderBar matches snapshot 1`] = `
hoverOpenDelay={150}
inheritDarkTheme={true}
interactionKind="click"
matchTargetWidth={false}
minimal={false}
openOnTargetFocus={true}
position="bottom-right"

View File

@ -31,6 +31,7 @@ exports[`IntervalInput matches snapshot 1`] = `
<svg
data-icon="calendar"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -3,9 +3,11 @@
exports[`MenuCheckbox matches snapshot checked 1`] = `
<li
class=""
role="none"
>
<a
class="bp4-menu-item menu-checkbox"
role="menuitem"
tabindex="0"
>
<span
@ -20,6 +22,7 @@ exports[`MenuCheckbox matches snapshot checked 1`] = `
<svg
data-icon="tick-circle"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -42,9 +45,11 @@ exports[`MenuCheckbox matches snapshot checked 1`] = `
exports[`MenuCheckbox matches snapshot unchecked 1`] = `
<li
class=""
role="none"
>
<a
class="bp4-menu-item menu-checkbox"
role="menuitem"
tabindex="0"
>
<span
@ -59,6 +64,7 @@ exports[`MenuCheckbox matches snapshot unchecked 1`] = `
<svg
data-icon="circle"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -3,6 +3,7 @@
exports[`MenuTristate matches snapshot false 1`] = `
<li
class="bp4-submenu"
role="none"
>
<span
class="bp4-popover-wrapper"
@ -14,6 +15,7 @@ exports[`MenuTristate matches snapshot false 1`] = `
<a
class="bp4-menu-item menu-tristate"
label="false"
role="menuitem"
tabindex="0"
>
<div
@ -27,18 +29,17 @@ exports[`MenuTristate matches snapshot false 1`] = `
false
</span>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-caret-right bp4-submenu-icon"
icon="caret-right"
>
<svg
data-icon="caret-right"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
Open sub menu
</desc>
<path
d="M11 8c0-.15-.07-.28-.17-.37l-4-3.5A.495.495 0 006 4.5v7a.495.495 0 00.83.37l4-3.5c.1-.09.17-.22.17-.37z"
fill-rule="evenodd"
@ -54,6 +55,7 @@ exports[`MenuTristate matches snapshot false 1`] = `
exports[`MenuTristate matches snapshot undefined 1`] = `
<li
class="bp4-submenu"
role="none"
>
<span
class="bp4-popover-wrapper"
@ -65,6 +67,7 @@ exports[`MenuTristate matches snapshot undefined 1`] = `
<a
class="bp4-menu-item menu-tristate"
label="auto (true)"
role="menuitem"
tabindex="0"
>
<div
@ -78,18 +81,17 @@ exports[`MenuTristate matches snapshot undefined 1`] = `
auto (true)
</span>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-caret-right bp4-submenu-icon"
icon="caret-right"
>
<svg
data-icon="caret-right"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
Open sub menu
</desc>
<path
d="M11 8c0-.15-.07-.28-.17-.37l-4-3.5A.495.495 0 006 4.5v7a.495.495 0 00.83.37l4-3.5c.1-.09.17-.22.17-.37z"
fill-rule="evenodd"

View File

@ -16,11 +16,11 @@ exports[`MoreButton matches snapshot (empty) 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-more"
icon="more"
tabindex="0"
>
<svg
data-icon="more"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -48,11 +48,11 @@ exports[`MoreButton matches snapshot (full) 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-more"
icon="more"
tabindex="0"
>
<svg
data-icon="more"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -24,6 +24,7 @@ exports[`RuleEditor matches snapshot no tier in rule 1`] = `
<svg
data-icon="caret-down"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -45,11 +46,11 @@ exports[`RuleEditor matches snapshot no tier in rule 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-trash"
icon="trash"
tabindex="0"
>
<svg
data-icon="trash"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -142,14 +143,18 @@ exports[`RuleEditor matches snapshot no tier in rule 1`] = `
icon="double-caret-vertical"
>
<svg
aria-labelledby="iconTitle-2"
data-icon="double-caret-vertical"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
<title
id="iconTitle-2"
>
Open dropdown
</desc>
</title>
<path
d="M5 7h6a1.003 1.003 0 00.71-1.71l-3-3C8.53 2.11 8.28 2 8 2s-.53.11-.71.29l-3 3A1.003 1.003 0 005 7zm6 2H5a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0011 9z"
fill-rule="evenodd"
@ -187,10 +192,15 @@ exports[`RuleEditor matches snapshot no tier in rule 1`] = `
class="bp4-input-group"
>
<input
aria-valuemax="256"
aria-valuemin="0"
aria-valuenow="1"
autocomplete="off"
class="bp4-input"
id="numericInput-0"
max="256"
min="0"
role="spinbutton"
type="text"
value="1"
/>
@ -199,6 +209,7 @@ exports[`RuleEditor matches snapshot no tier in rule 1`] = `
class="bp4-button-group bp4-vertical bp4-fixed"
>
<button
aria-controls="numericInput-0"
aria-label="increment"
class="bp4-button"
type="button"
@ -207,11 +218,11 @@ exports[`RuleEditor matches snapshot no tier in rule 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-chevron-up"
icon="chevron-up"
tabindex="0"
>
<svg
data-icon="chevron-up"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -223,6 +234,7 @@ exports[`RuleEditor matches snapshot no tier in rule 1`] = `
</span>
</button>
<button
aria-controls="numericInput-0"
aria-label="decrement"
class="bp4-button"
type="button"
@ -231,11 +243,11 @@ exports[`RuleEditor matches snapshot no tier in rule 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-chevron-down"
icon="chevron-down"
tabindex="0"
>
<svg
data-icon="chevron-down"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -289,14 +301,18 @@ exports[`RuleEditor matches snapshot no tier in rule 1`] = `
icon="double-caret-vertical"
>
<svg
aria-labelledby="iconTitle-5"
data-icon="double-caret-vertical"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
<title
id="iconTitle-5"
>
Open dropdown
</desc>
</title>
<path
d="M5 7h6a1.003 1.003 0 00.71-1.71l-3-3C8.53 2.11 8.28 2 8 2s-.53.11-.71.29l-3 3A1.003 1.003 0 005 7zm6 2H5a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0011 9z"
fill-rule="evenodd"
@ -314,11 +330,11 @@ exports[`RuleEditor matches snapshot no tier in rule 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-trash"
icon="trash"
tabindex="0"
>
<svg
data-icon="trash"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -344,11 +360,11 @@ exports[`RuleEditor matches snapshot no tier in rule 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-plus"
icon="plus"
tabindex="-1"
>
<svg
data-icon="plus"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -398,6 +414,7 @@ exports[`RuleEditor matches snapshot with broadcast rule 1`] = `
<svg
data-icon="caret-down"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -419,11 +436,11 @@ exports[`RuleEditor matches snapshot with broadcast rule 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-trash"
icon="trash"
tabindex="0"
>
<svg
data-icon="trash"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -516,14 +533,18 @@ exports[`RuleEditor matches snapshot with broadcast rule 1`] = `
icon="double-caret-vertical"
>
<svg
aria-labelledby="iconTitle-38"
data-icon="double-caret-vertical"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
<title
id="iconTitle-38"
>
Open dropdown
</desc>
</title>
<path
d="M5 7h6a1.003 1.003 0 00.71-1.71l-3-3C8.53 2.11 8.28 2 8 2s-.53.11-.71.29l-3 3A1.003 1.003 0 005 7zm6 2H5a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0011 9z"
fill-rule="evenodd"
@ -574,6 +595,7 @@ exports[`RuleEditor matches snapshot with existing tier and non existing tier in
<svg
data-icon="caret-down"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -595,11 +617,11 @@ exports[`RuleEditor matches snapshot with existing tier and non existing tier in
aria-hidden="true"
class="bp4-icon bp4-icon-trash"
icon="trash"
tabindex="0"
>
<svg
data-icon="trash"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -692,14 +714,18 @@ exports[`RuleEditor matches snapshot with existing tier and non existing tier in
icon="double-caret-vertical"
>
<svg
aria-labelledby="iconTitle-26"
data-icon="double-caret-vertical"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
<title
id="iconTitle-26"
>
Open dropdown
</desc>
</title>
<path
d="M5 7h6a1.003 1.003 0 00.71-1.71l-3-3C8.53 2.11 8.28 2 8 2s-.53.11-.71.29l-3 3A1.003 1.003 0 005 7zm6 2H5a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0011 9z"
fill-rule="evenodd"
@ -747,10 +773,15 @@ exports[`RuleEditor matches snapshot with existing tier and non existing tier in
class="bp4-input-group"
>
<input
aria-valuemax="256"
aria-valuemin="0"
aria-valuenow="1"
autocomplete="off"
class="bp4-input"
id="numericInput-3"
max="256"
min="0"
role="spinbutton"
type="text"
value="1"
/>
@ -759,6 +790,7 @@ exports[`RuleEditor matches snapshot with existing tier and non existing tier in
class="bp4-button-group bp4-vertical bp4-fixed"
>
<button
aria-controls="numericInput-3"
aria-label="increment"
class="bp4-button"
type="button"
@ -767,11 +799,11 @@ exports[`RuleEditor matches snapshot with existing tier and non existing tier in
aria-hidden="true"
class="bp4-icon bp4-icon-chevron-up"
icon="chevron-up"
tabindex="0"
>
<svg
data-icon="chevron-up"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -783,6 +815,7 @@ exports[`RuleEditor matches snapshot with existing tier and non existing tier in
</span>
</button>
<button
aria-controls="numericInput-3"
aria-label="decrement"
class="bp4-button"
type="button"
@ -791,11 +824,11 @@ exports[`RuleEditor matches snapshot with existing tier and non existing tier in
aria-hidden="true"
class="bp4-icon bp4-icon-chevron-down"
icon="chevron-down"
tabindex="0"
>
<svg
data-icon="chevron-down"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -844,14 +877,18 @@ exports[`RuleEditor matches snapshot with existing tier and non existing tier in
icon="double-caret-vertical"
>
<svg
aria-labelledby="iconTitle-29"
data-icon="double-caret-vertical"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
<title
id="iconTitle-29"
>
Open dropdown
</desc>
</title>
<path
d="M5 7h6a1.003 1.003 0 00.71-1.71l-3-3C8.53 2.11 8.28 2 8 2s-.53.11-.71.29l-3 3A1.003 1.003 0 005 7zm6 2H5a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0011 9z"
fill-rule="evenodd"
@ -867,11 +904,11 @@ exports[`RuleEditor matches snapshot with existing tier and non existing tier in
aria-hidden="true"
class="bp4-icon bp4-icon-trash"
icon="trash"
tabindex="0"
>
<svg
data-icon="trash"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -904,10 +941,15 @@ exports[`RuleEditor matches snapshot with existing tier and non existing tier in
class="bp4-input-group"
>
<input
aria-valuemax="256"
aria-valuemin="0"
aria-valuenow="2"
autocomplete="off"
class="bp4-input"
id="numericInput-4"
max="256"
min="0"
role="spinbutton"
type="text"
value="2"
/>
@ -916,6 +958,7 @@ exports[`RuleEditor matches snapshot with existing tier and non existing tier in
class="bp4-button-group bp4-vertical bp4-fixed"
>
<button
aria-controls="numericInput-4"
aria-label="increment"
class="bp4-button"
type="button"
@ -924,11 +967,11 @@ exports[`RuleEditor matches snapshot with existing tier and non existing tier in
aria-hidden="true"
class="bp4-icon bp4-icon-chevron-up"
icon="chevron-up"
tabindex="0"
>
<svg
data-icon="chevron-up"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -940,6 +983,7 @@ exports[`RuleEditor matches snapshot with existing tier and non existing tier in
</span>
</button>
<button
aria-controls="numericInput-4"
aria-label="decrement"
class="bp4-button"
type="button"
@ -948,11 +992,11 @@ exports[`RuleEditor matches snapshot with existing tier and non existing tier in
aria-hidden="true"
class="bp4-icon bp4-icon-chevron-down"
icon="chevron-down"
tabindex="0"
>
<svg
data-icon="chevron-down"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -1001,14 +1045,18 @@ exports[`RuleEditor matches snapshot with existing tier and non existing tier in
icon="double-caret-vertical"
>
<svg
aria-labelledby="iconTitle-33"
data-icon="double-caret-vertical"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
<title
id="iconTitle-33"
>
Open dropdown
</desc>
</title>
<path
d="M5 7h6a1.003 1.003 0 00.71-1.71l-3-3C8.53 2.11 8.28 2 8 2s-.53.11-.71.29l-3 3A1.003 1.003 0 005 7zm6 2H5a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0011 9z"
fill-rule="evenodd"
@ -1024,11 +1072,11 @@ exports[`RuleEditor matches snapshot with existing tier and non existing tier in
aria-hidden="true"
class="bp4-icon bp4-icon-trash"
icon="trash"
tabindex="0"
>
<svg
data-icon="trash"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -1054,11 +1102,11 @@ exports[`RuleEditor matches snapshot with existing tier and non existing tier in
aria-hidden="true"
class="bp4-icon bp4-icon-plus"
icon="plus"
tabindex="-1"
>
<svg
data-icon="plus"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -1108,6 +1156,7 @@ exports[`RuleEditor matches snapshot with existing tier in rule 1`] = `
<svg
data-icon="caret-down"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -1129,11 +1178,11 @@ exports[`RuleEditor matches snapshot with existing tier in rule 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-trash"
icon="trash"
tabindex="0"
>
<svg
data-icon="trash"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -1226,14 +1275,18 @@ exports[`RuleEditor matches snapshot with existing tier in rule 1`] = `
icon="double-caret-vertical"
>
<svg
aria-labelledby="iconTitle-18"
data-icon="double-caret-vertical"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
<title
id="iconTitle-18"
>
Open dropdown
</desc>
</title>
<path
d="M5 7h6a1.003 1.003 0 00.71-1.71l-3-3C8.53 2.11 8.28 2 8 2s-.53.11-.71.29l-3 3A1.003 1.003 0 005 7zm6 2H5a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0011 9z"
fill-rule="evenodd"
@ -1281,10 +1334,15 @@ exports[`RuleEditor matches snapshot with existing tier in rule 1`] = `
class="bp4-input-group"
>
<input
aria-valuemax="256"
aria-valuemin="0"
aria-valuenow="2"
autocomplete="off"
class="bp4-input"
id="numericInput-2"
max="256"
min="0"
role="spinbutton"
type="text"
value="2"
/>
@ -1293,6 +1351,7 @@ exports[`RuleEditor matches snapshot with existing tier in rule 1`] = `
class="bp4-button-group bp4-vertical bp4-fixed"
>
<button
aria-controls="numericInput-2"
aria-label="increment"
class="bp4-button"
type="button"
@ -1301,11 +1360,11 @@ exports[`RuleEditor matches snapshot with existing tier in rule 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-chevron-up"
icon="chevron-up"
tabindex="0"
>
<svg
data-icon="chevron-up"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -1317,6 +1376,7 @@ exports[`RuleEditor matches snapshot with existing tier in rule 1`] = `
</span>
</button>
<button
aria-controls="numericInput-2"
aria-label="decrement"
class="bp4-button"
type="button"
@ -1325,11 +1385,11 @@ exports[`RuleEditor matches snapshot with existing tier in rule 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-chevron-down"
icon="chevron-down"
tabindex="0"
>
<svg
data-icon="chevron-down"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -1378,14 +1438,18 @@ exports[`RuleEditor matches snapshot with existing tier in rule 1`] = `
icon="double-caret-vertical"
>
<svg
aria-labelledby="iconTitle-21"
data-icon="double-caret-vertical"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
<title
id="iconTitle-21"
>
Open dropdown
</desc>
</title>
<path
d="M5 7h6a1.003 1.003 0 00.71-1.71l-3-3C8.53 2.11 8.28 2 8 2s-.53.11-.71.29l-3 3A1.003 1.003 0 005 7zm6 2H5a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0011 9z"
fill-rule="evenodd"
@ -1403,11 +1467,11 @@ exports[`RuleEditor matches snapshot with existing tier in rule 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-trash"
icon="trash"
tabindex="0"
>
<svg
data-icon="trash"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -1433,11 +1497,11 @@ exports[`RuleEditor matches snapshot with existing tier in rule 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-plus"
icon="plus"
tabindex="-1"
>
<svg
data-icon="plus"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -1487,6 +1551,7 @@ exports[`RuleEditor matches snapshot with non existing tier in rule 1`] = `
<svg
data-icon="caret-down"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -1508,11 +1573,11 @@ exports[`RuleEditor matches snapshot with non existing tier in rule 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-trash"
icon="trash"
tabindex="0"
>
<svg
data-icon="trash"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -1605,14 +1670,18 @@ exports[`RuleEditor matches snapshot with non existing tier in rule 1`] = `
icon="double-caret-vertical"
>
<svg
aria-labelledby="iconTitle-10"
data-icon="double-caret-vertical"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
<title
id="iconTitle-10"
>
Open dropdown
</desc>
</title>
<path
d="M5 7h6a1.003 1.003 0 00.71-1.71l-3-3C8.53 2.11 8.28 2 8 2s-.53.11-.71.29l-3 3A1.003 1.003 0 005 7zm6 2H5a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0011 9z"
fill-rule="evenodd"
@ -1660,10 +1729,15 @@ exports[`RuleEditor matches snapshot with non existing tier in rule 1`] = `
class="bp4-input-group"
>
<input
aria-valuemax="256"
aria-valuemin="0"
aria-valuenow="2"
autocomplete="off"
class="bp4-input"
id="numericInput-1"
max="256"
min="0"
role="spinbutton"
type="text"
value="2"
/>
@ -1672,6 +1746,7 @@ exports[`RuleEditor matches snapshot with non existing tier in rule 1`] = `
class="bp4-button-group bp4-vertical bp4-fixed"
>
<button
aria-controls="numericInput-1"
aria-label="increment"
class="bp4-button"
type="button"
@ -1680,11 +1755,11 @@ exports[`RuleEditor matches snapshot with non existing tier in rule 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-chevron-up"
icon="chevron-up"
tabindex="0"
>
<svg
data-icon="chevron-up"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -1696,6 +1771,7 @@ exports[`RuleEditor matches snapshot with non existing tier in rule 1`] = `
</span>
</button>
<button
aria-controls="numericInput-1"
aria-label="decrement"
class="bp4-button"
type="button"
@ -1704,11 +1780,11 @@ exports[`RuleEditor matches snapshot with non existing tier in rule 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-chevron-down"
icon="chevron-down"
tabindex="0"
>
<svg
data-icon="chevron-down"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -1762,14 +1838,18 @@ exports[`RuleEditor matches snapshot with non existing tier in rule 1`] = `
icon="double-caret-vertical"
>
<svg
aria-labelledby="iconTitle-13"
data-icon="double-caret-vertical"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
<title
id="iconTitle-13"
>
Open dropdown
</desc>
</title>
<path
d="M5 7h6a1.003 1.003 0 00.71-1.71l-3-3C8.53 2.11 8.28 2 8 2s-.53.11-.71.29l-3 3A1.003 1.003 0 005 7zm6 2H5a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0011 9z"
fill-rule="evenodd"
@ -1787,11 +1867,11 @@ exports[`RuleEditor matches snapshot with non existing tier in rule 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-trash"
icon="trash"
tabindex="0"
>
<svg
data-icon="trash"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -1817,11 +1897,11 @@ exports[`RuleEditor matches snapshot with non existing tier in rule 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-plus"
icon="plus"
tabindex="-1"
>
<svg
data-icon="plus"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -109,14 +109,18 @@ exports[`SegmentTimeline matches snapshot 1`] = `
icon="double-caret-vertical"
>
<svg
aria-labelledby="iconTitle-0"
data-icon="double-caret-vertical"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
<title
id="iconTitle-0"
>
Open dropdown
</desc>
</title>
<path
d="M5 7h6a1.003 1.003 0 00.71-1.71l-3-3C8.53 2.11 8.28 2 8 2s-.53.11-.71.29l-3 3A1.003 1.003 0 005 7zm6 2H5a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0011 9z"
fill-rule="evenodd"
@ -149,7 +153,7 @@ exports[`SegmentTimeline matches snapshot 1`] = `
class="bp4-popover-target"
>
<div
class="bp4-input-group"
class="bp4-input-group bp4-read-only"
>
<input
class="bp4-input"
@ -173,6 +177,7 @@ exports[`SegmentTimeline matches snapshot 1`] = `
<svg
data-icon="calendar"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -28,11 +28,11 @@ exports[`SuggestibleInput matches snapshot 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-caret-down"
icon="caret-down"
tabindex="0"
>
<svg
data-icon="caret-down"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -77,11 +77,11 @@ exports[`SuggestibleInput matches snapshot with escaped value 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-caret-down"
icon="caret-down"
tabindex="0"
>
<svg
data-icon="caret-down"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -3,12 +3,15 @@
exports[`SuggestionMenu matches snapshot 1`] = `
<ul
class="bp4-menu suggestion-menu"
role="menu"
>
<li
class=""
role="none"
>
<a
class="bp4-menu-item bp4-popover-dismiss"
role="menuitem"
tabindex="0"
>
<div
@ -20,9 +23,11 @@ exports[`SuggestionMenu matches snapshot 1`] = `
</li>
<li
class=""
role="none"
>
<a
class="bp4-menu-item bp4-popover-dismiss"
role="menuitem"
tabindex="0"
>
<div
@ -34,9 +39,11 @@ exports[`SuggestionMenu matches snapshot 1`] = `
</li>
<li
class=""
role="none"
>
<a
class="bp4-menu-item bp4-popover-dismiss"
role="menuitem"
tabindex="0"
>
<div
@ -48,6 +55,7 @@ exports[`SuggestionMenu matches snapshot 1`] = `
</li>
<li
class="bp4-submenu"
role="none"
>
<span
class="bp4-popover-wrapper"
@ -58,6 +66,7 @@ exports[`SuggestionMenu matches snapshot 1`] = `
>
<a
class="bp4-menu-item"
role="menuitem"
tabindex="0"
>
<div
@ -66,18 +75,17 @@ exports[`SuggestionMenu matches snapshot 1`] = `
Fruit
</div>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-caret-right bp4-submenu-icon"
icon="caret-right"
>
<svg
data-icon="caret-right"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
Open sub menu
</desc>
<path
d="M11 8c0-.15-.07-.28-.17-.37l-4-3.5A.495.495 0 006 4.5v7a.495.495 0 00.83.37l4-3.5c.1-.09.17-.22.17-.37z"
fill-rule="evenodd"

View File

@ -37,6 +37,7 @@ exports[`TableCell matches snapshot array long 1`] = `
<svg
data-icon="more"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -116,6 +117,7 @@ exports[`TableCell matches snapshot truncate 1`] = `
<svg
data-icon="more"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -27,6 +27,7 @@ exports[`TableColumnSelector matches snapshot 1`] = `
<svg
data-icon="caret-down"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -36,6 +36,7 @@ exports[`TimedButton matches snapshot 1`] = `
hoverOpenDelay={150}
inheritDarkTheme={true}
interactionKind="click"
matchTargetWidth={false}
minimal={false}
openOnTargetFocus={true}
positioningStrategy="absolute"

View File

@ -34,22 +34,23 @@ exports[`AboutDialog matches snapshot 1`] = `
>
<svg
data-icon="graph"
height="20"
viewBox="0 0 20 20"
width="20"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<path
d="M17.5 4A2.5 2.5 0 0015 6.5c0 .06.01.12.02.18l-1.9.84C12.38 6.6 11.27 6 10 6c-.83 0-1.59.25-2.23.68L4.91 4.14c.05-.21.09-.42.09-.64a2.5 2.5 0 00-5 0A2.5 2.5 0 002.5 6c.42 0 .81-.11 1.16-.3l2.79 2.48C6.17 8.73 6 9.34 6 10c0 1.41.73 2.64 1.83 3.35l-.56 1.67A2.498 2.498 0 005 17.5a2.5 2.5 0 005 0c0-.74-.32-1.39-.83-1.85l.56-1.68c.09.01.18.03.27.03 2.21 0 4-1.79 4-4 0-.22-.03-.44-.07-.65l2.02-.9c.43.34.96.55 1.55.55a2.5 2.5 0 000-5z"
d="M14 3c-1.06 0-1.92.83-1.99 1.88l-1.93.97A2.95 2.95 0 008 5c-.56 0-1.08.16-1.52.43L3.97 3.34C3.98 3.23 4 3.12 4 3c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2c.24 0 .47-.05.68-.13l2.51 2.09C5.08 7.29 5 7.63 5 8c0 .96.46 1.81 1.16 2.35l-.56 1.69c-.91.19-1.6.99-1.6 1.96 0 1.1.9 2 2 2s2-.9 2-2c0-.51-.2-.97-.51-1.32l.56-1.69A2.99 2.99 0 0011 8c0-.12-.02-.24-.04-.36l1.94-.97c.32.21.69.33 1.1.33 1.1 0 2-.9 2-2s-.9-2-2-2z"
fill-rule="evenodd"
/>
</svg>
</span>
<h4
<h6
class="bp4-heading"
id="title-bp-dialog-0"
>
Apache Druid
</h4>
</h6>
<button
aria-label="Close"
class="bp4-button bp4-minimal bp4-dialog-close-button"
@ -57,17 +58,18 @@ exports[`AboutDialog matches snapshot 1`] = `
>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-small-cross"
icon="small-cross"
class="bp4-icon bp4-icon-cross"
icon="cross"
>
<svg
data-icon="small-cross"
height="20"
viewBox="0 0 20 20"
width="20"
data-icon="cross"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<path
d="M11.41 10l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z"
d="M9.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L6.59 8 3.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z"
fill-rule="evenodd"
/>
</svg>

View File

@ -26,12 +26,12 @@ exports[`Datasource table action dialog matches snapshot 1`] = `
<div
class="bp4-dialog-header"
>
<h4
<h6
class="bp4-heading"
id="title-bp-dialog-0"
>
Datasource: test
</h4>
</h6>
<button
aria-label="Close"
class="bp4-button bp4-minimal bp4-dialog-close-button"
@ -39,17 +39,18 @@ exports[`Datasource table action dialog matches snapshot 1`] = `
>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-small-cross"
icon="small-cross"
class="bp4-icon bp4-icon-cross"
icon="cross"
>
<svg
data-icon="small-cross"
height="20"
viewBox="0 0 20 20"
width="20"
data-icon="cross"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<path
d="M11.41 10l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z"
d="M9.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L6.59 8 3.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z"
fill-rule="evenodd"
/>
</svg>
@ -74,6 +75,7 @@ exports[`Datasource table action dialog matches snapshot 1`] = `
<svg
data-icon="th"
height="20"
role="img"
viewBox="0 0 20 20"
width="20"
>
@ -101,6 +103,7 @@ exports[`Datasource table action dialog matches snapshot 1`] = `
<svg
data-icon="list-columns"
height="20"
role="img"
viewBox="0 0 20 20"
width="20"
>
@ -177,11 +180,11 @@ exports[`Datasource table action dialog matches snapshot 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-wrench"
icon="wrench"
tabindex="-1"
>
<svg
data-icon="wrench"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -204,6 +207,7 @@ exports[`Datasource table action dialog matches snapshot 1`] = `
<svg
data-icon="caret-down"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -34,22 +34,23 @@ exports[`DoctorDialog matches snapshot 1`] = `
>
<svg
data-icon="pulse"
height="20"
viewBox="0 0 20 20"
width="20"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<path
d="M19 10h-2.38L14.9 6.55h-.01c-.17-.32-.5-.55-.89-.55-.43 0-.79.28-.93.66h-.01l-2.75 7.57L7.98 1.82h-.02A.978.978 0 007 1c-.44 0-.8.29-.94.69h-.01L3.28 10H1c-.55 0-1 .45-1 1s.45 1 1 1h3c.44 0 .8-.29.94-.69h.01l1.78-5.34 2.29 12.21h.02c.08.46.47.82.96.82.43 0 .79-.28.93-.66h.01l3.21-8.82.96 1.92h.01c.16.33.49.56.88.56h3c.55 0 1-.45 1-1s-.45-1-1-1z"
d="M15 8h-1.46l-1.7-2.55-.02.01A.984.984 0 0011 5c-.43 0-.79.27-.93.65h-.01l-1.69 4.51-1.38-8.32h-.02A.989.989 0 006 1c-.41 0-.77.25-.92.61L2.34 8H1c-.55 0-1 .45-1 1s.45 1 1 1h2c.41 0 .77-.25.92-.61l1.65-3.86 1.44 8.63h.02c.08.47.47.84.97.84.43 0 .79-.27.93-.65h.01l2.31-6.17.92 1.38.02-.01c.17.26.46.45.81.45h2c.55 0 1-.45 1-1s-.45-1-1-1z"
fill-rule="evenodd"
/>
</svg>
</span>
<h4
<h6
class="bp4-heading"
id="title-bp-dialog-0"
>
Druid Doctor
</h4>
</h6>
<button
aria-label="Close"
class="bp4-button bp4-minimal bp4-dialog-close-button"
@ -57,17 +58,18 @@ exports[`DoctorDialog matches snapshot 1`] = `
>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-small-cross"
icon="small-cross"
class="bp4-icon bp4-icon-cross"
icon="cross"
>
<svg
data-icon="small-cross"
height="20"
viewBox="0 0 20 20"
width="20"
data-icon="cross"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<path
d="M11.41 10l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z"
d="M9.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L6.59 8 3.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z"
fill-rule="evenodd"
/>
</svg>

View File

@ -26,12 +26,12 @@ exports[`EditContextDialog matches snapshot 1`] = `
<div
class="bp4-dialog-header"
>
<h4
<h6
class="bp4-heading"
id="title-bp-dialog-0"
>
Edit query context
</h4>
</h6>
<button
aria-label="Close"
class="bp4-button bp4-minimal bp4-dialog-close-button"
@ -39,17 +39,18 @@ exports[`EditContextDialog matches snapshot 1`] = `
>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-small-cross"
icon="small-cross"
class="bp4-icon bp4-icon-cross"
icon="cross"
>
<svg
data-icon="small-cross"
height="20"
viewBox="0 0 20 20"
width="20"
data-icon="cross"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<path
d="M11.41 10l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z"
d="M9.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L6.59 8 3.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z"
fill-rule="evenodd"
/>
</svg>

View File

@ -26,12 +26,12 @@ exports[`HistoryDialog matches snapshot 1`] = `
<div
class="bp4-dialog-header"
>
<h4
<h6
class="bp4-heading"
id="title-bp-dialog-0"
>
History
</h4>
</h6>
<button
aria-label="Close"
class="bp4-button bp4-minimal bp4-dialog-close-button"
@ -39,17 +39,18 @@ exports[`HistoryDialog matches snapshot 1`] = `
>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-small-cross"
icon="small-cross"
class="bp4-icon bp4-icon-cross"
icon="cross"
>
<svg
data-icon="small-cross"
height="20"
viewBox="0 0 20 20"
width="20"
data-icon="cross"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<path
d="M11.41 10l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z"
d="M9.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L6.59 8 3.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z"
fill-rule="evenodd"
/>
</svg>
@ -162,11 +163,11 @@ exports[`HistoryDialog matches snapshot 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-arrow-left"
icon="arrow-left"
tabindex="-1"
>
<svg
data-icon="arrow-left"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -26,12 +26,12 @@ exports[`Lookup table action dialog matches snapshot 1`] = `
<div
class="bp4-dialog-header"
>
<h4
<h6
class="bp4-heading"
id="title-bp-dialog-0"
>
Lookup: test
</h4>
</h6>
<button
aria-label="Close"
class="bp4-button bp4-minimal bp4-dialog-close-button"
@ -39,17 +39,18 @@ exports[`Lookup table action dialog matches snapshot 1`] = `
>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-small-cross"
icon="small-cross"
class="bp4-icon bp4-icon-cross"
icon="cross"
>
<svg
data-icon="small-cross"
height="20"
viewBox="0 0 20 20"
width="20"
data-icon="cross"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<path
d="M11.41 10l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z"
d="M9.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L6.59 8 3.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z"
fill-rule="evenodd"
/>
</svg>
@ -74,6 +75,7 @@ exports[`Lookup table action dialog matches snapshot 1`] = `
<svg
data-icon="list-columns"
height="20"
role="img"
viewBox="0 0 20 20"
width="20"
>
@ -154,11 +156,11 @@ exports[`Lookup table action dialog matches snapshot 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-wrench"
icon="wrench"
tabindex="-1"
>
<svg
data-icon="wrench"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -181,6 +183,7 @@ exports[`Lookup table action dialog matches snapshot 1`] = `
<svg
data-icon="caret-down"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -26,12 +26,12 @@ exports[`RetentionDialog matches snapshot 1`] = `
<div
class="bp4-dialog-header"
>
<h4
<h6
class="bp4-heading"
id="title-bp-dialog-0"
>
Edit retention rules: test-datasource
</h4>
</h6>
<button
aria-label="Close"
class="bp4-button bp4-minimal bp4-dialog-close-button"
@ -39,17 +39,18 @@ exports[`RetentionDialog matches snapshot 1`] = `
>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-small-cross"
icon="small-cross"
class="bp4-icon bp4-icon-cross"
icon="cross"
>
<svg
data-icon="small-cross"
height="20"
viewBox="0 0 20 20"
width="20"
data-icon="cross"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<path
d="M11.41 10l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z"
d="M9.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L6.59 8 3.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z"
fill-rule="evenodd"
/>
</svg>
@ -100,6 +101,7 @@ exports[`RetentionDialog matches snapshot 1`] = `
<svg
data-icon="caret-down"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -121,11 +123,11 @@ exports[`RetentionDialog matches snapshot 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-trash"
icon="trash"
tabindex="0"
>
<svg
data-icon="trash"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -218,14 +220,18 @@ exports[`RetentionDialog matches snapshot 1`] = `
icon="double-caret-vertical"
>
<svg
aria-labelledby="iconTitle-3"
data-icon="double-caret-vertical"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
<title
id="iconTitle-3"
>
Open dropdown
</desc>
</title>
<path
d="M5 7h6a1.003 1.003 0 00.71-1.71l-3-3C8.53 2.11 8.28 2 8 2s-.53.11-.71.29l-3 3A1.003 1.003 0 005 7zm6 2H5a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0011 9z"
fill-rule="evenodd"
@ -261,11 +267,11 @@ exports[`RetentionDialog matches snapshot 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-caret-down"
icon="caret-down"
tabindex="0"
>
<svg
data-icon="caret-down"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -322,10 +328,15 @@ exports[`RetentionDialog matches snapshot 1`] = `
class="bp4-input-group"
>
<input
aria-valuemax="256"
aria-valuemin="0"
aria-valuenow="2"
autocomplete="off"
class="bp4-input"
id="numericInput-0"
max="256"
min="0"
role="spinbutton"
type="text"
value="2"
/>
@ -334,6 +345,7 @@ exports[`RetentionDialog matches snapshot 1`] = `
class="bp4-button-group bp4-vertical bp4-fixed"
>
<button
aria-controls="numericInput-0"
aria-label="increment"
class="bp4-button"
type="button"
@ -342,11 +354,11 @@ exports[`RetentionDialog matches snapshot 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-chevron-up"
icon="chevron-up"
tabindex="0"
>
<svg
data-icon="chevron-up"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -358,6 +370,7 @@ exports[`RetentionDialog matches snapshot 1`] = `
</span>
</button>
<button
aria-controls="numericInput-0"
aria-label="decrement"
class="bp4-button"
type="button"
@ -366,11 +379,11 @@ exports[`RetentionDialog matches snapshot 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-chevron-down"
icon="chevron-down"
tabindex="0"
>
<svg
data-icon="chevron-down"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -419,14 +432,18 @@ exports[`RetentionDialog matches snapshot 1`] = `
icon="double-caret-vertical"
>
<svg
aria-labelledby="iconTitle-7"
data-icon="double-caret-vertical"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
<title
id="iconTitle-7"
>
Open dropdown
</desc>
</title>
<path
d="M5 7h6a1.003 1.003 0 00.71-1.71l-3-3C8.53 2.11 8.28 2 8 2s-.53.11-.71.29l-3 3A1.003 1.003 0 005 7zm6 2H5a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0011 9z"
fill-rule="evenodd"
@ -444,11 +461,11 @@ exports[`RetentionDialog matches snapshot 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-trash"
icon="trash"
tabindex="0"
>
<svg
data-icon="trash"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -474,11 +491,11 @@ exports[`RetentionDialog matches snapshot 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-plus"
icon="plus"
tabindex="-1"
>
<svg
data-icon="plus"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -511,11 +528,11 @@ exports[`RetentionDialog matches snapshot 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-plus"
icon="plus"
tabindex="-1"
>
<svg
data-icon="plus"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -612,6 +629,7 @@ exports[`RetentionDialog matches snapshot 1`] = `
<svg
data-icon="arrow-right"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -26,12 +26,12 @@ exports[`SegmentTableActionDialog matches snapshot 1`] = `
<div
class="bp4-dialog-header"
>
<h4
<h6
class="bp4-heading"
id="title-bp-dialog-0"
>
Segment: test
</h4>
</h6>
<button
aria-label="Close"
class="bp4-button bp4-minimal bp4-dialog-close-button"
@ -39,17 +39,18 @@ exports[`SegmentTableActionDialog matches snapshot 1`] = `
>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-small-cross"
icon="small-cross"
class="bp4-icon bp4-icon-cross"
icon="cross"
>
<svg
data-icon="small-cross"
height="20"
viewBox="0 0 20 20"
width="20"
data-icon="cross"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<path
d="M11.41 10l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z"
d="M9.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L6.59 8 3.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z"
fill-rule="evenodd"
/>
</svg>
@ -74,6 +75,7 @@ exports[`SegmentTableActionDialog matches snapshot 1`] = `
<svg
data-icon="manually-entered-data"
height="20"
role="img"
viewBox="0 0 20 20"
width="20"
>
@ -101,6 +103,7 @@ exports[`SegmentTableActionDialog matches snapshot 1`] = `
<svg
data-icon="th"
height="20"
role="img"
viewBox="0 0 20 20"
width="20"
>
@ -225,11 +228,11 @@ exports[`SegmentTableActionDialog matches snapshot 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-wrench"
icon="wrench"
tabindex="-1"
>
<svg
data-icon="wrench"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -252,6 +255,7 @@ exports[`SegmentTableActionDialog matches snapshot 1`] = `
<svg
data-icon="caret-down"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -26,12 +26,12 @@ exports[`ShowValueDialog matches snapshot 1`] = `
<div
class="bp4-dialog-header"
>
<h4
<h6
class="bp4-heading"
id="title-bp-dialog-0"
>
Full value
</h4>
</h6>
<button
aria-label="Close"
class="bp4-button bp4-minimal bp4-dialog-close-button"
@ -39,17 +39,18 @@ exports[`ShowValueDialog matches snapshot 1`] = `
>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-small-cross"
icon="small-cross"
class="bp4-icon bp4-icon-cross"
icon="cross"
>
<svg
data-icon="small-cross"
height="20"
viewBox="0 0 20 20"
width="20"
data-icon="cross"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<path
d="M11.41 10l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z"
d="M9.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L6.59 8 3.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z"
fill-rule="evenodd"
/>
</svg>
@ -73,11 +74,11 @@ exports[`ShowValueDialog matches snapshot 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-duplicate"
icon="duplicate"
tabindex="-1"
>
<svg
data-icon="duplicate"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -26,12 +26,12 @@ exports[`SnitchDialog matches snapshot 1`] = `
<div
class="bp4-dialog-header"
>
<h4
<h6
class="bp4-heading"
id="title-bp-dialog-0"
>
Be snitchin
</h4>
</h6>
<button
aria-label="Close"
class="bp4-button bp4-minimal bp4-dialog-close-button"
@ -39,17 +39,18 @@ exports[`SnitchDialog matches snapshot 1`] = `
>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-small-cross"
icon="small-cross"
class="bp4-icon bp4-icon-cross"
icon="cross"
>
<svg
data-icon="small-cross"
height="20"
viewBox="0 0 20 20"
width="20"
data-icon="cross"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<path
d="M11.41 10l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z"
d="M9.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L6.59 8 3.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z"
fill-rule="evenodd"
/>
</svg>
@ -82,6 +83,7 @@ exports[`SnitchDialog matches snapshot 1`] = `
<svg
data-icon="arrow-right"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -130,12 +132,12 @@ exports[`SnitchDialog matches snapshot with history 1`] = `
<div
class="bp4-dialog-header"
>
<h4
<h6
class="bp4-heading"
id="title-bp-dialog-1"
>
Be snitchin
</h4>
</h6>
<button
aria-label="Close"
class="bp4-button bp4-minimal bp4-dialog-close-button"
@ -143,17 +145,18 @@ exports[`SnitchDialog matches snapshot with history 1`] = `
>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-small-cross"
icon="small-cross"
class="bp4-icon bp4-icon-cross"
icon="cross"
>
<svg
data-icon="small-cross"
height="20"
viewBox="0 0 20 20"
width="20"
data-icon="cross"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<path
d="M11.41 10l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z"
d="M9.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L6.59 8 3.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z"
fill-rule="evenodd"
/>
</svg>
@ -196,6 +199,7 @@ exports[`SnitchDialog matches snapshot with history 1`] = `
<svg
data-icon="arrow-right"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -26,12 +26,12 @@ exports[`SpecDialog matches snapshot no initSpec 1`] = `
<div
class="bp4-dialog-header"
>
<h4
<h6
class="bp4-heading"
id="title-bp-dialog-0"
>
test
</h4>
</h6>
<button
aria-label="Close"
class="bp4-button bp4-minimal bp4-dialog-close-button"
@ -39,17 +39,18 @@ exports[`SpecDialog matches snapshot no initSpec 1`] = `
>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-small-cross"
icon="small-cross"
class="bp4-icon bp4-icon-cross"
icon="cross"
>
<svg
data-icon="small-cross"
height="20"
viewBox="0 0 20 20"
width="20"
data-icon="cross"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<path
d="M11.41 10l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z"
d="M9.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L6.59 8 3.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z"
fill-rule="evenodd"
/>
</svg>
@ -219,12 +220,12 @@ exports[`SpecDialog matches snapshot with initSpec 1`] = `
<div
class="bp4-dialog-header"
>
<h4
<h6
class="bp4-heading"
id="title-bp-dialog-1"
>
test
</h4>
</h6>
<button
aria-label="Close"
class="bp4-button bp4-minimal bp4-dialog-close-button"
@ -232,17 +233,18 @@ exports[`SpecDialog matches snapshot with initSpec 1`] = `
>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-small-cross"
icon="small-cross"
class="bp4-icon bp4-icon-cross"
icon="cross"
>
<svg
data-icon="small-cross"
height="20"
viewBox="0 0 20 20"
width="20"
data-icon="cross"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<path
d="M11.41 10l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z"
d="M9.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L6.59 8 3.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z"
fill-rule="evenodd"
/>
</svg>

View File

@ -26,12 +26,12 @@ exports[`StatusDialog matches snapshot 1`] = `
<div
class="bp4-dialog-header"
>
<h4
<h6
class="bp4-heading"
id="title-bp-dialog-0"
>
Status
</h4>
</h6>
<button
aria-label="Close"
class="bp4-button bp4-minimal bp4-dialog-close-button"
@ -39,17 +39,18 @@ exports[`StatusDialog matches snapshot 1`] = `
>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-small-cross"
icon="small-cross"
class="bp4-icon bp4-icon-cross"
icon="cross"
>
<svg
data-icon="small-cross"
height="20"
viewBox="0 0 20 20"
width="20"
data-icon="cross"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<path
d="M11.41 10l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z"
d="M9.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L6.59 8 3.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z"
fill-rule="evenodd"
/>
</svg>

View File

@ -26,12 +26,12 @@ exports[`SupervisorTableActionDialog matches snapshot 1`] = `
<div
class="bp4-dialog-header"
>
<h4
<h6
class="bp4-heading"
id="title-bp-dialog-0"
>
Supervisor: test
</h4>
</h6>
<button
aria-label="Close"
class="bp4-button bp4-minimal bp4-dialog-close-button"
@ -39,17 +39,18 @@ exports[`SupervisorTableActionDialog matches snapshot 1`] = `
>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-small-cross"
icon="small-cross"
class="bp4-icon bp4-icon-cross"
icon="cross"
>
<svg
data-icon="small-cross"
height="20"
viewBox="0 0 20 20"
width="20"
data-icon="cross"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<path
d="M11.41 10l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z"
d="M9.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L6.59 8 3.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z"
fill-rule="evenodd"
/>
</svg>
@ -74,6 +75,7 @@ exports[`SupervisorTableActionDialog matches snapshot 1`] = `
<svg
data-icon="dashboard"
height="20"
role="img"
viewBox="0 0 20 20"
width="20"
>
@ -101,6 +103,7 @@ exports[`SupervisorTableActionDialog matches snapshot 1`] = `
<svg
data-icon="chart"
height="20"
role="img"
viewBox="0 0 20 20"
width="20"
>
@ -128,6 +131,7 @@ exports[`SupervisorTableActionDialog matches snapshot 1`] = `
<svg
data-icon="align-left"
height="20"
role="img"
viewBox="0 0 20 20"
width="20"
>
@ -155,6 +159,7 @@ exports[`SupervisorTableActionDialog matches snapshot 1`] = `
<svg
data-icon="history"
height="20"
role="img"
viewBox="0 0 20 20"
width="20"
>
@ -279,11 +284,11 @@ exports[`SupervisorTableActionDialog matches snapshot 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-wrench"
icon="wrench"
tabindex="-1"
>
<svg
data-icon="wrench"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -306,6 +311,7 @@ exports[`SupervisorTableActionDialog matches snapshot 1`] = `
<svg
data-icon="caret-down"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -26,12 +26,12 @@ exports[`TableActionDialog matches snapshot 1`] = `
<div
class="bp4-dialog-header"
>
<h4
<h6
class="bp4-heading"
id="title-bp-dialog-0"
>
Table dummy actions
</h4>
</h6>
<button
aria-label="Close"
class="bp4-button bp4-minimal bp4-dialog-close-button"
@ -39,17 +39,18 @@ exports[`TableActionDialog matches snapshot 1`] = `
>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-small-cross"
icon="small-cross"
class="bp4-icon bp4-icon-cross"
icon="cross"
>
<svg
data-icon="small-cross"
height="20"
viewBox="0 0 20 20"
width="20"
data-icon="cross"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<path
d="M11.41 10l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z"
d="M9.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L6.59 8 3.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z"
fill-rule="evenodd"
/>
</svg>
@ -74,6 +75,7 @@ exports[`TableActionDialog matches snapshot 1`] = `
<svg
data-icon="badge"
height="20"
role="img"
viewBox="0 0 20 20"
width="20"
>

View File

@ -26,12 +26,12 @@ exports[`TaskTableActionDialog matches snapshot 1`] = `
<div
class="bp4-dialog-header"
>
<h4
<h6
class="bp4-heading"
id="title-bp-dialog-0"
>
Task: test
</h4>
</h6>
<button
aria-label="Close"
class="bp4-button bp4-minimal bp4-dialog-close-button"
@ -39,17 +39,18 @@ exports[`TaskTableActionDialog matches snapshot 1`] = `
>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-small-cross"
icon="small-cross"
class="bp4-icon bp4-icon-cross"
icon="cross"
>
<svg
data-icon="small-cross"
height="20"
viewBox="0 0 20 20"
width="20"
data-icon="cross"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<path
d="M11.41 10l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z"
d="M9.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L6.59 8 3.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z"
fill-rule="evenodd"
/>
</svg>
@ -74,6 +75,7 @@ exports[`TaskTableActionDialog matches snapshot 1`] = `
<svg
data-icon="dashboard"
height="20"
role="img"
viewBox="0 0 20 20"
width="20"
>
@ -101,6 +103,7 @@ exports[`TaskTableActionDialog matches snapshot 1`] = `
<svg
data-icon="align-left"
height="20"
role="img"
viewBox="0 0 20 20"
width="20"
>
@ -128,6 +131,7 @@ exports[`TaskTableActionDialog matches snapshot 1`] = `
<svg
data-icon="comparison"
height="20"
role="img"
viewBox="0 0 20 20"
width="20"
>
@ -155,6 +159,7 @@ exports[`TaskTableActionDialog matches snapshot 1`] = `
<svg
data-icon="align-justify"
height="20"
role="img"
viewBox="0 0 20 20"
width="20"
>
@ -279,11 +284,11 @@ exports[`TaskTableActionDialog matches snapshot 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-wrench"
icon="wrench"
tabindex="-1"
>
<svg
data-icon="wrench"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -306,6 +311,7 @@ exports[`TaskTableActionDialog matches snapshot 1`] = `
<svg
data-icon="caret-down"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -16,13 +16,13 @@
* limitations under the License.
*/
@import '~normalize.css/normalize';
@import '~fontsource-open-sans/index.css';
@import 'normalize.css/normalize';
@import 'fontsource-open-sans/index.css';
@import './blueprint-overrides';
@import '~@blueprintjs/core/src/blueprint';
@import '~@blueprintjs/datetime/src/blueprint-datetime';
@import '~@blueprintjs/popover2/src/blueprint-popover2';
@import '~react-splitter-layout/lib/index';
@import '@blueprintjs/core/src/blueprint';
@import '@blueprintjs/datetime/src/blueprint-datetime';
@import '@blueprintjs/popover2/src/blueprint-popover2';
@import 'react-splitter-layout/lib/index';
@import './react-table/react-table-base-styles';
@import './react-table/react-table-extra';

View File

@ -57,7 +57,7 @@ export const LocalStorageKeys = {
SQL_DATA_LOADER_CONTENT: 'sql-data-loader-content' as const,
};
export type LocalStorageKeys = typeof LocalStorageKeys[keyof typeof LocalStorageKeys];
export type LocalStorageKeys = (typeof LocalStorageKeys)[keyof typeof LocalStorageKeys];
// ----------------------------

View File

@ -18,7 +18,7 @@
@import './blueprint-overrides/common/colors';
@import './blueprint-overrides/common/variables';
@import '~@blueprintjs/core/src/common/variables';
@import '@blueprintjs/core/src/common/variables';
$header-bar-height: 50px;
$view-control-bar-height: 30px;

View File

@ -20,6 +20,7 @@ exports[`DatasourcesCard matches snapshot 1`] = `
data-icon="multi-select"
fill="#bfccd5"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -20,6 +20,7 @@ exports[`HomeViewCard matches snapshot 1`] = `
data-icon="database"
fill="#bfccd5"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -20,6 +20,7 @@ exports[`LookupsCard matches snapshot 1`] = `
data-icon="properties"
fill="#bfccd5"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -20,6 +20,7 @@ exports[`SegmentsCard matches snapshot 1`] = `
data-icon="stacked-chart"
fill="#bfccd5"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -20,6 +20,7 @@ exports[`ServicesCard matches snapshot 1`] = `
data-icon="database"
fill="#bfccd5"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -19,6 +19,7 @@ exports[`StatusCard matches snapshot 1`] = `
data-icon="graph"
fill="#bfccd5"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -20,6 +20,7 @@ exports[`SupervisorsCard matches snapshot 1`] = `
data-icon="list-columns"
fill="#bfccd5"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -20,6 +20,7 @@ exports[`TasksCard matches snapshot 1`] = `
data-icon="gantt-chart"
fill="#bfccd5"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -36,14 +36,18 @@ exports[`ExamplePicker matches snapshot 1`] = `
icon="double-caret-vertical"
>
<svg
aria-labelledby="iconTitle-0"
data-icon="double-caret-vertical"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
<title
id="iconTitle-0"
>
Open dropdown
</desc>
</title>
<path
d="M5 7h6a1.003 1.003 0 00.71-1.71l-3-3C8.53 2.11 8.28 2 8 2s-.53.11-.71.29l-3 3A1.003 1.003 0 005 7zm6 2H5a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0011 9z"
fill-rule="evenodd"

View File

@ -30,6 +30,7 @@ exports[`FormEditor matches snapshot 1`] = `
<svg
data-icon="info-sign"
height="14"
role="img"
viewBox="0 0 16 16"
width="14"
>
@ -73,11 +74,11 @@ exports[`FormEditor matches snapshot 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-trash"
icon="trash"
tabindex="0"
>
<svg
data-icon="trash"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -16,6 +16,8 @@
* limitations under the License.
*/
@use 'sass:math';
@import '../../variables';
$control-bar-width: 300px;
@ -130,7 +132,7 @@ $actual-icon-height: 400px;
img {
width: $icon-width;
height: $icon-width * ($actual-icon-height / $actual-icon-width);
height: $icon-width * math.div($actual-icon-height, $actual-icon-width);
display: inline-block;
}
}

View File

@ -51,6 +51,7 @@ exports[`ColumnTree matches snapshot 1`] = `
hoverOpenDelay={150}
inheritDarkTheme={true}
interactionKind="click"
matchTargetWidth={false}
minimal={false}
openOnTargetFocus={true}
position="right"
@ -83,6 +84,7 @@ exports[`ColumnTree matches snapshot 1`] = `
hoverOpenDelay={150}
inheritDarkTheme={true}
interactionKind="click"
matchTargetWidth={false}
minimal={false}
openOnTargetFocus={true}
position="right"
@ -115,6 +117,7 @@ exports[`ColumnTree matches snapshot 1`] = `
hoverOpenDelay={150}
inheritDarkTheme={true}
interactionKind="click"
matchTargetWidth={false}
minimal={false}
openOnTargetFocus={true}
position="right"
@ -148,6 +151,7 @@ exports[`ColumnTree matches snapshot 1`] = `
hoverOpenDelay={150}
inheritDarkTheme={true}
interactionKind="click"
matchTargetWidth={false}
minimal={false}
openOnTargetFocus={true}
position="right"

View File

@ -4,6 +4,7 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column inside
<div>
<li
class="bp4-submenu"
role="none"
>
<span
class="bp4-popover-wrapper"
@ -14,6 +15,7 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column inside
>
<a
class="bp4-menu-item"
role="menuitem"
tabindex="0"
>
<span
@ -28,6 +30,7 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column inside
<svg
data-icon="filter"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -44,18 +47,17 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column inside
Filter
</div>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-caret-right bp4-submenu-icon"
icon="caret-right"
>
<svg
data-icon="caret-right"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
Open sub menu
</desc>
<path
d="M11 8c0-.15-.07-.28-.17-.37l-4-3.5A.495.495 0 006 4.5v7a.495.495 0 00.83.37l4-3.5c.1-.09.17-.22.17-.37z"
fill-rule="evenodd"
@ -68,6 +70,7 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column inside
</li>
<li
class="bp4-submenu"
role="none"
>
<span
class="bp4-popover-wrapper"
@ -78,6 +81,7 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column inside
>
<a
class="bp4-menu-item"
role="menuitem"
tabindex="0"
>
<span
@ -92,6 +96,7 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column inside
<svg
data-icon="group-objects"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -108,18 +113,17 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column inside
Group by
</div>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-caret-right bp4-submenu-icon"
icon="caret-right"
>
<svg
data-icon="caret-right"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
Open sub menu
</desc>
<path
d="M11 8c0-.15-.07-.28-.17-.37l-4-3.5A.495.495 0 006 4.5v7a.495.495 0 00.83.37l4-3.5c.1-.09.17-.22.17-.37z"
fill-rule="evenodd"
@ -132,9 +136,11 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column inside
</li>
<li
class=""
role="none"
>
<a
class="bp4-menu-item bp4-popover-dismiss"
role="menuitem"
tabindex="0"
>
<span
@ -149,6 +155,7 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column inside
<svg
data-icon="ungroup-objects"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -168,6 +175,7 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column inside
</li>
<li
class="bp4-submenu"
role="none"
>
<span
class="bp4-popover-wrapper"
@ -178,6 +186,7 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column inside
>
<a
class="bp4-menu-item"
role="menuitem"
tabindex="0"
>
<span
@ -192,6 +201,7 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column inside
<svg
data-icon="function"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -208,18 +218,17 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column inside
Aggregate
</div>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-caret-right bp4-submenu-icon"
icon="caret-right"
>
<svg
data-icon="caret-right"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
Open sub menu
</desc>
<path
d="M11 8c0-.15-.07-.28-.17-.37l-4-3.5A.495.495 0 006 4.5v7a.495.495 0 00.83.37l4-3.5c.1-.09.17-.22.17-.37z"
fill-rule="evenodd"
@ -237,6 +246,7 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column not ins
<div>
<li
class="bp4-submenu"
role="none"
>
<span
class="bp4-popover-wrapper"
@ -247,6 +257,7 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column not ins
>
<a
class="bp4-menu-item"
role="menuitem"
tabindex="0"
>
<span
@ -261,6 +272,7 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column not ins
<svg
data-icon="filter"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -277,18 +289,17 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column not ins
Filter
</div>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-caret-right bp4-submenu-icon"
icon="caret-right"
>
<svg
data-icon="caret-right"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
Open sub menu
</desc>
<path
d="M11 8c0-.15-.07-.28-.17-.37l-4-3.5A.495.495 0 006 4.5v7a.495.495 0 00.83.37l4-3.5c.1-.09.17-.22.17-.37z"
fill-rule="evenodd"
@ -301,6 +312,7 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column not ins
</li>
<li
class="bp4-submenu"
role="none"
>
<span
class="bp4-popover-wrapper"
@ -311,6 +323,7 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column not ins
>
<a
class="bp4-menu-item"
role="menuitem"
tabindex="0"
>
<span
@ -325,6 +338,7 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column not ins
<svg
data-icon="group-objects"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -341,18 +355,17 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column not ins
Group by
</div>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-caret-right bp4-submenu-icon"
icon="caret-right"
>
<svg
data-icon="caret-right"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
Open sub menu
</desc>
<path
d="M11 8c0-.15-.07-.28-.17-.37l-4-3.5A.495.495 0 006 4.5v7a.495.495 0 00.83.37l4-3.5c.1-.09.17-.22.17-.37z"
fill-rule="evenodd"
@ -365,6 +378,7 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column not ins
</li>
<li
class="bp4-submenu"
role="none"
>
<span
class="bp4-popover-wrapper"
@ -375,6 +389,7 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column not ins
>
<a
class="bp4-menu-item"
role="menuitem"
tabindex="0"
>
<span
@ -389,6 +404,7 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column not ins
<svg
data-icon="function"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -405,18 +421,17 @@ exports[`NumberMenuItems matches snapshot when menu is opened for column not ins
Aggregate
</div>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-caret-right bp4-submenu-icon"
icon="caret-right"
>
<svg
data-icon="caret-right"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
Open sub menu
</desc>
<path
d="M11 8c0-.15-.07-.28-.17-.37l-4-3.5A.495.495 0 006 4.5v7a.495.495 0 00.83.37l4-3.5c.1-.09.17-.22.17-.37z"
fill-rule="evenodd"

View File

@ -4,6 +4,7 @@ exports[`StringMenuItems matches snapshot when menu is opened for column inside
<div>
<li
class="bp4-submenu"
role="none"
>
<span
class="bp4-popover-wrapper"
@ -14,6 +15,7 @@ exports[`StringMenuItems matches snapshot when menu is opened for column inside
>
<a
class="bp4-menu-item"
role="menuitem"
tabindex="0"
>
<span
@ -28,6 +30,7 @@ exports[`StringMenuItems matches snapshot when menu is opened for column inside
<svg
data-icon="filter"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -44,18 +47,17 @@ exports[`StringMenuItems matches snapshot when menu is opened for column inside
Filter
</div>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-caret-right bp4-submenu-icon"
icon="caret-right"
>
<svg
data-icon="caret-right"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
Open sub menu
</desc>
<path
d="M11 8c0-.15-.07-.28-.17-.37l-4-3.5A.495.495 0 006 4.5v7a.495.495 0 00.83.37l4-3.5c.1-.09.17-.22.17-.37z"
fill-rule="evenodd"
@ -68,6 +70,7 @@ exports[`StringMenuItems matches snapshot when menu is opened for column inside
</li>
<li
class="bp4-submenu"
role="none"
>
<span
class="bp4-popover-wrapper"
@ -78,6 +81,7 @@ exports[`StringMenuItems matches snapshot when menu is opened for column inside
>
<a
class="bp4-menu-item"
role="menuitem"
tabindex="0"
>
<span
@ -92,6 +96,7 @@ exports[`StringMenuItems matches snapshot when menu is opened for column inside
<svg
data-icon="group-objects"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -108,18 +113,17 @@ exports[`StringMenuItems matches snapshot when menu is opened for column inside
Group by
</div>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-caret-right bp4-submenu-icon"
icon="caret-right"
>
<svg
data-icon="caret-right"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
Open sub menu
</desc>
<path
d="M11 8c0-.15-.07-.28-.17-.37l-4-3.5A.495.495 0 006 4.5v7a.495.495 0 00.83.37l4-3.5c.1-.09.17-.22.17-.37z"
fill-rule="evenodd"
@ -132,9 +136,11 @@ exports[`StringMenuItems matches snapshot when menu is opened for column inside
</li>
<li
class=""
role="none"
>
<a
class="bp4-menu-item bp4-popover-dismiss"
role="menuitem"
tabindex="0"
>
<span
@ -149,6 +155,7 @@ exports[`StringMenuItems matches snapshot when menu is opened for column inside
<svg
data-icon="ungroup-objects"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -168,6 +175,7 @@ exports[`StringMenuItems matches snapshot when menu is opened for column inside
</li>
<li
class="bp4-submenu"
role="none"
>
<span
class="bp4-popover-wrapper"
@ -178,6 +186,7 @@ exports[`StringMenuItems matches snapshot when menu is opened for column inside
>
<a
class="bp4-menu-item"
role="menuitem"
tabindex="0"
>
<span
@ -192,6 +201,7 @@ exports[`StringMenuItems matches snapshot when menu is opened for column inside
<svg
data-icon="function"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -208,18 +218,17 @@ exports[`StringMenuItems matches snapshot when menu is opened for column inside
Aggregate
</div>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-caret-right bp4-submenu-icon"
icon="caret-right"
>
<svg
data-icon="caret-right"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
Open sub menu
</desc>
<path
d="M11 8c0-.15-.07-.28-.17-.37l-4-3.5A.495.495 0 006 4.5v7a.495.495 0 00.83.37l4-3.5c.1-.09.17-.22.17-.37z"
fill-rule="evenodd"
@ -237,6 +246,7 @@ exports[`StringMenuItems matches snapshot when menu is opened for column not ins
<div>
<li
class="bp4-submenu"
role="none"
>
<span
class="bp4-popover-wrapper"
@ -247,6 +257,7 @@ exports[`StringMenuItems matches snapshot when menu is opened for column not ins
>
<a
class="bp4-menu-item"
role="menuitem"
tabindex="0"
>
<span
@ -261,6 +272,7 @@ exports[`StringMenuItems matches snapshot when menu is opened for column not ins
<svg
data-icon="filter"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -277,18 +289,17 @@ exports[`StringMenuItems matches snapshot when menu is opened for column not ins
Filter
</div>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-caret-right bp4-submenu-icon"
icon="caret-right"
>
<svg
data-icon="caret-right"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
Open sub menu
</desc>
<path
d="M11 8c0-.15-.07-.28-.17-.37l-4-3.5A.495.495 0 006 4.5v7a.495.495 0 00.83.37l4-3.5c.1-.09.17-.22.17-.37z"
fill-rule="evenodd"
@ -301,6 +312,7 @@ exports[`StringMenuItems matches snapshot when menu is opened for column not ins
</li>
<li
class="bp4-submenu"
role="none"
>
<span
class="bp4-popover-wrapper"
@ -311,6 +323,7 @@ exports[`StringMenuItems matches snapshot when menu is opened for column not ins
>
<a
class="bp4-menu-item"
role="menuitem"
tabindex="0"
>
<span
@ -325,6 +338,7 @@ exports[`StringMenuItems matches snapshot when menu is opened for column not ins
<svg
data-icon="group-objects"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -341,18 +355,17 @@ exports[`StringMenuItems matches snapshot when menu is opened for column not ins
Group by
</div>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-caret-right bp4-submenu-icon"
icon="caret-right"
>
<svg
data-icon="caret-right"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
Open sub menu
</desc>
<path
d="M11 8c0-.15-.07-.28-.17-.37l-4-3.5A.495.495 0 006 4.5v7a.495.495 0 00.83.37l4-3.5c.1-.09.17-.22.17-.37z"
fill-rule="evenodd"
@ -365,6 +378,7 @@ exports[`StringMenuItems matches snapshot when menu is opened for column not ins
</li>
<li
class="bp4-submenu"
role="none"
>
<span
class="bp4-popover-wrapper"
@ -375,6 +389,7 @@ exports[`StringMenuItems matches snapshot when menu is opened for column not ins
>
<a
class="bp4-menu-item"
role="menuitem"
tabindex="0"
>
<span
@ -389,6 +404,7 @@ exports[`StringMenuItems matches snapshot when menu is opened for column not ins
<svg
data-icon="function"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -405,18 +421,17 @@ exports[`StringMenuItems matches snapshot when menu is opened for column not ins
Aggregate
</div>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-caret-right bp4-submenu-icon"
icon="caret-right"
>
<svg
data-icon="caret-right"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
Open sub menu
</desc>
<path
d="M11 8c0-.15-.07-.28-.17-.37l-4-3.5A.495.495 0 006 4.5v7a.495.495 0 00.83.37l4-3.5c.1-.09.17-.22.17-.37z"
fill-rule="evenodd"

View File

@ -4,6 +4,7 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column inside gr
<div>
<li
class="bp4-submenu"
role="none"
>
<span
class="bp4-popover-wrapper"
@ -14,6 +15,7 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column inside gr
>
<a
class="bp4-menu-item"
role="menuitem"
tabindex="0"
>
<span
@ -28,6 +30,7 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column inside gr
<svg
data-icon="filter"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -44,18 +47,17 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column inside gr
Filter
</div>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-caret-right bp4-submenu-icon"
icon="caret-right"
>
<svg
data-icon="caret-right"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
Open sub menu
</desc>
<path
d="M11 8c0-.15-.07-.28-.17-.37l-4-3.5A.495.495 0 006 4.5v7a.495.495 0 00.83.37l4-3.5c.1-.09.17-.22.17-.37z"
fill-rule="evenodd"
@ -68,6 +70,7 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column inside gr
</li>
<li
class="bp4-submenu"
role="none"
>
<span
class="bp4-popover-wrapper"
@ -78,6 +81,7 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column inside gr
>
<a
class="bp4-menu-item"
role="menuitem"
tabindex="0"
>
<span
@ -92,6 +96,7 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column inside gr
<svg
data-icon="group-objects"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -108,18 +113,17 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column inside gr
Group by
</div>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-caret-right bp4-submenu-icon"
icon="caret-right"
>
<svg
data-icon="caret-right"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
Open sub menu
</desc>
<path
d="M11 8c0-.15-.07-.28-.17-.37l-4-3.5A.495.495 0 006 4.5v7a.495.495 0 00.83.37l4-3.5c.1-.09.17-.22.17-.37z"
fill-rule="evenodd"
@ -132,9 +136,11 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column inside gr
</li>
<li
class=""
role="none"
>
<a
class="bp4-menu-item bp4-popover-dismiss"
role="menuitem"
tabindex="0"
>
<span
@ -149,6 +155,7 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column inside gr
<svg
data-icon="ungroup-objects"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -168,6 +175,7 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column inside gr
</li>
<li
class="bp4-submenu"
role="none"
>
<span
class="bp4-popover-wrapper"
@ -178,6 +186,7 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column inside gr
>
<a
class="bp4-menu-item"
role="menuitem"
tabindex="0"
>
<span
@ -192,6 +201,7 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column inside gr
<svg
data-icon="function"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -208,18 +218,17 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column inside gr
Aggregate
</div>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-caret-right bp4-submenu-icon"
icon="caret-right"
>
<svg
data-icon="caret-right"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
Open sub menu
</desc>
<path
d="M11 8c0-.15-.07-.28-.17-.37l-4-3.5A.495.495 0 006 4.5v7a.495.495 0 00.83.37l4-3.5c.1-.09.17-.22.17-.37z"
fill-rule="evenodd"
@ -237,6 +246,7 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column not insid
<div>
<li
class="bp4-submenu"
role="none"
>
<span
class="bp4-popover-wrapper"
@ -247,6 +257,7 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column not insid
>
<a
class="bp4-menu-item"
role="menuitem"
tabindex="0"
>
<span
@ -261,6 +272,7 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column not insid
<svg
data-icon="filter"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -277,18 +289,17 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column not insid
Filter
</div>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-caret-right bp4-submenu-icon"
icon="caret-right"
>
<svg
data-icon="caret-right"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
Open sub menu
</desc>
<path
d="M11 8c0-.15-.07-.28-.17-.37l-4-3.5A.495.495 0 006 4.5v7a.495.495 0 00.83.37l4-3.5c.1-.09.17-.22.17-.37z"
fill-rule="evenodd"
@ -301,6 +312,7 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column not insid
</li>
<li
class="bp4-submenu"
role="none"
>
<span
class="bp4-popover-wrapper"
@ -311,6 +323,7 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column not insid
>
<a
class="bp4-menu-item"
role="menuitem"
tabindex="0"
>
<span
@ -325,6 +338,7 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column not insid
<svg
data-icon="group-objects"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -341,18 +355,17 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column not insid
Group by
</div>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-caret-right bp4-submenu-icon"
icon="caret-right"
>
<svg
data-icon="caret-right"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
Open sub menu
</desc>
<path
d="M11 8c0-.15-.07-.28-.17-.37l-4-3.5A.495.495 0 006 4.5v7a.495.495 0 00.83.37l4-3.5c.1-.09.17-.22.17-.37z"
fill-rule="evenodd"
@ -365,6 +378,7 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column not insid
</li>
<li
class="bp4-submenu"
role="none"
>
<span
class="bp4-popover-wrapper"
@ -375,6 +389,7 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column not insid
>
<a
class="bp4-menu-item"
role="menuitem"
tabindex="0"
>
<span
@ -389,6 +404,7 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column not insid
<svg
data-icon="function"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -405,18 +421,17 @@ exports[`TimeMenuItems matches snapshot when menu is opened for column not insid
Aggregate
</div>
<span
aria-hidden="true"
class="bp4-icon bp4-icon-caret-right bp4-submenu-icon"
icon="caret-right"
>
<svg
data-icon="caret-right"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
<desc>
Open sub menu
</desc>
<path
d="M11 8c0-.15-.07-.28-.17-.37l-4-3.5A.495.495 0 006 4.5v7a.495.495 0 00.83.37l4-3.5c.1-.09.17-.22.17-.37z"
fill-rule="evenodd"

View File

@ -12,11 +12,11 @@ exports[`AnchoredQueryTimer matches snapshot 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-stopwatch"
icon="stopwatch"
tabindex="-1"
>
<svg
data-icon="stopwatch"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>
@ -40,11 +40,11 @@ exports[`AnchoredQueryTimer matches snapshot 1`] = `
aria-hidden="true"
class="bp4-icon bp4-icon-cross"
icon="cross"
tabindex="0"
>
<svg
data-icon="cross"
height="16"
role="img"
viewBox="0 0 16 16"
width="16"
>

View File

@ -99,6 +99,7 @@ exports[`ExplainDialog matches snapshot on some data (many queries) 1`] = `
>
<Blueprint4.Tabs
animate={true}
fill={false}
large={false}
renderActiveTabPanelOnly={true}
vertical={true}

View File

@ -16,6 +16,8 @@
* limitations under the License.
*/
@use 'sass:math';
@import '../../../variables';
$icon-width: 100px;
@ -78,7 +80,7 @@ $config-width: 400px;
img {
width: $icon-width;
height: $icon-width * ($actual-icon-height / $actual-icon-width);
height: $icon-width * math.div($actual-icon-height, $actual-icon-width);
display: inline-block;
}
}

View File

@ -126,6 +126,7 @@ exports[`MaxTasksButton matches snapshot 1`] = `
hoverOpenDelay={150}
inheritDarkTheme={true}
interactionKind="click"
matchTargetWidth={false}
minimal={false}
openOnTargetFocus={true}
position="bottom-left"

View File

@ -18,6 +18,7 @@
const process = require('process');
const path = require('path');
const { SassString } = require('sass');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const webpack = require('webpack');
@ -133,7 +134,24 @@ module.exports = env => {
},
},
},
{ loader: 'sass-loader' }, // compiles Sass to CSS, using Node Sass by default
{
// compiles Sass to CSS, using Dart Sass by default
loader: 'sass-loader',
options: {
sassOptions: {
functions: {
// Blueprint's usage of SCSS is dependent on 'node-sass', but we use Dart
// Sass for broader compatibility across CPU architectures. Blueprint's build
// process substitutes these 'svg-icon' functions with actual icons but we don't
// have access to them at this point. None of the components that use svg icons
// via CSS are themselves being used by the web console, so we can safely omit the icons.
//
// TODO: Re-evaluate after upgrading to Blueprint v5
'svg-icon($_icon, $_path)': () => new SassString('transparent'),
},
},
},
},
],
},
{