@genexus/mercury 1.1.1 → 1.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/bundles/css/all.css +1 -1
- package/dist/bundles/css/utils/link.css +1 -1
- package/dist/bundles/css-not-processed/all.css +1 -1
- package/dist/bundles/css-not-processed/utils/link.css +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/types.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.link-primary,.link-secondary{--link-color: inherit;color:var(--link-color)}.link-primary,.link-secondary{--link-color: var(--color-text-primary-default)}.link-primary:hover,.link-secondary:hover{--link-color: var(--color-text-primary-hover)}.link-primary:active,.link-secondary:active{--link-color: var(--color-text-primary-pressed)}.link-tertiary:hover{--link-color: var(--color-text-primary-hover)}.link-tertiary:active{--link-color: var(--color-text-primary-pressed)}.link-primary,.link-tertiary{text-decoration:underline}
|
|
1
|
+
@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.link-primary,.link-secondary{--link-color: inherit;color:var(--link-color)}.link-primary,.link-secondary{--link-color: var(--color-text-primary-default)}.link-primary:hover,.link-secondary:hover{--link-color: var(--color-text-primary-hover)}.link-primary:active,.link-secondary:active{--link-color: var(--color-text-primary-pressed)}.link-tertiary:hover{--link-color: var(--color-text-primary-hover)}.link-tertiary:active{--link-color: var(--color-text-primary-pressed)}.link-primary:focus-visible,.link-secondary:focus-visible,.link-tertiary:focus-visible{outline:var(--border-width-focus) solid var(--color-border-primary-focused);outline-offset:-2px}.link-primary,.link-tertiary{text-decoration:underline}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export * from "./assets-manager.js";
|
|
2
2
|
export * from "./bundles.js";
|
|
3
3
|
export * from "./register-mercury.js";
|
|
4
|
-
export * from "./types.js";
|
|
4
|
+
export type * from "./types.js";
|
|
5
5
|
export * from "./components/chat/render.lit.js";
|
|
6
6
|
export type * from "./components/chat/types";
|
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";export*from"./assets-manager.js";export*from"./bundles.js";export*from"./register-mercury.js";export*from"./
|
|
1
|
+
"use strict";export*from"./assets-manager.js";export*from"./bundles.js";export*from"./register-mercury.js";export*from"./components/chat/render.lit.js";
|
package/dist/types.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export type MercuryBundles = [MercuryBundleReset, ...MercuryBundleOptimized[]] | [MercuryBundleReset, ...MercuryBundleFull[]];
|
|
2
|
+
export type MercuryAllBundles = MercuryBundleBase | MercuryBundleComponent | MercuryBundleComponentForm | MercuryBundleReset | MercuryBundleScope | MercuryBundleUtil | MercuryBundleUtilFormFull;
|
|
2
3
|
export type MercuryBundleOptimized = MercuryBundleComponent | MercuryBundleComponentForm | MercuryBundleScope | MercuryBundleUtil;
|
|
3
4
|
export type MercuryBundleFull = MercuryBundleComponent | MercuryBundleScope | MercuryBundleUtil | MercuryBundleUtilFormFull;
|
|
4
5
|
export type MercuryBundleBase = "base/base" | "base/icons";
|
|
@@ -9,7 +10,7 @@ export type MercuryBundleScope = "scope/theme-globant" | "scope/theme-mercury";
|
|
|
9
10
|
export type MercuryBundleUtil = "utils/elevation" | "utils/form" | "utils/layout" | "utils/link" | "utils/spacing" | "utils/typography" | "chameleon/scrollbar";
|
|
10
11
|
export type MercuryBundleUtilFormFull = "utils/form--full";
|
|
11
12
|
export type MercuryBundleMapping = {
|
|
12
|
-
[key in
|
|
13
|
+
[key in MercuryAllBundles]: `${key}-${string}` | key;
|
|
13
14
|
};
|
|
14
15
|
export type AssetsMetadata = {
|
|
15
16
|
category: string;
|
package/package.json
CHANGED