@total_onion/onion-library 2.0.217 → 2.0.218
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/components/webc-post-filter-module/dev-content/chucky-vanille.webp +0 -0
- package/components/webc-post-filter-module/dev-content/dev-content.js +51 -1
- package/components/webc-post-filter-module/dev-content/dev-contentlocal.js +53 -1
- package/components/webc-post-filter-module/dev-content/martha-on-the-mat.webp +0 -0
- package/components/webc-post-filter-module/dev-content/max-on-the-mat.webp +0 -0
- package/components/webc-post-filter-module/dev-content/peanut-keeping-an-eye.webp +0 -0
- package/components/webc-post-filter-module/dev-content/vanille-asleep.webp +0 -0
- package/components/webc-post-filter-module/dev-content/vanille-bass.webp +0 -0
- package/components/webc-post-filter-module/dev-content/vanille-puppy-eyes.webp +0 -0
- package/package.json +1 -1
|
@@ -20,7 +20,12 @@ import fatGigioBasket from './fat-gigio-basket-life.webp';
|
|
|
20
20
|
import peteDinosaur from './pete-dinosaur.webp';
|
|
21
21
|
import peteWork from './pete-at-work.webp';
|
|
22
22
|
import vanillePartyDress from './vanille-party.webp';
|
|
23
|
-
import vanillePuppyFace from './vanille-puppy.webp';
|
|
23
|
+
import vanillePuppyFace from './vanille-puppy-eyes.webp';
|
|
24
|
+
import peanutEye from './peanut-keeping-an-eye.webp';
|
|
25
|
+
import maxOnMat from './max-on-the-mat.webp';
|
|
26
|
+
import marthaOnMat from './martha-on-the-mat.webp';
|
|
27
|
+
import vanilleBass from './vanille-bass.webp';
|
|
28
|
+
import vanilleNap from './vanille-asleep.webp';
|
|
24
29
|
|
|
25
30
|
export const devContentPets = [
|
|
26
31
|
{
|
|
@@ -211,6 +216,15 @@ export const devContentPets = [
|
|
|
211
216
|
|
|
212
217
|
categories: [13, 10, 4]
|
|
213
218
|
},
|
|
219
|
+
{
|
|
220
|
+
name: 'Vanille having a nap',
|
|
221
|
+
link: 'https://totalonion.com',
|
|
222
|
+
images: {
|
|
223
|
+
post_image_src: vanilleNap
|
|
224
|
+
},
|
|
225
|
+
|
|
226
|
+
categories: [14, 10, 5]
|
|
227
|
+
},
|
|
214
228
|
{
|
|
215
229
|
name: 'Fat Gigio Basket Life',
|
|
216
230
|
link: 'https://totalonion.com',
|
|
@@ -228,6 +242,42 @@ export const devContentPets = [
|
|
|
228
242
|
},
|
|
229
243
|
|
|
230
244
|
categories: [13, 10, 5, 1]
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
name: 'Peanut is watching you',
|
|
248
|
+
link: 'https://totalonion.com',
|
|
249
|
+
images: {
|
|
250
|
+
post_image_src: peanutEye
|
|
251
|
+
},
|
|
252
|
+
|
|
253
|
+
categories: [13, 10, 5]
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
name: 'Max on the Mat',
|
|
257
|
+
link: 'https://totalonion.com',
|
|
258
|
+
images: {
|
|
259
|
+
post_image_src: maxOnMat
|
|
260
|
+
},
|
|
261
|
+
|
|
262
|
+
categories: [13, 10, 5]
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
name: 'Martha on the Mat',
|
|
266
|
+
link: 'https://totalonion.com',
|
|
267
|
+
images: {
|
|
268
|
+
post_image_src: marthaOnMat
|
|
269
|
+
},
|
|
270
|
+
|
|
271
|
+
categories: [13, 10, 5]
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
name: 'Vanille likes Bass',
|
|
275
|
+
link: 'https://totalonion.com',
|
|
276
|
+
images: {
|
|
277
|
+
post_image_src: vanilleBass
|
|
278
|
+
},
|
|
279
|
+
|
|
280
|
+
categories: [14, 10, 5]
|
|
231
281
|
}
|
|
232
282
|
];
|
|
233
283
|
|
|
@@ -29,7 +29,14 @@ const peteWork = '../webc-post-filter-module/dev-content/pete-at-work.webp';
|
|
|
29
29
|
const vanillePartyDress =
|
|
30
30
|
'../webc-post-filter-module/dev-content/vanille-party.webp';
|
|
31
31
|
const vanillePuppyFace =
|
|
32
|
-
'../webc-post-filter-module/dev-content/vanille-puppy.webp';
|
|
32
|
+
'../webc-post-filter-module/dev-content/vanille-puppy-eyes.webp';
|
|
33
|
+
const peanutEye =
|
|
34
|
+
'../webc-post-filter-module/dev-content/peanut-keeping-an-eye.webp';
|
|
35
|
+
const maxOnMat = '../webc-post-filter-module/dev-content/max-on-the-mat.webp';
|
|
36
|
+
const marthaOnMat =
|
|
37
|
+
'../webc-post-filter-module/dev-content/martha-on-the-mat.webp';
|
|
38
|
+
const vanilleBass = '../webc-post-filter-module/dev-content/vanille-bass.webp';
|
|
39
|
+
const vanilleNap = '../webc-post-filter-module/dev-content/vanille-asleep.webp';
|
|
33
40
|
|
|
34
41
|
export const devContentPets = [
|
|
35
42
|
{
|
|
@@ -220,6 +227,15 @@ export const devContentPets = [
|
|
|
220
227
|
|
|
221
228
|
categories: [13, 10, 4]
|
|
222
229
|
},
|
|
230
|
+
{
|
|
231
|
+
name: 'Vanille having a nap',
|
|
232
|
+
link: 'https://totalonion.com',
|
|
233
|
+
images: {
|
|
234
|
+
post_image_src: vanilleNap
|
|
235
|
+
},
|
|
236
|
+
|
|
237
|
+
categories: [14, 10, 5]
|
|
238
|
+
},
|
|
223
239
|
{
|
|
224
240
|
name: 'Fat Gigio Basket Life',
|
|
225
241
|
link: 'https://totalonion.com',
|
|
@@ -237,6 +253,42 @@ export const devContentPets = [
|
|
|
237
253
|
},
|
|
238
254
|
|
|
239
255
|
categories: [13, 10, 5, 1]
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
name: 'Peanut is watching you',
|
|
259
|
+
link: 'https://totalonion.com',
|
|
260
|
+
images: {
|
|
261
|
+
post_image_src: peanutEye
|
|
262
|
+
},
|
|
263
|
+
|
|
264
|
+
categories: [13, 10, 5]
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
name: 'Max on the Mat',
|
|
268
|
+
link: 'https://totalonion.com',
|
|
269
|
+
images: {
|
|
270
|
+
post_image_src: maxOnMat
|
|
271
|
+
},
|
|
272
|
+
|
|
273
|
+
categories: [13, 10, 5]
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
name: 'Martha on the Mat',
|
|
277
|
+
link: 'https://totalonion.com',
|
|
278
|
+
images: {
|
|
279
|
+
post_image_src: marthaOnMat
|
|
280
|
+
},
|
|
281
|
+
|
|
282
|
+
categories: [13, 10, 5]
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
name: 'Vanille likes Bass',
|
|
286
|
+
link: 'https://totalonion.com',
|
|
287
|
+
images: {
|
|
288
|
+
post_image_src: vanilleBass
|
|
289
|
+
},
|
|
290
|
+
|
|
291
|
+
categories: [14, 10, 5]
|
|
240
292
|
}
|
|
241
293
|
];
|
|
242
294
|
|
|
Binary file
|