@charcoal-ui/icons 5.9.0 → 5.10.0-beta.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/package.json +3 -3
- package/src/PixivIcon.story.tsx +32 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@charcoal-ui/icons",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.10.0-beta.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@types/react": "^18.3.3",
|
|
27
27
|
"@types/styled-components": "^5.1.21",
|
|
28
|
-
"@types/warning": "^3.0.
|
|
28
|
+
"@types/warning": "^3.0.4",
|
|
29
29
|
"@types/webpack-env": "^1.18.8",
|
|
30
30
|
"jsdom": "^24.1.0",
|
|
31
31
|
"react": "^18.3.1",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"warning": "^4.0.3",
|
|
36
|
-
"@charcoal-ui/icon-files": "5.
|
|
36
|
+
"@charcoal-ui/icon-files": "5.10.0-beta.0"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"react": ">=17.0.0"
|
package/src/PixivIcon.story.tsx
CHANGED
|
@@ -155,6 +155,14 @@ const Heading = styled.h2`
|
|
|
155
155
|
|
|
156
156
|
export const Default: StoryObj<Props> = {
|
|
157
157
|
args: { scale: 1, color: '#000000' },
|
|
158
|
+
parameters: {
|
|
159
|
+
vrt: {
|
|
160
|
+
viewport: {
|
|
161
|
+
width: 1280,
|
|
162
|
+
height: 12000,
|
|
163
|
+
},
|
|
164
|
+
},
|
|
165
|
+
},
|
|
158
166
|
}
|
|
159
167
|
|
|
160
168
|
export const WithAttributes: StoryObj<Props> = {
|
|
@@ -172,6 +180,14 @@ export const WithAttributes: StoryObj<Props> = {
|
|
|
172
180
|
scale: 1,
|
|
173
181
|
color: '#000000',
|
|
174
182
|
},
|
|
183
|
+
parameters: {
|
|
184
|
+
vrt: {
|
|
185
|
+
viewport: {
|
|
186
|
+
width: 1280,
|
|
187
|
+
height: 720,
|
|
188
|
+
},
|
|
189
|
+
},
|
|
190
|
+
},
|
|
175
191
|
}
|
|
176
192
|
|
|
177
193
|
export const WithUnsafe: StoryObj<Props> = {
|
|
@@ -195,6 +211,14 @@ export const WithUnsafe: StoryObj<Props> = {
|
|
|
195
211
|
'unsafe-non-guideline-scale': '3.75',
|
|
196
212
|
color: '#000000',
|
|
197
213
|
},
|
|
214
|
+
parameters: {
|
|
215
|
+
vrt: {
|
|
216
|
+
viewport: {
|
|
217
|
+
width: 1280,
|
|
218
|
+
height: 720,
|
|
219
|
+
},
|
|
220
|
+
},
|
|
221
|
+
},
|
|
198
222
|
}
|
|
199
223
|
|
|
200
224
|
export const RawIconFile: StoryObj<Props> = {
|
|
@@ -214,4 +238,12 @@ export const RawIconFile: StoryObj<Props> = {
|
|
|
214
238
|
scale: 1,
|
|
215
239
|
color: '#000000',
|
|
216
240
|
},
|
|
241
|
+
parameters: {
|
|
242
|
+
vrt: {
|
|
243
|
+
viewport: {
|
|
244
|
+
width: 1280,
|
|
245
|
+
height: 720,
|
|
246
|
+
},
|
|
247
|
+
},
|
|
248
|
+
},
|
|
217
249
|
}
|