@inno_user/inno_clouds_lib 8.2.3 → 8.2.5
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/dist/@inno_user/inno_clouds_lib.css +1 -1
- package/dist/@inno_user/inno_clouds_lib.es.js +4135 -3721
- package/dist/@inno_user/inno_clouds_lib.umd.js +12 -12
- package/dist/components/cardMain/CardMain.vue.d.ts +9 -0
- package/dist/components/drumItem/DrumItem.vue.d.ts +1 -4
- package/dist/components/recommendation/Recommendation.vue.d.ts +1 -0
- package/dist/composables/useVirtuaLoop.d.ts +189 -0
- package/dist/index.d.ts +7 -1
- package/dist/store/card.d.ts +110 -2
- package/dist/store/main.d.ts +37 -1
- package/dist/store/theme.d.ts +9 -0
- package/dist/types/iCardProduct.d.ts +4 -0
- package/dist/types/iMain.d.ts +1 -0
- package/dist/types/iTheme.d.ts +1 -0
- package/package.json +2 -1
package/dist/store/main.d.ts
CHANGED
|
@@ -48,6 +48,7 @@ export declare const useMainStore: StoreDefinition<"mainLib", Pick<{
|
|
|
48
48
|
is_default: boolean;
|
|
49
49
|
price?: number | undefined;
|
|
50
50
|
} | null | undefined;
|
|
51
|
+
is_fake?: boolean | undefined;
|
|
51
52
|
}[];
|
|
52
53
|
group_modifiers: {
|
|
53
54
|
id: string;
|
|
@@ -85,7 +86,9 @@ export declare const useMainStore: StoreDefinition<"mainLib", Pick<{
|
|
|
85
86
|
is_default: boolean;
|
|
86
87
|
price?: number | undefined;
|
|
87
88
|
} | null | undefined;
|
|
89
|
+
is_fake?: boolean | undefined;
|
|
88
90
|
}[];
|
|
91
|
+
is_fake?: boolean | undefined;
|
|
89
92
|
}[];
|
|
90
93
|
energy_amount?: number | undefined;
|
|
91
94
|
proteins_amount?: number | undefined;
|
|
@@ -100,6 +103,8 @@ export declare const useMainStore: StoreDefinition<"mainLib", Pick<{
|
|
|
100
103
|
new_price: number;
|
|
101
104
|
openApiKey?: any;
|
|
102
105
|
show_recommendations: boolean;
|
|
106
|
+
adult?: boolean | undefined;
|
|
107
|
+
is_fake?: boolean | undefined;
|
|
103
108
|
}[], IProduct[] | {
|
|
104
109
|
id: string;
|
|
105
110
|
idSystem: string;
|
|
@@ -146,6 +151,7 @@ export declare const useMainStore: StoreDefinition<"mainLib", Pick<{
|
|
|
146
151
|
is_default: boolean;
|
|
147
152
|
price?: number | undefined;
|
|
148
153
|
} | null | undefined;
|
|
154
|
+
is_fake?: boolean | undefined;
|
|
149
155
|
}[];
|
|
150
156
|
group_modifiers: {
|
|
151
157
|
id: string;
|
|
@@ -183,7 +189,9 @@ export declare const useMainStore: StoreDefinition<"mainLib", Pick<{
|
|
|
183
189
|
is_default: boolean;
|
|
184
190
|
price?: number | undefined;
|
|
185
191
|
} | null | undefined;
|
|
192
|
+
is_fake?: boolean | undefined;
|
|
186
193
|
}[];
|
|
194
|
+
is_fake?: boolean | undefined;
|
|
187
195
|
}[];
|
|
188
196
|
energy_amount?: number | undefined;
|
|
189
197
|
proteins_amount?: number | undefined;
|
|
@@ -198,6 +206,8 @@ export declare const useMainStore: StoreDefinition<"mainLib", Pick<{
|
|
|
198
206
|
new_price: number;
|
|
199
207
|
openApiKey?: any;
|
|
200
208
|
show_recommendations: boolean;
|
|
209
|
+
adult?: boolean | undefined;
|
|
210
|
+
is_fake?: boolean | undefined;
|
|
201
211
|
}[]>;
|
|
202
212
|
activeScrolling_lib: Ref<HTMLElement[], HTMLElement[]>;
|
|
203
213
|
config_lib: Ref<any, any>;
|
|
@@ -219,6 +229,8 @@ export declare const useMainStore: StoreDefinition<"mainLib", Pick<{
|
|
|
219
229
|
kiosk_FirstTimeout: Ref<any, any>;
|
|
220
230
|
is_OpenLoyal: Ref<boolean, boolean>;
|
|
221
231
|
profile: Ref<any, any>;
|
|
232
|
+
is_18_above_content: Ref<boolean, boolean>;
|
|
233
|
+
is18Allowed: Ref<boolean, boolean>;
|
|
222
234
|
removeFromLocalStorage: (elements: any[]) => void;
|
|
223
235
|
setKioskTimeout: <H extends number | string>(timeout: H) => void;
|
|
224
236
|
setBonus: (value: number) => void;
|
|
@@ -229,7 +241,7 @@ export declare const useMainStore: StoreDefinition<"mainLib", Pick<{
|
|
|
229
241
|
loadCart: () => void;
|
|
230
242
|
deleteItemFromCart: (idSystem?: string) => void;
|
|
231
243
|
makeProductFullyReactive: (item: any) => IProduct;
|
|
232
|
-
}, "openApiKey" | "kiosk_timeout" | "cartProducts_lib" | "activeScrolling_lib" | "config_lib" | "is_notification_lib" | "notificationData_lib" | "xApiKey_lib" | "countBonus" | "toggleDrum" | "is_showApiKey" | "kiosk_FirstTimeout" | "is_OpenLoyal" | "profile">, Pick<{
|
|
244
|
+
}, "openApiKey" | "kiosk_timeout" | "cartProducts_lib" | "activeScrolling_lib" | "config_lib" | "is_notification_lib" | "notificationData_lib" | "xApiKey_lib" | "countBonus" | "toggleDrum" | "is_showApiKey" | "kiosk_FirstTimeout" | "is_OpenLoyal" | "profile" | "is_18_above_content" | "is18Allowed">, Pick<{
|
|
233
245
|
cartProducts_lib: Ref<{
|
|
234
246
|
id: string;
|
|
235
247
|
idSystem: string;
|
|
@@ -276,6 +288,7 @@ export declare const useMainStore: StoreDefinition<"mainLib", Pick<{
|
|
|
276
288
|
is_default: boolean;
|
|
277
289
|
price?: number | undefined;
|
|
278
290
|
} | null | undefined;
|
|
291
|
+
is_fake?: boolean | undefined;
|
|
279
292
|
}[];
|
|
280
293
|
group_modifiers: {
|
|
281
294
|
id: string;
|
|
@@ -313,7 +326,9 @@ export declare const useMainStore: StoreDefinition<"mainLib", Pick<{
|
|
|
313
326
|
is_default: boolean;
|
|
314
327
|
price?: number | undefined;
|
|
315
328
|
} | null | undefined;
|
|
329
|
+
is_fake?: boolean | undefined;
|
|
316
330
|
}[];
|
|
331
|
+
is_fake?: boolean | undefined;
|
|
317
332
|
}[];
|
|
318
333
|
energy_amount?: number | undefined;
|
|
319
334
|
proteins_amount?: number | undefined;
|
|
@@ -328,6 +343,8 @@ export declare const useMainStore: StoreDefinition<"mainLib", Pick<{
|
|
|
328
343
|
new_price: number;
|
|
329
344
|
openApiKey?: any;
|
|
330
345
|
show_recommendations: boolean;
|
|
346
|
+
adult?: boolean | undefined;
|
|
347
|
+
is_fake?: boolean | undefined;
|
|
331
348
|
}[], IProduct[] | {
|
|
332
349
|
id: string;
|
|
333
350
|
idSystem: string;
|
|
@@ -374,6 +391,7 @@ export declare const useMainStore: StoreDefinition<"mainLib", Pick<{
|
|
|
374
391
|
is_default: boolean;
|
|
375
392
|
price?: number | undefined;
|
|
376
393
|
} | null | undefined;
|
|
394
|
+
is_fake?: boolean | undefined;
|
|
377
395
|
}[];
|
|
378
396
|
group_modifiers: {
|
|
379
397
|
id: string;
|
|
@@ -411,7 +429,9 @@ export declare const useMainStore: StoreDefinition<"mainLib", Pick<{
|
|
|
411
429
|
is_default: boolean;
|
|
412
430
|
price?: number | undefined;
|
|
413
431
|
} | null | undefined;
|
|
432
|
+
is_fake?: boolean | undefined;
|
|
414
433
|
}[];
|
|
434
|
+
is_fake?: boolean | undefined;
|
|
415
435
|
}[];
|
|
416
436
|
energy_amount?: number | undefined;
|
|
417
437
|
proteins_amount?: number | undefined;
|
|
@@ -426,6 +446,8 @@ export declare const useMainStore: StoreDefinition<"mainLib", Pick<{
|
|
|
426
446
|
new_price: number;
|
|
427
447
|
openApiKey?: any;
|
|
428
448
|
show_recommendations: boolean;
|
|
449
|
+
adult?: boolean | undefined;
|
|
450
|
+
is_fake?: boolean | undefined;
|
|
429
451
|
}[]>;
|
|
430
452
|
activeScrolling_lib: Ref<HTMLElement[], HTMLElement[]>;
|
|
431
453
|
config_lib: Ref<any, any>;
|
|
@@ -447,6 +469,8 @@ export declare const useMainStore: StoreDefinition<"mainLib", Pick<{
|
|
|
447
469
|
kiosk_FirstTimeout: Ref<any, any>;
|
|
448
470
|
is_OpenLoyal: Ref<boolean, boolean>;
|
|
449
471
|
profile: Ref<any, any>;
|
|
472
|
+
is_18_above_content: Ref<boolean, boolean>;
|
|
473
|
+
is18Allowed: Ref<boolean, boolean>;
|
|
450
474
|
removeFromLocalStorage: (elements: any[]) => void;
|
|
451
475
|
setKioskTimeout: <H extends number | string>(timeout: H) => void;
|
|
452
476
|
setBonus: (value: number) => void;
|
|
@@ -504,6 +528,7 @@ export declare const useMainStore: StoreDefinition<"mainLib", Pick<{
|
|
|
504
528
|
is_default: boolean;
|
|
505
529
|
price?: number | undefined;
|
|
506
530
|
} | null | undefined;
|
|
531
|
+
is_fake?: boolean | undefined;
|
|
507
532
|
}[];
|
|
508
533
|
group_modifiers: {
|
|
509
534
|
id: string;
|
|
@@ -541,7 +566,9 @@ export declare const useMainStore: StoreDefinition<"mainLib", Pick<{
|
|
|
541
566
|
is_default: boolean;
|
|
542
567
|
price?: number | undefined;
|
|
543
568
|
} | null | undefined;
|
|
569
|
+
is_fake?: boolean | undefined;
|
|
544
570
|
}[];
|
|
571
|
+
is_fake?: boolean | undefined;
|
|
545
572
|
}[];
|
|
546
573
|
energy_amount?: number | undefined;
|
|
547
574
|
proteins_amount?: number | undefined;
|
|
@@ -556,6 +583,8 @@ export declare const useMainStore: StoreDefinition<"mainLib", Pick<{
|
|
|
556
583
|
new_price: number;
|
|
557
584
|
openApiKey?: any;
|
|
558
585
|
show_recommendations: boolean;
|
|
586
|
+
adult?: boolean | undefined;
|
|
587
|
+
is_fake?: boolean | undefined;
|
|
559
588
|
}[], IProduct[] | {
|
|
560
589
|
id: string;
|
|
561
590
|
idSystem: string;
|
|
@@ -602,6 +631,7 @@ export declare const useMainStore: StoreDefinition<"mainLib", Pick<{
|
|
|
602
631
|
is_default: boolean;
|
|
603
632
|
price?: number | undefined;
|
|
604
633
|
} | null | undefined;
|
|
634
|
+
is_fake?: boolean | undefined;
|
|
605
635
|
}[];
|
|
606
636
|
group_modifiers: {
|
|
607
637
|
id: string;
|
|
@@ -639,7 +669,9 @@ export declare const useMainStore: StoreDefinition<"mainLib", Pick<{
|
|
|
639
669
|
is_default: boolean;
|
|
640
670
|
price?: number | undefined;
|
|
641
671
|
} | null | undefined;
|
|
672
|
+
is_fake?: boolean | undefined;
|
|
642
673
|
}[];
|
|
674
|
+
is_fake?: boolean | undefined;
|
|
643
675
|
}[];
|
|
644
676
|
energy_amount?: number | undefined;
|
|
645
677
|
proteins_amount?: number | undefined;
|
|
@@ -654,6 +686,8 @@ export declare const useMainStore: StoreDefinition<"mainLib", Pick<{
|
|
|
654
686
|
new_price: number;
|
|
655
687
|
openApiKey?: any;
|
|
656
688
|
show_recommendations: boolean;
|
|
689
|
+
adult?: boolean | undefined;
|
|
690
|
+
is_fake?: boolean | undefined;
|
|
657
691
|
}[]>;
|
|
658
692
|
activeScrolling_lib: Ref<HTMLElement[], HTMLElement[]>;
|
|
659
693
|
config_lib: Ref<any, any>;
|
|
@@ -675,6 +709,8 @@ export declare const useMainStore: StoreDefinition<"mainLib", Pick<{
|
|
|
675
709
|
kiosk_FirstTimeout: Ref<any, any>;
|
|
676
710
|
is_OpenLoyal: Ref<boolean, boolean>;
|
|
677
711
|
profile: Ref<any, any>;
|
|
712
|
+
is_18_above_content: Ref<boolean, boolean>;
|
|
713
|
+
is18Allowed: Ref<boolean, boolean>;
|
|
678
714
|
removeFromLocalStorage: (elements: any[]) => void;
|
|
679
715
|
setKioskTimeout: <H extends number | string>(timeout: H) => void;
|
|
680
716
|
setBonus: (value: number) => void;
|
package/dist/store/theme.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ export declare const useThemeStore: StoreDefinition<"themeLib", Pick<{
|
|
|
29
29
|
background: string;
|
|
30
30
|
backgroundColor: string;
|
|
31
31
|
} | null;
|
|
32
|
+
kiosk_inactivity_timeout: number | null;
|
|
32
33
|
kiosk_show_loyalty_card_button: boolean | null;
|
|
33
34
|
kiosk_show_loyalty_phone_input_button: boolean | null;
|
|
34
35
|
show_order_comment: boolean | null;
|
|
@@ -63,6 +64,7 @@ export declare const useThemeStore: StoreDefinition<"themeLib", Pick<{
|
|
|
63
64
|
background: string;
|
|
64
65
|
backgroundColor: string;
|
|
65
66
|
} | null;
|
|
67
|
+
kiosk_inactivity_timeout: number | null;
|
|
66
68
|
kiosk_show_loyalty_card_button: boolean | null;
|
|
67
69
|
kiosk_show_loyalty_phone_input_button: boolean | null;
|
|
68
70
|
show_order_comment: boolean | null;
|
|
@@ -98,6 +100,7 @@ export declare const useThemeStore: StoreDefinition<"themeLib", Pick<{
|
|
|
98
100
|
background: string;
|
|
99
101
|
backgroundColor: string;
|
|
100
102
|
} | null;
|
|
103
|
+
kiosk_inactivity_timeout: number | null;
|
|
101
104
|
kiosk_show_loyalty_card_button: boolean | null;
|
|
102
105
|
kiosk_show_loyalty_phone_input_button: boolean | null;
|
|
103
106
|
show_order_comment: boolean | null;
|
|
@@ -134,6 +137,7 @@ export declare const useThemeStore: StoreDefinition<"themeLib", Pick<{
|
|
|
134
137
|
background: string;
|
|
135
138
|
backgroundColor: string;
|
|
136
139
|
} | null;
|
|
140
|
+
kiosk_inactivity_timeout: number | null;
|
|
137
141
|
kiosk_show_loyalty_card_button: boolean | null;
|
|
138
142
|
kiosk_show_loyalty_phone_input_button: boolean | null;
|
|
139
143
|
show_order_comment: boolean | null;
|
|
@@ -168,6 +172,7 @@ export declare const useThemeStore: StoreDefinition<"themeLib", Pick<{
|
|
|
168
172
|
background: string;
|
|
169
173
|
backgroundColor: string;
|
|
170
174
|
} | null;
|
|
175
|
+
kiosk_inactivity_timeout: number | null;
|
|
171
176
|
kiosk_show_loyalty_card_button: boolean | null;
|
|
172
177
|
kiosk_show_loyalty_phone_input_button: boolean | null;
|
|
173
178
|
show_order_comment: boolean | null;
|
|
@@ -203,6 +208,7 @@ export declare const useThemeStore: StoreDefinition<"themeLib", Pick<{
|
|
|
203
208
|
background: string;
|
|
204
209
|
backgroundColor: string;
|
|
205
210
|
} | null;
|
|
211
|
+
kiosk_inactivity_timeout: number | null;
|
|
206
212
|
kiosk_show_loyalty_card_button: boolean | null;
|
|
207
213
|
kiosk_show_loyalty_phone_input_button: boolean | null;
|
|
208
214
|
show_order_comment: boolean | null;
|
|
@@ -239,6 +245,7 @@ export declare const useThemeStore: StoreDefinition<"themeLib", Pick<{
|
|
|
239
245
|
background: string;
|
|
240
246
|
backgroundColor: string;
|
|
241
247
|
} | null;
|
|
248
|
+
kiosk_inactivity_timeout: number | null;
|
|
242
249
|
kiosk_show_loyalty_card_button: boolean | null;
|
|
243
250
|
kiosk_show_loyalty_phone_input_button: boolean | null;
|
|
244
251
|
show_order_comment: boolean | null;
|
|
@@ -273,6 +280,7 @@ export declare const useThemeStore: StoreDefinition<"themeLib", Pick<{
|
|
|
273
280
|
background: string;
|
|
274
281
|
backgroundColor: string;
|
|
275
282
|
} | null;
|
|
283
|
+
kiosk_inactivity_timeout: number | null;
|
|
276
284
|
kiosk_show_loyalty_card_button: boolean | null;
|
|
277
285
|
kiosk_show_loyalty_phone_input_button: boolean | null;
|
|
278
286
|
show_order_comment: boolean | null;
|
|
@@ -308,6 +316,7 @@ export declare const useThemeStore: StoreDefinition<"themeLib", Pick<{
|
|
|
308
316
|
background: string;
|
|
309
317
|
backgroundColor: string;
|
|
310
318
|
} | null;
|
|
319
|
+
kiosk_inactivity_timeout: number | null;
|
|
311
320
|
kiosk_show_loyalty_card_button: boolean | null;
|
|
312
321
|
kiosk_show_loyalty_phone_input_button: boolean | null;
|
|
313
322
|
show_order_comment: boolean | null;
|
|
@@ -24,6 +24,8 @@ export interface IProduct {
|
|
|
24
24
|
new_price: number;
|
|
25
25
|
openApiKey?: any;
|
|
26
26
|
show_recommendations: boolean;
|
|
27
|
+
adult?: boolean;
|
|
28
|
+
is_fake?: boolean;
|
|
27
29
|
}
|
|
28
30
|
export interface IUpsell {
|
|
29
31
|
id: string;
|
|
@@ -83,6 +85,7 @@ export interface ISelectModifiers {
|
|
|
83
85
|
breakModifier?: boolean;
|
|
84
86
|
sizes: ISizes[];
|
|
85
87
|
size?: ISizes | null;
|
|
88
|
+
is_fake?: boolean;
|
|
86
89
|
}
|
|
87
90
|
export interface IGroupModifiers {
|
|
88
91
|
id: string;
|
|
@@ -94,6 +97,7 @@ export interface IGroupModifiers {
|
|
|
94
97
|
description: string;
|
|
95
98
|
image_link: null | string;
|
|
96
99
|
group_modifiers: ISelectModifiers[];
|
|
100
|
+
is_fake?: boolean;
|
|
97
101
|
}
|
|
98
102
|
export interface IGroupSelect extends IGroupModifiers {
|
|
99
103
|
index: number;
|
package/dist/types/iMain.d.ts
CHANGED
package/dist/types/iTheme.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ export interface ITheme {
|
|
|
22
22
|
kiosk_preloader: string | null;
|
|
23
23
|
organization: string;
|
|
24
24
|
gradientStyle: IGradient | null;
|
|
25
|
+
kiosk_inactivity_timeout: number | null;
|
|
25
26
|
kiosk_show_loyalty_card_button: boolean | null;
|
|
26
27
|
kiosk_show_loyalty_phone_input_button: boolean | null;
|
|
27
28
|
show_order_comment: boolean | null;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inno_user/inno_clouds_lib",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "8.2.
|
|
4
|
+
"version": "8.2.5",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
@@ -61,6 +61,7 @@
|
|
|
61
61
|
"pinia": "^3.0.3",
|
|
62
62
|
"qrious": "^4.0.2",
|
|
63
63
|
"tinycolor2": "^1.6.0",
|
|
64
|
+
"virtua": "^0.48.2",
|
|
64
65
|
"vue-router": "^4.5.1"
|
|
65
66
|
}
|
|
66
67
|
}
|