@total_onion/onion-library 2.0.216 → 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/component-video-component-v3/video-component-v3.twig +2 -2
- package/components/webc-loadmore-trigger/loadmore-trigger.html +1 -2
- package/components/webc-loadmore-trigger/loadmore-trigger.js +22 -15
- package/components/webc-post-filter-module/dev-content/chucky-vanille.webp +0 -0
- package/components/webc-post-filter-module/dev-content/dev-content.js +115 -45
- package/components/webc-post-filter-module/dev-content/dev-contentlocal.js +310 -0
- 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/mr-business-on-top.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/components/webc-post-filter-module/post-filter-module.css +31 -3
- package/components/webc-post-filter-module/post-filter-module.html +1 -1
- package/components/webc-post-filter-module/post-filter-module.js +219 -197
- package/components/webc-post-grid-display-module/post-grid-display-module.js +34 -32
- package/components/webc-ptfg-9000/index.html +60 -14
- package/components/webc-ptfg-9000/ptfg-9000.html +1 -5
- package/components/webc-ptfg-9000/ptfg-9000.js +32 -33
- package/components/webc-toggle-trigger/index.html +30 -0
- package/components/webc-toggle-trigger/toggle-trigger.css +10 -0
- package/components/webc-toggle-trigger/toggle-trigger.html +8 -0
- package/components/webc-toggle-trigger/toggle-trigger.js +45 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
{
|
|
1
|
+
{% set videoEnabled = fields.enable_video %}
|
|
2
2
|
{% set renderDynamic = fields.child_pattern_settings.render_dynamic|default(0) %}
|
|
3
3
|
{% set videoPlayingZindexClass = fields.video_playing_high_z_index ? 'video-playing--high-z-index' : '' %}
|
|
4
4
|
{% if videoEnabled %}
|
|
@@ -87,4 +87,4 @@
|
|
|
87
87
|
{% endif %}
|
|
88
88
|
</div>
|
|
89
89
|
</div>
|
|
90
|
-
{% endif %}
|
|
90
|
+
{% endif %}
|
|
@@ -1,22 +1,29 @@
|
|
|
1
1
|
export default function loadmoreTriggerJs(options = {}) {
|
|
2
2
|
try {
|
|
3
|
-
customElements.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
3
|
+
if (!customElements.get('loadmore-trigger')) {
|
|
4
|
+
customElements.define(
|
|
5
|
+
'loadmore-trigger',
|
|
6
|
+
class extends HTMLElement {
|
|
7
|
+
// static observedAttributes = ['data-posts'];
|
|
8
|
+
constructor() {
|
|
9
|
+
super();
|
|
10
|
+
this.enableLogs = this.dataset.enablelogs;
|
|
11
|
+
this.toggleButton = document.createElement('button');
|
|
12
|
+
this.toggleButton.className = 'loadmore-trigger';
|
|
13
|
+
this.appendChild(this.toggleButton);
|
|
14
|
+
this.toggleButton.innerText = this.dataset.toggletext;
|
|
15
|
+
}
|
|
16
|
+
connectedCallback() {
|
|
17
|
+
console.log('Display module added to page.');
|
|
18
|
+
this.classList.add('loaded');
|
|
19
|
+
}
|
|
14
20
|
|
|
15
|
-
|
|
16
|
-
|
|
21
|
+
attributeChangedCallback(name, oldValue, newValue) {
|
|
22
|
+
// console.log(`Attribute ${name} has changed.`);
|
|
23
|
+
}
|
|
17
24
|
}
|
|
18
|
-
|
|
19
|
-
|
|
25
|
+
);
|
|
26
|
+
}
|
|
20
27
|
} catch (error) {
|
|
21
28
|
console.error(error);
|
|
22
29
|
}
|
|
@@ -3,6 +3,7 @@ import kaiImage from './kai.webp';
|
|
|
3
3
|
import kaiSelfie from './kai-selfie.webp';
|
|
4
4
|
import kaiLounging from './kai-lounging.webp';
|
|
5
5
|
import mrBusinessImage from './mr-business-doing-work.webp';
|
|
6
|
+
import mrBusinessOnTop from './mr-business-on-top.webp';
|
|
6
7
|
import amberImage from './amber.webp';
|
|
7
8
|
import blueyImage from './bluey.webp';
|
|
8
9
|
import ramsesKittenImage from './ramses-kitten.webp';
|
|
@@ -15,15 +16,21 @@ import skySecurity from './sky-security.webp';
|
|
|
15
16
|
import skyLuxury from './sky-luxury-2.webp';
|
|
16
17
|
import fatGigioSleepy from './fat-gigio-sleepy.webp';
|
|
17
18
|
import fatGigioKitten from './fat-gigio-kitten.webp';
|
|
19
|
+
import fatGigioBasket from './fat-gigio-basket-life.webp';
|
|
18
20
|
import peteDinosaur from './pete-dinosaur.webp';
|
|
19
21
|
import peteWork from './pete-at-work.webp';
|
|
20
22
|
import vanillePartyDress from './vanille-party.webp';
|
|
21
|
-
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';
|
|
22
29
|
|
|
23
30
|
export const devContentPets = [
|
|
24
31
|
{
|
|
25
32
|
name: 'Ramses Big Yawn',
|
|
26
|
-
link: '
|
|
33
|
+
link: 'https://totalonion.com',
|
|
27
34
|
images: {
|
|
28
35
|
post_image_src: ramsesImage
|
|
29
36
|
},
|
|
@@ -31,7 +38,7 @@ export const devContentPets = [
|
|
|
31
38
|
},
|
|
32
39
|
{
|
|
33
40
|
name: 'Kai sees a ghost',
|
|
34
|
-
link: '
|
|
41
|
+
link: 'https://totalonion.com',
|
|
35
42
|
images: {
|
|
36
43
|
post_image_src: kaiImage
|
|
37
44
|
},
|
|
@@ -40,7 +47,7 @@ export const devContentPets = [
|
|
|
40
47
|
},
|
|
41
48
|
{
|
|
42
49
|
name: 'Mr Business doing Business',
|
|
43
|
-
link: '
|
|
50
|
+
link: 'https://totalonion.com',
|
|
44
51
|
images: {
|
|
45
52
|
post_image_src: mrBusinessImage
|
|
46
53
|
},
|
|
@@ -49,25 +56,16 @@ export const devContentPets = [
|
|
|
49
56
|
},
|
|
50
57
|
{
|
|
51
58
|
name: 'Waking up Amber',
|
|
52
|
-
link: '
|
|
59
|
+
link: 'https://totalonion.com',
|
|
53
60
|
images: {
|
|
54
61
|
post_image_src: amberImage
|
|
55
62
|
},
|
|
56
63
|
|
|
57
64
|
categories: [13, 5, 10]
|
|
58
65
|
},
|
|
59
|
-
{
|
|
60
|
-
name: 'Bluey on the move',
|
|
61
|
-
link: '#',
|
|
62
|
-
images: {
|
|
63
|
-
post_image_src: blueyImage
|
|
64
|
-
},
|
|
65
|
-
|
|
66
|
-
categories: [2, 13, 8]
|
|
67
|
-
},
|
|
68
66
|
{
|
|
69
67
|
name: 'Kitten Ramses',
|
|
70
|
-
link: '
|
|
68
|
+
link: 'https://totalonion.com',
|
|
71
69
|
images: {
|
|
72
70
|
post_image_src: ramsesKittenImage
|
|
73
71
|
},
|
|
@@ -76,7 +74,7 @@ export const devContentPets = [
|
|
|
76
74
|
},
|
|
77
75
|
{
|
|
78
76
|
name: 'Mad Face Lulu',
|
|
79
|
-
link: '
|
|
77
|
+
link: 'https://totalonion.com',
|
|
80
78
|
images: {
|
|
81
79
|
post_image_src: luluMadImage
|
|
82
80
|
},
|
|
@@ -85,7 +83,7 @@ export const devContentPets = [
|
|
|
85
83
|
},
|
|
86
84
|
{
|
|
87
85
|
name: 'Pete having a Bath',
|
|
88
|
-
link: '
|
|
86
|
+
link: 'https://totalonion.com',
|
|
89
87
|
images: {
|
|
90
88
|
post_image_src: peteBath
|
|
91
89
|
},
|
|
@@ -94,7 +92,7 @@ export const devContentPets = [
|
|
|
94
92
|
},
|
|
95
93
|
{
|
|
96
94
|
name: 'Sky living large',
|
|
97
|
-
link: '
|
|
95
|
+
link: 'https://totalonion.com',
|
|
98
96
|
images: {
|
|
99
97
|
post_image_src: skyLivingLarge
|
|
100
98
|
},
|
|
@@ -103,7 +101,7 @@ export const devContentPets = [
|
|
|
103
101
|
},
|
|
104
102
|
{
|
|
105
103
|
name: 'Dinosaur Pete',
|
|
106
|
-
link: '
|
|
104
|
+
link: 'https://totalonion.com',
|
|
107
105
|
images: {
|
|
108
106
|
post_image_src: peteDinosaur
|
|
109
107
|
},
|
|
@@ -111,35 +109,44 @@ export const devContentPets = [
|
|
|
111
109
|
categories: [13, 10, 4]
|
|
112
110
|
},
|
|
113
111
|
{
|
|
114
|
-
name: '
|
|
115
|
-
link: '
|
|
112
|
+
name: 'Puppy eyes Vanille',
|
|
113
|
+
link: 'https://totalonion.com',
|
|
116
114
|
images: {
|
|
117
|
-
post_image_src:
|
|
115
|
+
post_image_src: vanillePuppyFace
|
|
118
116
|
},
|
|
119
117
|
|
|
120
|
-
categories: [
|
|
118
|
+
categories: [14, 10, 5]
|
|
121
119
|
},
|
|
122
120
|
{
|
|
123
|
-
name: '
|
|
124
|
-
link: '
|
|
121
|
+
name: 'Cutie Fat Gigio',
|
|
122
|
+
link: 'https://totalonion.com',
|
|
125
123
|
images: {
|
|
126
|
-
post_image_src:
|
|
124
|
+
post_image_src: fatGigioSleepy
|
|
127
125
|
},
|
|
128
126
|
|
|
129
|
-
categories: [
|
|
127
|
+
categories: [13, 10, 5]
|
|
130
128
|
},
|
|
131
129
|
{
|
|
132
130
|
name: 'Pete the Consultant',
|
|
133
|
-
link: '
|
|
131
|
+
link: 'https://totalonion.com',
|
|
134
132
|
images: {
|
|
135
133
|
post_image_src: peteWork
|
|
136
134
|
},
|
|
137
135
|
|
|
138
136
|
categories: [12, 10, 4]
|
|
139
137
|
},
|
|
138
|
+
{
|
|
139
|
+
name: 'Bluey on the move',
|
|
140
|
+
link: 'https://totalonion.com',
|
|
141
|
+
images: {
|
|
142
|
+
post_image_src: blueyImage
|
|
143
|
+
},
|
|
144
|
+
|
|
145
|
+
categories: [2, 13, 8]
|
|
146
|
+
},
|
|
140
147
|
{
|
|
141
148
|
name: 'Party Dress Vanille',
|
|
142
|
-
link: '
|
|
149
|
+
link: 'https://totalonion.com',
|
|
143
150
|
images: {
|
|
144
151
|
post_image_src: vanillePartyDress
|
|
145
152
|
},
|
|
@@ -148,7 +155,7 @@ export const devContentPets = [
|
|
|
148
155
|
},
|
|
149
156
|
{
|
|
150
157
|
name: 'Fat Gigio Kitten',
|
|
151
|
-
link: '
|
|
158
|
+
link: 'https://totalonion.com',
|
|
152
159
|
images: {
|
|
153
160
|
post_image_src: fatGigioKitten
|
|
154
161
|
},
|
|
@@ -157,25 +164,16 @@ export const devContentPets = [
|
|
|
157
164
|
},
|
|
158
165
|
{
|
|
159
166
|
name: 'Sky Security Corps',
|
|
160
|
-
link: '
|
|
167
|
+
link: 'https://totalonion.com',
|
|
161
168
|
images: {
|
|
162
169
|
post_image_src: skySecurity
|
|
163
170
|
},
|
|
164
171
|
|
|
165
172
|
categories: [12, 10, 4]
|
|
166
173
|
},
|
|
167
|
-
{
|
|
168
|
-
name: 'Sky Luxury',
|
|
169
|
-
link: '#',
|
|
170
|
-
images: {
|
|
171
|
-
post_image_src: skyLuxury
|
|
172
|
-
},
|
|
173
|
-
|
|
174
|
-
categories: [12, 10, 4]
|
|
175
|
-
},
|
|
176
174
|
{
|
|
177
175
|
name: 'Kai Selfie',
|
|
178
|
-
link: '
|
|
176
|
+
link: 'https://totalonion.com',
|
|
179
177
|
images: {
|
|
180
178
|
post_image_src: kaiSelfie
|
|
181
179
|
},
|
|
@@ -184,16 +182,25 @@ export const devContentPets = [
|
|
|
184
182
|
},
|
|
185
183
|
{
|
|
186
184
|
name: 'Lulu gets serious',
|
|
187
|
-
link: '
|
|
185
|
+
link: 'https://totalonion.com',
|
|
188
186
|
images: {
|
|
189
187
|
post_image_src: luluSerious
|
|
190
188
|
},
|
|
191
189
|
|
|
192
190
|
categories: [12, 10, 5]
|
|
193
191
|
},
|
|
192
|
+
{
|
|
193
|
+
name: 'Sky Luxury',
|
|
194
|
+
link: 'https://totalonion.com',
|
|
195
|
+
images: {
|
|
196
|
+
post_image_src: skyLuxury
|
|
197
|
+
},
|
|
198
|
+
|
|
199
|
+
categories: [12, 10, 4]
|
|
200
|
+
},
|
|
194
201
|
{
|
|
195
202
|
name: 'Pete rules her lawn',
|
|
196
|
-
link: '
|
|
203
|
+
link: 'https://totalonion.com',
|
|
197
204
|
images: {
|
|
198
205
|
post_image_src: peteLawn
|
|
199
206
|
},
|
|
@@ -202,12 +209,75 @@ export const devContentPets = [
|
|
|
202
209
|
},
|
|
203
210
|
{
|
|
204
211
|
name: 'Kai takes it easy',
|
|
205
|
-
link: '
|
|
212
|
+
link: 'https://totalonion.com',
|
|
206
213
|
images: {
|
|
207
214
|
post_image_src: kaiLounging
|
|
208
215
|
},
|
|
209
216
|
|
|
210
217
|
categories: [13, 10, 4]
|
|
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
|
+
},
|
|
228
|
+
{
|
|
229
|
+
name: 'Fat Gigio Basket Life',
|
|
230
|
+
link: 'https://totalonion.com',
|
|
231
|
+
images: {
|
|
232
|
+
post_image_src: fatGigioBasket
|
|
233
|
+
},
|
|
234
|
+
|
|
235
|
+
categories: [13, 10, 5, 1]
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
name: 'Mr Business On Top',
|
|
239
|
+
link: 'https://totalonion.com',
|
|
240
|
+
images: {
|
|
241
|
+
post_image_src: mrBusinessOnTop
|
|
242
|
+
},
|
|
243
|
+
|
|
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]
|
|
211
281
|
}
|
|
212
282
|
];
|
|
213
283
|
|
|
@@ -215,7 +285,7 @@ export const devContentCategories = [
|
|
|
215
285
|
{name: 'Mood', id: '6', parentid: '0'},
|
|
216
286
|
{name: 'Happy', id: '1', parentid: '6'},
|
|
217
287
|
{name: 'Frightened', id: '2', parentid: '6'},
|
|
218
|
-
{name: '
|
|
288
|
+
{name: 'Thoughtful', id: '3', parentid: '6'},
|
|
219
289
|
{name: 'Active', id: '4', parentid: '6'},
|
|
220
290
|
{name: 'Chilled', id: '5', parentid: '6'},
|
|
221
291
|
{name: 'Limbs', id: '7', parentid: '0'},
|
|
@@ -0,0 +1,310 @@
|
|
|
1
|
+
const ramsesImage = '../webc-post-filter-module/dev-content/ramses-tired.webp';
|
|
2
|
+
const kaiImage = '../webc-post-filter-module/dev-content/kai.webp';
|
|
3
|
+
const kaiSelfie = '../webc-post-filter-module/dev-content/kai-selfie.webp';
|
|
4
|
+
const kaiLounging = '../webc-post-filter-module/dev-content/kai-lounging.webp';
|
|
5
|
+
const mrBusinessImage =
|
|
6
|
+
'../webc-post-filter-module/dev-content/mr-business-doing-work.webp';
|
|
7
|
+
const mrBusinessOnTop =
|
|
8
|
+
'../webc-post-filter-module/dev-content/mr-business-on-top.webp';
|
|
9
|
+
const amberImage = '../webc-post-filter-module/dev-content/amber.webp';
|
|
10
|
+
const blueyImage = '../webc-post-filter-module/dev-content/bluey.webp';
|
|
11
|
+
const ramsesKittenImage =
|
|
12
|
+
'../webc-post-filter-module/dev-content/ramses-kitten.webp';
|
|
13
|
+
const luluMadImage = '../webc-post-filter-module/dev-content/lulu-mad.webp';
|
|
14
|
+
const luluSerious = '../webc-post-filter-module/dev-content/lulu-serious.webp';
|
|
15
|
+
const peteBath = '../webc-post-filter-module/dev-content/pete-bath.webp';
|
|
16
|
+
const peteLawn = '../webc-post-filter-module/dev-content/pete-lawn.webp';
|
|
17
|
+
const skyLivingLarge = '../webc-post-filter-module/dev-content/sky-field.webp';
|
|
18
|
+
const skySecurity = '../webc-post-filter-module/dev-content/sky-security.webp';
|
|
19
|
+
const skyLuxury = '../webc-post-filter-module/dev-content/sky-luxury-2.webp';
|
|
20
|
+
const fatGigioSleepy =
|
|
21
|
+
'../webc-post-filter-module/dev-content/fat-gigio-sleepy.webp';
|
|
22
|
+
const fatGigioKitten =
|
|
23
|
+
'../webc-post-filter-module/dev-content/fat-gigio-kitten.webp';
|
|
24
|
+
const fatGigioBasket =
|
|
25
|
+
'../webc-post-filter-module/dev-content/fat-gigio-basket-life.webp';
|
|
26
|
+
const peteDinosaur =
|
|
27
|
+
'../webc-post-filter-module/dev-content/pete-dinosaur.webp';
|
|
28
|
+
const peteWork = '../webc-post-filter-module/dev-content/pete-at-work.webp';
|
|
29
|
+
const vanillePartyDress =
|
|
30
|
+
'../webc-post-filter-module/dev-content/vanille-party.webp';
|
|
31
|
+
const vanillePuppyFace =
|
|
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';
|
|
40
|
+
|
|
41
|
+
export const devContentPets = [
|
|
42
|
+
{
|
|
43
|
+
name: 'Ramses Big Yawn',
|
|
44
|
+
link: 'https://totalonion.com',
|
|
45
|
+
images: {
|
|
46
|
+
post_image_src: ramsesImage
|
|
47
|
+
},
|
|
48
|
+
categories: [13, 3, 10]
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
name: 'Kai sees a ghost',
|
|
52
|
+
link: 'https://totalonion.com',
|
|
53
|
+
images: {
|
|
54
|
+
post_image_src: kaiImage
|
|
55
|
+
},
|
|
56
|
+
|
|
57
|
+
categories: [12, 2, 10]
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
name: 'Mr Business doing Business',
|
|
61
|
+
link: 'https://totalonion.com',
|
|
62
|
+
images: {
|
|
63
|
+
post_image_src: mrBusinessImage
|
|
64
|
+
},
|
|
65
|
+
|
|
66
|
+
categories: [13, 3, 9]
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
name: 'Waking up Amber',
|
|
70
|
+
link: 'https://totalonion.com',
|
|
71
|
+
images: {
|
|
72
|
+
post_image_src: amberImage
|
|
73
|
+
},
|
|
74
|
+
|
|
75
|
+
categories: [13, 5, 10]
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
name: 'Kitten Ramses',
|
|
79
|
+
link: 'https://totalonion.com',
|
|
80
|
+
images: {
|
|
81
|
+
post_image_src: ramsesKittenImage
|
|
82
|
+
},
|
|
83
|
+
|
|
84
|
+
categories: [12, 2, 10]
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
name: 'Mad Face Lulu',
|
|
88
|
+
link: 'https://totalonion.com',
|
|
89
|
+
images: {
|
|
90
|
+
post_image_src: luluMadImage
|
|
91
|
+
},
|
|
92
|
+
|
|
93
|
+
categories: [14, 10, 5]
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
name: 'Pete having a Bath',
|
|
97
|
+
link: 'https://totalonion.com',
|
|
98
|
+
images: {
|
|
99
|
+
post_image_src: peteBath
|
|
100
|
+
},
|
|
101
|
+
|
|
102
|
+
categories: [13, 10, 5]
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
name: 'Sky living large',
|
|
106
|
+
link: 'https://totalonion.com',
|
|
107
|
+
images: {
|
|
108
|
+
post_image_src: skyLivingLarge
|
|
109
|
+
},
|
|
110
|
+
|
|
111
|
+
categories: [13, 10, 4]
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
name: 'Dinosaur Pete',
|
|
115
|
+
link: 'https://totalonion.com',
|
|
116
|
+
images: {
|
|
117
|
+
post_image_src: peteDinosaur
|
|
118
|
+
},
|
|
119
|
+
|
|
120
|
+
categories: [13, 10, 4]
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
name: 'Puppy eyes Vanille',
|
|
124
|
+
link: 'https://totalonion.com',
|
|
125
|
+
images: {
|
|
126
|
+
post_image_src: vanillePuppyFace
|
|
127
|
+
},
|
|
128
|
+
|
|
129
|
+
categories: [14, 10, 5]
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
name: 'Cutie Fat Gigio',
|
|
133
|
+
link: 'https://totalonion.com',
|
|
134
|
+
images: {
|
|
135
|
+
post_image_src: fatGigioSleepy
|
|
136
|
+
},
|
|
137
|
+
|
|
138
|
+
categories: [13, 10, 5]
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
name: 'Pete the Consultant',
|
|
142
|
+
link: 'https://totalonion.com',
|
|
143
|
+
images: {
|
|
144
|
+
post_image_src: peteWork
|
|
145
|
+
},
|
|
146
|
+
|
|
147
|
+
categories: [12, 10, 4]
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
name: 'Bluey on the move',
|
|
151
|
+
link: 'https://totalonion.com',
|
|
152
|
+
images: {
|
|
153
|
+
post_image_src: blueyImage
|
|
154
|
+
},
|
|
155
|
+
|
|
156
|
+
categories: [2, 13, 8]
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
name: 'Party Dress Vanille',
|
|
160
|
+
link: 'https://totalonion.com',
|
|
161
|
+
images: {
|
|
162
|
+
post_image_src: vanillePartyDress
|
|
163
|
+
},
|
|
164
|
+
|
|
165
|
+
categories: [14, 10, 4]
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
name: 'Fat Gigio Kitten',
|
|
169
|
+
link: 'https://totalonion.com',
|
|
170
|
+
images: {
|
|
171
|
+
post_image_src: fatGigioKitten
|
|
172
|
+
},
|
|
173
|
+
|
|
174
|
+
categories: [12, 10, 5]
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
name: 'Sky Security Corps',
|
|
178
|
+
link: 'https://totalonion.com',
|
|
179
|
+
images: {
|
|
180
|
+
post_image_src: skySecurity
|
|
181
|
+
},
|
|
182
|
+
|
|
183
|
+
categories: [12, 10, 4]
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
name: 'Kai Selfie',
|
|
187
|
+
link: 'https://totalonion.com',
|
|
188
|
+
images: {
|
|
189
|
+
post_image_src: kaiSelfie
|
|
190
|
+
},
|
|
191
|
+
|
|
192
|
+
categories: [12, 10, 5]
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
name: 'Lulu gets serious',
|
|
196
|
+
link: 'https://totalonion.com',
|
|
197
|
+
images: {
|
|
198
|
+
post_image_src: luluSerious
|
|
199
|
+
},
|
|
200
|
+
|
|
201
|
+
categories: [12, 10, 5]
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
name: 'Sky Luxury',
|
|
205
|
+
link: 'https://totalonion.com',
|
|
206
|
+
images: {
|
|
207
|
+
post_image_src: skyLuxury
|
|
208
|
+
},
|
|
209
|
+
|
|
210
|
+
categories: [12, 10, 4]
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
name: 'Pete rules her lawn',
|
|
214
|
+
link: 'https://totalonion.com',
|
|
215
|
+
images: {
|
|
216
|
+
post_image_src: peteLawn
|
|
217
|
+
},
|
|
218
|
+
|
|
219
|
+
categories: [13, 10, 4]
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
name: 'Kai takes it easy',
|
|
223
|
+
link: 'https://totalonion.com',
|
|
224
|
+
images: {
|
|
225
|
+
post_image_src: kaiLounging
|
|
226
|
+
},
|
|
227
|
+
|
|
228
|
+
categories: [13, 10, 4]
|
|
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
|
+
},
|
|
239
|
+
{
|
|
240
|
+
name: 'Fat Gigio Basket Life',
|
|
241
|
+
link: 'https://totalonion.com',
|
|
242
|
+
images: {
|
|
243
|
+
post_image_src: fatGigioBasket
|
|
244
|
+
},
|
|
245
|
+
|
|
246
|
+
categories: [13, 10, 5, 1]
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
name: 'Mr Business On Top',
|
|
250
|
+
link: 'https://totalonion.com',
|
|
251
|
+
images: {
|
|
252
|
+
post_image_src: mrBusinessOnTop
|
|
253
|
+
},
|
|
254
|
+
|
|
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]
|
|
292
|
+
}
|
|
293
|
+
];
|
|
294
|
+
|
|
295
|
+
export const devContentCategories = [
|
|
296
|
+
{name: 'Mood', id: '6', parentid: '0'},
|
|
297
|
+
{name: 'Happy', id: '1', parentid: '6'},
|
|
298
|
+
{name: 'Frightened', id: '2', parentid: '6'},
|
|
299
|
+
{name: 'Thoughtful', id: '3', parentid: '6'},
|
|
300
|
+
{name: 'Active', id: '4', parentid: '6'},
|
|
301
|
+
{name: 'Chilled', id: '5', parentid: '6'},
|
|
302
|
+
{name: 'Limbs', id: '7', parentid: '0'},
|
|
303
|
+
{name: 'Two', id: '8', parentid: '7'},
|
|
304
|
+
{name: 'Three', id: '9', parentid: '7'},
|
|
305
|
+
{name: 'Four', id: '10', parentid: '7'},
|
|
306
|
+
{name: 'Age', id: '11', parentid: '0'},
|
|
307
|
+
{name: 'Baby', id: '12', parentid: '11'},
|
|
308
|
+
{name: 'Adult', id: '13', parentid: '11'},
|
|
309
|
+
{name: 'Vintage', id: '14', parentid: '11'}
|
|
310
|
+
];
|
|
Binary file
|