@crystin001/theme-settings-lib 1.1.0 → 1.2.0
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/README.md +402 -401
- package/dist/settings-context.d.ts.map +1 -1
- package/dist/settings-context.js +5 -3
- package/dist/theme.d.ts +1 -1
- package/dist/theme.d.ts.map +1 -1
- package/dist/theme.js +580 -542
- package/package.json +69 -68
package/package.json
CHANGED
|
@@ -1,68 +1,69 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@crystin001/theme-settings-lib",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Reusable theme and settings library for mobile apps",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
7
|
-
"react-native": "dist/index.js",
|
|
8
|
-
"exports": {
|
|
9
|
-
".": {
|
|
10
|
-
"types": "./dist/index.d.ts",
|
|
11
|
-
"default": "./dist/index.js"
|
|
12
|
-
}
|
|
13
|
-
},
|
|
14
|
-
"files": [
|
|
15
|
-
"dist",
|
|
16
|
-
"README.md"
|
|
17
|
-
],
|
|
18
|
-
"scripts": {
|
|
19
|
-
"build": "tsc",
|
|
20
|
-
"prepare": "npm run build",
|
|
21
|
-
"prepublishOnly": "npm run build",
|
|
22
|
-
"test": "echo \"Error: no test specified\" && exit 1",
|
|
23
|
-
"start": "cd example-app && npm start",
|
|
24
|
-
"app:install": "cd example-app && npm install",
|
|
25
|
-
"app:start": "cd example-app && npm start",
|
|
26
|
-
"app:ios": "cd example-app && npm run ios",
|
|
27
|
-
"app:android": "cd example-app && npm run android"
|
|
28
|
-
},
|
|
29
|
-
"keywords": [
|
|
30
|
-
"theme",
|
|
31
|
-
"settings",
|
|
32
|
-
"i18n",
|
|
33
|
-
"react-native",
|
|
34
|
-
"expo"
|
|
35
|
-
],
|
|
36
|
-
"author": "",
|
|
37
|
-
"license": "MIT",
|
|
38
|
-
"repository": {
|
|
39
|
-
"type": "git",
|
|
40
|
-
"url": "https://github.com/trial-and-code/theme-settings-lib.git"
|
|
41
|
-
},
|
|
42
|
-
"peerDependencies": {
|
|
43
|
-
"@react-native-async-storage/async-storage": "~2.2.0",
|
|
44
|
-
"color": "^4.2.3",
|
|
45
|
-
"expo-localization": "~17.0.0",
|
|
46
|
-
"i18next": "^23.11.5",
|
|
47
|
-
"react": "*",
|
|
48
|
-
"react-i18next": "^15.1.1",
|
|
49
|
-
"react-native": "*"
|
|
50
|
-
},
|
|
51
|
-
"peerDependenciesMeta": {
|
|
52
|
-
"color": {
|
|
53
|
-
"optional": true
|
|
54
|
-
}
|
|
55
|
-
},
|
|
56
|
-
"devDependencies": {
|
|
57
|
-
"@react-native-async-storage/async-storage": "~2.2.0",
|
|
58
|
-
"@types/color": "^3.0.0",
|
|
59
|
-
"@types/react": "^19.0.0",
|
|
60
|
-
"color": "^4.2.3",
|
|
61
|
-
"expo-localization": "~17.0.0",
|
|
62
|
-
"i18next": "^23.11.5",
|
|
63
|
-
"react": "*",
|
|
64
|
-
"react-i18next": "^15.1.1",
|
|
65
|
-
"react-native": "*",
|
|
66
|
-
"typescript": "^5.0.0"
|
|
67
|
-
}
|
|
68
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@crystin001/theme-settings-lib",
|
|
3
|
+
"version": "1.2.0",
|
|
4
|
+
"description": "Reusable theme and settings library for mobile apps",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"react-native": "dist/index.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"default": "./dist/index.js"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"dist",
|
|
16
|
+
"README.md"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "tsc",
|
|
20
|
+
"prepare": "npm run build",
|
|
21
|
+
"prepublishOnly": "npm run build",
|
|
22
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
23
|
+
"start": "cd example-app && npm start",
|
|
24
|
+
"app:install": "cd example-app && npm install",
|
|
25
|
+
"app:start": "cd example-app && npm start",
|
|
26
|
+
"app:ios": "cd example-app && npm run ios",
|
|
27
|
+
"app:android": "cd example-app && npm run android"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"theme",
|
|
31
|
+
"settings",
|
|
32
|
+
"i18n",
|
|
33
|
+
"react-native",
|
|
34
|
+
"expo"
|
|
35
|
+
],
|
|
36
|
+
"author": "",
|
|
37
|
+
"license": "MIT",
|
|
38
|
+
"repository": {
|
|
39
|
+
"type": "git",
|
|
40
|
+
"url": "https://github.com/trial-and-code/theme-settings-lib.git"
|
|
41
|
+
},
|
|
42
|
+
"peerDependencies": {
|
|
43
|
+
"@react-native-async-storage/async-storage": "~2.2.0",
|
|
44
|
+
"color": "^4.2.3",
|
|
45
|
+
"expo-localization": "~17.0.0",
|
|
46
|
+
"i18next": "^23.11.5",
|
|
47
|
+
"react": "*",
|
|
48
|
+
"react-i18next": "^15.1.1",
|
|
49
|
+
"react-native": "*"
|
|
50
|
+
},
|
|
51
|
+
"peerDependenciesMeta": {
|
|
52
|
+
"color": {
|
|
53
|
+
"optional": true
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@react-native-async-storage/async-storage": "~2.2.0",
|
|
58
|
+
"@types/color": "^3.0.0",
|
|
59
|
+
"@types/react": "^19.0.0",
|
|
60
|
+
"color": "^4.2.3",
|
|
61
|
+
"expo-localization": "~17.0.0",
|
|
62
|
+
"i18next": "^23.11.5",
|
|
63
|
+
"react": "*",
|
|
64
|
+
"react-i18next": "^15.1.1",
|
|
65
|
+
"react-native": "*",
|
|
66
|
+
"typescript": "^5.0.0"
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|