@nimbus-ds/icon-button 4.3.0 → 4.3.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 +6 -0
- package/dist/CHANGELOG.md +6 -0
- package/dist/index.d.ts +3 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Icons are used to visually communicate core parts of the product and available actions. They can act as wayfinding tools to help merchants more easily understand where they are in the product, and common interaction patterns that are available.
|
|
4
4
|
|
|
5
|
+
## 2026-01-13 `4.3.1`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- Adds support for React 19. ([#404](https://github.com/TiendaNube/nimbus-design-system/pull/404) by [@joacotornello](https://github.com/joacotornello))
|
|
10
|
+
|
|
5
11
|
## 2025-09-17 `4.3.0`
|
|
6
12
|
|
|
7
13
|
#### 🎉 New features
|
package/dist/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Icons are used to visually communicate core parts of the product and available actions. They can act as wayfinding tools to help merchants more easily understand where they are in the product, and common interaction patterns that are available.
|
|
4
4
|
|
|
5
|
+
## 2026-01-13 `4.3.1`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- Adds support for React 19. ([#404](https://github.com/TiendaNube/nimbus-design-system/pull/404) by [@joacotornello](https://github.com/joacotornello))
|
|
10
|
+
|
|
5
11
|
## 2025-09-17 `4.3.0`
|
|
6
12
|
|
|
7
13
|
#### 🎉 New features
|
package/dist/index.d.ts
CHANGED
|
@@ -8,11 +8,12 @@ export interface Conditions<T> {
|
|
|
8
8
|
md?: T;
|
|
9
9
|
lg?: T;
|
|
10
10
|
xl?: T;
|
|
11
|
+
xxl?: T;
|
|
11
12
|
}
|
|
12
13
|
export type Cursor = "auto" | "pointer" | "not-allowed" | "grab" | "inherit";
|
|
13
14
|
declare const icon: {
|
|
14
15
|
sprinkle: ((props: {
|
|
15
|
-
color?: "currentColor" | "primary-interactive" | "primary-surface" | "primary-textLow" | "success-textLow" | "success-surface" | "warning-interactive" | "warning-surface" | "warning-textLow" | "danger-interactive" | "danger-surface" | "danger-textLow" | "neutral-background" | "neutral-interactive" | "neutral-surface" | "neutral-textLow" | "success-interactive" | "ai-generative" | "primary-textHigh" | "success-textHigh" | "warning-textHigh" | "danger-textHigh" | "neutral-textDisabled" | "
|
|
16
|
+
color?: "currentColor" | "primary-interactive" | "primary-surface" | "primary-textLow" | "success-textLow" | "success-surface" | "warning-interactive" | "warning-surface" | "warning-textLow" | "danger-interactive" | "danger-surface" | "danger-textLow" | "neutral-background" | "neutral-interactive" | "neutral-surface" | "neutral-textLow" | "neutral-textHigh" | "success-interactive" | "ai-generative" | "primary-textHigh" | "success-textHigh" | "warning-textHigh" | "danger-textHigh" | "neutral-textDisabled" | "ai-gradientPurpleHigh" | undefined;
|
|
16
17
|
cursor?: Cursor | undefined;
|
|
17
18
|
}) => string) & {
|
|
18
19
|
properties: Set<"color" | "cursor">;
|
|
@@ -42,6 +43,7 @@ declare const icon: {
|
|
|
42
43
|
"neutral-textLow": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
43
44
|
"neutral-textDisabled": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
44
45
|
"neutral-textHigh": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
46
|
+
"ai-gradientPurpleHigh": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
45
47
|
"ai-generative": string;
|
|
46
48
|
};
|
|
47
49
|
cursor: Cursor[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nimbus-ds/icon-button",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
"version": "yarn version"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@nimbus-ds/icon": "^3.
|
|
18
|
-
"@nimbus-ds/skeleton": "^3.0.
|
|
17
|
+
"@nimbus-ds/icon": "^3.3.1",
|
|
18
|
+
"@nimbus-ds/skeleton": "^3.0.2"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
|
-
"react": "^16.8 || ^17.0 || ^18.0",
|
|
22
|
-
"react-dom": "^16.8 || ^17.0 || ^18.0"
|
|
21
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0",
|
|
22
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0"
|
|
23
23
|
},
|
|
24
24
|
"homepage": "https://nimbus.nuvemshop.com.br/documentation",
|
|
25
25
|
"repository": {
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"url": "https://github.com/TiendaNube/nimbus-design-system/issues"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@nimbus-ds/icons": "^1.
|
|
34
|
-
"@nimbus-ds/webpack": "^1.7.
|
|
33
|
+
"@nimbus-ds/icons": "^1.15.1",
|
|
34
|
+
"@nimbus-ds/webpack": "^1.7.1"
|
|
35
35
|
}
|
|
36
36
|
}
|