webc-miam 9.0.1 → 9.0.3
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/3rdpartylicenses.txt +15 -0
- package/interfaces/mealz-internal-interface.ts +10 -0
- package/main-es2015.js +1 -1
- package/main-es5.js +1 -1
- package/miam-style.css +1 -1
- package/package.json +1 -1
- package/webc-miam-de.js +1 -1
- package/webc-miam-en.js +1 -1
- package/webc-miam-es.js +1 -1
- package/webc-miam-fr.js +1 -1
- package/webc-miam-it.js +1 -1
- package/webc-miam-nl.js +1 -1
- package/webc-miam-pt.js +1 -1
- package/webc-miam-ro.js +1 -1
package/3rdpartylicenses.txt
CHANGED
|
@@ -489,6 +489,21 @@ Apache-2.0
|
|
|
489
489
|
|
|
490
490
|
|
|
491
491
|
|
|
492
|
+
tslib
|
|
493
|
+
0BSD
|
|
494
|
+
Copyright (c) Microsoft Corporation.
|
|
495
|
+
|
|
496
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
497
|
+
purpose with or without fee is hereby granted.
|
|
498
|
+
|
|
499
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
500
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
501
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
502
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
503
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
504
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
505
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
506
|
+
|
|
492
507
|
uuid
|
|
493
508
|
MIT
|
|
494
509
|
The MIT License (MIT)
|
|
@@ -37,6 +37,16 @@ export interface MealzInternalInterface {
|
|
|
37
37
|
*/
|
|
38
38
|
openPreferences: () => void;
|
|
39
39
|
|
|
40
|
+
/**
|
|
41
|
+
* Emits an observable that notifies subscribers when the preferences have changed
|
|
42
|
+
*/
|
|
43
|
+
preferencesModalChanged: () => Observable<void>;
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* returns an observable with the number of preferences set
|
|
47
|
+
*/
|
|
48
|
+
preferencesCount: () => Observable<number>;
|
|
49
|
+
|
|
40
50
|
loadMoreRecipes: (packageId: string, page: number, pageSize: number, guests: number) => Observable<Recipe[]>;
|
|
41
51
|
};
|
|
42
52
|
|