@nimbus-ds/icons 1.19.0 → 1.20.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/CHANGELOG.md +26 -1
- package/dist/index.d.ts +11 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,13 +2,38 @@
|
|
|
2
2
|
|
|
3
3
|
Nimbus-icons is an open source icon system built by Nuvemshop / Tiendanube.
|
|
4
4
|
|
|
5
|
+
## 2026-03-16 `1.20.0`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- Adds `max-height` icon. ([#449](https://github.com/TiendaNube/nimbus-design-system/pull/449) by [@NimbusAgent](https://github.com/NimbusAgent))
|
|
10
|
+
- Adds `underline` icon. ([#449](https://github.com/TiendaNube/nimbus-design-system/pull/449) by [@NimbusAgent](https://github.com/NimbusAgent))
|
|
11
|
+
- Adds `font-color` icon. ([#449](https://github.com/TiendaNube/nimbus-design-system/pull/449) by [@NimbusAgent](https://github.com/NimbusAgent))
|
|
12
|
+
- Adds `color-picker` icon. ([#449](https://github.com/TiendaNube/nimbus-design-system/pull/449) by [@NimbusAgent](https://github.com/NimbusAgent))
|
|
13
|
+
- Adds `quote` icon. ([#449](https://github.com/TiendaNube/nimbus-design-system/pull/449) by [@NimbusAgent](https://github.com/NimbusAgent))
|
|
14
|
+
- Adds `header` icon. ([#449](https://github.com/TiendaNube/nimbus-design-system/pull/449) by [@NimbusAgent](https://github.com/NimbusAgent))
|
|
15
|
+
- Adds `footer` icon. ([#449](https://github.com/TiendaNube/nimbus-design-system/pull/449) by [@NimbusAgent](https://github.com/NimbusAgent))
|
|
16
|
+
- Adds `image-text` icon. ([#449](https://github.com/TiendaNube/nimbus-design-system/pull/449) by [@NimbusAgent](https://github.com/NimbusAgent))
|
|
17
|
+
- Adds `video` icon. ([#449](https://github.com/TiendaNube/nimbus-design-system/pull/449) by [@NimbusAgent](https://github.com/NimbusAgent))
|
|
18
|
+
- Adds `video-text` icon. ([#449](https://github.com/TiendaNube/nimbus-design-system/pull/449) by [@NimbusAgent](https://github.com/NimbusAgent))
|
|
19
|
+
- Adds `database` icon. ([#449](https://github.com/TiendaNube/nimbus-design-system/pull/449) by [@NimbusAgent](https://github.com/NimbusAgent))
|
|
20
|
+
|
|
21
|
+
## 2026-03-16 `1.19.1`
|
|
22
|
+
|
|
23
|
+
#### 💡 Others
|
|
24
|
+
|
|
25
|
+
- Updates `bold` icon. ([#448](https://github.com/TiendaNube/nimbus-design-system/pull/448) by [@noecondoleo](https://github.com/noecondoleo))
|
|
26
|
+
- Updates `italic` icon. ([#448](https://github.com/TiendaNube/nimbus-design-system/pull/448) by [@noecondoleo](https://github.com/noecondoleo))
|
|
27
|
+
- Updates `list` icon. ([#448](https://github.com/TiendaNube/nimbus-design-system/pull/448) by [@noecondoleo](https://github.com/noecondoleo))
|
|
28
|
+
- Updates `ordered-list` icon. ([#448](https://github.com/TiendaNube/nimbus-design-system/pull/448) by [@noecondoleo](https://github.com/noecondoleo))
|
|
29
|
+
|
|
5
30
|
## 2026-03-06 `1.19.0`
|
|
6
31
|
|
|
7
32
|
#### 🎉 New features
|
|
8
33
|
|
|
9
34
|
- Adds `instagram` icon. ([#445](https://github.com/TiendaNube/nimbus-design-system/pull/445) by [@karemcarvalho-hue](https://github.com/karemcarvalho-hue))
|
|
10
35
|
|
|
11
|
-
## 2026-03-04 `1.18.0`
|
|
36
|
+
## 2026-03-04 `1.18.0`
|
|
12
37
|
|
|
13
38
|
#### 🎉 New features
|
|
14
39
|
|
package/dist/index.d.ts
CHANGED
|
@@ -60,9 +60,11 @@ export declare const CloseIcon: React.FC<IconProps>;
|
|
|
60
60
|
export declare const CodeIcon: React.FC<IconProps>;
|
|
61
61
|
export declare const CogIcon: React.FC<IconProps>;
|
|
62
62
|
export declare const ColorPaletteIcon: React.FC<IconProps>;
|
|
63
|
+
export declare const ColorPickerIcon: React.FC<IconProps>;
|
|
63
64
|
export declare const CopyIcon: React.FC<IconProps>;
|
|
64
65
|
export declare const CreditCardIcon: React.FC<IconProps>;
|
|
65
66
|
export declare const CropIcon: React.FC<IconProps>;
|
|
67
|
+
export declare const DatabaseIcon: React.FC<IconProps>;
|
|
66
68
|
export declare const DesktopIcon: React.FC<IconProps>;
|
|
67
69
|
export declare const DiscountCircleIcon: React.FC<IconProps>;
|
|
68
70
|
export declare const DisketteIcon: React.FC<IconProps>;
|
|
@@ -87,7 +89,9 @@ export declare const FingerprintIcon: React.FC<IconProps>;
|
|
|
87
89
|
export declare const FireIcon: React.FC<IconProps>;
|
|
88
90
|
export declare const FlagIcon: React.FC<IconProps>;
|
|
89
91
|
export declare const FolderIcon: React.FC<IconProps>;
|
|
92
|
+
export declare const FontColorIcon: React.FC<IconProps>;
|
|
90
93
|
export declare const FontIcon: React.FC<IconProps>;
|
|
94
|
+
export declare const FooterIcon: React.FC<IconProps>;
|
|
91
95
|
export declare const ForbiddenIcon: React.FC<IconProps>;
|
|
92
96
|
export declare const GenerativePencilIcon: React.FC<IconProps>;
|
|
93
97
|
export declare const GenerativeStarsIcon: React.FC<IconProps>;
|
|
@@ -97,6 +101,7 @@ export declare const GlassesIcon: React.FC<IconProps>;
|
|
|
97
101
|
export declare const GlobeIcon: React.FC<IconProps>;
|
|
98
102
|
export declare const GoogleIcon: React.FC<IconProps>;
|
|
99
103
|
export declare const GuitarIcon: React.FC<IconProps>;
|
|
104
|
+
export declare const HeaderIcon: React.FC<IconProps>;
|
|
100
105
|
export declare const HeartIcon: React.FC<IconProps>;
|
|
101
106
|
export declare const HistoryIcon: React.FC<IconProps>;
|
|
102
107
|
export declare const HomeIcon: React.FC<IconProps>;
|
|
@@ -104,6 +109,7 @@ export declare const HorizontalPaddingIcon: React.FC<IconProps>;
|
|
|
104
109
|
export declare const HorizontalSpacingIcon: React.FC<IconProps>;
|
|
105
110
|
export declare const IaCoinIcon: React.FC<IconProps>;
|
|
106
111
|
export declare const IdCardIcon: React.FC<IconProps>;
|
|
112
|
+
export declare const ImageTextIcon: React.FC<IconProps>;
|
|
107
113
|
export declare const InfoCircleIcon: React.FC<IconProps>;
|
|
108
114
|
export declare const InstagramIcon: React.FC<IconProps>;
|
|
109
115
|
export declare const InvoiceIcon: React.FC<IconProps>;
|
|
@@ -125,6 +131,7 @@ export declare const MailIcon: React.FC<IconProps>;
|
|
|
125
131
|
export declare const MarginIcon: React.FC<IconProps>;
|
|
126
132
|
export declare const MarketingIcon: React.FC<IconProps>;
|
|
127
133
|
export declare const MateIcon: React.FC<IconProps>;
|
|
134
|
+
export declare const MaxHeightIcon: React.FC<IconProps>;
|
|
128
135
|
export declare const MenuIcon: React.FC<IconProps>;
|
|
129
136
|
export declare const MetaIcon: React.FC<IconProps>;
|
|
130
137
|
export declare const MicrophoneIcon: React.FC<IconProps>;
|
|
@@ -148,6 +155,7 @@ export declare const PrinterIcon: React.FC<IconProps>;
|
|
|
148
155
|
export declare const PyramidIcon: React.FC<IconProps>;
|
|
149
156
|
export declare const QrCodeIcon: React.FC<IconProps>;
|
|
150
157
|
export declare const QuestionCircleIcon: React.FC<IconProps>;
|
|
158
|
+
export declare const QuoteIcon: React.FC<IconProps>;
|
|
151
159
|
export declare const RealIcon: React.FC<IconProps>;
|
|
152
160
|
export declare const RedoIcon: React.FC<IconProps>;
|
|
153
161
|
export declare const RemoveFormatIcon: React.FC<IconProps>;
|
|
@@ -187,6 +195,7 @@ export declare const TransferPesoIcon: React.FC<IconProps>;
|
|
|
187
195
|
export declare const TransferRealIcon: React.FC<IconProps>;
|
|
188
196
|
export declare const TrashIcon: React.FC<IconProps>;
|
|
189
197
|
export declare const TruckIcon: React.FC<IconProps>;
|
|
198
|
+
export declare const UnderlineIcon: React.FC<IconProps>;
|
|
190
199
|
export declare const UndoIcon: React.FC<IconProps>;
|
|
191
200
|
export declare const UniversityIcon: React.FC<IconProps>;
|
|
192
201
|
export declare const UploadIcon: React.FC<IconProps>;
|
|
@@ -196,6 +205,8 @@ export declare const UserIcon: React.FC<IconProps>;
|
|
|
196
205
|
export declare const VerticalPaddingIcon: React.FC<IconProps>;
|
|
197
206
|
export declare const VerticalSpacingIcon: React.FC<IconProps>;
|
|
198
207
|
export declare const VerticalStacksIcon: React.FC<IconProps>;
|
|
208
|
+
export declare const VideoTextIcon: React.FC<IconProps>;
|
|
209
|
+
export declare const VideoIcon: React.FC<IconProps>;
|
|
199
210
|
export declare const VoiceIcon: React.FC<IconProps>;
|
|
200
211
|
export declare const VolumeIcon: React.FC<IconProps>;
|
|
201
212
|
export declare const WalletIcon: React.FC<IconProps>;
|