boka-human-cliend-v3 0.0.28 → 0.0.30

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.
@@ -486,6 +486,8 @@
486
486
  border: 1px solid #ccc;
487
487
  }
488
488
  .humanMainView.full {
489
+ padding-top: env(safe-area-inset-top);
490
+ /* 0 ~ 50px 不等,由系统决定 */
489
491
  width: 100vw!important;
490
492
  max-width: 100vw!important;
491
493
  height: 100vh!important;
@@ -5198,7 +5198,7 @@
5198
5198
  default: ""
5199
5199
  },
5200
5200
  fullScreen: {
5201
- type: Number,
5201
+ type: [Boolean, Number],
5202
5202
  default: 0
5203
5203
  }
5204
5204
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "boka-human-cliend-v3",
3
- "version": "0.0.28",
3
+ "version": "0.0.30",
4
4
  "main": "dist/boka-human-v3.umd.js",
5
5
  "scripts": {
6
6
  "dev": "vite",
package/src/demo/App.vue CHANGED
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <div id="app">
3
- <BokaHuman :token="'Bearer 5254e164ed5786d6a91eb2c1ba338069'" :product="'manageCenterPlus'" :sub-cust-type="''"/>
3
+ <BokaHuman :token="'Bearer de7c459a5964c3f36e459d65353a3efa'" :product="'manageCenterPlus'" :cust-type="'manageCenterPlus'" :sub-cust-type="'standard'" source="g8" :full-screen="1"/>
4
4
  </div>
5
5
  </template>
6
6
 
package/vite.config.js CHANGED
@@ -4,6 +4,9 @@ import vueDevTools from 'vite-plugin-vue-devtools'
4
4
 
5
5
  // https://vite.dev/config/
6
6
  export default defineConfig({
7
+ server: {
8
+ host: '0.0.0.0'
9
+ },
7
10
  plugins: [
8
11
  vue(),
9
12
  vueDevTools(),