@inno_user/inno_clouds_lib 9.6.0 → 9.6.2
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 +5758 -5732
- package/dist/@inno_user/inno_clouds_lib.umd.js +17 -17
- package/dist/components/SystemNotification/SystemNotification.vue.d.ts +5 -0
- package/dist/index.d.ts +2 -1
- package/dist/store/theme.d.ts +9 -0
- package/dist/types/iTheme.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
3
|
+
el: HTMLDivElement;
|
|
4
|
+
}, any>;
|
|
5
|
+
export default _default;
|
package/dist/index.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ import { BottomSheet } from './ui/bottomSheet';
|
|
|
34
34
|
import { VList, Virtualizer } from 'virtua/vue';
|
|
35
35
|
import { default as QrcodeVue } from 'qrcode.vue';
|
|
36
36
|
import { default as OrderBox } from './components/OrderBox/OrderBox.vue';
|
|
37
|
+
import { default as SystemNotification } from './components/SystemNotification/SystemNotification.vue';
|
|
37
38
|
import { useMainStore as useMainLibStore } from './store/main';
|
|
38
39
|
import { useCardStore as useCardLibStore } from './store/card';
|
|
39
40
|
import { useCartStore as useCartLibStore } from './store/cart';
|
|
@@ -57,5 +58,5 @@ useModal, useVirtuaLoop, usePdf,
|
|
|
57
58
|
/** Utils */
|
|
58
59
|
preventZoom, isNetworkError, parseTheme, getCachedGroup, getCachedProduct, clearAllProductDB, clearLocalStorage, PricePrerender,
|
|
59
60
|
/** Components */
|
|
60
|
-
OrderBox, VList, Virtualizer, FallingHearts, QrcodeVue, };
|
|
61
|
+
OrderBox, VList, Virtualizer, FallingHearts, QrcodeVue, SystemNotification, };
|
|
61
62
|
export type { ICallStaffRequest, PreventZoomConfig };
|
package/dist/store/theme.d.ts
CHANGED
|
@@ -52,6 +52,7 @@ export declare const useThemeStore: StoreDefinition<"themeLib", Pick<{
|
|
|
52
52
|
size_picker_unselected_font_size: number | null;
|
|
53
53
|
size_picker_selected_font_size: number | null;
|
|
54
54
|
hide_discounts_calculate_button: boolean;
|
|
55
|
+
system_notification_text: string | null;
|
|
55
56
|
comments: {
|
|
56
57
|
kiosk_comment_field_name?: string | undefined;
|
|
57
58
|
kiosk_comment_field_placeholder?: string | undefined;
|
|
@@ -124,6 +125,7 @@ export declare const useThemeStore: StoreDefinition<"themeLib", Pick<{
|
|
|
124
125
|
size_picker_unselected_font_size: number | null;
|
|
125
126
|
size_picker_selected_font_size: number | null;
|
|
126
127
|
hide_discounts_calculate_button: boolean;
|
|
128
|
+
system_notification_text: string | null;
|
|
127
129
|
comments: {
|
|
128
130
|
kiosk_comment_field_name?: string | undefined;
|
|
129
131
|
kiosk_comment_field_placeholder?: string | undefined;
|
|
@@ -197,6 +199,7 @@ export declare const useThemeStore: StoreDefinition<"themeLib", Pick<{
|
|
|
197
199
|
size_picker_unselected_font_size: number | null;
|
|
198
200
|
size_picker_selected_font_size: number | null;
|
|
199
201
|
hide_discounts_calculate_button: boolean;
|
|
202
|
+
system_notification_text: string | null;
|
|
200
203
|
comments: {
|
|
201
204
|
kiosk_comment_field_name?: string | undefined;
|
|
202
205
|
kiosk_comment_field_placeholder?: string | undefined;
|
|
@@ -271,6 +274,7 @@ export declare const useThemeStore: StoreDefinition<"themeLib", Pick<{
|
|
|
271
274
|
size_picker_unselected_font_size: number | null;
|
|
272
275
|
size_picker_selected_font_size: number | null;
|
|
273
276
|
hide_discounts_calculate_button: boolean;
|
|
277
|
+
system_notification_text: string | null;
|
|
274
278
|
comments: {
|
|
275
279
|
kiosk_comment_field_name?: string | undefined;
|
|
276
280
|
kiosk_comment_field_placeholder?: string | undefined;
|
|
@@ -343,6 +347,7 @@ export declare const useThemeStore: StoreDefinition<"themeLib", Pick<{
|
|
|
343
347
|
size_picker_unselected_font_size: number | null;
|
|
344
348
|
size_picker_selected_font_size: number | null;
|
|
345
349
|
hide_discounts_calculate_button: boolean;
|
|
350
|
+
system_notification_text: string | null;
|
|
346
351
|
comments: {
|
|
347
352
|
kiosk_comment_field_name?: string | undefined;
|
|
348
353
|
kiosk_comment_field_placeholder?: string | undefined;
|
|
@@ -416,6 +421,7 @@ export declare const useThemeStore: StoreDefinition<"themeLib", Pick<{
|
|
|
416
421
|
size_picker_unselected_font_size: number | null;
|
|
417
422
|
size_picker_selected_font_size: number | null;
|
|
418
423
|
hide_discounts_calculate_button: boolean;
|
|
424
|
+
system_notification_text: string | null;
|
|
419
425
|
comments: {
|
|
420
426
|
kiosk_comment_field_name?: string | undefined;
|
|
421
427
|
kiosk_comment_field_placeholder?: string | undefined;
|
|
@@ -490,6 +496,7 @@ export declare const useThemeStore: StoreDefinition<"themeLib", Pick<{
|
|
|
490
496
|
size_picker_unselected_font_size: number | null;
|
|
491
497
|
size_picker_selected_font_size: number | null;
|
|
492
498
|
hide_discounts_calculate_button: boolean;
|
|
499
|
+
system_notification_text: string | null;
|
|
493
500
|
comments: {
|
|
494
501
|
kiosk_comment_field_name?: string | undefined;
|
|
495
502
|
kiosk_comment_field_placeholder?: string | undefined;
|
|
@@ -562,6 +569,7 @@ export declare const useThemeStore: StoreDefinition<"themeLib", Pick<{
|
|
|
562
569
|
size_picker_unselected_font_size: number | null;
|
|
563
570
|
size_picker_selected_font_size: number | null;
|
|
564
571
|
hide_discounts_calculate_button: boolean;
|
|
572
|
+
system_notification_text: string | null;
|
|
565
573
|
comments: {
|
|
566
574
|
kiosk_comment_field_name?: string | undefined;
|
|
567
575
|
kiosk_comment_field_placeholder?: string | undefined;
|
|
@@ -635,6 +643,7 @@ export declare const useThemeStore: StoreDefinition<"themeLib", Pick<{
|
|
|
635
643
|
size_picker_unselected_font_size: number | null;
|
|
636
644
|
size_picker_selected_font_size: number | null;
|
|
637
645
|
hide_discounts_calculate_button: boolean;
|
|
646
|
+
system_notification_text: string | null;
|
|
638
647
|
comments: {
|
|
639
648
|
kiosk_comment_field_name?: string | undefined;
|
|
640
649
|
kiosk_comment_field_placeholder?: string | undefined;
|
package/dist/types/iTheme.d.ts
CHANGED
|
@@ -42,6 +42,7 @@ export interface ITheme {
|
|
|
42
42
|
size_picker_unselected_font_size: number | null;
|
|
43
43
|
size_picker_selected_font_size: number | null;
|
|
44
44
|
hide_discounts_calculate_button: boolean;
|
|
45
|
+
system_notification_text: string | null;
|
|
45
46
|
comments: IComment | null;
|
|
46
47
|
enable_sequential_modifiers: boolean | null;
|
|
47
48
|
pdf_return_url: boolean | null;
|