@nimbus-ds/icon-button 3.3.0-rc.1 → 3.4.0-rc.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
@@ -2,6 +2,16 @@
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
+ ## 2023-02-16 `3.1.0`
6
+
7
+ ### 🎉 New features
8
+
9
+ - Removed external dependency from `@tiendanube/icons` package to now use internal `@nimbus-ds/icons` package. ([#94](https://github.com/TiendaNube/nimbus-design-system/pull/#94) by [@juniorconquista](https://github.com/juniorconquista))
10
+
11
+ ### 📚 3rd party library updates
12
+
13
+ - Removed `@tiendanube/icons@0.3.1`. ([#94](https://github.com/TiendaNube/nimbus-design-system/pull/#94) by [@juniorconquista](https://github.com/juniorconquista))
14
+
5
15
  ## 2022-12-22 `3.0.0`
6
16
 
7
17
  ### 💡 Others
package/dist/index.d.ts CHANGED
@@ -8,7 +8,7 @@ export interface Conditions<T> {
8
8
  md?: T;
9
9
  lg?: T;
10
10
  }
11
- declare const properties: {
11
+ declare const propertiesIconButton: {
12
12
  backgroundColor: {
13
13
  transparent: string;
14
14
  "neutral.surface": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
@@ -25,8 +25,8 @@ declare const properties: {
25
25
  "neutral.surfaceHighlight": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
26
26
  };
27
27
  };
28
- export type IconButtonBackgroundColorProperties = keyof typeof properties.backgroundColor;
29
- export type IconButtonBorderColorProperties = keyof typeof properties.borderColor;
28
+ export type IconButtonBackgroundColorProperties = keyof typeof propertiesIconButton.backgroundColor;
29
+ export type IconButtonBorderColorProperties = keyof typeof propertiesIconButton.borderColor;
30
30
  export interface IconButtonConditions<T> extends Conditions<T> {
31
31
  focus?: T;
32
32
  active?: T;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nimbus-ds/icon-button",
3
- "version": "3.3.0-rc.1",
3
+ "version": "3.4.0-rc.1",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -14,7 +14,7 @@
14
14
  "version": "yarn version"
15
15
  },
16
16
  "dependencies": {
17
- "@nimbus-ds/icon": "^2.0.0",
17
+ "@nimbus-ds/icon": "^2.1.0-rc.1",
18
18
  "@nimbus-ds/skeleton": "^2.0.0"
19
19
  },
20
20
  "peerDependencies": {
@@ -30,7 +30,8 @@
30
30
  "url": "https://github.com/TiendaNube/nimbus-design-system/issues"
31
31
  },
32
32
  "devDependencies": {
33
- "@tiendanube/icons": "^0.3.1",
33
+ "@nimbus-ds/icons": "^1.0.0",
34
34
  "webpack": "^5.74.0"
35
- }
35
+ },
36
+ "stableVersion": "3.3.0"
36
37
  }