@aivenio/aquarium 1.30.0 → 1.31.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 +1 -1
- package/dist/_variables_timescale.scss +1 -1
- package/dist/atoms.cjs +1 -1
- package/dist/atoms.mjs +1 -1
- package/dist/src/utils/constants.js +1 -1
- package/dist/styles.css +4 -0
- package/dist/styles_timescaledb.css +4 -0
- package/dist/system.cjs +1 -1
- package/dist/system.mjs +1 -1
- package/dist/tsconfig.module.tsbuildinfo +1 -1
- package/dist/types/tailwindGenerated.d.ts +1 -1
- package/package.json +1 -1
package/dist/_variables.scss
CHANGED
package/dist/atoms.cjs
CHANGED
@@ -6527,7 +6527,7 @@ var ghostButtonStyle = tw(
|
|
6527
6527
|
);
|
6528
6528
|
var linkStyle = classNames(
|
6529
6529
|
ghostButtonStyle,
|
6530
|
-
tw("visited:text-primary-80 underline hover:
|
6530
|
+
tw("visited:text-primary-80 no-underline hover:underline focusable")
|
6531
6531
|
);
|
6532
6532
|
|
6533
6533
|
// src/utils/string.ts
|
package/dist/atoms.mjs
CHANGED
@@ -6489,7 +6489,7 @@ var ghostButtonStyle = tw(
|
|
6489
6489
|
);
|
6490
6490
|
var linkStyle = classNames(
|
6491
6491
|
ghostButtonStyle,
|
6492
|
-
tw("visited:text-primary-80 underline hover:
|
6492
|
+
tw("visited:text-primary-80 no-underline hover:underline focusable")
|
6493
6493
|
);
|
6494
6494
|
|
6495
6495
|
// src/utils/string.ts
|
@@ -6,5 +6,5 @@ export const getCommonInputStyles = ({ readOnly, valid }) => tw('block w-full ro
|
|
6
6
|
'border border-grey-20 hover:border-grey-50 focus:border-info-70': valid && !readOnly,
|
7
7
|
});
|
8
8
|
export const ghostButtonStyle = tw('text-primary-80 active:text-primary-90 focus-visible:text-primary-90 hover:text-primary-90 disabled:text-primary-40');
|
9
|
-
export const linkStyle = classNames(ghostButtonStyle, tw('visited:text-primary-80 underline hover:
|
9
|
+
export const linkStyle = classNames(ghostButtonStyle, tw('visited:text-primary-80 no-underline hover:underline focusable'));
|
10
10
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uc3RhbnRzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3V0aWxzL2NvbnN0YW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLEVBQUUsRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBRXBELE1BQU0sQ0FBQyxNQUFNLG9CQUFvQixHQUFHLENBQUMsRUFBRSxRQUFRLEVBQUUsS0FBSyxFQUF5QyxFQUFVLEVBQUUsQ0FDekcsRUFBRSxDQUNBLGdNQUFnTSxFQUNoTTtJQUNFLFdBQVcsRUFBRSxDQUFDLFFBQVE7SUFDdEIsd0NBQXdDLEVBQUUsUUFBUTtJQUNsRCx3QkFBd0IsRUFBRSxDQUFDLEtBQUssSUFBSSxDQUFDLFFBQVE7SUFDN0MsaUVBQWlFLEVBQUUsS0FBSyxJQUFJLENBQUMsUUFBUTtDQUN0RixDQUNGLENBQUM7QUFFSixNQUFNLENBQUMsTUFBTSxnQkFBZ0IsR0FBRyxFQUFFLENBQ2hDLHFIQUFxSCxDQUN0SCxDQUFDO0FBRUYsTUFBTSxDQUFDLE1BQU0sU0FBUyxHQUFHLFVBQVUsQ0FDakMsZ0JBQWdCLEVBQ2hCLEVBQUUsQ0FBQyxnRUFBZ0UsQ0FBQyxDQUNyRSxDQUFDIn0=
|
package/dist/styles.css
CHANGED
@@ -2577,6 +2577,10 @@ input[type='number'].no-arrows {
|
|
2577
2577
|
color: #3545be;
|
2578
2578
|
color: var(--aquarium-colors-primary-80, #3545be);
|
2579
2579
|
}
|
2580
|
+
.hover\:underline:hover {
|
2581
|
+
-webkit-text-decoration-line: underline;
|
2582
|
+
text-decoration-line: underline;
|
2583
|
+
}
|
2580
2584
|
.hover\:no-underline:hover {
|
2581
2585
|
-webkit-text-decoration-line: none;
|
2582
2586
|
text-decoration-line: none;
|
@@ -2576,6 +2576,10 @@ input[type='number'].no-arrows {
|
|
2576
2576
|
color: #3545be;
|
2577
2577
|
color: var(--aquarium-colors-primary-80, #0788d1);
|
2578
2578
|
}
|
2579
|
+
.hover\:underline:hover {
|
2580
|
+
-webkit-text-decoration-line: underline;
|
2581
|
+
text-decoration-line: underline;
|
2582
|
+
}
|
2579
2583
|
.hover\:no-underline:hover {
|
2580
2584
|
-webkit-text-decoration-line: none;
|
2581
2585
|
text-decoration-line: none;
|
package/dist/system.cjs
CHANGED
@@ -7153,7 +7153,7 @@ var ghostButtonStyle = tw(
|
|
7153
7153
|
);
|
7154
7154
|
var linkStyle = classNames(
|
7155
7155
|
ghostButtonStyle,
|
7156
|
-
tw("visited:text-primary-80 underline hover:
|
7156
|
+
tw("visited:text-primary-80 no-underline hover:underline focusable")
|
7157
7157
|
);
|
7158
7158
|
|
7159
7159
|
// src/utils/string.ts
|
package/dist/system.mjs
CHANGED
@@ -7010,7 +7010,7 @@ var ghostButtonStyle = tw(
|
|
7010
7010
|
);
|
7011
7011
|
var linkStyle = classNames(
|
7012
7012
|
ghostButtonStyle,
|
7013
|
-
tw("visited:text-primary-80 underline hover:
|
7013
|
+
tw("visited:text-primary-80 no-underline hover:underline focusable")
|
7014
7014
|
);
|
7015
7015
|
|
7016
7016
|
// src/utils/string.ts
|