@cypress-design/react-icon 2.0.0-next.0 → 2.0.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/.turbo/turbo-build.log +1 -9
- package/CHANGELOG.md +489 -4
- package/IconReact.cy.tsx +1 -1
- package/_TreeShakableIcons.ts +1099 -407
- package/animated/_testUtils.tsx +1 -1
- package/dist/_TreeShakableIcons.d.ts +64 -1
- package/dist/_TreeShakableIcons.d.ts.map +1 -1
- package/dist/index.es.mjs +845 -405
- package/dist/index.es.mjs.map +1 -1
- package/dist/index.umd.js +908 -405
- package/dist/index.umd.js.map +1 -1
- package/package.json +5 -5
- package/rollup.config.mjs +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
yarn run v1.22.22
|
|
2
|
-
$ yarn build:codegen && yarn build:module && yarn build:types
|
|
3
|
-
$ node ./generate-icons.js
|
|
4
|
-
$ rollup -c ./rollup.config.mjs
|
|
5
|
-
(node:3292) ExperimentalWarning: Importing JSON modules is an experimental feature and might change at any time
|
|
6
|
-
(Use `node --trace-warnings ...` to show where the warning was created)
|
|
7
1
|
[36m
|
|
8
2
|
[1m./index.ts[22m → [1m./dist/index.umd.js, ./dist/index.es.mjs[22m...[39m
|
|
9
3
|
[1m[33m(!) Mixing named and default exports[39m[22m
|
|
@@ -12,6 +6,4 @@ $ rollup -c ./rollup.config.mjs
|
|
|
12
6
|
index.ts
|
|
13
7
|
|
|
14
8
|
Consumers of your bundle will have to use chunk.default to access their default export, which may not be what you want. Use `output.exports: "named"` to disable this warning.
|
|
15
|
-
[32mcreated [1m./dist/index.umd.js, ./dist/index.es.mjs[22m in [
|
|
16
|
-
$ tsc --project ./tsconfig.build.json
|
|
17
|
-
Done in 52.81s.
|
|
9
|
+
[32mcreated [1m./dist/index.umd.js, ./dist/index.es.mjs[22m in [1m33.2s[22m[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,500 @@
|
|
|
1
1
|
# @cypress-design/react-icon
|
|
2
2
|
|
|
3
|
-
## 2.0.0
|
|
3
|
+
## 2.0.0
|
|
4
4
|
|
|
5
5
|
### Major Changes
|
|
6
6
|
|
|
7
|
-
- [#
|
|
7
|
+
- [#702](https://github.com/cypress-io/cypress-design/pull/702) [`7f0c84a`](https://github.com/cypress-io/cypress-design/commit/7f0c84acb31d231a09ead4969da3c5aea286c385) Thanks [@ryanjwilke](https://github.com/ryanjwilke)! - Add `building-house` and `building-office-small` at 24px (`IconBuildingHouse`, `IconBuildingOfficeSmall`). Add `technology-dollar` at 24px (previously 16px only), using the existing well-centered 24px dollar glyph already proven in production on cypress.io's Pricing nav dropdown.
|
|
8
|
+
|
|
9
|
+
**Breaking:** rename `general-office-building` to `building-office-large` (`IconGeneralOfficeBuilding` → `IconBuildingOfficeLarge`), grouping it under the same `building-*` family as the two new icons above. Update imports accordingly.
|
|
10
|
+
|
|
11
|
+
Fix `cypress-studio` (16px, 24px, 48px): the glyph shipped on the `icon-light` class instead of `icon-dark`, so `strokeColor` never applied and the icon rendered washed-out via `fillColor` only. Consumers coloring the icon via `fillColor` will need to switch to `strokeColor`.
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [[`7f0c84a`](https://github.com/cypress-io/cypress-design/commit/7f0c84acb31d231a09ead4969da3c5aea286c385)]:
|
|
16
|
+
- @cypress-design/icon-registry@2.0.0
|
|
17
|
+
|
|
18
|
+
## 1.42.0
|
|
19
|
+
|
|
20
|
+
### Minor Changes
|
|
21
|
+
|
|
22
|
+
- [#689](https://github.com/cypress-io/cypress-design/pull/689) [`f8d476a`](https://github.com/cypress-io/cypress-design/commit/f8d476a089f9e9527fb4eb7a0476111815fc915a) Thanks [@emilmilanov](https://github.com/emilmilanov)! - Adding icon general-sparkle-single
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies [[`f8d476a`](https://github.com/cypress-io/cypress-design/commit/f8d476a089f9e9527fb4eb7a0476111815fc915a)]:
|
|
27
|
+
- @cypress-design/icon-registry@1.42.0
|
|
28
|
+
|
|
29
|
+
## 1.41.0
|
|
30
|
+
|
|
31
|
+
### Minor Changes
|
|
32
|
+
|
|
33
|
+
- [#687](https://github.com/cypress-io/cypress-design/pull/687) [`11e6792`](https://github.com/cypress-io/cypress-design/commit/11e67922126b7450ec4359b2cb5b79509babe82c) Thanks [@ryanjwilke](https://github.com/ryanjwilke)! - Add `action-test-replay` at 12px and 24px (previously 16px only), and add an opt-in `icon-light` disc behind the glyph at all three sizes. The disc is transparent by default — pass `fillColor` to show it — so existing bare usages are unchanged.
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- Updated dependencies [[`11e6792`](https://github.com/cypress-io/cypress-design/commit/11e67922126b7450ec4359b2cb5b79509babe82c)]:
|
|
38
|
+
- @cypress-design/icon-registry@1.41.0
|
|
39
|
+
|
|
40
|
+
## 1.40.0
|
|
41
|
+
|
|
42
|
+
### Minor Changes
|
|
43
|
+
|
|
44
|
+
- [#656](https://github.com/cypress-io/cypress-design/pull/656) [`1c5ff10`](https://github.com/cypress-io/cypress-design/commit/1c5ff10c4bb4f1fc64f6bfb8c5d8332e1212bfd2) Thanks [@tbiethman](https://github.com/tbiethman)! - Add `security-shield-failed` (12px and 16px) and `security-shield-check` (12px).
|
|
45
|
+
|
|
46
|
+
### Patch Changes
|
|
47
|
+
|
|
48
|
+
- Updated dependencies [[`1c5ff10`](https://github.com/cypress-io/cypress-design/commit/1c5ff10c4bb4f1fc64f6bfb8c5d8332e1212bfd2)]:
|
|
49
|
+
- @cypress-design/icon-registry@1.40.0
|
|
50
|
+
|
|
51
|
+
## 1.39.0
|
|
52
|
+
|
|
53
|
+
### Minor Changes
|
|
54
|
+
|
|
55
|
+
- [#647](https://github.com/cypress-io/cypress-design/pull/647) [`ecf9dd5`](https://github.com/cypress-io/cypress-design/commit/ecf9dd532954274f471aef982f3f86223d926dff) Thanks [@mabela416](https://github.com/mabela416)! - Add 48px triangle warning icon
|
|
56
|
+
|
|
57
|
+
### Patch Changes
|
|
58
|
+
|
|
59
|
+
- Updated dependencies [[`ecf9dd5`](https://github.com/cypress-io/cypress-design/commit/ecf9dd532954274f471aef982f3f86223d926dff)]:
|
|
60
|
+
- @cypress-design/icon-registry@1.39.0
|
|
61
|
+
|
|
62
|
+
## 1.38.0
|
|
63
|
+
|
|
64
|
+
### Minor Changes
|
|
65
|
+
|
|
66
|
+
- [#645](https://github.com/cypress-io/cypress-design/pull/645) [`b0612ff`](https://github.com/cypress-io/cypress-design/commit/b0612ff0c2e77c0cd00444ca7a4be948cd72676e) Thanks [@davidr-cy](https://github.com/davidr-cy)! - Add coin icons (pending, success, small) and MCP logo icon with CSS class theming support
|
|
67
|
+
|
|
68
|
+
### Patch Changes
|
|
69
|
+
|
|
70
|
+
- Updated dependencies [[`b0612ff`](https://github.com/cypress-io/cypress-design/commit/b0612ff0c2e77c0cd00444ca7a4be948cd72676e)]:
|
|
71
|
+
- @cypress-design/icon-registry@1.38.0
|
|
72
|
+
|
|
73
|
+
## 1.37.0
|
|
74
|
+
|
|
75
|
+
### Minor Changes
|
|
76
|
+
|
|
77
|
+
- [#635](https://github.com/cypress-io/cypress-design/pull/635) [`965de37`](https://github.com/cypress-io/cypress-design/commit/965de377dbd9208d05494d1df01717af544ee186) Thanks [@emilmilanov](https://github.com/emilmilanov)! - Adding email icon x48
|
|
78
|
+
|
|
79
|
+
### Patch Changes
|
|
80
|
+
|
|
81
|
+
- Updated dependencies [[`965de37`](https://github.com/cypress-io/cypress-design/commit/965de377dbd9208d05494d1df01717af544ee186)]:
|
|
82
|
+
- @cypress-design/icon-registry@1.37.0
|
|
83
|
+
|
|
84
|
+
## 1.36.0
|
|
85
|
+
|
|
86
|
+
### Minor Changes
|
|
87
|
+
|
|
88
|
+
- [#633](https://github.com/cypress-io/cypress-design/pull/633) [`9c8e75d`](https://github.com/cypress-io/cypress-design/commit/9c8e75dc444fde2cef7ed0c597dacf4e003725c0) Thanks [@emilmilanov](https://github.com/emilmilanov)! - Adding github x24 icon and Jira icon
|
|
89
|
+
|
|
90
|
+
### Patch Changes
|
|
91
|
+
|
|
92
|
+
- Updated dependencies [[`9c8e75d`](https://github.com/cypress-io/cypress-design/commit/9c8e75dc444fde2cef7ed0c597dacf4e003725c0)]:
|
|
93
|
+
- @cypress-design/icon-registry@1.36.0
|
|
94
|
+
|
|
95
|
+
## 1.35.1
|
|
96
|
+
|
|
97
|
+
### Patch Changes
|
|
98
|
+
|
|
99
|
+
- [#631](https://github.com/cypress-io/cypress-design/pull/631) [`6c016dd`](https://github.com/cypress-io/cypress-design/commit/6c016dd2fad79c9e2c651b4a6c62ba12a46fde58) Thanks [@ryanjwilke](https://github.com/ryanjwilke)! - Updated the Facebook, X, and RSS icons
|
|
100
|
+
|
|
101
|
+
- Updated dependencies [[`6c016dd`](https://github.com/cypress-io/cypress-design/commit/6c016dd2fad79c9e2c651b4a6c62ba12a46fde58)]:
|
|
102
|
+
- @cypress-design/icon-registry@1.35.1
|
|
103
|
+
|
|
104
|
+
## 1.35.0
|
|
105
|
+
|
|
106
|
+
### Minor Changes
|
|
107
|
+
|
|
108
|
+
- [#628](https://github.com/cypress-io/cypress-design/pull/628) [`698906a`](https://github.com/cypress-io/cypress-design/commit/698906a580f6184bc7aa28b65b33248f1e0c5b81) Thanks [@emilmilanov](https://github.com/emilmilanov)! - Adding icon code-editor-small
|
|
109
|
+
|
|
110
|
+
### Patch Changes
|
|
111
|
+
|
|
112
|
+
- Updated dependencies [[`698906a`](https://github.com/cypress-io/cypress-design/commit/698906a580f6184bc7aa28b65b33248f1e0c5b81)]:
|
|
113
|
+
- @cypress-design/icon-registry@1.35.0
|
|
114
|
+
|
|
115
|
+
## 1.34.0
|
|
116
|
+
|
|
117
|
+
### Minor Changes
|
|
118
|
+
|
|
119
|
+
- [#624](https://github.com/cypress-io/cypress-design/pull/624) [`c4bc551`](https://github.com/cypress-io/cypress-design/commit/c4bc55141ea44c9a0b4dba245e145b5d1fdf3e96) Thanks [@mabela416](https://github.com/mabela416)! - Add general sparkle single large icon in 24px
|
|
120
|
+
|
|
121
|
+
### Patch Changes
|
|
122
|
+
|
|
123
|
+
- Updated dependencies [[`c4bc551`](https://github.com/cypress-io/cypress-design/commit/c4bc55141ea44c9a0b4dba245e145b5d1fdf3e96)]:
|
|
124
|
+
- @cypress-design/icon-registry@1.34.0
|
|
125
|
+
|
|
126
|
+
## 1.33.0
|
|
127
|
+
|
|
128
|
+
### Minor Changes
|
|
129
|
+
|
|
130
|
+
- [#620](https://github.com/cypress-io/cypress-design/pull/620) [`51d7201`](https://github.com/cypress-io/cypress-design/commit/51d7201089604391b6d958770b559ff5f24a201d) Thanks [@astone123](https://github.com/astone123)! - add studio icons in 24px
|
|
131
|
+
|
|
132
|
+
### Patch Changes
|
|
133
|
+
|
|
134
|
+
- Updated dependencies [[`51d7201`](https://github.com/cypress-io/cypress-design/commit/51d7201089604391b6d958770b559ff5f24a201d)]:
|
|
135
|
+
- @cypress-design/icon-registry@1.33.0
|
|
136
|
+
|
|
137
|
+
## 1.32.0
|
|
138
|
+
|
|
139
|
+
### Minor Changes
|
|
140
|
+
|
|
141
|
+
- [#618](https://github.com/cypress-io/cypress-design/pull/618) [`a3d4898`](https://github.com/cypress-io/cypress-design/commit/a3d48981441f76dfbaa8b43e6defab339b7fcf4a) Thanks [@astone123](https://github.com/astone123)! - Add technology-dashboard-fail 24px icon
|
|
142
|
+
|
|
143
|
+
### Patch Changes
|
|
144
|
+
|
|
145
|
+
- Updated dependencies [[`a3d4898`](https://github.com/cypress-io/cypress-design/commit/a3d48981441f76dfbaa8b43e6defab339b7fcf4a)]:
|
|
146
|
+
- @cypress-design/icon-registry@1.32.0
|
|
147
|
+
|
|
148
|
+
## 1.31.0
|
|
149
|
+
|
|
150
|
+
### Minor Changes
|
|
151
|
+
|
|
152
|
+
- [#613](https://github.com/cypress-io/cypress-design/pull/613) [`bed863f`](https://github.com/cypress-io/cypress-design/commit/bed863f4dd33fe95ad6d308e3396f72ccc5c9309) Thanks [@ryanthemanuel](https://github.com/ryanthemanuel)! - add Cypress Studio x48 icon
|
|
153
|
+
|
|
154
|
+
### Patch Changes
|
|
155
|
+
|
|
156
|
+
- Updated dependencies [[`bed863f`](https://github.com/cypress-io/cypress-design/commit/bed863f4dd33fe95ad6d308e3396f72ccc5c9309)]:
|
|
157
|
+
- @cypress-design/icon-registry@1.31.0
|
|
158
|
+
|
|
159
|
+
## 1.30.0
|
|
160
|
+
|
|
161
|
+
### Minor Changes
|
|
162
|
+
|
|
163
|
+
- [#611](https://github.com/cypress-io/cypress-design/pull/611) [`f6ddbd0`](https://github.com/cypress-io/cypress-design/commit/f6ddbd0c22e7cac240f1b458b952369285dfa69e) Thanks [@astone123](https://github.com/astone123)! - add Cypress Studio icon
|
|
164
|
+
|
|
165
|
+
### Patch Changes
|
|
166
|
+
|
|
167
|
+
- Updated dependencies [[`f6ddbd0`](https://github.com/cypress-io/cypress-design/commit/f6ddbd0c22e7cac240f1b458b952369285dfa69e)]:
|
|
168
|
+
- @cypress-design/icon-registry@1.30.0
|
|
169
|
+
|
|
170
|
+
## 1.29.0
|
|
171
|
+
|
|
172
|
+
### Minor Changes
|
|
173
|
+
|
|
174
|
+
- [#606](https://github.com/cypress-io/cypress-design/pull/606) [`cab1a89`](https://github.com/cypress-io/cypress-design/commit/cab1a89ccac83bd51ca68dce92bfb178fdd8a323) Thanks [@jennifer-shehane](https://github.com/jennifer-shehane)! - Add icon for record-disabled at 16x and 24x size
|
|
175
|
+
|
|
176
|
+
- [#608](https://github.com/cypress-io/cypress-design/pull/608) [`e6cf01d`](https://github.com/cypress-io/cypress-design/commit/e6cf01d858eb165139c5f66308a6ec4c0df649cb) Thanks [@emilmilanov](https://github.com/emilmilanov)! - Adding Cypress icon, filled version
|
|
177
|
+
|
|
178
|
+
### Patch Changes
|
|
179
|
+
|
|
180
|
+
- Updated dependencies [[`cab1a89`](https://github.com/cypress-io/cypress-design/commit/cab1a89ccac83bd51ca68dce92bfb178fdd8a323), [`e6cf01d`](https://github.com/cypress-io/cypress-design/commit/e6cf01d858eb165139c5f66308a6ec4c0df649cb)]:
|
|
181
|
+
- @cypress-design/icon-registry@1.29.0
|
|
182
|
+
|
|
183
|
+
## 1.28.0
|
|
184
|
+
|
|
185
|
+
### Minor Changes
|
|
186
|
+
|
|
187
|
+
- [#604](https://github.com/cypress-io/cypress-design/pull/604) [`946eed0`](https://github.com/cypress-io/cypress-design/commit/946eed06260eb938f5b4f7c6a9044d4f8a118c7d) Thanks [@emilmilanov](https://github.com/emilmilanov)! - Adding AI disabled icon in 16x size
|
|
188
|
+
|
|
189
|
+
### Patch Changes
|
|
190
|
+
|
|
191
|
+
- Updated dependencies [[`946eed0`](https://github.com/cypress-io/cypress-design/commit/946eed06260eb938f5b4f7c6a9044d4f8a118c7d)]:
|
|
192
|
+
- @cypress-design/icon-registry@1.28.0
|
|
193
|
+
|
|
194
|
+
## 1.27.0
|
|
195
|
+
|
|
196
|
+
### Minor Changes
|
|
197
|
+
|
|
198
|
+
- [#602](https://github.com/cypress-io/cypress-design/pull/602) [`68f089e`](https://github.com/cypress-io/cypress-design/commit/68f089e391f930f53dbae87df96dffed03940ae7) Thanks [@mabela416](https://github.com/mabela416)! - Add stop circle icon
|
|
199
|
+
|
|
200
|
+
### Patch Changes
|
|
201
|
+
|
|
202
|
+
- Updated dependencies [[`68f089e`](https://github.com/cypress-io/cypress-design/commit/68f089e391f930f53dbae87df96dffed03940ae7)]:
|
|
203
|
+
- @cypress-design/icon-registry@1.27.0
|
|
204
|
+
|
|
205
|
+
## 1.26.0
|
|
206
|
+
|
|
207
|
+
### Minor Changes
|
|
208
|
+
|
|
209
|
+
- [#600](https://github.com/cypress-io/cypress-design/pull/600) [`f347d4a`](https://github.com/cypress-io/cypress-design/commit/f347d4ae113b14006596d78df24372dba846bccd) Thanks [@emilmilanov](https://github.com/emilmilanov)! - Adding icon general-sparkle-single-large-disabled_x24
|
|
210
|
+
|
|
211
|
+
### Patch Changes
|
|
212
|
+
|
|
213
|
+
- Updated dependencies [[`f347d4a`](https://github.com/cypress-io/cypress-design/commit/f347d4ae113b14006596d78df24372dba846bccd)]:
|
|
214
|
+
- @cypress-design/icon-registry@1.26.0
|
|
215
|
+
|
|
216
|
+
## 1.25.1
|
|
217
|
+
|
|
218
|
+
### Patch Changes
|
|
219
|
+
|
|
220
|
+
- Updated dependencies [[`1978a30`](https://github.com/cypress-io/cypress-design/commit/1978a30f5b3081523ba6e4cfbac4526b46153165)]:
|
|
221
|
+
- @cypress-design/icon-registry@1.25.1
|
|
222
|
+
|
|
223
|
+
## 1.25.0
|
|
224
|
+
|
|
225
|
+
### Minor Changes
|
|
226
|
+
|
|
227
|
+
- [#579](https://github.com/cypress-io/cypress-design/pull/579) [`6af36fa`](https://github.com/cypress-io/cypress-design/commit/6af36fa58af0d5df2dd3eac33104b9b0c71789eb) Thanks [@astone123](https://github.com/astone123)! - add document failed icon
|
|
228
|
+
|
|
229
|
+
### Patch Changes
|
|
230
|
+
|
|
231
|
+
- Updated dependencies [[`6af36fa`](https://github.com/cypress-io/cypress-design/commit/6af36fa58af0d5df2dd3eac33104b9b0c71789eb), [`eb93ac8`](https://github.com/cypress-io/cypress-design/commit/eb93ac88b89ff2e676228e750090139a440e6be8)]:
|
|
232
|
+
- @cypress-design/icon-registry@1.25.0
|
|
233
|
+
|
|
234
|
+
## 1.24.0
|
|
235
|
+
|
|
236
|
+
### Minor Changes
|
|
237
|
+
|
|
238
|
+
- [#585](https://github.com/cypress-io/cypress-design/pull/585) [`afa0aa5`](https://github.com/cypress-io/cypress-design/commit/afa0aa5f211b7c314bb47ff62a933bb1448ebe33) Thanks [@tbiethman](https://github.com/tbiethman)! - Adding technology-browsers-light_x16 icon
|
|
239
|
+
|
|
240
|
+
### Patch Changes
|
|
241
|
+
|
|
242
|
+
- Updated dependencies [[`afa0aa5`](https://github.com/cypress-io/cypress-design/commit/afa0aa5f211b7c314bb47ff62a933bb1448ebe33)]:
|
|
243
|
+
- @cypress-design/icon-registry@1.24.0
|
|
244
|
+
|
|
245
|
+
## 1.23.0
|
|
246
|
+
|
|
247
|
+
### Minor Changes
|
|
248
|
+
|
|
249
|
+
- [#581](https://github.com/cypress-io/cypress-design/pull/581) [`b35c0b5`](https://github.com/cypress-io/cypress-design/commit/b35c0b5d5bc059febf747198fd327458fdf8ced8) Thanks [@jennifer-shehane](https://github.com/jennifer-shehane)! - feat: add object-stack-skipped icon at x16 size
|
|
250
|
+
|
|
251
|
+
### Patch Changes
|
|
252
|
+
|
|
253
|
+
- Updated dependencies [[`b35c0b5`](https://github.com/cypress-io/cypress-design/commit/b35c0b5d5bc059febf747198fd327458fdf8ced8)]:
|
|
254
|
+
- @cypress-design/icon-registry@1.23.0
|
|
255
|
+
|
|
256
|
+
## 1.22.0
|
|
257
|
+
|
|
258
|
+
### Minor Changes
|
|
259
|
+
|
|
260
|
+
- [#582](https://github.com/cypress-io/cypress-design/pull/582) [`d24a7ef`](https://github.com/cypress-io/cypress-design/commit/d24a7efd038f78bd2c3a3720d9fa5b90a3f70ea1) Thanks [@mabela416](https://github.com/mabela416)! - Add redo and undo icons
|
|
261
|
+
|
|
262
|
+
### Patch Changes
|
|
263
|
+
|
|
264
|
+
- Updated dependencies [[`d24a7ef`](https://github.com/cypress-io/cypress-design/commit/d24a7efd038f78bd2c3a3720d9fa5b90a3f70ea1)]:
|
|
265
|
+
- @cypress-design/icon-registry@1.22.0
|
|
266
|
+
|
|
267
|
+
## 1.21.0
|
|
268
|
+
|
|
269
|
+
### Patch Changes
|
|
270
|
+
|
|
271
|
+
- Updated dependencies [[`33a77f0`](https://github.com/cypress-io/cypress-design/commit/33a77f0e8aad1ac2e7315e7a238ae0fc145b5dbd)]:
|
|
272
|
+
- @cypress-design/icon-registry@1.21.0
|
|
273
|
+
|
|
274
|
+
## 1.20.0
|
|
275
|
+
|
|
276
|
+
### Minor Changes
|
|
277
|
+
|
|
278
|
+
- [#576](https://github.com/cypress-io/cypress-design/pull/576) [`02cc704`](https://github.com/cypress-io/cypress-design/commit/02cc7045b84e67199fcaec9c54da28f68840e5bd) Thanks [@jennifer-shehane](https://github.com/jennifer-shehane)! - feat: add object stack icons for failed, passed, queued, and running
|
|
279
|
+
|
|
280
|
+
### Patch Changes
|
|
281
|
+
|
|
282
|
+
- Updated dependencies [[`02cc704`](https://github.com/cypress-io/cypress-design/commit/02cc7045b84e67199fcaec9c54da28f68840e5bd)]:
|
|
283
|
+
- @cypress-design/icon-registry@1.20.0
|
|
284
|
+
|
|
285
|
+
## 1.19.0
|
|
286
|
+
|
|
287
|
+
### Minor Changes
|
|
288
|
+
|
|
289
|
+
- [#574](https://github.com/cypress-io/cypress-design/pull/574) [`4e4873d`](https://github.com/cypress-io/cypress-design/commit/4e4873dfd0227c1bd57b5331d7bd3c648aa26938) Thanks [@emilmilanov](https://github.com/emilmilanov)! - Adding sparkle double icon in two size variations
|
|
290
|
+
|
|
291
|
+
### Patch Changes
|
|
292
|
+
|
|
293
|
+
- Updated dependencies [[`4e4873d`](https://github.com/cypress-io/cypress-design/commit/4e4873dfd0227c1bd57b5331d7bd3c648aa26938)]:
|
|
294
|
+
- @cypress-design/icon-registry@1.19.0
|
|
295
|
+
|
|
296
|
+
## 1.18.0
|
|
297
|
+
|
|
298
|
+
### Minor Changes
|
|
299
|
+
|
|
300
|
+
- [#568](https://github.com/cypress-io/cypress-design/pull/568) [`7df4172`](https://github.com/cypress-io/cypress-design/commit/7df4172b5e820c809faae5ef815206377e6c07ea) Thanks [@jennifer-shehane](https://github.com/jennifer-shehane)! - add chevron-right and chevron-left icons for small, medium, and large at all sizes
|
|
301
|
+
|
|
302
|
+
### Patch Changes
|
|
303
|
+
|
|
304
|
+
- Updated dependencies [[`7df4172`](https://github.com/cypress-io/cypress-design/commit/7df4172b5e820c809faae5ef815206377e6c07ea)]:
|
|
305
|
+
- @cypress-design/icon-registry@1.18.0
|
|
306
|
+
|
|
307
|
+
## 1.17.0
|
|
308
|
+
|
|
309
|
+
### Minor Changes
|
|
310
|
+
|
|
311
|
+
- [#566](https://github.com/cypress-io/cypress-design/pull/566) [`4d2ea8d`](https://github.com/cypress-io/cypress-design/commit/4d2ea8d7b2b030dcc33c7dbaa6b1483f3ac37f43) Thanks [@tbiethman](https://github.com/tbiethman)! - Adding technology-accessibility_x48
|
|
312
|
+
|
|
313
|
+
### Patch Changes
|
|
314
|
+
|
|
315
|
+
- Updated dependencies [[`4d2ea8d`](https://github.com/cypress-io/cypress-design/commit/4d2ea8d7b2b030dcc33c7dbaa6b1483f3ac37f43)]:
|
|
316
|
+
- @cypress-design/icon-registry@1.17.0
|
|
317
|
+
|
|
318
|
+
## 1.16.0
|
|
319
|
+
|
|
320
|
+
### Minor Changes
|
|
321
|
+
|
|
322
|
+
- [#562](https://github.com/cypress-io/cypress-design/pull/562) [`1995286`](https://github.com/cypress-io/cypress-design/commit/1995286865fc9fd7dbc414e6f1bd7568588cb7ff) Thanks [@jennifer-shehane](https://github.com/jennifer-shehane)! - add action-tap icon at 16 and 24 size
|
|
323
|
+
|
|
324
|
+
### Patch Changes
|
|
325
|
+
|
|
326
|
+
- Updated dependencies [[`1995286`](https://github.com/cypress-io/cypress-design/commit/1995286865fc9fd7dbc414e6f1bd7568588cb7ff)]:
|
|
327
|
+
- @cypress-design/icon-registry@1.16.0
|
|
328
|
+
|
|
329
|
+
## 1.15.0
|
|
330
|
+
|
|
331
|
+
### Patch Changes
|
|
332
|
+
|
|
333
|
+
- Updated dependencies [[`39a0752`](https://github.com/cypress-io/cypress-design/commit/39a07528a00a8fbd2104636d81b6cb8be2b045d4)]:
|
|
334
|
+
- @cypress-design/icon-registry@1.15.0
|
|
335
|
+
|
|
336
|
+
## 1.14.0
|
|
337
|
+
|
|
338
|
+
### Minor Changes
|
|
339
|
+
|
|
340
|
+
- [#556](https://github.com/cypress-io/cypress-design/pull/556) [`76f62ae`](https://github.com/cypress-io/cypress-design/commit/76f62ae382cba68780bc1d13b303e683286a04b3) Thanks [@jennifer-shehane](https://github.com/jennifer-shehane)! - update buttons to use default variants for outline-, white, and dark-mode buttons and add arrow down left icon
|
|
341
|
+
|
|
342
|
+
### Patch Changes
|
|
343
|
+
|
|
344
|
+
- Updated dependencies [[`76f62ae`](https://github.com/cypress-io/cypress-design/commit/76f62ae382cba68780bc1d13b303e683286a04b3)]:
|
|
345
|
+
- @cypress-design/icon-registry@1.14.0
|
|
346
|
+
|
|
347
|
+
## 1.13.0
|
|
348
|
+
|
|
349
|
+
### Minor Changes
|
|
350
|
+
|
|
351
|
+
- [#554](https://github.com/cypress-io/cypress-design/pull/554) [`62e8c89`](https://github.com/cypress-io/cypress-design/commit/62e8c89d16e40d860602f58bb00cf6c9715447a1) Thanks [@jennifer-shehane](https://github.com/jennifer-shehane)! - Add triangle-warning icon at 24x size
|
|
352
|
+
|
|
353
|
+
### Patch Changes
|
|
354
|
+
|
|
355
|
+
- Updated dependencies [[`62e8c89`](https://github.com/cypress-io/cypress-design/commit/62e8c89d16e40d860602f58bb00cf6c9715447a1)]:
|
|
356
|
+
- @cypress-design/icon-registry@1.13.0
|
|
357
|
+
|
|
358
|
+
## 1.12.0
|
|
359
|
+
|
|
360
|
+
### Minor Changes
|
|
361
|
+
|
|
362
|
+
- [#546](https://github.com/cypress-io/cypress-design/pull/546) [`32603f8`](https://github.com/cypress-io/cypress-design/commit/32603f8e95cf2bdad61772385914ae3b83c22302) Thanks [@jennifer-shehane](https://github.com/jennifer-shehane)! - action-pause icons added as 12x, 16x, and 24x
|
|
363
|
+
|
|
364
|
+
- [#547](https://github.com/cypress-io/cypress-design/pull/547) [`2711c95`](https://github.com/cypress-io/cypress-design/commit/2711c9545d1afec21c8681a5612c353ec0e8e6d7) Thanks [@estrada9166](https://github.com/estrada9166)! - Add flag icon
|
|
365
|
+
|
|
366
|
+
### Patch Changes
|
|
367
|
+
|
|
368
|
+
- Updated dependencies [[`32603f8`](https://github.com/cypress-io/cypress-design/commit/32603f8e95cf2bdad61772385914ae3b83c22302), [`2711c95`](https://github.com/cypress-io/cypress-design/commit/2711c9545d1afec21c8681a5612c353ec0e8e6d7)]:
|
|
369
|
+
- @cypress-design/icon-registry@1.12.0
|
|
370
|
+
|
|
371
|
+
## 1.11.0
|
|
372
|
+
|
|
373
|
+
### Minor Changes
|
|
374
|
+
|
|
375
|
+
- [#544](https://github.com/cypress-io/cypress-design/pull/544) [`7d3aba5`](https://github.com/cypress-io/cypress-design/commit/7d3aba5d827740fa472e9e2dae5ad9da43c305f9) Thanks [@karlsnyder0](https://github.com/karlsnyder0)! - Bump icons
|
|
376
|
+
|
|
377
|
+
## 1.9.4
|
|
378
|
+
|
|
379
|
+
### Patch Changes
|
|
380
|
+
|
|
381
|
+
- [#540](https://github.com/cypress-io/cypress-design/pull/540) [`10425b0`](https://github.com/cypress-io/cypress-design/commit/10425b0e74be5f82cb41f022d60c29ffe3acf85d) Thanks [@astone123](https://github.com/astone123)! - add sparkle triple icon
|
|
382
|
+
|
|
383
|
+
- Updated dependencies [[`10425b0`](https://github.com/cypress-io/cypress-design/commit/10425b0e74be5f82cb41f022d60c29ffe3acf85d)]:
|
|
384
|
+
- @cypress-design/icon-registry@1.9.4
|
|
385
|
+
|
|
386
|
+
## 1.9.3
|
|
387
|
+
|
|
388
|
+
### Patch Changes
|
|
389
|
+
|
|
390
|
+
- [#536](https://github.com/cypress-io/cypress-design/pull/536) [`665a873`](https://github.com/cypress-io/cypress-design/commit/665a87369f32f74f3bda8e8aed37a7d176d684e1) Thanks [@ryanjwilke](https://github.com/ryanjwilke)! - Added the small and large sparkle icons
|
|
391
|
+
|
|
392
|
+
- Updated dependencies [[`665a873`](https://github.com/cypress-io/cypress-design/commit/665a87369f32f74f3bda8e8aed37a7d176d684e1)]:
|
|
393
|
+
- @cypress-design/icon-registry@1.9.3
|
|
394
|
+
|
|
395
|
+
## 1.9.2
|
|
396
|
+
|
|
397
|
+
### Patch Changes
|
|
398
|
+
|
|
399
|
+
- [#533](https://github.com/cypress-io/cypress-design/pull/533) [`d42d2c1`](https://github.com/cypress-io/cypress-design/commit/d42d2c195309d7c8e06a6671614ab886572f3576) Thanks [@chrisbreiding](https://github.com/chrisbreiding)! - Add thumbs up and thumbs down icons
|
|
400
|
+
|
|
401
|
+
- Updated dependencies [[`d42d2c1`](https://github.com/cypress-io/cypress-design/commit/d42d2c195309d7c8e06a6671614ab886572f3576)]:
|
|
402
|
+
- @cypress-design/icon-registry@1.9.2
|
|
403
|
+
|
|
404
|
+
## 1.9.1
|
|
8
405
|
|
|
9
406
|
### Patch Changes
|
|
10
407
|
|
|
11
|
-
-
|
|
12
|
-
|
|
408
|
+
- [#531](https://github.com/cypress-io/cypress-design/pull/531) [`0422ad2`](https://github.com/cypress-io/cypress-design/commit/0422ad2f03f6372255f6eb172d8ed08ef370f98b) Thanks [@ryanjwilke](https://github.com/ryanjwilke)! - Added a 24x24 office building icon
|
|
409
|
+
|
|
410
|
+
- Updated dependencies [[`0422ad2`](https://github.com/cypress-io/cypress-design/commit/0422ad2f03f6372255f6eb172d8ed08ef370f98b)]:
|
|
411
|
+
- @cypress-design/icon-registry@1.9.1
|
|
412
|
+
|
|
413
|
+
## 1.9.0
|
|
414
|
+
|
|
415
|
+
### Minor Changes
|
|
416
|
+
|
|
417
|
+
- [#528](https://github.com/cypress-io/cypress-design/pull/528) [`9b0bf09`](https://github.com/cypress-io/cypress-design/commit/9b0bf099f2603de9f138f50434e70cece664c5c0) Thanks [@mabela416](https://github.com/mabela416)! - Add ui coverage icon 48px
|
|
418
|
+
|
|
419
|
+
### Patch Changes
|
|
420
|
+
|
|
421
|
+
- Updated dependencies [[`9b0bf09`](https://github.com/cypress-io/cypress-design/commit/9b0bf099f2603de9f138f50434e70cece664c5c0)]:
|
|
422
|
+
- @cypress-design/icon-registry@1.9.0
|
|
423
|
+
|
|
424
|
+
## 1.8.0
|
|
425
|
+
|
|
426
|
+
### Minor Changes
|
|
427
|
+
|
|
428
|
+
- [#525](https://github.com/cypress-io/cypress-design/pull/525) [`70b6d4d`](https://github.com/cypress-io/cypress-design/commit/70b6d4dfebf35dade5000edbeeaf891503303922) Thanks [@mabela416](https://github.com/mabela416)! - add regenerate configuration icon
|
|
429
|
+
|
|
430
|
+
### Patch Changes
|
|
431
|
+
|
|
432
|
+
- Updated dependencies [[`70b6d4d`](https://github.com/cypress-io/cypress-design/commit/70b6d4dfebf35dade5000edbeeaf891503303922)]:
|
|
433
|
+
- @cypress-design/icon-registry@1.8.0
|
|
434
|
+
|
|
435
|
+
## 1.7.0
|
|
436
|
+
|
|
437
|
+
### Minor Changes
|
|
438
|
+
|
|
439
|
+
- [#522](https://github.com/cypress-io/cypress-design/pull/522) [`550bdd4`](https://github.com/cypress-io/cypress-design/commit/550bdd4ab238cdcc3cb57761bc25c26f391c7a9b) Thanks [@tbiethman](https://github.com/tbiethman)! - Adding square-minus_x12, square-minus_x16, and square-minus_x24 icons
|
|
440
|
+
|
|
441
|
+
### Patch Changes
|
|
442
|
+
|
|
443
|
+
- Updated dependencies [[`550bdd4`](https://github.com/cypress-io/cypress-design/commit/550bdd4ab238cdcc3cb57761bc25c26f391c7a9b)]:
|
|
444
|
+
- @cypress-design/icon-registry@1.7.0
|
|
445
|
+
|
|
446
|
+
## 1.6.0
|
|
447
|
+
|
|
448
|
+
### Minor Changes
|
|
449
|
+
|
|
450
|
+
- [#515](https://github.com/cypress-io/cypress-design/pull/515) [`9137e33`](https://github.com/cypress-io/cypress-design/commit/9137e331402c6e2a1e3848fb8b04f8595fee3902) Thanks [@mschile](https://github.com/mschile)! - Added additional browser icons.
|
|
451
|
+
|
|
452
|
+
### Patch Changes
|
|
453
|
+
|
|
454
|
+
- Updated dependencies [[`9137e33`](https://github.com/cypress-io/cypress-design/commit/9137e331402c6e2a1e3848fb8b04f8595fee3902)]:
|
|
455
|
+
- @cypress-design/icon-registry@1.6.0
|
|
456
|
+
|
|
457
|
+
## 1.5.6
|
|
458
|
+
|
|
459
|
+
### Patch Changes
|
|
460
|
+
|
|
461
|
+
- [#511](https://github.com/cypress-io/cypress-design/pull/511) [`01f321f`](https://github.com/cypress-io/cypress-design/commit/01f321fda0525a34d92acd45bd61dd9e4ecc6142) Thanks [@emilyrohrbough](https://github.com/emilyrohrbough)! - Add Git Commit Icon
|
|
462
|
+
|
|
463
|
+
- Updated dependencies [[`01f321f`](https://github.com/cypress-io/cypress-design/commit/01f321fda0525a34d92acd45bd61dd9e4ecc6142)]:
|
|
464
|
+
- @cypress-design/icon-registry@1.5.6
|
|
465
|
+
|
|
466
|
+
## 1.5.5
|
|
467
|
+
|
|
468
|
+
### Patch Changes
|
|
469
|
+
|
|
470
|
+
- [#505](https://github.com/cypress-io/cypress-design/pull/505) [`c8ec846`](https://github.com/cypress-io/cypress-design/commit/c8ec846fb415e885fc0fe7070767fa0506849e6c) Thanks [@chrisbreiding](https://github.com/chrisbreiding)! - Fix light fill color for test results icon
|
|
471
|
+
|
|
472
|
+
- Updated dependencies [[`c8ec846`](https://github.com/cypress-io/cypress-design/commit/c8ec846fb415e885fc0fe7070767fa0506849e6c)]:
|
|
473
|
+
- @cypress-design/icon-registry@1.5.5
|
|
474
|
+
|
|
475
|
+
## 1.5.4
|
|
476
|
+
|
|
477
|
+
### Patch Changes
|
|
478
|
+
|
|
479
|
+
- [#503](https://github.com/cypress-io/cypress-design/pull/503) [`9775412`](https://github.com/cypress-io/cypress-design/commit/977541249d2680dcee5ea3e8c1d97642a0041f42) Thanks [@emilyrohrbough](https://github.com/emilyrohrbough)! - Add Warning Triangle Icon
|
|
480
|
+
|
|
481
|
+
- Updated dependencies [[`9775412`](https://github.com/cypress-io/cypress-design/commit/977541249d2680dcee5ea3e8c1d97642a0041f42)]:
|
|
482
|
+
- @cypress-design/icon-registry@1.5.4
|
|
483
|
+
|
|
484
|
+
## 1.5.3
|
|
485
|
+
|
|
486
|
+
### Patch Changes
|
|
487
|
+
|
|
488
|
+
- [#501](https://github.com/cypress-io/cypress-design/pull/501) [`7fa5429`](https://github.com/cypress-io/cypress-design/commit/7fa542957a7f7ad258c02ef47f200663c4da5774) Thanks [@emilyrohrbough](https://github.com/emilyrohrbough)! - Add Accessibility & UI Cov disabled icons.
|
|
489
|
+
|
|
490
|
+
## 1.5.2
|
|
491
|
+
|
|
492
|
+
### Patch Changes
|
|
493
|
+
|
|
494
|
+
- [#497](https://github.com/cypress-io/cypress-design/pull/497) [`1ebd6f0`](https://github.com/cypress-io/cypress-design/commit/1ebd6f0dfc49adc627d5da19c948cf545d478309) Thanks [@emilmilanov](https://github.com/emilmilanov)! - Angled airplane icon added
|
|
495
|
+
|
|
496
|
+
- Updated dependencies [[`1ebd6f0`](https://github.com/cypress-io/cypress-design/commit/1ebd6f0dfc49adc627d5da19c948cf545d478309)]:
|
|
497
|
+
- @cypress-design/icon-registry@1.5.2
|
|
13
498
|
|
|
14
499
|
## 1.5.1
|
|
15
500
|
|
package/IconReact.cy.tsx
CHANGED