@aivenio/aquarium 5.0.1 → 5.2.0
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/_variables.scss +19 -0
- package/dist/atoms.cjs +103 -49
- package/dist/atoms.mjs +103 -49
- package/dist/charts.cjs +31 -4
- package/dist/charts.mjs +31 -4
- package/dist/src/atoms/Button/Button.js +7 -7
- package/dist/src/atoms/Checkbox/Checkbox.js +1 -1
- package/dist/src/atoms/DatePicker/Calendar.js +3 -3
- package/dist/src/atoms/DatePicker/RangeCalendar.js +6 -6
- package/dist/src/atoms/DropdownMenu/DropdownMenu.js +3 -3
- package/dist/src/atoms/Filter/Filter.js +2 -2
- package/dist/src/atoms/Modal/Modal.js +4 -4
- package/dist/src/atoms/Navigation/Navigation.js +3 -3
- package/dist/src/atoms/Popover/Popover.d.ts +1 -1
- package/dist/src/atoms/Popover/Popover.js +2 -2
- package/dist/src/atoms/RadioButton/RadioButton.js +1 -1
- package/dist/src/atoms/Select/Select.js +4 -4
- package/dist/src/atoms/Skeleton/Skeleton.js +2 -2
- package/dist/src/atoms/Stepper/Stepper.js +2 -2
- package/dist/src/atoms/Switch/Switch.js +3 -3
- package/dist/src/atoms/Timeline/Timeline.js +2 -2
- package/dist/src/atoms/Toast/Toast.js +2 -2
- package/dist/src/atoms/utils/index.js +2 -2
- package/dist/src/molecules/Chip/Chip.js +2 -2
- package/dist/src/molecules/Drawer/Drawer.js +1 -1
- package/dist/src/molecules/Dropdown/Dropdown.js +2 -2
- package/dist/src/molecules/ListItem/ListItem.js +2 -2
- package/dist/src/molecules/MultiInput/InputChip.js +2 -2
- package/dist/src/molecules/NativeSelect/NativeSelect.js +2 -2
- package/dist/src/molecules/TagLabel/TagLabel.js +3 -3
- package/dist/src/molecules/Tooltip/Tooltip.js +3 -3
- package/dist/src/tokens/tokens.json +31 -4
- package/dist/src/utils/constants.js +2 -2
- package/dist/styles.css +198 -84
- package/dist/system.cjs +107 -53
- package/dist/system.mjs +107 -53
- package/dist/tailwind.theme.json +31 -4
- package/dist/tokens.json +31 -4
- package/dist/tsconfig.module.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/atoms.mjs
CHANGED
|
@@ -4512,7 +4512,7 @@ var TooltipWrapper = React.forwardRef(
|
|
|
4512
4512
|
"div",
|
|
4513
4513
|
{
|
|
4514
4514
|
ref,
|
|
4515
|
-
className: "Aquarium-Tooltip p-3 rounded-sm typography-caption max-w-[320px] bg-
|
|
4515
|
+
className: "Aquarium-Tooltip p-3 rounded-sm typography-caption max-w-[320px] bg-inverse text-opposite-default",
|
|
4516
4516
|
...mergeProps(props, tooltipProps)
|
|
4517
4517
|
},
|
|
4518
4518
|
props.children,
|
|
@@ -4552,7 +4552,7 @@ var getArrowStyle = (element, position, { left, top }) => {
|
|
|
4552
4552
|
return { left, top };
|
|
4553
4553
|
};
|
|
4554
4554
|
var Arrow = (props) => {
|
|
4555
|
-
return /* @__PURE__ */ React.createElement("div", { className: "absolute w-3 h-3 bg-
|
|
4555
|
+
return /* @__PURE__ */ React.createElement("div", { className: "absolute w-3 h-3 bg-inverse rotate-45", ...props });
|
|
4556
4556
|
};
|
|
4557
4557
|
|
|
4558
4558
|
// src/atoms/Button/Button.tsx
|
|
@@ -4834,7 +4834,7 @@ var import_warningSign = __toESM(require_warningSign());
|
|
|
4834
4834
|
import { clsx } from "clsx";
|
|
4835
4835
|
import { tv } from "tailwind-variants";
|
|
4836
4836
|
var getCommonInputStyles = ({ readOnly, valid }) => clsx(
|
|
4837
|
-
"block w-full rounded-sm disabled:cursor-not-allowed disabled:border-default disabled:bg-
|
|
4837
|
+
"block w-full rounded-sm disabled:cursor-not-allowed disabled:border-default disabled:bg-medium typography-small text-default disabled:text-inactive placeholder:text-inactive focus:outline-none",
|
|
4838
4838
|
{
|
|
4839
4839
|
"px-3 py-3 bg-transparent": !readOnly,
|
|
4840
4840
|
"border-none resize-none cursor-default bg-transparent": readOnly,
|
|
@@ -4856,14 +4856,14 @@ var buttonStateClasses = tv2({
|
|
|
4856
4856
|
variants: {
|
|
4857
4857
|
kind: {
|
|
4858
4858
|
primary: [
|
|
4859
|
-
"active:text-white active:bg-primary-active",
|
|
4860
|
-
"hover:bg-primary-
|
|
4861
|
-
"disabled:text-white disabled:bg-primary-
|
|
4859
|
+
"active:text-white active:bg-action-primary-button-active",
|
|
4860
|
+
"hover:bg-action-primary-button-hover",
|
|
4861
|
+
"disabled:text-white disabled:bg-action-primary-button-disabled"
|
|
4862
4862
|
],
|
|
4863
4863
|
secondary: [
|
|
4864
4864
|
"active:bg-primary-active active:text-primary-active",
|
|
4865
4865
|
"hover:bg-primary-hover",
|
|
4866
|
-
"before:disabled:border-
|
|
4866
|
+
"before:disabled:border-action-secondary-button-disabled"
|
|
4867
4867
|
],
|
|
4868
4868
|
ghost: ["hover:text-primary-active"],
|
|
4869
4869
|
text: interactiveTextStyles(),
|
|
@@ -4882,8 +4882,8 @@ var buttonClasses = tv2({
|
|
|
4882
4882
|
base: "Aquarium-Button whitespace-nowrap transition text-center text-primary-intense rounded-sm relative px-4 py-3 inline-flex gap-3 items-center justify-center",
|
|
4883
4883
|
variants: {
|
|
4884
4884
|
kind: {
|
|
4885
|
-
primary: "Aquarium-Button.Primary text-white bg-primary-default icon-stroke-2",
|
|
4886
|
-
secondary: "Aquarium-Button.Secondary bg-transparent before:absolute before:inset-0 before:border before:border-
|
|
4885
|
+
primary: "Aquarium-Button.Primary text-white bg-action-primary-button-default icon-stroke-2",
|
|
4886
|
+
secondary: "Aquarium-Button.Secondary bg-transparent before:absolute before:inset-0 before:border before:border-action-secondary-button-default before:rounded-sm icon-stroke-2",
|
|
4887
4887
|
ghost: "Aquarium-Button.Ghost px-0 icon-stroke-2",
|
|
4888
4888
|
text: "Aquarium-Button.Text px-0 py-0 icon-stroke-2",
|
|
4889
4889
|
icon: "Aquarium-Button.Icon px-2 py-2 text-default"
|
|
@@ -5057,37 +5057,55 @@ var tokens_default = {
|
|
|
5057
5057
|
},
|
|
5058
5058
|
backgroundColor: {
|
|
5059
5059
|
body: "white",
|
|
5060
|
+
layer: "white",
|
|
5060
5061
|
"body-intense": "rgba(58,58,68,1)",
|
|
5062
|
+
inverse: "rgba(58,58,68,1)",
|
|
5063
|
+
overlay: "white",
|
|
5061
5064
|
"popover-content": "white",
|
|
5062
5065
|
muted: "rgba(247,247,250,1)",
|
|
5063
5066
|
default: "rgba(237,237,240,1)",
|
|
5067
|
+
medium: "rgba(237,237,240,1)",
|
|
5064
5068
|
intense: "rgba(210,210,214,1)",
|
|
5065
5069
|
primary: {
|
|
5066
5070
|
muted: "rgba(185,197,239,1)",
|
|
5067
5071
|
default: "rgba(53,69,190,1)",
|
|
5072
|
+
graphic: "rgba(53,69,190,1)",
|
|
5068
5073
|
intense: "rgba(34,47,149,1)",
|
|
5074
|
+
inverse: "rgba(34,47,149,1)",
|
|
5069
5075
|
active: "rgba(243,246,255,1)",
|
|
5070
5076
|
hover: "rgba(243,246,255,1)"
|
|
5071
5077
|
},
|
|
5078
|
+
action: {
|
|
5079
|
+
"primary-button": {
|
|
5080
|
+
default: "rgba(53,69,190,1)",
|
|
5081
|
+
active: "rgba(243,246,255,1)",
|
|
5082
|
+
hover: "rgba(34,47,149,1)",
|
|
5083
|
+
disabled: "rgba(185,197,239,1)"
|
|
5084
|
+
}
|
|
5085
|
+
},
|
|
5072
5086
|
info: {
|
|
5073
5087
|
muted: "rgba(224,245,254,1)",
|
|
5074
5088
|
default: "rgba(3,153,227,1)",
|
|
5075
|
-
intense: "rgba(1,116,186,1)"
|
|
5089
|
+
intense: "rgba(1,116,186,1)",
|
|
5090
|
+
inverse: "rgba(3,153,227,1)"
|
|
5076
5091
|
},
|
|
5077
5092
|
success: {
|
|
5078
5093
|
muted: "rgba(236,247,237,1)",
|
|
5079
5094
|
default: "rgba(0,179,0,1)",
|
|
5080
|
-
intense: "rgba(0,142,0,1)"
|
|
5095
|
+
intense: "rgba(0,142,0,1)",
|
|
5096
|
+
inverse: "rgba(0,179,0,1)"
|
|
5081
5097
|
},
|
|
5082
5098
|
warning: {
|
|
5083
5099
|
muted: "rgba(255,248,234,1)",
|
|
5084
5100
|
default: "rgba(255,179,0,1)",
|
|
5085
|
-
intense: "rgba(255,144,3,1)"
|
|
5101
|
+
intense: "rgba(255,144,3,1)",
|
|
5102
|
+
inverse: "rgba(255,179,0,1)"
|
|
5086
5103
|
},
|
|
5087
5104
|
danger: {
|
|
5088
5105
|
muted: "rgba(255,203,210,1)",
|
|
5089
5106
|
default: "rgba(255,173,179,1)",
|
|
5090
|
-
intense: "rgba(230,39,40,1)"
|
|
5107
|
+
intense: "rgba(230,39,40,1)",
|
|
5108
|
+
inverse: "rgba(216,0,5,1)"
|
|
5091
5109
|
},
|
|
5092
5110
|
status: {
|
|
5093
5111
|
announcement: "rgba(243,246,255,1)",
|
|
@@ -5109,6 +5127,15 @@ var tokens_default = {
|
|
|
5109
5127
|
default: "rgba(53,69,190,1)",
|
|
5110
5128
|
intense: "rgba(14,22,82,1)"
|
|
5111
5129
|
},
|
|
5130
|
+
action: {
|
|
5131
|
+
focus: "rgba(53,69,190,1)",
|
|
5132
|
+
"secondary-button": {
|
|
5133
|
+
default: "rgba(53,69,190,1)",
|
|
5134
|
+
active: "rgba(243,246,255,1)",
|
|
5135
|
+
hover: "rgba(243,246,255,1)",
|
|
5136
|
+
disabled: "rgba(129,142,236,1)"
|
|
5137
|
+
}
|
|
5138
|
+
},
|
|
5112
5139
|
info: {
|
|
5113
5140
|
muted: "rgba(40,180,244,1)",
|
|
5114
5141
|
default: "rgba(3,153,227,1)",
|
|
@@ -5949,7 +5976,8 @@ var tailwind_theme_default = {
|
|
|
5949
5976
|
"100": "var(--aquarium-colors-warning-100)",
|
|
5950
5977
|
muted: "var(--aquarium-background-color-warning-muted)",
|
|
5951
5978
|
default: "var(--aquarium-background-color-warning-default)",
|
|
5952
|
-
intense: "var(--aquarium-background-color-warning-intense)"
|
|
5979
|
+
intense: "var(--aquarium-background-color-warning-intense)",
|
|
5980
|
+
inverse: "var(--aquarium-background-color-warning-inverse)"
|
|
5953
5981
|
},
|
|
5954
5982
|
success: {
|
|
5955
5983
|
"0": "var(--aquarium-colors-success-0)",
|
|
@@ -5966,7 +5994,8 @@ var tailwind_theme_default = {
|
|
|
5966
5994
|
"100": "var(--aquarium-colors-success-100)",
|
|
5967
5995
|
muted: "var(--aquarium-background-color-success-muted)",
|
|
5968
5996
|
default: "var(--aquarium-background-color-success-default)",
|
|
5969
|
-
intense: "var(--aquarium-background-color-success-intense)"
|
|
5997
|
+
intense: "var(--aquarium-background-color-success-intense)",
|
|
5998
|
+
inverse: "var(--aquarium-background-color-success-inverse)"
|
|
5970
5999
|
},
|
|
5971
6000
|
info: {
|
|
5972
6001
|
"0": "var(--aquarium-colors-info-0)",
|
|
@@ -5983,7 +6012,8 @@ var tailwind_theme_default = {
|
|
|
5983
6012
|
"100": "var(--aquarium-colors-info-100)",
|
|
5984
6013
|
muted: "var(--aquarium-background-color-info-muted)",
|
|
5985
6014
|
default: "var(--aquarium-background-color-info-default)",
|
|
5986
|
-
intense: "var(--aquarium-background-color-info-intense)"
|
|
6015
|
+
intense: "var(--aquarium-background-color-info-intense)",
|
|
6016
|
+
inverse: "var(--aquarium-background-color-info-inverse)"
|
|
5987
6017
|
},
|
|
5988
6018
|
grey: {
|
|
5989
6019
|
"0": "var(--aquarium-colors-grey-0)",
|
|
@@ -6028,20 +6058,35 @@ var tailwind_theme_default = {
|
|
|
6028
6058
|
"100": "var(--aquarium-colors-primary-100)",
|
|
6029
6059
|
muted: "var(--aquarium-background-color-primary-muted)",
|
|
6030
6060
|
default: "var(--aquarium-background-color-primary-default)",
|
|
6061
|
+
graphic: "var(--aquarium-background-color-primary-graphic)",
|
|
6031
6062
|
intense: "var(--aquarium-background-color-primary-intense)",
|
|
6063
|
+
inverse: "var(--aquarium-background-color-primary-inverse)",
|
|
6032
6064
|
active: "var(--aquarium-background-color-primary-active)",
|
|
6033
6065
|
hover: "var(--aquarium-background-color-primary-hover)"
|
|
6034
6066
|
},
|
|
6035
6067
|
body: "var(--aquarium-background-color-body)",
|
|
6068
|
+
layer: "var(--aquarium-background-color-layer)",
|
|
6036
6069
|
"body-intense": "var(--aquarium-background-color-body-intense)",
|
|
6070
|
+
inverse: "var(--aquarium-background-color-inverse)",
|
|
6071
|
+
overlay: "var(--aquarium-background-color-overlay)",
|
|
6037
6072
|
"popover-content": "var(--aquarium-background-color-popover-content)",
|
|
6038
6073
|
muted: "var(--aquarium-background-color-muted)",
|
|
6039
6074
|
default: "var(--aquarium-background-color-default)",
|
|
6075
|
+
medium: "var(--aquarium-background-color-medium)",
|
|
6040
6076
|
intense: "var(--aquarium-background-color-intense)",
|
|
6077
|
+
action: {
|
|
6078
|
+
"primary-button": {
|
|
6079
|
+
default: "var(--aquarium-background-color-action-primary-button-default)",
|
|
6080
|
+
active: "var(--aquarium-background-color-action-primary-button-active)",
|
|
6081
|
+
hover: "var(--aquarium-background-color-action-primary-button-hover)",
|
|
6082
|
+
disabled: "var(--aquarium-background-color-action-primary-button-disabled)"
|
|
6083
|
+
}
|
|
6084
|
+
},
|
|
6041
6085
|
danger: {
|
|
6042
6086
|
muted: "var(--aquarium-background-color-danger-muted)",
|
|
6043
6087
|
default: "var(--aquarium-background-color-danger-default)",
|
|
6044
|
-
intense: "var(--aquarium-background-color-danger-intense)"
|
|
6088
|
+
intense: "var(--aquarium-background-color-danger-intense)",
|
|
6089
|
+
inverse: "var(--aquarium-background-color-danger-inverse)"
|
|
6045
6090
|
},
|
|
6046
6091
|
status: {
|
|
6047
6092
|
announcement: "var(--aquarium-background-color-status-announcement)",
|
|
@@ -6305,6 +6350,15 @@ var tailwind_theme_default = {
|
|
|
6305
6350
|
muted: "var(--aquarium-border-color-muted)",
|
|
6306
6351
|
default: "var(--aquarium-border-color-default)",
|
|
6307
6352
|
intense: "var(--aquarium-border-color-intense)",
|
|
6353
|
+
action: {
|
|
6354
|
+
focus: "var(--aquarium-border-color-action-focus)",
|
|
6355
|
+
"secondary-button": {
|
|
6356
|
+
default: "var(--aquarium-border-color-action-secondary-button-default)",
|
|
6357
|
+
active: "var(--aquarium-border-color-action-secondary-button-active)",
|
|
6358
|
+
hover: "var(--aquarium-border-color-action-secondary-button-hover)",
|
|
6359
|
+
disabled: "var(--aquarium-border-color-action-secondary-button-disabled)"
|
|
6360
|
+
}
|
|
6361
|
+
},
|
|
6308
6362
|
danger: {
|
|
6309
6363
|
muted: "var(--aquarium-border-color-danger-muted)",
|
|
6310
6364
|
default: "var(--aquarium-border-color-danger-default)",
|
|
@@ -6728,7 +6782,7 @@ var toastStyles = tv3({
|
|
|
6728
6782
|
variants: {
|
|
6729
6783
|
variant: {
|
|
6730
6784
|
default: {
|
|
6731
|
-
base: "bg-
|
|
6785
|
+
base: "bg-inverse text-opposite-default",
|
|
6732
6786
|
dismiss: "[&>button]:text-muted",
|
|
6733
6787
|
action: "[&>*]:text-primary-inactive hover:[&>*]:text-primary-muted"
|
|
6734
6788
|
},
|
|
@@ -6796,7 +6850,7 @@ var inputContainerClasses = tv4({
|
|
|
6796
6850
|
variants: {
|
|
6797
6851
|
variant: {
|
|
6798
6852
|
default: "border px-3 py-[6px] border-default hover:border-intense bg-transparent",
|
|
6799
|
-
disabled: "border px-3 py-[6px] cursor-not-allowed border-default bg-
|
|
6853
|
+
disabled: "border px-3 py-[6px] cursor-not-allowed border-default bg-medium",
|
|
6800
6854
|
error: "border px-3 py-[6px] border-danger-default bg-transparent",
|
|
6801
6855
|
focused: "border px-3 py-[6px] border-info-default bg-transparent",
|
|
6802
6856
|
readOnly: "cursor-default border-default bg-transparent"
|
|
@@ -6804,7 +6858,7 @@ var inputContainerClasses = tv4({
|
|
|
6804
6858
|
}
|
|
6805
6859
|
});
|
|
6806
6860
|
var inputClasses = tv4({
|
|
6807
|
-
base: "grow rounded border-0 focus:outline-none px-[1px] my-1 min-w-0 typography-small bg-transparent disabled:cursor-not-allowed disabled:bg-
|
|
6861
|
+
base: "grow rounded border-0 focus:outline-none px-[1px] my-1 min-w-0 typography-small bg-transparent disabled:cursor-not-allowed disabled:bg-medium placeholder:text-inactive",
|
|
6808
6862
|
variants: {
|
|
6809
6863
|
disabled: {
|
|
6810
6864
|
true: "text-inactive",
|
|
@@ -6817,7 +6871,7 @@ var inputClasses = tv4({
|
|
|
6817
6871
|
}
|
|
6818
6872
|
});
|
|
6819
6873
|
var menuClasses = tv4({
|
|
6820
|
-
base: "text-default bg-
|
|
6874
|
+
base: "text-default bg-overlay overflow-y-auto"
|
|
6821
6875
|
});
|
|
6822
6876
|
var noResultsClasses = tv4({
|
|
6823
6877
|
base: "p-3 text-inactive typography-small"
|
|
@@ -7292,7 +7346,7 @@ import React19 from "react";
|
|
|
7292
7346
|
import { isNumber, isUndefined as isUndefined5 } from "lodash-es";
|
|
7293
7347
|
import { tv as tv6 } from "tailwind-variants";
|
|
7294
7348
|
var skeletonStyles = tv6({
|
|
7295
|
-
base: "bg-
|
|
7349
|
+
base: "bg-medium",
|
|
7296
7350
|
variants: {
|
|
7297
7351
|
hasHeight: {
|
|
7298
7352
|
false: "h-auto before:content-['_'] whitespace-pre origin-[0%_45%] scale-[0.55]"
|
|
@@ -7595,7 +7649,7 @@ var getStatusClassNames = (status = "neutral") => {
|
|
|
7595
7649
|
return "text-success-intense bg-status-success";
|
|
7596
7650
|
case "neutral":
|
|
7597
7651
|
default:
|
|
7598
|
-
return "text-default bg-
|
|
7652
|
+
return "text-default bg-medium";
|
|
7599
7653
|
}
|
|
7600
7654
|
};
|
|
7601
7655
|
var Chip2 = ({
|
|
@@ -7936,7 +7990,7 @@ var checkboxClasses = tv10({
|
|
|
7936
7990
|
},
|
|
7937
7991
|
false: {
|
|
7938
7992
|
wrapper: "hover:border-intense peer-checked:border-primary-default",
|
|
7939
|
-
input: "cursor-pointer checked:bg-primary-
|
|
7993
|
+
input: "cursor-pointer checked:bg-primary-graphic",
|
|
7940
7994
|
icon: "border-default peer-hover:border-intense peer-checked:text-white peer-checked:[&>path]:stroke-white peer-checked:border-primary-default"
|
|
7941
7995
|
}
|
|
7942
7996
|
}
|
|
@@ -7965,7 +8019,7 @@ var Checkbox = React29.forwardRef(
|
|
|
7965
8019
|
import React30 from "react";
|
|
7966
8020
|
import { tv as tv11 } from "tailwind-variants";
|
|
7967
8021
|
var radioButtonClasses = tv11({
|
|
7968
|
-
base: "inline-flex justify-center items-center self-center appearance-none w-5 h-5 p-[3px] rounded-full border border-default outline-none focus:border-info-default checked:bg-primary-
|
|
8022
|
+
base: "inline-flex justify-center items-center self-center appearance-none w-5 h-5 p-[3px] rounded-full border border-default outline-none focus:border-info-default checked:bg-primary-graphic checked:shadow-bodyInset",
|
|
7969
8023
|
variants: {
|
|
7970
8024
|
disabled: {
|
|
7971
8025
|
true: "cursor-not-allowed border-muted bg-muted checked:bg-primary-muted checked:border-transparent",
|
|
@@ -8917,7 +8971,7 @@ import {
|
|
|
8917
8971
|
import { tv as tv13 } from "tailwind-variants";
|
|
8918
8972
|
var popoverStyles = tv13({
|
|
8919
8973
|
// z-[101] ensures popover appears above modal (z-modal: 100)
|
|
8920
|
-
base: "rounded-sm shadow-16dp bg-
|
|
8974
|
+
base: "rounded-sm shadow-16dp bg-overlay mt-1 overflow-y-auto flex flex-col border border-default outline-none z-[101]"
|
|
8921
8975
|
});
|
|
8922
8976
|
var Popover = React49.forwardRef(
|
|
8923
8977
|
({ children, offset = 0, className, placement: _placement = "bottom-left", ...props }, ref) => {
|
|
@@ -10418,7 +10472,7 @@ import { clsx as clsx26 } from "clsx";
|
|
|
10418
10472
|
import { tv as tv16 } from "tailwind-variants";
|
|
10419
10473
|
var import_tick5 = __toESM(require_tick());
|
|
10420
10474
|
var dropdownMenuStyles = tv16({
|
|
10421
|
-
base: "bg-
|
|
10475
|
+
base: "bg-overlay w-full flex flex-col overflow-x-hidden typography-small text-default"
|
|
10422
10476
|
});
|
|
10423
10477
|
var DropdownMenu = ({ className, children, ...props }) => {
|
|
10424
10478
|
return /* @__PURE__ */ React62.createElement(AriaMenu, { className: dropdownMenuStyles({ className: ["Aquarium-DropdownMenu", className] }), ...props }, children);
|
|
@@ -10431,7 +10485,7 @@ var dropdownMenuGroupStyles = tv16({
|
|
|
10431
10485
|
slots: {
|
|
10432
10486
|
base: [
|
|
10433
10487
|
'[&:not(:first-child)]:before:content-[""] [&:not(:first-child)]:before:block',
|
|
10434
|
-
"[&:not(:first-child)]:before:h-[1px] [&:not(:first-child)]:before:bg-
|
|
10488
|
+
"[&:not(:first-child)]:before:h-[1px] [&:not(:first-child)]:before:bg-medium [&:not(:first-child)]:before:m-3"
|
|
10435
10489
|
],
|
|
10436
10490
|
title: "p-3 text-inactive uppercase cursor-default typography-caption"
|
|
10437
10491
|
}
|
|
@@ -10541,7 +10595,7 @@ var fieldBorder = tv17({
|
|
|
10541
10595
|
true: "border-danger-default"
|
|
10542
10596
|
},
|
|
10543
10597
|
isDisabled: {
|
|
10544
|
-
true: "bg-
|
|
10598
|
+
true: "bg-medium cursor-not-allowed text-inactive"
|
|
10545
10599
|
}
|
|
10546
10600
|
}
|
|
10547
10601
|
});
|
|
@@ -11655,8 +11709,8 @@ var cellStyles = tv20({
|
|
|
11655
11709
|
base: "w-8 h-8 typography-small cursor-default rounded-md flex items-center justify-center outside-month:hidden",
|
|
11656
11710
|
variants: {
|
|
11657
11711
|
isSelected: {
|
|
11658
|
-
false: "text-default hover:bg-
|
|
11659
|
-
true: "bg-primary-
|
|
11712
|
+
false: "text-default hover:bg-medium pressed:bg-intense",
|
|
11713
|
+
true: "bg-primary-graphic invalid:bg-danger-default text-white"
|
|
11660
11714
|
},
|
|
11661
11715
|
isUnavailable: {
|
|
11662
11716
|
true: "text-inactive"
|
|
@@ -14356,7 +14410,7 @@ import { tv as tv22 } from "tailwind-variants";
|
|
|
14356
14410
|
var cellContainer = tv22({
|
|
14357
14411
|
base: [
|
|
14358
14412
|
"group w-8 h-8 typography-small outline outline-0 cursor-default",
|
|
14359
|
-
"outside-month:hidden selected:bg-primary-
|
|
14413
|
+
"outside-month:hidden selected:bg-primary-graphic",
|
|
14360
14414
|
"invalid:selected:bg-danger-default",
|
|
14361
14415
|
"selection-start:rounded-s-md selection-end:rounded-e-md"
|
|
14362
14416
|
]
|
|
@@ -14366,15 +14420,15 @@ var cell = tv22({
|
|
|
14366
14420
|
base: "w-full h-full flex items-center justify-center rounded-md text-default",
|
|
14367
14421
|
variants: {
|
|
14368
14422
|
selectionState: {
|
|
14369
|
-
none: "group-hover:bg-
|
|
14423
|
+
none: "group-hover:bg-medium group-pressed:bg-intense",
|
|
14370
14424
|
middle: [
|
|
14371
14425
|
"text-white",
|
|
14372
|
-
"group-hover:bg-primary-
|
|
14426
|
+
"group-hover:bg-primary-graphic",
|
|
14373
14427
|
"group-invalid:group-hover:bg-danger-default",
|
|
14374
|
-
"group-pressed:bg-primary-
|
|
14428
|
+
"group-pressed:bg-primary-inverse",
|
|
14375
14429
|
"group-invalid:group-pressed:bg-danger-intense"
|
|
14376
14430
|
],
|
|
14377
|
-
cap: "text-white bg-primary-
|
|
14431
|
+
cap: "text-white bg-primary-graphic group-invalid:bg-danger-default"
|
|
14378
14432
|
},
|
|
14379
14433
|
isUnavailable: {
|
|
14380
14434
|
true: "text-inactive"
|
|
@@ -14533,8 +14587,8 @@ var bodyMaskClasses = tv23({
|
|
|
14533
14587
|
var modalStyles = tv23({
|
|
14534
14588
|
slots: {
|
|
14535
14589
|
overlay: "inset-0 overflow-y-auto z-modal fixed",
|
|
14536
|
-
backdrop: "-z-10 fixed min-w-full min-h-full bg-
|
|
14537
|
-
dialog: "bg-
|
|
14590
|
+
backdrop: "-z-10 fixed min-w-full min-h-full bg-inverse opacity-30",
|
|
14591
|
+
dialog: "bg-overlay max-h-full flex flex-col",
|
|
14538
14592
|
header: "pl-7 pr-[64px] pt-6 pb-4 gap-3 flex items-center",
|
|
14539
14593
|
headerImage: "h-[120px] min-h-[120px] w-full",
|
|
14540
14594
|
titleContainer: "flex flex-col grow",
|
|
@@ -14582,7 +14636,7 @@ var modalStyles = tv23({
|
|
|
14582
14636
|
headerImage: "object-cover"
|
|
14583
14637
|
},
|
|
14584
14638
|
false: {
|
|
14585
|
-
headerImage: "bg-
|
|
14639
|
+
headerImage: "bg-medium"
|
|
14586
14640
|
}
|
|
14587
14641
|
}
|
|
14588
14642
|
},
|
|
@@ -15042,7 +15096,7 @@ var DropdownMenu3 = ({
|
|
|
15042
15096
|
const id = setTimeout(() => (menuRef.current?.children[0]).focus());
|
|
15043
15097
|
return () => clearTimeout(id);
|
|
15044
15098
|
}, [menuRef.current]);
|
|
15045
|
-
return /* @__PURE__ */ React90.createElement("div", { style: { minWidth: "250px" }, className: "py-3 bg-
|
|
15099
|
+
return /* @__PURE__ */ React90.createElement("div", { style: { minWidth: "250px" }, className: "py-3 bg-overlay" }, !!title && /* @__PURE__ */ React90.createElement("div", { className: "px-4 py-4 text-left text-intense typography-default-strong" }, title), /* @__PURE__ */ React90.createElement("ol", { role: "menu", ref: menuRef, id: contentId, "aria-labelledby": triggerId }, React90.Children.map(children, (child) => {
|
|
15046
15100
|
return React90.cloneElement(child, { setClose });
|
|
15047
15101
|
})));
|
|
15048
15102
|
};
|
|
@@ -15238,7 +15292,7 @@ var FilterClearButton = ({ onClear }) => (
|
|
|
15238
15292
|
}
|
|
15239
15293
|
onClear();
|
|
15240
15294
|
},
|
|
15241
|
-
className: "py-[10px] pl-[6px] pr-4 inline-flex items-center hover:bg-
|
|
15295
|
+
className: "py-[10px] pl-[6px] pr-4 inline-flex items-center hover:bg-medium focus:bg-medium outline-0 outline-none rounded-r-full"
|
|
15242
15296
|
},
|
|
15243
15297
|
/* @__PURE__ */ React92.createElement(InlineIcon2, { icon: import_cross6.default })
|
|
15244
15298
|
)
|
|
@@ -15296,7 +15350,7 @@ var InputChip = React97.forwardRef(
|
|
|
15296
15350
|
{
|
|
15297
15351
|
"bg-status-danger": invalid,
|
|
15298
15352
|
"bg-muted": !invalid && !disabled,
|
|
15299
|
-
"bg-
|
|
15353
|
+
"bg-medium": disabled
|
|
15300
15354
|
}
|
|
15301
15355
|
)
|
|
15302
15356
|
},
|
|
@@ -15794,7 +15848,7 @@ var NativeSelectBase = React100.forwardRef(
|
|
|
15794
15848
|
className: clsx36(
|
|
15795
15849
|
"block w-full rounded-sm appearance-none disabled:cursor-not-allowed typography-small text-default placeholder:text-inactive focus:outline-none",
|
|
15796
15850
|
{
|
|
15797
|
-
"px-3 py-3 bg-transparent disabled:border-default disabled:bg-
|
|
15851
|
+
"px-3 py-3 bg-transparent disabled:border-default disabled:bg-medium disabled:text-inactive": !readOnly,
|
|
15798
15852
|
"px-0 py-3 border-none bg-transparent": readOnly,
|
|
15799
15853
|
"border border-danger-default": !valid && !readOnly,
|
|
15800
15854
|
"border border-default hover:border-intense focus:border-info-default": valid && !readOnly
|
|
@@ -15873,9 +15927,9 @@ var navigationClasses = tv25({
|
|
|
15873
15927
|
sectionList: "flex flex-col",
|
|
15874
15928
|
divider: "border-t-2 border-muted",
|
|
15875
15929
|
itemContainer: "",
|
|
15876
|
-
itemAnchor: "py-3 px-6 hover:bg-
|
|
15930
|
+
itemAnchor: "py-3 px-6 hover:bg-medium cursor-pointer flex gap-4 items-center typography-small focusable",
|
|
15877
15931
|
submenuContainer: "",
|
|
15878
|
-
submenuAnchor: "py-3 pr-6 pl-3 hover:bg-
|
|
15932
|
+
submenuAnchor: "py-3 pr-6 pl-3 hover:bg-medium cursor-pointer typography-small focusable flex items-center w-full",
|
|
15879
15933
|
submenuList: "flex flex-col",
|
|
15880
15934
|
submenuItem: "pl-[56px]"
|
|
15881
15935
|
},
|
|
@@ -16288,10 +16342,10 @@ var switchStyles = tv28({
|
|
|
16288
16342
|
variants: {
|
|
16289
16343
|
disabled: {
|
|
16290
16344
|
true: {
|
|
16291
|
-
input: "bg-
|
|
16345
|
+
input: "bg-medium checked:opacity-50 checked:bg-primary-muted"
|
|
16292
16346
|
},
|
|
16293
16347
|
false: {
|
|
16294
|
-
input: "bg-intense hover:bg-intense checked:bg-primary-
|
|
16348
|
+
input: "bg-intense hover:bg-intense checked:bg-primary-graphic hover:checked:bg-primary-inverse",
|
|
16295
16349
|
thumb: "shadow-4dp"
|
|
16296
16350
|
}
|
|
16297
16351
|
}
|
|
@@ -16487,7 +16541,7 @@ var stepStyles = tv30({
|
|
|
16487
16541
|
slots: ["indicator"],
|
|
16488
16542
|
dense: true,
|
|
16489
16543
|
state: "active",
|
|
16490
|
-
class: "bg-
|
|
16544
|
+
class: "bg-inverse"
|
|
16491
16545
|
},
|
|
16492
16546
|
{
|
|
16493
16547
|
slots: ["indicator"],
|
|
@@ -16663,7 +16717,7 @@ var Timeline = ({ className, ...rest }) => /* @__PURE__ */ React121.createElemen
|
|
|
16663
16717
|
var Content2 = ({ className, ...rest }) => /* @__PURE__ */ React121.createElement("div", { ...rest, className: clsx44("pb-6", className) });
|
|
16664
16718
|
var Separator = ({ className, ...rest }) => /* @__PURE__ */ React121.createElement("div", { ...rest, className: clsx44("flex items-center justify-center h-5 w-5", className) });
|
|
16665
16719
|
var LineContainer = ({ className, ...rest }) => /* @__PURE__ */ React121.createElement("div", { ...rest, className: clsx44("flex justify-center py-1", className) });
|
|
16666
|
-
var Line = ({ className, ...rest }) => /* @__PURE__ */ React121.createElement("div", { ...rest, className: clsx44("w-1 bg-
|
|
16720
|
+
var Line = ({ className, ...rest }) => /* @__PURE__ */ React121.createElement("div", { ...rest, className: clsx44("w-1 bg-medium h-full justify-self-center", className) });
|
|
16667
16721
|
var Dot = ({ className, ...rest }) => /* @__PURE__ */ React121.createElement("div", { ...rest, className: clsx44("bg-intense h-[6px] w-[6px] rounded", className) });
|
|
16668
16722
|
Separator.Dot = Dot;
|
|
16669
16723
|
LineContainer.Line = Line;
|
package/dist/charts.cjs
CHANGED
|
@@ -214,37 +214,55 @@ var tokens_default = {
|
|
|
214
214
|
},
|
|
215
215
|
backgroundColor: {
|
|
216
216
|
body: "white",
|
|
217
|
+
layer: "white",
|
|
217
218
|
"body-intense": "rgba(58,58,68,1)",
|
|
219
|
+
inverse: "rgba(58,58,68,1)",
|
|
220
|
+
overlay: "white",
|
|
218
221
|
"popover-content": "white",
|
|
219
222
|
muted: "rgba(247,247,250,1)",
|
|
220
223
|
default: "rgba(237,237,240,1)",
|
|
224
|
+
medium: "rgba(237,237,240,1)",
|
|
221
225
|
intense: "rgba(210,210,214,1)",
|
|
222
226
|
primary: {
|
|
223
227
|
muted: "rgba(185,197,239,1)",
|
|
224
228
|
default: "rgba(53,69,190,1)",
|
|
229
|
+
graphic: "rgba(53,69,190,1)",
|
|
225
230
|
intense: "rgba(34,47,149,1)",
|
|
231
|
+
inverse: "rgba(34,47,149,1)",
|
|
226
232
|
active: "rgba(243,246,255,1)",
|
|
227
233
|
hover: "rgba(243,246,255,1)"
|
|
228
234
|
},
|
|
235
|
+
action: {
|
|
236
|
+
"primary-button": {
|
|
237
|
+
default: "rgba(53,69,190,1)",
|
|
238
|
+
active: "rgba(243,246,255,1)",
|
|
239
|
+
hover: "rgba(34,47,149,1)",
|
|
240
|
+
disabled: "rgba(185,197,239,1)"
|
|
241
|
+
}
|
|
242
|
+
},
|
|
229
243
|
info: {
|
|
230
244
|
muted: "rgba(224,245,254,1)",
|
|
231
245
|
default: "rgba(3,153,227,1)",
|
|
232
|
-
intense: "rgba(1,116,186,1)"
|
|
246
|
+
intense: "rgba(1,116,186,1)",
|
|
247
|
+
inverse: "rgba(3,153,227,1)"
|
|
233
248
|
},
|
|
234
249
|
success: {
|
|
235
250
|
muted: "rgba(236,247,237,1)",
|
|
236
251
|
default: "rgba(0,179,0,1)",
|
|
237
|
-
intense: "rgba(0,142,0,1)"
|
|
252
|
+
intense: "rgba(0,142,0,1)",
|
|
253
|
+
inverse: "rgba(0,179,0,1)"
|
|
238
254
|
},
|
|
239
255
|
warning: {
|
|
240
256
|
muted: "rgba(255,248,234,1)",
|
|
241
257
|
default: "rgba(255,179,0,1)",
|
|
242
|
-
intense: "rgba(255,144,3,1)"
|
|
258
|
+
intense: "rgba(255,144,3,1)",
|
|
259
|
+
inverse: "rgba(255,179,0,1)"
|
|
243
260
|
},
|
|
244
261
|
danger: {
|
|
245
262
|
muted: "rgba(255,203,210,1)",
|
|
246
263
|
default: "rgba(255,173,179,1)",
|
|
247
|
-
intense: "rgba(230,39,40,1)"
|
|
264
|
+
intense: "rgba(230,39,40,1)",
|
|
265
|
+
inverse: "rgba(216,0,5,1)"
|
|
248
266
|
},
|
|
249
267
|
status: {
|
|
250
268
|
announcement: "rgba(243,246,255,1)",
|
|
@@ -266,6 +284,15 @@ var tokens_default = {
|
|
|
266
284
|
default: "rgba(53,69,190,1)",
|
|
267
285
|
intense: "rgba(14,22,82,1)"
|
|
268
286
|
},
|
|
287
|
+
action: {
|
|
288
|
+
focus: "rgba(53,69,190,1)",
|
|
289
|
+
"secondary-button": {
|
|
290
|
+
default: "rgba(53,69,190,1)",
|
|
291
|
+
active: "rgba(243,246,255,1)",
|
|
292
|
+
hover: "rgba(243,246,255,1)",
|
|
293
|
+
disabled: "rgba(129,142,236,1)"
|
|
294
|
+
}
|
|
295
|
+
},
|
|
269
296
|
info: {
|
|
270
297
|
muted: "rgba(40,180,244,1)",
|
|
271
298
|
default: "rgba(3,153,227,1)",
|
package/dist/charts.mjs
CHANGED
|
@@ -74,37 +74,55 @@ var tokens_default = {
|
|
|
74
74
|
},
|
|
75
75
|
backgroundColor: {
|
|
76
76
|
body: "white",
|
|
77
|
+
layer: "white",
|
|
77
78
|
"body-intense": "rgba(58,58,68,1)",
|
|
79
|
+
inverse: "rgba(58,58,68,1)",
|
|
80
|
+
overlay: "white",
|
|
78
81
|
"popover-content": "white",
|
|
79
82
|
muted: "rgba(247,247,250,1)",
|
|
80
83
|
default: "rgba(237,237,240,1)",
|
|
84
|
+
medium: "rgba(237,237,240,1)",
|
|
81
85
|
intense: "rgba(210,210,214,1)",
|
|
82
86
|
primary: {
|
|
83
87
|
muted: "rgba(185,197,239,1)",
|
|
84
88
|
default: "rgba(53,69,190,1)",
|
|
89
|
+
graphic: "rgba(53,69,190,1)",
|
|
85
90
|
intense: "rgba(34,47,149,1)",
|
|
91
|
+
inverse: "rgba(34,47,149,1)",
|
|
86
92
|
active: "rgba(243,246,255,1)",
|
|
87
93
|
hover: "rgba(243,246,255,1)"
|
|
88
94
|
},
|
|
95
|
+
action: {
|
|
96
|
+
"primary-button": {
|
|
97
|
+
default: "rgba(53,69,190,1)",
|
|
98
|
+
active: "rgba(243,246,255,1)",
|
|
99
|
+
hover: "rgba(34,47,149,1)",
|
|
100
|
+
disabled: "rgba(185,197,239,1)"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
89
103
|
info: {
|
|
90
104
|
muted: "rgba(224,245,254,1)",
|
|
91
105
|
default: "rgba(3,153,227,1)",
|
|
92
|
-
intense: "rgba(1,116,186,1)"
|
|
106
|
+
intense: "rgba(1,116,186,1)",
|
|
107
|
+
inverse: "rgba(3,153,227,1)"
|
|
93
108
|
},
|
|
94
109
|
success: {
|
|
95
110
|
muted: "rgba(236,247,237,1)",
|
|
96
111
|
default: "rgba(0,179,0,1)",
|
|
97
|
-
intense: "rgba(0,142,0,1)"
|
|
112
|
+
intense: "rgba(0,142,0,1)",
|
|
113
|
+
inverse: "rgba(0,179,0,1)"
|
|
98
114
|
},
|
|
99
115
|
warning: {
|
|
100
116
|
muted: "rgba(255,248,234,1)",
|
|
101
117
|
default: "rgba(255,179,0,1)",
|
|
102
|
-
intense: "rgba(255,144,3,1)"
|
|
118
|
+
intense: "rgba(255,144,3,1)",
|
|
119
|
+
inverse: "rgba(255,179,0,1)"
|
|
103
120
|
},
|
|
104
121
|
danger: {
|
|
105
122
|
muted: "rgba(255,203,210,1)",
|
|
106
123
|
default: "rgba(255,173,179,1)",
|
|
107
|
-
intense: "rgba(230,39,40,1)"
|
|
124
|
+
intense: "rgba(230,39,40,1)",
|
|
125
|
+
inverse: "rgba(216,0,5,1)"
|
|
108
126
|
},
|
|
109
127
|
status: {
|
|
110
128
|
announcement: "rgba(243,246,255,1)",
|
|
@@ -126,6 +144,15 @@ var tokens_default = {
|
|
|
126
144
|
default: "rgba(53,69,190,1)",
|
|
127
145
|
intense: "rgba(14,22,82,1)"
|
|
128
146
|
},
|
|
147
|
+
action: {
|
|
148
|
+
focus: "rgba(53,69,190,1)",
|
|
149
|
+
"secondary-button": {
|
|
150
|
+
default: "rgba(53,69,190,1)",
|
|
151
|
+
active: "rgba(243,246,255,1)",
|
|
152
|
+
hover: "rgba(243,246,255,1)",
|
|
153
|
+
disabled: "rgba(129,142,236,1)"
|
|
154
|
+
}
|
|
155
|
+
},
|
|
129
156
|
info: {
|
|
130
157
|
muted: "rgba(40,180,244,1)",
|
|
131
158
|
default: "rgba(3,153,227,1)",
|
|
@@ -21,14 +21,14 @@ const buttonStateClasses = tv({
|
|
|
21
21
|
variants: {
|
|
22
22
|
kind: {
|
|
23
23
|
primary: [
|
|
24
|
-
'active:text-white active:bg-primary-active',
|
|
25
|
-
'hover:bg-primary-
|
|
26
|
-
'disabled:text-white disabled:bg-primary-
|
|
24
|
+
'active:text-white active:bg-action-primary-button-active',
|
|
25
|
+
'hover:bg-action-primary-button-hover',
|
|
26
|
+
'disabled:text-white disabled:bg-action-primary-button-disabled',
|
|
27
27
|
],
|
|
28
28
|
secondary: [
|
|
29
29
|
'active:bg-primary-active active:text-primary-active',
|
|
30
30
|
'hover:bg-primary-hover',
|
|
31
|
-
'before:disabled:border-
|
|
31
|
+
'before:disabled:border-action-secondary-button-disabled',
|
|
32
32
|
],
|
|
33
33
|
ghost: ['hover:text-primary-active'],
|
|
34
34
|
text: interactiveTextStyles(),
|
|
@@ -47,8 +47,8 @@ export const buttonClasses = tv({
|
|
|
47
47
|
base: 'Aquarium-Button whitespace-nowrap transition text-center text-primary-intense rounded-sm relative px-4 py-3 inline-flex gap-3 items-center justify-center',
|
|
48
48
|
variants: {
|
|
49
49
|
kind: {
|
|
50
|
-
primary: 'Aquarium-Button.Primary text-white bg-primary-default icon-stroke-2',
|
|
51
|
-
secondary: 'Aquarium-Button.Secondary bg-transparent before:absolute before:inset-0 before:border before:border-
|
|
50
|
+
primary: 'Aquarium-Button.Primary text-white bg-action-primary-button-default icon-stroke-2',
|
|
51
|
+
secondary: 'Aquarium-Button.Secondary bg-transparent before:absolute before:inset-0 before:border before:border-action-secondary-button-default before:rounded-sm icon-stroke-2',
|
|
52
52
|
ghost: 'Aquarium-Button.Ghost px-0 icon-stroke-2',
|
|
53
53
|
text: 'Aquarium-Button.Text px-0 py-0 icon-stroke-2',
|
|
54
54
|
icon: 'Aquarium-Button.Icon px-2 py-2 text-default',
|
|
@@ -105,4 +105,4 @@ export const Icon = (_a) => {
|
|
|
105
105
|
var { dense = false } = _a, props = __rest(_a, ["dense"]);
|
|
106
106
|
return (React.createElement(_Icon, Object.assign({}, props, { width: iconSize(dense), height: iconSize(dense) })));
|
|
107
107
|
};
|
|
108
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
108
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQnV0dG9uLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2F0b21zL0J1dHRvbi9CdXR0b24udHN4Il0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7O0FBQUEsT0FBTyxLQUFLLE1BQU0sT0FBTyxDQUFDO0FBQzFCLE9BQU8sRUFBRSxJQUFJLElBQUksS0FBSyxFQUFrQixVQUFVLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUMzRSxPQUFPLEVBQUUsSUFBSSxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQzVCLE9BQU8sRUFBRSxFQUFFLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUV2QyxPQUFPLEVBQUUsT0FBTyxJQUFJLFdBQVcsRUFBRSxNQUFNLFdBQVcsQ0FBQztBQUNuRCxPQUFPLEVBQUUsY0FBYyxFQUFFLHFCQUFxQixFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFJNUUsTUFBTSxrQkFBa0IsR0FBRyxFQUFFLENBQUM7SUFDNUIsTUFBTSxFQUFFLGNBQWM7SUFDdEIsSUFBSSxFQUFFLDRFQUE0RTtJQUNsRixRQUFRLEVBQUU7UUFDUixJQUFJLEVBQUU7WUFDSixPQUFPLEVBQUU7Z0JBQ1AsMERBQTBEO2dCQUMxRCxzQ0FBc0M7Z0JBQ3RDLGdFQUFnRTthQUNqRTtZQUNELFNBQVMsRUFBRTtnQkFDVCxxREFBcUQ7Z0JBQ3JELHdCQUF3QjtnQkFDeEIseURBQXlEO2FBQzFEO1lBQ0QsS0FBSyxFQUFFLENBQUMsMkJBQTJCLENBQUM7WUFDcEMsSUFBSSxFQUFFLHFCQUFxQixFQUFFO1lBQzdCLElBQUksRUFBRSxDQUFDLDRCQUE0QixFQUFFLHdCQUF3QixDQUFDO1NBQy9EO1FBQ0QsUUFBUSxFQUFFO1lBQ1IsSUFBSSxFQUFFLG9CQUFvQjtTQUMzQjtRQUNELE9BQU8sRUFBRTtZQUNQLElBQUksRUFBRSxhQUFhO1NBQ3BCO0tBQ0Y7Q0FDRixDQUFDLENBQUM7QUFFSCxNQUFNLENBQUMsTUFBTSxhQUFhLEdBQUcsRUFB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
|