uni-oaview 1.0.26 → 1.0.28

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.
@@ -60,5 +60,6 @@
60
60
  <style lang="scss" scoped>
61
61
  .oa-page {
62
62
  position: relative;
63
+ width: 100vw;
63
64
  }
64
65
  </style>
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { App } from 'vue';
2
2
 
3
3
  declare const _default: {
4
- install: (app: App<Element>, options: any) => void;
4
+ install: (app: App<Element>) => void;
5
5
  };
6
6
 
7
7
  export { _default as default };
package/dist/index.umd.js CHANGED
@@ -22,7 +22,7 @@
22
22
  // #endif
23
23
  }
24
24
 
25
- var install = function install(app, options) {
25
+ var install = function install(app) {
26
26
  app.mixin({
27
27
  onLaunch: function onLaunch(params) {
28
28
  sendLaunchAppParamsLog(params);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uni-oaview",
3
- "version": "1.0.26",
3
+ "version": "1.0.28",
4
4
  "description": "uniapp小程序组件库",
5
5
  "main": "dist/index.umd.js",
6
6
  "typings": "dist/index.d.ts",
package/src/index.ts CHANGED
@@ -2,7 +2,7 @@ import { App } from 'vue';
2
2
 
3
3
  import { sendLaunchAppParamsLog } from './utils';
4
4
 
5
- const install = (app: App<Element>, options: any) => {
5
+ const install = (app: App<Element>) => {
6
6
  app.mixin({
7
7
  onLaunch(params: any) {
8
8
  sendLaunchAppParamsLog(params);