@gnist/design-system 3.8.0 → 3.8.1
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
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
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
|
+
## [3.8.1](https://github.com/mollerdigital/design-system-design-system/compare/@gnist/design-system@3.8.0...@gnist/design-system@3.8.1) (2025-08-15)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* set background and foreground color properly in storybook ([45044ba](https://github.com/mollerdigital/design-system-design-system/commit/45044bab6882c1cc812cd370ec83426ae7b276d4))
|
|
11
|
+
|
|
6
12
|
## [3.8.0](https://github.com/mollerdigital/design-system-design-system/compare/@gnist/design-system@3.7.0...@gnist/design-system@3.8.0) (2025-08-11)
|
|
7
13
|
|
|
8
14
|
### Features
|
|
@@ -35,7 +35,7 @@ function _interopNamespaceCompat(e) {
|
|
|
35
35
|
}
|
|
36
36
|
const React__namespace = /* @__PURE__ */ _interopNamespaceCompat(React);
|
|
37
37
|
const classNames__default = /* @__PURE__ */ _interopDefaultCompat(classNames);
|
|
38
|
-
const BoxedButtonBase = React__namespace.forwardRef(function BoxedButtonBase2({ $as, as, children,
|
|
38
|
+
const BoxedButtonBase = React__namespace.forwardRef(function BoxedButtonBase2({ $as, as, children, className, loading, disabled = loading == null ? void 0 : loading.isLoading, type = "button", density = "default", ...props }, ref) {
|
|
39
39
|
const buttonProps = {
|
|
40
40
|
...props,
|
|
41
41
|
disabled: (loading == null ? void 0 : loading.isLoading) === true ? loading.isLoading : disabled,
|
|
@@ -13,7 +13,7 @@ import { ScreenReaderOnly } from "../../../utilities/accessibility/ScreenReaderO
|
|
|
13
13
|
import "../../../utilities/accessibility/visuallyHidden.css.js";
|
|
14
14
|
import { Spinner } from "../../progress/Spinner.js";
|
|
15
15
|
import { boxedButton, actionText } from "./styles.css.js";
|
|
16
|
-
const BoxedButtonBase = React.forwardRef(function BoxedButtonBase2({ $as, as, children,
|
|
16
|
+
const BoxedButtonBase = React.forwardRef(function BoxedButtonBase2({ $as, as, children, className, loading, disabled = loading == null ? void 0 : loading.isLoading, type = "button", density = "default", ...props }, ref) {
|
|
17
17
|
const buttonProps = {
|
|
18
18
|
...props,
|
|
19
19
|
disabled: (loading == null ? void 0 : loading.isLoading) === true ? loading.isLoading : disabled,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gnist/design-system",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.1",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -102,5 +102,5 @@
|
|
|
102
102
|
"optional": true
|
|
103
103
|
}
|
|
104
104
|
},
|
|
105
|
-
"gitHead": "
|
|
105
|
+
"gitHead": "ae91115b1ff09d3ec42b604aa1cd574cc4cc52c1"
|
|
106
106
|
}
|