forked from openhab/openhab-webui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathframework7+7.1.5.patch
More file actions
54 lines (54 loc) · 2.04 KB
/
framework7+7.1.5.patch
File metadata and controls
54 lines (54 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
diff --git a/node_modules/framework7/package.json b/node_modules/framework7/package.json
index f607800..24e6369 100644
--- a/node_modules/framework7/package.json
+++ b/node_modules/framework7/package.json
@@ -4,12 +4,30 @@
"description": "Full featured mobile HTML framework for building iOS & Android apps",
"type": "module",
"exports": {
- ".": "./framework7.esm.js",
- "./core": "./framework7.esm.js",
- "./bundle": "./framework7-bundle.esm.js",
- "./lite": "./framework7-lite.esm.js",
- "./lite/bundle": "./framework7-lite-bundle.esm.js",
- "./lite-bundle": "./framework7-lite-bundle.esm.js",
+ ".": {
+ "default": "./framework7.esm.js",
+ "types": "./framework7-types.d.ts"
+ },
+ "./core": {
+ "default": "./framework7.esm.js",
+ "types": "./framework7-types.d.ts"
+ },
+ "./bundle": {
+ "default": "./framework7-bundle.esm.js",
+ "types": "./framework7-types.d.ts"
+ },
+ "./lite": {
+ "default": "./framework7-lite.esm.js",
+ "types": "./framework7-types.d.ts"
+ },
+ "./lite/bundle": {
+ "default": "./framework7-lite-bundle.esm.js",
+ "types": "./framework7-types.d.ts"
+ },
+ "./lite-bundle": {
+ "default": "./framework7-lite-bundle.esm.js",
+ "types": "./framework7-types.d.ts"
+ },
"./less": "./framework7.less",
"./less/bundle": "./framework7-bundle.less",
"./css": "./framework7.css",
diff --git a/node_modules/framework7/shared/utils.d.ts b/node_modules/framework7/shared/utils.d.ts
index c88ac4c..e29088b 100644
--- a/node_modules/framework7/shared/utils.d.ts
+++ b/node_modules/framework7/shared/utils.d.ts
@@ -66,7 +66,7 @@ export interface Utils {
/** Returns unique number, increased by 1 with every call */
uniqueNumber: () => number;
/** Generates random ID-like string */
- id: (mask: string, map: string) => string;
+ id: (mask?: string, map?: string) => string;
/** Returns preloader inner content for MD theme */
mdPreloaderContent: () => string;
/** Returns preloader inner content for iOS theme */