@baic/yolk-cli 2.1.0-alpha.213 → 2.1.0-alpha.214

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.
Files changed (63) hide show
  1. package/es/yolk.js +1 -1
  2. package/lib/yolk.js +1 -1
  3. package/package.json +3 -4
  4. package/templates/umi-mobile-uni-app/.eslintrc.js +7 -0
  5. package/templates/umi-mobile-uni-app/.gitignore.tpl +37 -0
  6. package/templates/umi-mobile-uni-app/.npmrc.tpl +2 -0
  7. package/templates/umi-mobile-uni-app/.prettierignore +12 -0
  8. package/templates/umi-mobile-uni-app/.prettierrc.js +1 -0
  9. package/templates/umi-mobile-uni-app/.stylelintrc +3 -0
  10. package/templates/umi-mobile-uni-app/.umirc.ts.tpl +7 -0
  11. package/templates/umi-mobile-uni-app/LICENSE +21 -0
  12. package/templates/umi-mobile-uni-app/README.md.tpl +34 -0
  13. package/templates/umi-mobile-uni-app/package.json.tpl +16 -0
  14. package/templates/umi-mobile-uni-app/public/favicon.ico +0 -0
  15. package/templates/umi-mobile-uni-app/src/app.tsx +19 -0
  16. package/templates/umi-mobile-uni-app/src/common/request.ts +3 -0
  17. package/templates/umi-mobile-uni-app/src/common/util.ts +7 -0
  18. package/templates/umi-mobile-uni-app/src/components/index.ts +0 -0
  19. package/templates/umi-mobile-uni-app/src/global.less +3 -0
  20. package/templates/umi-mobile-uni-app/src/layouts/index.tsx +3 -0
  21. package/templates/umi-mobile-uni-app/src/pages/404.tsx +9 -0
  22. package/templates/umi-mobile-uni-app/src/pages/demo/examples/BarCode.tsx +3 -0
  23. package/templates/umi-mobile-uni-app/src/pages/demo/examples/Iconfont.tsx +17 -0
  24. package/templates/umi-mobile-uni-app/src/pages/demo/examples/Input.tsx +15 -0
  25. package/templates/umi-mobile-uni-app/src/pages/demo/examples/List/1.tsx +11 -0
  26. package/templates/umi-mobile-uni-app/src/pages/demo/examples/List/2.tsx +29 -0
  27. package/templates/umi-mobile-uni-app/src/pages/demo/examples/List/3.tsx +29 -0
  28. package/templates/umi-mobile-uni-app/src/pages/demo/examples/List/4.tsx +54 -0
  29. package/templates/umi-mobile-uni-app/src/pages/demo/examples/List/mock.ts +30 -0
  30. package/templates/umi-mobile-uni-app/src/pages/demo/examples/Loading.tsx +11 -0
  31. package/templates/umi-mobile-uni-app/src/pages/demo/examples/NumberInput/1.tsx +15 -0
  32. package/templates/umi-mobile-uni-app/src/pages/demo/examples/NumberInput/2.tsx +15 -0
  33. package/templates/umi-mobile-uni-app/src/pages/demo/examples/NumberInput/3.tsx +15 -0
  34. package/templates/umi-mobile-uni-app/src/pages/demo/examples/NumberInput/4.tsx +15 -0
  35. package/templates/umi-mobile-uni-app/src/pages/demo/examples/PagingList/1.tsx +5 -0
  36. package/templates/umi-mobile-uni-app/src/pages/demo/examples/QrCode.tsx +3 -0
  37. package/templates/umi-mobile-uni-app/src/pages/demo/examples/Required.tsx +3 -0
  38. package/templates/umi-mobile-uni-app/src/pages/demo/examples/TimerButton.tsx +3 -0
  39. package/templates/umi-mobile-uni-app/src/pages/demo/examples/usePreload.tsx +9 -0
  40. package/templates/umi-mobile-uni-app/src/pages/demo/index.tsx +87 -0
  41. package/templates/umi-mobile-uni-app/src/pages/index.tsx +1 -0
  42. package/templates/umi-mobile-uni-app/src/types/user.d.ts +3 -0
  43. package/templates/umi-mobile-uni-app/tsconfig.json +3 -0
  44. package/templates/umi-mobile-uni-app/typings.d.ts +1 -0
  45. package/templates/umi-mobile-uni-app/uni-app/AndroidManifest.xml +8 -0
  46. package/templates/umi-mobile-uni-app/uni-app/App.vue +28 -0
  47. package/templates/umi-mobile-uni-app/uni-app/androidPrivacy.json +22 -0
  48. package/templates/umi-mobile-uni-app/uni-app/assets/apple-app-site-association +11 -0
  49. package/templates/umi-mobile-uni-app/uni-app/common/constants.ts +5 -0
  50. package/templates/umi-mobile-uni-app/uni-app/common/request.ts +118 -0
  51. package/templates/umi-mobile-uni-app/uni-app/common/util.ts +27 -0
  52. package/templates/umi-mobile-uni-app/uni-app/components/webview/webview.vue +61 -0
  53. package/templates/umi-mobile-uni-app/uni-app/hybrid/html/error.html +24 -0
  54. package/templates/umi-mobile-uni-app/uni-app/images/index.ts +2 -0
  55. package/templates/umi-mobile-uni-app/uni-app/index.html +20 -0
  56. package/templates/umi-mobile-uni-app/uni-app/info.plist +6 -0
  57. package/templates/umi-mobile-uni-app/uni-app/main.js +22 -0
  58. package/templates/umi-mobile-uni-app/uni-app/manifest.json +207 -0
  59. package/templates/umi-mobile-uni-app/uni-app/pages/index/index.vue +17 -0
  60. package/templates/umi-mobile-uni-app/uni-app/pages/webview/index.vue +19 -0
  61. package/templates/umi-mobile-uni-app/uni-app/pages.json +22 -0
  62. package/templates/umi-mobile-uni-app/uni-app/uni.promisify.adaptor.js +16 -0
  63. package/templates/umi-mobile-uni-app/uni-app/uni.scss +76 -0
@@ -0,0 +1,207 @@
1
+ {
2
+ "name": "xxx",
3
+ "appid": "xxx",
4
+ "description": "xxx",
5
+ "versionName": "1.0.0",
6
+ "versionCode": 100,
7
+ /* 5+App特有相关 */
8
+ "app-plus": {
9
+ "allowsInlineMediaPlayback": "true",
10
+ "mediaPlaybackRequiresUserAction": "false",
11
+ "screenOrientation": ["portrait-primary"],
12
+ "confusion": {
13
+ "description": "NVUE原生混淆",
14
+ "resources": {
15
+ }
16
+ },
17
+ "safearea": {
18
+ "bottom": {
19
+ "offset": "none"
20
+ }
21
+ },
22
+ "usingComponents": true,
23
+ "nvueStyleCompiler": "uni-app",
24
+ "compilerVersion": 3,
25
+ "splashscreen": {
26
+ "alwaysShowBeforeRender": false,
27
+ "waiting": false,
28
+ "autoclose": false,
29
+ "delay": 0
30
+ },
31
+ /* 模块配置 */
32
+ "modules": {
33
+ "Webview-x5": {}
34
+ },
35
+ /* 应用发布信息 */
36
+ "distribute": {
37
+ /* android打包配置 */
38
+ "android": {
39
+ "permissions": [
40
+ "<uses-feature android:name=\"android.hardware.camera\"/>",
41
+ "<uses-feature android:name=\"android.hardware.camera.autofocus\"/>",
42
+ "<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>",
43
+ "<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>",
44
+ "<uses-permission android:name=\"android.permission.CALL_PHONE\"/>",
45
+ "<uses-permission android:name=\"android.permission.CAMERA\"/>",
46
+ "<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>",
47
+ "<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>",
48
+ "<uses-permission android:name=\"android.permission.MODIFY_AUDIO_SETTINGS\"/>",
49
+ "<uses-permission android:name=\"android.permission.READ_LOGS\"/>",
50
+ "<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>",
51
+ "<uses-permission android:name=\"android.permission.RECEIVE_BOOT_COMPLETED\"/>",
52
+ "<uses-permission android:name=\"android.permission.RECEIVE_USER_PRESENT\"/>"
53
+ ],
54
+ "abiFilters": ["armeabi-v7a", "arm64-v8a"],
55
+ "minSdkVersion": 21,
56
+ "schemes": "",
57
+ "targetSdkVersion": 30
58
+ },
59
+ /* ios打包配置 */
60
+ "ios": {
61
+ "idfa": false,
62
+ "dSYMs": false,
63
+ "urltypes": "",
64
+ "capabilities": {
65
+ "entitlements": {
66
+ "com.apple.developer.associated-domains": [""]
67
+ }
68
+ },
69
+ "CFBundleName": "",
70
+ "deploymentTarget": "12.2",
71
+ "privacyDescription": {
72
+ }
73
+ },
74
+ "splashscreen": {
75
+ "useOriginalMsgbox": true,
76
+ "androidStyle": "default",
77
+ "iosStyle": "storyboard",
78
+ "android": {
79
+ "hdpi": "assets/storyboard/dc_launchscreen_portrait_background@1x.png",
80
+ "xhdpi": "assets/storyboard/dc_launchscreen_portrait_background@2x.png",
81
+ "xxhdpi": "assets/storyboard/dc_launchscreen_portrait_background@3x.png"
82
+ },
83
+ "ios": {
84
+ "storyboard": "assets/storyboard.zip"
85
+ }
86
+ },
87
+ "icons": {
88
+ "android": {
89
+ "hdpi": "unpackage/res/icons/72x72.png",
90
+ "xhdpi": "unpackage/res/icons/96x96.png",
91
+ "xxhdpi": "unpackage/res/icons/144x144.png",
92
+ "xxxhdpi": "unpackage/res/icons/192x192.png"
93
+ },
94
+ "ios": {
95
+ "appstore": "unpackage/res/icons/1024x1024.png",
96
+ "ipad": {
97
+ "app": "unpackage/res/icons/76x76.png",
98
+ "app@2x": "unpackage/res/icons/152x152.png",
99
+ "notification": "unpackage/res/icons/20x20.png",
100
+ "notification@2x": "unpackage/res/icons/40x40.png",
101
+ "proapp@2x": "unpackage/res/icons/167x167.png",
102
+ "settings": "unpackage/res/icons/29x29.png",
103
+ "settings@2x": "unpackage/res/icons/58x58.png",
104
+ "spotlight": "unpackage/res/icons/40x40.png",
105
+ "spotlight@2x": "unpackage/res/icons/80x80.png"
106
+ },
107
+ "iphone": {
108
+ "app@2x": "unpackage/res/icons/120x120.png",
109
+ "app@3x": "unpackage/res/icons/180x180.png",
110
+ "notification@2x": "unpackage/res/icons/40x40.png",
111
+ "notification@3x": "unpackage/res/icons/60x60.png",
112
+ "settings@2x": "unpackage/res/icons/58x58.png",
113
+ "settings@3x": "unpackage/res/icons/87x87.png",
114
+ "spotlight@2x": "unpackage/res/icons/80x80.png",
115
+ "spotlight@3x": "unpackage/res/icons/120x120.png"
116
+ }
117
+ }
118
+ }
119
+ },
120
+ "nvueCompiler": "uni-app",
121
+ "uniStatistics": {
122
+ "enable": true
123
+ },
124
+ "error" : {
125
+ "url" : "hybrid/html/error.html"
126
+ },
127
+ "nvueLaunchMode": ""
128
+ },
129
+ /* 快应用特有相关 */
130
+ "quickapp": {},
131
+ /* 小程序特有相关 */
132
+ "mp-weixin": {
133
+ "appid": "",
134
+ "setting": {
135
+ "urlCheck": false
136
+ },
137
+ "usingComponents": true,
138
+ "uniStatistics": {
139
+ "enable": true
140
+ }
141
+ },
142
+ "mp-alipay": {
143
+ "usingComponents": true,
144
+ "uniStatistics": {
145
+ "enable": true
146
+ }
147
+ },
148
+ "mp-baidu": {
149
+ "usingComponents": true,
150
+ "uniStatistics": {
151
+ "enable": true
152
+ }
153
+ },
154
+ "mp-toutiao": {
155
+ "usingComponents": true,
156
+ "uniStatistics": {
157
+ "enable": true
158
+ }
159
+ },
160
+ "uniStatistics": {
161
+ "enable": true,
162
+ "version": "1"
163
+ },
164
+ "vueVersion": "3",
165
+ "fallbackLocale": "zh-Hans",
166
+ "locale": "zh-Hans",
167
+ "h5": {
168
+ "optimization": {
169
+ "treeShaking": {
170
+ "enable": true
171
+ }
172
+ },
173
+ "uniStatistics": {
174
+ "enable": true
175
+ }
176
+ },
177
+ "mp-jd": {
178
+ "uniStatistics": {
179
+ "enable": true
180
+ }
181
+ },
182
+ "mp-kuaishou": {
183
+ "uniStatistics": {
184
+ "enable": true
185
+ }
186
+ },
187
+ "mp-lark": {
188
+ "uniStatistics": {
189
+ "enable": true
190
+ }
191
+ },
192
+ "mp-qq": {
193
+ "uniStatistics": {
194
+ "enable": true
195
+ }
196
+ },
197
+ "quickapp-webview-huawei": {
198
+ "uniStatistics": {
199
+ "enable": true
200
+ }
201
+ },
202
+ "quickapp-webview-union": {
203
+ "uniStatistics": {
204
+ "enable": true
205
+ }
206
+ }
207
+ }
@@ -0,0 +1,17 @@
1
+ <style scoped lang="scss">
2
+ </style>
3
+ <template>
4
+ </template>
5
+
6
+ <script lang="ts">
7
+
8
+ export default {
9
+ data() : {
10
+ } {
11
+ return {
12
+ }
13
+ },
14
+ methods: {
15
+ }
16
+ }
17
+ </script>
@@ -0,0 +1,19 @@
1
+ <style scoped lang="scss">
2
+ </style>
3
+ <template>
4
+ <webview ref="webview" :url="url" />
5
+ </template>
6
+
7
+ <script lang="ts">
8
+ export default {
9
+ data() : {
10
+ url ?: string;
11
+ } {
12
+ return {
13
+ };
14
+ },
15
+ async onLoad({ url }) {
16
+ this.url = decodeURIComponent(url || '');
17
+ },
18
+ }
19
+ </script>
@@ -0,0 +1,22 @@
1
+ {
2
+ "pages": [
3
+ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
4
+ {
5
+ "path": "pages/index/index"
6
+ },
7
+ {
8
+ "path": "pages/webview/index"
9
+ }
10
+ ],
11
+ "globalStyle": {
12
+ "navigationBarTextStyle": "white",
13
+ "navigationBarTitleText": "xxx",
14
+ "backgroundColor": "#FFFFFF",
15
+ "dynamicRpx": true,
16
+ "app-plus": {
17
+ "scrollIndicator": "none",
18
+ "background": "#FFFFFF",
19
+ "softinputNavBar": "auto"
20
+ }
21
+ }
22
+ }
@@ -0,0 +1,16 @@
1
+ uni.addInterceptor({
2
+ returnValue(res) {
3
+ if (
4
+ !(
5
+ !!res &&
6
+ (typeof res === 'object' || typeof res === 'function') &&
7
+ typeof res.then === 'function'
8
+ )
9
+ ) {
10
+ return res;
11
+ }
12
+ return new Promise((resolve, reject) => {
13
+ res.then((res) => (res[0] ? reject(res[0]) : resolve(res[1])));
14
+ });
15
+ },
16
+ });
@@ -0,0 +1,76 @@
1
+ /**
2
+ * 这里是uni-app内置的常用样式变量
3
+ *
4
+ * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
5
+ * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
6
+ *
7
+ */
8
+
9
+ /**
10
+ * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
11
+ *
12
+ * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
13
+ */
14
+
15
+ /* 颜色变量 */
16
+
17
+ /* 行为相关颜色 */
18
+ $uni-color-primary: #007aff;
19
+ $uni-color-success: #4cd964;
20
+ $uni-color-warning: #f0ad4e;
21
+ $uni-color-error: #dd524d;
22
+
23
+ /* 文字基本颜色 */
24
+ $uni-text-color: #333; //基本色
25
+ $uni-text-color-inverse: #fff; //反色
26
+ $uni-text-color-grey: #999; //辅助灰色,如加载更多的提示信息
27
+ $uni-text-color-placeholder: #808080;
28
+ $uni-text-color-disable: #c0c0c0;
29
+
30
+ /* 背景颜色 */
31
+ $uni-bg-color: #fff;
32
+ $uni-bg-color-grey: #f8f8f8;
33
+ $uni-bg-color-hover: #f1f1f1; //点击状态颜色
34
+ $uni-bg-color-mask: rgba(0, 0, 0, 40%); //遮罩颜色
35
+
36
+ /* 边框颜色 */
37
+ $uni-border-color: #c8c7cc;
38
+
39
+ /* 尺寸变量 */
40
+
41
+ /* 文字尺寸 */
42
+ $uni-font-size-sm: 12px;
43
+ $uni-font-size-base: 14px;
44
+ $uni-font-size-lg: 16;
45
+
46
+ /* 图片尺寸 */
47
+ $uni-img-size-sm: 20px;
48
+ $uni-img-size-base: 26px;
49
+ $uni-img-size-lg: 40px;
50
+
51
+ /* Border Radius */
52
+ $uni-border-radius-sm: 2px;
53
+ $uni-border-radius-base: 3px;
54
+ $uni-border-radius-lg: 6px;
55
+ $uni-border-radius-circle: 50%;
56
+
57
+ /* 水平间距 */
58
+ $uni-spacing-row-sm: 5px;
59
+ $uni-spacing-row-base: 10px;
60
+ $uni-spacing-row-lg: 15px;
61
+
62
+ /* 垂直间距 */
63
+ $uni-spacing-col-sm: 4px;
64
+ $uni-spacing-col-base: 8px;
65
+ $uni-spacing-col-lg: 12px;
66
+
67
+ /* 透明度 */
68
+ $uni-opacity-disabled: 0.3; // 组件禁用态的透明度
69
+
70
+ /* 文章场景相关 */
71
+ $uni-color-title: #2c405a; // 文章标题颜色
72
+ $uni-font-size-title: 20px;
73
+ $uni-color-subtitle: #555; // 二级标题颜色
74
+ $uni-font-size-subtitle: 26px;
75
+ $uni-color-paragraph: #3f536e; // 文章段落颜色
76
+ $uni-font-size-paragraph: 15px;