@gnist/design-system 2.0.0 → 2.0.2
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/CHANGELOG.md +12 -0
- package/dist/building-blocks/skeletons/TextSkeleton.cjs +8 -4
- package/dist/building-blocks/skeletons/TextSkeleton.d.ts.map +1 -1
- package/dist/building-blocks/skeletons/TextSkeleton.js +8 -4
- package/dist/components/actions/buttons/ButtonBase.d.ts +1 -23
- package/dist/components/actions/buttons/ButtonBase.d.ts.map +1 -1
- package/dist/components/actions/buttons/DangerButton.d.ts +2 -10
- package/dist/components/actions/buttons/DangerButton.d.ts.map +1 -1
- package/dist/components/actions/buttons/GhostButton.d.ts +2 -10
- package/dist/components/actions/buttons/GhostButton.d.ts.map +1 -1
- package/dist/components/actions/buttons/IconButton.d.ts +8 -8
- package/dist/components/actions/buttons/IconButton.d.ts.map +1 -1
- package/dist/components/actions/buttons/PrimaryButton.d.ts +2 -10
- package/dist/components/actions/buttons/PrimaryButton.d.ts.map +1 -1
- package/dist/components/actions/buttons/SecondaryButton.d.ts +2 -10
- package/dist/components/actions/buttons/SecondaryButton.d.ts.map +1 -1
- package/dist/components/actions/buttons/SuccessButton.d.ts +2 -10
- package/dist/components/actions/buttons/SuccessButton.d.ts.map +1 -1
- package/dist/components/actions/buttons/TextButton.d.ts +9 -9
- package/dist/components/actions/buttons/TextButton.d.ts.map +1 -1
- package/dist/components/inputs/dropdowns/SelectBase.cjs +2 -2
- package/dist/components/inputs/dropdowns/SelectBase.d.ts.map +1 -1
- package/dist/components/inputs/dropdowns/SelectBase.js +2 -2
- package/dist/components/inputs/shared.d.ts +1 -1
- package/dist/components/inputs/textFields/TextArea.cjs +1 -1
- package/dist/components/inputs/textFields/TextArea.js +1 -1
- package/dist/components/surfaces/cards/InfoCard.d.ts +2 -2
- package/dist/components/surfaces/cards/InfoCard.d.ts.map +1 -1
- package/dist/components/surfaces/cards/RadioCard.d.ts +1 -1
- package/dist/components/surfaces/cards/RadioCard.d.ts.map +1 -1
- package/dist/translations/LocalizationProvider.cjs +1 -1
- package/dist/translations/LocalizationProvider.d.ts +1 -1
- package/dist/translations/LocalizationProvider.d.ts.map +1 -1
- package/dist/translations/LocalizationProvider.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [2.0.2](https://github.com/mollerdigital/design-system-design-system/compare/@gnist/design-system@2.0.1...@gnist/design-system@2.0.2) (2025-01-22)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* set uniqueKey prop on TextSkeleton component ([ec276b0](https://github.com/mollerdigital/design-system-design-system/commit/ec276b0bdeff238723f3dba13dd2bd7453c45604))
|
|
11
|
+
|
|
12
|
+
## [2.0.1](https://github.com/mollerdigital/design-system-design-system/compare/@gnist/design-system@2.0.0...@gnist/design-system@2.0.1) (2025-01-22)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* bump remaining apps to react 18 ([9462c63](https://github.com/mollerdigital/design-system-design-system/commit/9462c63869a3cf6a9a8d81658e5bdb056ee56c82))
|
|
17
|
+
|
|
6
18
|
## [2.0.0](https://github.com/mollerdigital/design-system-design-system/compare/@gnist/design-system@1.0.5...@gnist/design-system@2.0.0) (2025-01-22)
|
|
7
19
|
|
|
8
20
|
### ⚠ BREAKING CHANGES
|
|
@@ -5,11 +5,15 @@ const jsxRuntime = require("react/jsx-runtime");
|
|
|
5
5
|
const Row = require("../../utilities/layout/Row.cjs");
|
|
6
6
|
const tokens_css_js = require("@gnist/themes/tokens.css.js");
|
|
7
7
|
const reactContentLoader = require("react-content-loader");
|
|
8
|
+
const React = require("react");
|
|
8
9
|
const _interopDefaultCompat = (e) => e && typeof e === "object" && "default" in e ? e : { default: e };
|
|
9
10
|
const reactContentLoader__default = /* @__PURE__ */ _interopDefaultCompat(reactContentLoader);
|
|
10
11
|
const ContentLoader = reactContentLoader__default.default;
|
|
11
|
-
const TextSkeleton = ({ className, height = "1em", width = "100%" }) =>
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
const TextSkeleton = ({ className, height = "1em", width = "100%" }) => {
|
|
13
|
+
const uniqueKey = React.useId();
|
|
14
|
+
return jsxRuntime.jsx(Row.Row, { className, style: {
|
|
15
|
+
height: `calc(1em * ${tokens_css_js.tokens.typeface["line-height"]})`,
|
|
16
|
+
width
|
|
17
|
+
}, verticalAlign: "center", horizontalAlign: "end", children: jsxRuntime.jsx(ContentLoader, { uniqueKey, height, width, title: "", backgroundColor: tokens_css_js.tokens.color.loader, foregroundColor: tokens_css_js.tokens.color["on-loader"], children: jsxRuntime.jsx("rect", { x: "0", y: "0", rx: "4", ry: "6.7", height, width }) }) });
|
|
18
|
+
};
|
|
15
19
|
exports.TextSkeleton = TextSkeleton;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TextSkeleton.d.ts","sourceRoot":"","sources":["../../../src/building-blocks/skeletons/TextSkeleton.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"TextSkeleton.d.ts","sourceRoot":"","sources":["../../../src/building-blocks/skeletons/TextSkeleton.tsx"],"names":[],"mappings":"AAOA,MAAM,WAAW,iBAAiB;IAC9B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,eAAO,MAAM,YAAY,kCAItB,iBAAiB,4CAiCnB,CAAC"}
|
|
@@ -3,11 +3,15 @@ import { jsx } from "react/jsx-runtime";
|
|
|
3
3
|
import { Row } from "../../utilities/layout/Row.js";
|
|
4
4
|
import { tokens } from "@gnist/themes/tokens.css.js";
|
|
5
5
|
import reactContentLoader from "react-content-loader";
|
|
6
|
+
import { useId } from "react";
|
|
6
7
|
const ContentLoader = reactContentLoader;
|
|
7
|
-
const TextSkeleton = ({ className, height = "1em", width = "100%" }) =>
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
const TextSkeleton = ({ className, height = "1em", width = "100%" }) => {
|
|
9
|
+
const uniqueKey = useId();
|
|
10
|
+
return jsx(Row, { className, style: {
|
|
11
|
+
height: `calc(1em * ${tokens.typeface["line-height"]})`,
|
|
12
|
+
width
|
|
13
|
+
}, verticalAlign: "center", horizontalAlign: "end", children: jsx(ContentLoader, { uniqueKey, height, width, title: "", backgroundColor: tokens.color.loader, foregroundColor: tokens.color["on-loader"], children: jsx("rect", { x: "0", y: "0", rx: "4", ry: "6.7", height, width }) }) });
|
|
14
|
+
};
|
|
11
15
|
export {
|
|
12
16
|
TextSkeleton
|
|
13
17
|
};
|
|
@@ -23,27 +23,5 @@ export type BoxedButtonProps<AsElement extends ElementType> = PolymorphicProps<A
|
|
|
23
23
|
loadingText: string;
|
|
24
24
|
};
|
|
25
25
|
};
|
|
26
|
-
export declare const BoxedButtonBase: React.ForwardRefExoticComponent<Omit<
|
|
27
|
-
as?: React.ElementType | undefined;
|
|
28
|
-
$as?: React.ElementType | undefined;
|
|
29
|
-
} & Omit<any, "as" | "$as"> & {
|
|
30
|
-
/**
|
|
31
|
-
* Density of the button
|
|
32
|
-
* @default default
|
|
33
|
-
*/
|
|
34
|
-
density?: DensitySizes;
|
|
35
|
-
/**
|
|
36
|
-
* Loading state of the button and a placeholder text for screen readers
|
|
37
|
-
*/
|
|
38
|
-
loading?: {
|
|
39
|
-
/**
|
|
40
|
-
* Loading state of the button
|
|
41
|
-
*/
|
|
42
|
-
isLoading: boolean;
|
|
43
|
-
/**
|
|
44
|
-
* Placeholder text for screen readers
|
|
45
|
-
*/
|
|
46
|
-
loadingText: string;
|
|
47
|
-
};
|
|
48
|
-
}, "ref"> & React.RefAttributes<Element>>;
|
|
26
|
+
export declare const BoxedButtonBase: React.ForwardRefExoticComponent<Omit<BoxedButtonProps<React.ElementType>, "ref"> & React.RefAttributes<Element>>;
|
|
49
27
|
//# sourceMappingURL=ButtonBase.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ButtonBase.d.ts","sourceRoot":"","sources":["../../../../src/components/actions/buttons/ButtonBase.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAK1D,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,oBAAoB,EAAE,WAAW,EAAE,MAAM,OAAO,CAAC;AAC1D,OAAO,EAEH,YAAY,EACf,MAAM,yCAAyC,CAAC;AAKjD,MAAM,MAAM,WAAW,GAAG,oBAAoB,CAAC,iBAAiB,CAAC,CAAC;AAElE,MAAM,MAAM,gBAAgB,CAAC,SAAS,SAAS,WAAW,IACtD,gBAAgB,CAAC,SAAS,CAAC,GAAG;IAC1B;;;OAGG;IACH,OAAO,CAAC,EAAE,YAAY,CAAC;IACvB;;OAEG;IACH,OAAO,CAAC,EAAE;QACN;;WAEG;QACH,SAAS,EAAE,OAAO,CAAC;QACnB;;WAEG;QACH,WAAW,EAAE,MAAM,CAAC;KACvB,CAAC;CACL,CAAC;AAEN,eAAO,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"ButtonBase.d.ts","sourceRoot":"","sources":["../../../../src/components/actions/buttons/ButtonBase.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAK1D,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,oBAAoB,EAAE,WAAW,EAAE,MAAM,OAAO,CAAC;AAC1D,OAAO,EAEH,YAAY,EACf,MAAM,yCAAyC,CAAC;AAKjD,MAAM,MAAM,WAAW,GAAG,oBAAoB,CAAC,iBAAiB,CAAC,CAAC;AAElE,MAAM,MAAM,gBAAgB,CAAC,SAAS,SAAS,WAAW,IACtD,gBAAgB,CAAC,SAAS,CAAC,GAAG;IAC1B;;;OAGG;IACH,OAAO,CAAC,EAAE,YAAY,CAAC;IACvB;;OAEG;IACH,OAAO,CAAC,EAAE;QACN;;WAEG;QACH,SAAS,EAAE,OAAO,CAAC;QACnB;;WAEG;QACH,WAAW,EAAE,MAAM,CAAC;KACvB,CAAC;CACL,CAAC;AAEN,eAAO,MAAM,eAAe,kHA2D1B,CAAC"}
|
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
import { ElementType } from "react";
|
|
2
|
+
import { BoxedButtonProps } from "./ButtonBase.js";
|
|
2
3
|
/**
|
|
3
4
|
The danger button appears as a final confirmation for a destructive action like deleting or removing content. These are found mostly in confirmation states and modals.
|
|
4
5
|
*/
|
|
5
|
-
export declare const DangerButton: import("react").ForwardRefExoticComponent<Omit<
|
|
6
|
-
as?: ElementType | undefined;
|
|
7
|
-
$as?: ElementType | undefined;
|
|
8
|
-
} & Omit<any, "as" | "$as"> & {
|
|
9
|
-
density?: import("../../../index.js").DensitySizes;
|
|
10
|
-
loading?: {
|
|
11
|
-
isLoading: boolean;
|
|
12
|
-
loadingText: string;
|
|
13
|
-
};
|
|
14
|
-
}, "ref"> & import("react").RefAttributes<Element>>;
|
|
6
|
+
export declare const DangerButton: import("react").ForwardRefExoticComponent<Omit<BoxedButtonProps<ElementType>, "ref"> & import("react").RefAttributes<Element>>;
|
|
15
7
|
//# sourceMappingURL=DangerButton.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DangerButton.d.ts","sourceRoot":"","sources":["../../../../src/components/actions/buttons/DangerButton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA4B,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"DangerButton.d.ts","sourceRoot":"","sources":["../../../../src/components/actions/buttons/DangerButton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA4B,MAAM,OAAO,CAAC;AAC9D,OAAO,EAAmB,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AAGpE;;EAEE;AAEF,eAAO,MAAM,YAAY,gIAMvB,CAAC"}
|
|
@@ -1,17 +1,9 @@
|
|
|
1
1
|
import { ElementType } from "react";
|
|
2
|
+
import { BoxedButtonProps } from "./ButtonBase.js";
|
|
2
3
|
/**
|
|
3
4
|
Ghost buttons indicate a lower level of emphasis and have a solid outline to draw less attention from the primary action. Because the background is transparent, the text and icon color is inherited from ancestors to acommodate use on different background colors.
|
|
4
5
|
|
|
5
6
|
As the ghost button looks less like a traditional button, it must always be used with a CTA button nearby.
|
|
6
7
|
*/
|
|
7
|
-
export declare const GhostButton: import("react").ForwardRefExoticComponent<Omit<
|
|
8
|
-
as?: ElementType | undefined;
|
|
9
|
-
$as?: ElementType | undefined;
|
|
10
|
-
} & Omit<any, "as" | "$as"> & {
|
|
11
|
-
density?: import("../../../index.js").DensitySizes;
|
|
12
|
-
loading?: {
|
|
13
|
-
isLoading: boolean;
|
|
14
|
-
loadingText: string;
|
|
15
|
-
};
|
|
16
|
-
}, "ref"> & import("react").RefAttributes<Element>>;
|
|
8
|
+
export declare const GhostButton: import("react").ForwardRefExoticComponent<Omit<BoxedButtonProps<ElementType>, "ref"> & import("react").RefAttributes<Element>>;
|
|
17
9
|
//# sourceMappingURL=GhostButton.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GhostButton.d.ts","sourceRoot":"","sources":["../../../../src/components/actions/buttons/GhostButton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA4B,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"GhostButton.d.ts","sourceRoot":"","sources":["../../../../src/components/actions/buttons/GhostButton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA4B,MAAM,OAAO,CAAC;AAC9D,OAAO,EAAmB,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AAGpE;;;;EAIE;AACF,eAAO,MAAM,WAAW,gIAStB,CAAC"}
|
|
@@ -1,13 +1,8 @@
|
|
|
1
|
+
import { PolymorphicProps } from "@gnist/component-utils";
|
|
1
2
|
import { VariantNames } from "../../../foundation/iconography/variantNames.js";
|
|
2
3
|
import { ElementType } from "react";
|
|
3
4
|
import { AllowedIcons } from "../../../foundation/iconography/index.js";
|
|
4
|
-
|
|
5
|
-
An icon button is a button which displays only an icon with or without a label. Icon buttons allow users to take actions, and make choices, with a single tap. Because the background is transparent, the icon and label color is inherited from ancestors to acommodate use on different background colors.
|
|
6
|
-
*/
|
|
7
|
-
export declare const IconButton: import("react").ForwardRefExoticComponent<Omit<{
|
|
8
|
-
as?: ElementType | undefined;
|
|
9
|
-
$as?: ElementType | undefined;
|
|
10
|
-
} & Omit<any, "as" | "$as"> & {
|
|
5
|
+
type IconButtonProps<AsElement extends ElementType> = PolymorphicProps<AsElement> & {
|
|
11
6
|
/**
|
|
12
7
|
* Which icon to show.
|
|
13
8
|
*/
|
|
@@ -23,5 +18,10 @@ export declare const IconButton: import("react").ForwardRefExoticComponent<Omit<
|
|
|
23
18
|
showLabel?: "left" | "right" | "none";
|
|
24
19
|
/** Override the default icon variant for this icon. To change the default icon variant, use IconVariantProvider */
|
|
25
20
|
variantOverride?: VariantNames;
|
|
26
|
-
}
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
An icon button is a button which displays only an icon with or without a label. Icon buttons allow users to take actions, and make choices, with a single tap. Because the background is transparent, the icon and label color is inherited from ancestors to acommodate use on different background colors.
|
|
24
|
+
*/
|
|
25
|
+
export declare const IconButton: import("react").ForwardRefExoticComponent<Omit<IconButtonProps<ElementType>, "ref"> & import("react").RefAttributes<Element>>;
|
|
26
|
+
export {};
|
|
27
27
|
//# sourceMappingURL=IconButton.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IconButton.d.ts","sourceRoot":"","sources":["../../../../src/components/actions/buttons/IconButton.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"IconButton.d.ts","sourceRoot":"","sources":["../../../../src/components/actions/buttons/IconButton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAC1D,OAAO,EAAE,YAAY,EAAE,wDAAoE;AAG3F,OAAO,EAAE,WAAW,EAA2C,MAAM,OAAO,CAAC;AAC7E,OAAO,EAAE,YAAY,EAAQ,MAAM,0CAA0C,CAAC;AAI9E,KAAK,eAAe,CAAC,SAAS,SAAS,WAAW,IAC9C,gBAAgB,CAAC,SAAS,CAAC,GAAG;IAC1B;;OAEG;IACH,IAAI,EAAE,YAAY,CAAC;IACnB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,MAAM,CAAC;IACtC,mHAAmH;IACnH,eAAe,CAAC,EAAE,YAAY,CAAC;CAClC,CAAC;AAEN;;EAEE;AACF,eAAO,MAAM,UAAU,+HA0CrB,CAAC"}
|
|
@@ -1,17 +1,9 @@
|
|
|
1
1
|
import { ElementType } from "react";
|
|
2
|
+
import { BoxedButtonProps } from "./ButtonBase.js";
|
|
2
3
|
/**
|
|
3
4
|
The primary button commands the highest emphasis on the page and is reserved for the main action you want a user to take on a page — the "Call To Action" (CTA) button.
|
|
4
5
|
|
|
5
6
|
Primary buttons shouldn’t appear more than once in a section, and preferably just once on a screen, as it will confuse users as to which is the most important action. If you need a button next to a primary action, use the ghost button.
|
|
6
7
|
*/
|
|
7
|
-
export declare const PrimaryButton: import("react").ForwardRefExoticComponent<Omit<
|
|
8
|
-
as?: ElementType | undefined;
|
|
9
|
-
$as?: ElementType | undefined;
|
|
10
|
-
} & Omit<any, "as" | "$as"> & {
|
|
11
|
-
density?: import("../../../index.js").DensitySizes;
|
|
12
|
-
loading?: {
|
|
13
|
-
isLoading: boolean;
|
|
14
|
-
loadingText: string;
|
|
15
|
-
};
|
|
16
|
-
}, "ref"> & import("react").RefAttributes<Element>>;
|
|
8
|
+
export declare const PrimaryButton: import("react").ForwardRefExoticComponent<Omit<BoxedButtonProps<ElementType>, "ref"> & import("react").RefAttributes<Element>>;
|
|
17
9
|
//# sourceMappingURL=PrimaryButton.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PrimaryButton.d.ts","sourceRoot":"","sources":["../../../../src/components/actions/buttons/PrimaryButton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA4B,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"PrimaryButton.d.ts","sourceRoot":"","sources":["../../../../src/components/actions/buttons/PrimaryButton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA4B,MAAM,OAAO,CAAC;AAC9D,OAAO,EAAmB,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AAGpE;;;;EAIE;AAEF,eAAO,MAAM,aAAa,gIASxB,CAAC"}
|
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
import { ElementType } from "react";
|
|
2
|
+
import { BoxedButtonProps } from "./ButtonBase.js";
|
|
2
3
|
/**
|
|
3
4
|
Secondary buttons are used for the second most important action. These are often used if you have multiple actions on a page so need more than one button.
|
|
4
5
|
*/
|
|
5
|
-
export declare const SecondaryButton: import("react").ForwardRefExoticComponent<Omit<
|
|
6
|
-
as?: ElementType | undefined;
|
|
7
|
-
$as?: ElementType | undefined;
|
|
8
|
-
} & Omit<any, "as" | "$as"> & {
|
|
9
|
-
density?: import("../../../index.js").DensitySizes;
|
|
10
|
-
loading?: {
|
|
11
|
-
isLoading: boolean;
|
|
12
|
-
loadingText: string;
|
|
13
|
-
};
|
|
14
|
-
}, "ref"> & import("react").RefAttributes<Element>>;
|
|
6
|
+
export declare const SecondaryButton: import("react").ForwardRefExoticComponent<Omit<BoxedButtonProps<ElementType>, "ref"> & import("react").RefAttributes<Element>>;
|
|
15
7
|
//# sourceMappingURL=SecondaryButton.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SecondaryButton.d.ts","sourceRoot":"","sources":["../../../../src/components/actions/buttons/SecondaryButton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA4B,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"SecondaryButton.d.ts","sourceRoot":"","sources":["../../../../src/components/actions/buttons/SecondaryButton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA4B,MAAM,OAAO,CAAC;AAC9D,OAAO,EAAmB,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AAGpE;;EAEE;AAEF,eAAO,MAAM,eAAe,gIAS1B,CAAC"}
|
|
@@ -1,17 +1,9 @@
|
|
|
1
1
|
import { ElementType } from "react";
|
|
2
|
+
import { BoxedButtonProps } from "./ButtonBase.js";
|
|
2
3
|
/**
|
|
3
4
|
The success button is used for positive actions such as to complete, save or fulfill an order.
|
|
4
5
|
|
|
5
6
|
There shouldn’t be more than one success button on a page to avoid overwhelming customers.
|
|
6
7
|
*/
|
|
7
|
-
export declare const SuccessButton: import("react").ForwardRefExoticComponent<Omit<
|
|
8
|
-
as?: ElementType | undefined;
|
|
9
|
-
$as?: ElementType | undefined;
|
|
10
|
-
} & Omit<any, "as" | "$as"> & {
|
|
11
|
-
density?: import("../../../index.js").DensitySizes;
|
|
12
|
-
loading?: {
|
|
13
|
-
isLoading: boolean;
|
|
14
|
-
loadingText: string;
|
|
15
|
-
};
|
|
16
|
-
}, "ref"> & import("react").RefAttributes<Element>>;
|
|
8
|
+
export declare const SuccessButton: import("react").ForwardRefExoticComponent<Omit<BoxedButtonProps<ElementType>, "ref"> & import("react").RefAttributes<Element>>;
|
|
17
9
|
//# sourceMappingURL=SuccessButton.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SuccessButton.d.ts","sourceRoot":"","sources":["../../../../src/components/actions/buttons/SuccessButton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA4B,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"SuccessButton.d.ts","sourceRoot":"","sources":["../../../../src/components/actions/buttons/SuccessButton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA4B,MAAM,OAAO,CAAC;AAC9D,OAAO,EAAmB,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AAGpE;;;;EAIE;AAEF,eAAO,MAAM,aAAa,gIASxB,CAAC"}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
+
import { PolymorphicProps } from "@gnist/component-utils";
|
|
1
2
|
import { ElementType } from "react";
|
|
3
|
+
type TextButtonProps<AsElement extends ElementType> = PolymorphicProps<AsElement> & {
|
|
4
|
+
/**
|
|
5
|
+
* Should the text be underlined?
|
|
6
|
+
*/
|
|
7
|
+
underline?: boolean;
|
|
8
|
+
};
|
|
2
9
|
/**
|
|
3
10
|
Text buttons are typically used for less-pronounced actions, including those located in dialogs and cards. In cards and dialogs, text buttons help maintain an emphasis on card content. Because the background is transparent, the text and underline color is inherited from ancestors to acommodate use on different background colors.
|
|
4
11
|
|
|
5
12
|
Note: Unlike most button components, `disabled`, `loading` and `density` props don't exist for TextButton.
|
|
6
13
|
*/
|
|
7
|
-
export declare const TextButton: import("react").ForwardRefExoticComponent<Omit<
|
|
8
|
-
|
|
9
|
-
$as?: ElementType | undefined;
|
|
10
|
-
} & Omit<any, "as" | "$as"> & {
|
|
11
|
-
/**
|
|
12
|
-
* Should the text be underlined?
|
|
13
|
-
*/
|
|
14
|
-
underline?: boolean;
|
|
15
|
-
}, "ref"> & import("react").RefAttributes<Element>>;
|
|
14
|
+
export declare const TextButton: import("react").ForwardRefExoticComponent<Omit<TextButtonProps<ElementType>, "ref"> & import("react").RefAttributes<Element>>;
|
|
15
|
+
export {};
|
|
16
16
|
//# sourceMappingURL=TextButton.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TextButton.d.ts","sourceRoot":"","sources":["../../../../src/components/actions/buttons/TextButton.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"TextButton.d.ts","sourceRoot":"","sources":["../../../../src/components/actions/buttons/TextButton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAI1D,OAAO,EAAE,WAAW,EAA2C,MAAM,OAAO,CAAC;AAG7E,KAAK,eAAe,CAAC,SAAS,SAAS,WAAW,IAC9C,gBAAgB,CAAC,SAAS,CAAC,GAAG;IAC1B;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;CACvB,CAAC;AAEN;;;;EAIE;AACF,eAAO,MAAM,UAAU,+HA4BrB,CAAC"}
|
|
@@ -7,13 +7,13 @@ const InputHelperText = require("../../../building-blocks/inputs/InputHelperText
|
|
|
7
7
|
require("../../../utilities/layout/Row.cjs");
|
|
8
8
|
require("@gnist/themes/tokens.css.js");
|
|
9
9
|
require("react-content-loader");
|
|
10
|
+
const React = require("react");
|
|
10
11
|
const shared = require("../shared.cjs");
|
|
11
12
|
require("../../../foundation/iconography/ExtraIconsProvider.cjs");
|
|
12
13
|
require("../../../foundation/iconography/IconVariantProvider.cjs");
|
|
13
14
|
require("../../../foundation/iconography/icons.cjs");
|
|
14
15
|
const Icon = require("../../../foundation/iconography/Icon.cjs");
|
|
15
16
|
require("../../../foundation/typography/index.cjs");
|
|
16
|
-
const React = require("react");
|
|
17
17
|
const classNames = require("classnames");
|
|
18
18
|
require("../../../foundation/logos/Logo.css.cjs");
|
|
19
19
|
const atoms_css_js = require("@gnist/themes/atoms.css.js");
|
|
@@ -53,7 +53,7 @@ function SelectBase(props, isMultiple, ref) {
|
|
|
53
53
|
[inputFieldConstants_css.preInputWidth]: wrapperProps.preInputWidth,
|
|
54
54
|
[inputFieldConstants_css.postInputWidth]: wrapperProps.postInputWidth
|
|
55
55
|
})
|
|
56
|
-
}, ...commonInputProps, ...selectProps, multiple: isMultiple, onListboxOpenChange: (expanded) => setIsExpanded(expanded), slots: {
|
|
56
|
+
}, ...commonInputProps, ...selectProps, ref, multiple: isMultiple, onListboxOpenChange: (expanded) => setIsExpanded(expanded), slots: {
|
|
57
57
|
listbox: listBoxComponent,
|
|
58
58
|
popup: popUpComponent
|
|
59
59
|
}, onChange: (e, value) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SelectBase.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/dropdowns/SelectBase.tsx"],"names":[],"mappings":"AAEA,OAAO,EACH,oBAAoB,EAGvB,qBAAyD;AAM1D,OAAO,EAAE,YAAY,EAAY,MAAM,OAAO,CAAC;AAqB/C,MAAM,WAAW,eAAe,CAAC,IAAI,CAAE,SAAQ,oBAAoB,CAAC,IAAI,CAAC;IACrE;;;OAGG;IACH,OAAO,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;CAC/C;AAKD,wBAAgB,UAAU,CAAC,CAAC,EACxB,KAAK,EAAE,eAAe,CAAC,CAAC,CAAC,EACzB,UAAU,EAAE,OAAO,EACnB,GAAG,EAAE,YAAY,CAAC,iBAAiB,CAAC,
|
|
1
|
+
{"version":3,"file":"SelectBase.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/dropdowns/SelectBase.tsx"],"names":[],"mappings":"AAEA,OAAO,EACH,oBAAoB,EAGvB,qBAAyD;AAM1D,OAAO,EAAE,YAAY,EAAY,MAAM,OAAO,CAAC;AAqB/C,MAAM,WAAW,eAAe,CAAC,IAAI,CAAE,SAAQ,oBAAoB,CAAC,IAAI,CAAC;IACrE;;;OAGG;IACH,OAAO,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;CAC/C;AAKD,wBAAgB,UAAU,CAAC,CAAC,EACxB,KAAK,EAAE,eAAe,CAAC,CAAC,CAAC,EACzB,UAAU,EAAE,OAAO,EACnB,GAAG,EAAE,YAAY,CAAC,iBAAiB,CAAC,2CA4HvC"}
|
|
@@ -5,13 +5,13 @@ import { InputHelperText } from "../../../building-blocks/inputs/InputHelperText
|
|
|
5
5
|
import "../../../utilities/layout/Row.js";
|
|
6
6
|
import "@gnist/themes/tokens.css.js";
|
|
7
7
|
import "react-content-loader";
|
|
8
|
+
import { useState } from "react";
|
|
8
9
|
import { useSelectInputLogic, getSelectInputProps } from "../shared.js";
|
|
9
10
|
import "../../../foundation/iconography/ExtraIconsProvider.js";
|
|
10
11
|
import "../../../foundation/iconography/IconVariantProvider.js";
|
|
11
12
|
import "../../../foundation/iconography/icons.js";
|
|
12
13
|
import { Icon } from "../../../foundation/iconography/Icon.js";
|
|
13
14
|
import "../../../foundation/typography/index.js";
|
|
14
|
-
import { useState } from "react";
|
|
15
15
|
import classNames from "classnames";
|
|
16
16
|
import "../../../foundation/logos/Logo.css.js";
|
|
17
17
|
import { atoms } from "@gnist/themes/atoms.css.js";
|
|
@@ -49,7 +49,7 @@ function SelectBase(props, isMultiple, ref) {
|
|
|
49
49
|
[preInputWidth]: wrapperProps.preInputWidth,
|
|
50
50
|
[postInputWidth]: wrapperProps.postInputWidth
|
|
51
51
|
})
|
|
52
|
-
}, ...commonInputProps, ...selectProps, multiple: isMultiple, onListboxOpenChange: (expanded) => setIsExpanded(expanded), slots: {
|
|
52
|
+
}, ...commonInputProps, ...selectProps, ref, multiple: isMultiple, onListboxOpenChange: (expanded) => setIsExpanded(expanded), slots: {
|
|
53
53
|
listbox: listBoxComponent,
|
|
54
54
|
popup: popUpComponent
|
|
55
55
|
}, onChange: (e, value) => {
|
|
@@ -143,7 +143,7 @@ export declare function getSelectInputProps<T>({ label, density, leadingIcon, he
|
|
|
143
143
|
* onChange prop for setting value to selected options
|
|
144
144
|
*/
|
|
145
145
|
onChange: (value: T) => void;
|
|
146
|
-
ref?: import("react").
|
|
146
|
+
ref?: import("react").LegacyRef<HTMLButtonElement> | undefined;
|
|
147
147
|
key?: import("react").Key | null | undefined;
|
|
148
148
|
value?: T | undefined;
|
|
149
149
|
id?: string;
|
|
@@ -6,12 +6,12 @@ const InputHelperText = require("../../../building-blocks/inputs/InputHelperText
|
|
|
6
6
|
require("../../../utilities/layout/Row.cjs");
|
|
7
7
|
require("@gnist/themes/tokens.css.js");
|
|
8
8
|
require("react-content-loader");
|
|
9
|
+
const React = require("react");
|
|
9
10
|
require("../../../foundation/iconography/ExtraIconsProvider.cjs");
|
|
10
11
|
require("../../../foundation/iconography/IconVariantProvider.cjs");
|
|
11
12
|
require("../../../foundation/iconography/icons.cjs");
|
|
12
13
|
const Icon = require("../../../foundation/iconography/Icon.cjs");
|
|
13
14
|
require("../../../foundation/typography/index.cjs");
|
|
14
|
-
const React = require("react");
|
|
15
15
|
const classNames = require("classnames");
|
|
16
16
|
require("../../../foundation/logos/Logo.css.cjs");
|
|
17
17
|
const atoms_css_js = require("@gnist/themes/atoms.css.js");
|
|
@@ -4,12 +4,12 @@ import { InputHelperText } from "../../../building-blocks/inputs/InputHelperText
|
|
|
4
4
|
import "../../../utilities/layout/Row.js";
|
|
5
5
|
import "@gnist/themes/tokens.css.js";
|
|
6
6
|
import "react-content-loader";
|
|
7
|
+
import { forwardRef } from "react";
|
|
7
8
|
import "../../../foundation/iconography/ExtraIconsProvider.js";
|
|
8
9
|
import "../../../foundation/iconography/IconVariantProvider.js";
|
|
9
10
|
import "../../../foundation/iconography/icons.js";
|
|
10
11
|
import { Icon } from "../../../foundation/iconography/Icon.js";
|
|
11
12
|
import "../../../foundation/typography/index.js";
|
|
12
|
-
import { forwardRef } from "react";
|
|
13
13
|
import classNames from "classnames";
|
|
14
14
|
import "../../../foundation/logos/Logo.css.js";
|
|
15
15
|
import { atoms } from "@gnist/themes/atoms.css.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ForwardRefExoticComponent } from "react";
|
|
1
|
+
import { ElementType, ForwardRefExoticComponent } from "react";
|
|
2
2
|
import { InfoCardProps } from "./CardProps.js";
|
|
3
3
|
/** Cards that contain content but is not clickable. A card can stand alone, without relying on surrounding elements for context.
|
|
4
4
|
|
|
@@ -7,5 +7,5 @@ The component is empty and the content and layout can be designed for each spesi
|
|
|
7
7
|
Card layouts can vary to support the types of content they contain. Imagery, icons, title, supporting texts and actions are optional elements that can be used.
|
|
8
8
|
|
|
9
9
|
*/
|
|
10
|
-
export declare const InfoCard: ForwardRefExoticComponent<InfoCardProps<
|
|
10
|
+
export declare const InfoCard: ForwardRefExoticComponent<InfoCardProps<ElementType>>;
|
|
11
11
|
//# sourceMappingURL=InfoCard.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"InfoCard.d.ts","sourceRoot":"","sources":["../../../../src/components/surfaces/cards/InfoCard.tsx"],"names":[],"mappings":"AACA,OAAO,
|
|
1
|
+
{"version":3,"file":"InfoCard.d.ts","sourceRoot":"","sources":["../../../../src/components/surfaces/cards/InfoCard.tsx"],"names":[],"mappings":"AACA,OAAO,EACH,WAAW,EAGX,yBAAyB,EAC5B,MAAM,OAAO,CAAC;AACf,OAAO,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAI/C;;;;;;EAME;AACF,eAAO,MAAM,QAAQ,EAAE,yBAAyB,CAAC,aAAa,CAAC,WAAW,CAAC,CAsBrE,CAAC"}
|
|
@@ -21,6 +21,6 @@ The radio card includes a radio button, label, and description. The card is clic
|
|
|
21
21
|
|
|
22
22
|
The card serves to draw extra attention to a radio button selection in the user interface.
|
|
23
23
|
*/
|
|
24
|
-
export declare const RadioCard: React.ForwardRefExoticComponent<RadioCardProps & React.RefAttributes<HTMLDivElement>>;
|
|
24
|
+
export declare const RadioCard: React.ForwardRefExoticComponent<Omit<RadioCardProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
25
25
|
export {};
|
|
26
26
|
//# sourceMappingURL=RadioCard.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RadioCard.d.ts","sourceRoot":"","sources":["../../../../src/components/surfaces/cards/RadioCard.tsx"],"names":[],"mappings":"AAAA,OAAO,EAEH,gBAAgB,EACnB,MAAM,gDAAgD,CAAC;AACxD,OAAO,EACH,yBAAyB,EAGzB,kBAAkB,EACrB,MAAM,6BAA6B,CAAC;AAKrC,UAAU,cAAe,SAAQ,kBAAkB;IAC/C;;OAEG;IACH,QAAQ,EAAE,gBAAgB,CAAC,UAAU,CAAC,CAAC;IACvC;;OAEG;IACH,IAAI,EAAE,gBAAgB,CAAC,MAAM,CAAC,CAAC;IAC/B;;OAEG;IACH,UAAU,CAAC,EAAE,yBAAyB,CAAC;CAC1C;AAED;;;;;;GAMG;AACH,eAAO,MAAM,SAAS,EAAE,KAAK,CAAC,yBAAyB,CACnD,cAAc,GAAG,KAAK,CAAC,aAAa,CAAC,cAAc,CAAC,
|
|
1
|
+
{"version":3,"file":"RadioCard.d.ts","sourceRoot":"","sources":["../../../../src/components/surfaces/cards/RadioCard.tsx"],"names":[],"mappings":"AAAA,OAAO,EAEH,gBAAgB,EACnB,MAAM,gDAAgD,CAAC;AACxD,OAAO,EACH,yBAAyB,EAGzB,kBAAkB,EACrB,MAAM,6BAA6B,CAAC;AAKrC,UAAU,cAAe,SAAQ,kBAAkB;IAC/C;;OAEG;IACH,QAAQ,EAAE,gBAAgB,CAAC,UAAU,CAAC,CAAC;IACvC;;OAEG;IACH,IAAI,EAAE,gBAAgB,CAAC,MAAM,CAAC,CAAC;IAC/B;;OAEG;IACH,UAAU,CAAC,EAAE,yBAAyB,CAAC;CAC1C;AAED;;;;;;GAMG;AACH,eAAO,MAAM,SAAS,EAAE,KAAK,CAAC,yBAAyB,CACnD,IAAI,CAAC,cAAc,EAAE,KAAK,CAAC,GAAG,KAAK,CAAC,aAAa,CAAC,cAAc,CAAC,CAkDnE,CAAC"}
|
|
@@ -24,7 +24,7 @@ const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
|
|
|
24
24
|
const localizationContext = React__namespace.createContext({
|
|
25
25
|
language: "no"
|
|
26
26
|
});
|
|
27
|
-
const LocalizationProvider = ({ children,
|
|
27
|
+
const LocalizationProvider = ({ children, language }) => jsxRuntime.jsx(localizationContext.Provider, { value: { language }, children });
|
|
28
28
|
function useLocalization() {
|
|
29
29
|
return React__namespace.useContext(localizationContext);
|
|
30
30
|
}
|
|
@@ -7,7 +7,7 @@ export interface LocalizationState {
|
|
|
7
7
|
/**
|
|
8
8
|
* Use this to set the localization context for the library.
|
|
9
9
|
*/
|
|
10
|
-
export declare const LocalizationProvider: React.FC<LocalizationState
|
|
10
|
+
export declare const LocalizationProvider: React.FC<React.PropsWithChildren<LocalizationState>>;
|
|
11
11
|
export declare function useLocalization(): LocalizationState;
|
|
12
12
|
export declare function useLanguage(): Language;
|
|
13
13
|
//# sourceMappingURL=LocalizationProvider.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LocalizationProvider.d.ts","sourceRoot":"","sources":["../../src/translations/LocalizationProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEtC,MAAM,WAAW,iBAAiB;IAC9B,4GAA4G;IAC5G,QAAQ,EAAE,QAAQ,CAAC;CACtB;AAMD;;GAEG;AACH,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,
|
|
1
|
+
{"version":3,"file":"LocalizationProvider.d.ts","sourceRoot":"","sources":["../../src/translations/LocalizationProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEtC,MAAM,WAAW,iBAAiB;IAC9B,4GAA4G;IAC5G,QAAQ,EAAE,QAAQ,CAAC;CACtB;AAMD;;GAEG;AACH,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CACvC,KAAK,CAAC,iBAAiB,CAAC,iBAAiB,CAAC,CAK7C,CAAC;AAEF,wBAAgB,eAAe,sBAE9B;AAED,wBAAgB,WAAW,aAE1B"}
|
|
@@ -4,7 +4,7 @@ import * as React from "react";
|
|
|
4
4
|
const localizationContext = React.createContext({
|
|
5
5
|
language: "no"
|
|
6
6
|
});
|
|
7
|
-
const LocalizationProvider = ({ children,
|
|
7
|
+
const LocalizationProvider = ({ children, language }) => jsx(localizationContext.Provider, { value: { language }, children });
|
|
8
8
|
function useLocalization() {
|
|
9
9
|
return React.useContext(localizationContext);
|
|
10
10
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gnist/design-system",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@formkit/auto-animate": "^0.7.0",
|
|
51
|
-
"@gnist/component-utils": "3.0.
|
|
51
|
+
"@gnist/component-utils": "3.0.1",
|
|
52
52
|
"@gnist/themes": "^2.0.0",
|
|
53
53
|
"@mui/base": "^5.0.0-beta.36",
|
|
54
54
|
"@vanilla-extract/css": "^1.14.1",
|
|
@@ -73,8 +73,8 @@
|
|
|
73
73
|
"@tsconfig/node20": "^20.1.2",
|
|
74
74
|
"@types/node": "^20.11.16",
|
|
75
75
|
"@types/prettier": "^2.6.1",
|
|
76
|
-
"@types/react": "^
|
|
77
|
-
"@types/react-dom": "^
|
|
76
|
+
"@types/react": "^18.0.0",
|
|
77
|
+
"@types/react-dom": "^18.0.0",
|
|
78
78
|
"@types/semver": "^7.3.8",
|
|
79
79
|
"@typescript-eslint/eslint-plugin": "^6.19.1",
|
|
80
80
|
"@typescript-eslint/parser": "^6.19.1",
|
|
@@ -113,5 +113,5 @@
|
|
|
113
113
|
"optional": true
|
|
114
114
|
}
|
|
115
115
|
},
|
|
116
|
-
"gitHead": "
|
|
116
|
+
"gitHead": "6d4d0a95ab2aeca8009aa39a8e9d70b75731b24a"
|
|
117
117
|
}
|