@ibti-tech/chatbot 0.9.7 → 0.9.8

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/dist/index.d.ts CHANGED
@@ -128,7 +128,7 @@ declare module '@ibti-tech/chatbot/components/ChatbotBar/styles' {
128
128
  //# sourceMappingURL=styles.d.ts.map
129
129
  }
130
130
  declare module '@ibti-tech/chatbot/components/ChatbotBar/styles.d.ts' {
131
- {"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../../home/runner/work/ibti-chatbot/ibti-chatbot/src/components/ChatbotBar/styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAW,MAAM,eAAe,CAAA;AAIpD,eAAO,MAAM,YAAY;;oBAEgB,kBAAmB;;yBADrC,MAAM,GAAG,OAAO;gCACT,MAAM,GAAG,OAAO,GAAG,QAAQ,GAAG,MAAM;aACvD,OAAO;uBACG,KAAK,GAAG,QAAQ;uBAChB,OAAO;iMA4E3B,CAAA;AAED,2GAA2G;AAC3G,eAAO,MAAM,WAAW;iBAA6B,MAAM;gBAAc,MAAM;YAS9E,CAAA;AAED,eAAO,MAAM,OAAO;uBACC,KAAK,GAAG,QAAQ;yBACd,MAAM,GAAG,OAAO;aAC5B,OAAO;cACN,MAAM;iBACH,MAAM,GAAG,MAAM;mBACb,OAAO;uBACH,OAAO;gCACE,MAAM;YA6InC,CAAA"}
131
+ {"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../../home/runner/work/ibti-chatbot/ibti-chatbot/src/components/ChatbotBar/styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAW,MAAM,eAAe,CAAA;AAIpD,eAAO,MAAM,YAAY;;oBAEgB,kBAAmB;;yBADrC,MAAM,GAAG,OAAO;gCACT,MAAM,GAAG,OAAO,GAAG,QAAQ,GAAG,MAAM;aACvD,OAAO;uBACG,KAAK,GAAG,QAAQ;uBAChB,OAAO;iMA4E3B,CAAA;AAED,2GAA2G;AAC3G,eAAO,MAAM,WAAW;iBAA6B,MAAM;gBAAc,MAAM;YAS9E,CAAA;AAED,eAAO,MAAM,OAAO;uBACC,KAAK,GAAG,QAAQ;yBACd,MAAM,GAAG,OAAO;aAC5B,OAAO;cACN,MAAM;iBACH,MAAM,GAAG,MAAM;mBACb,OAAO;uBACH,OAAO;gCACE,MAAM;YA+InC,CAAA"}
132
132
  }
133
133
  declare module '@ibti-tech/chatbot/components/ChatbotBody/index' {
134
134
  import React from 'react';
package/dist/index.mjs CHANGED
@@ -2834,7 +2834,7 @@ var Wrapper9 = styled10.div`
2834
2834
  // package.json
2835
2835
  var package_default = {
2836
2836
  name: "@ibti-tech/chatbot",
2837
- version: "0.9.7",
2837
+ version: "0.9.8",
2838
2838
  description: "Chatbot system developed to be embedded in any website",
2839
2839
  packageManager: "yarn@3.6.4",
2840
2840
  main: "./dist/index.mjs",
@@ -3213,15 +3213,17 @@ var Wrapper10 = styled11.div`
3213
3213
  padding-bottom: ${(props2) => props2.theme.spacing.components.xsmall};
3214
3214
 
3215
3215
  @media screen and (max-width: ${breakpoints3.tablet}px) {
3216
- /* Mirror of top (opposite direction): same height open/closed, no flex, last child height 100% like top */
3217
- bottom: 0 !important;
3218
- padding-top: env(safe-area-inset-top, 0px);
3219
- padding-bottom: env(safe-area-inset-bottom, 0px);
3220
- height: 100vh;
3221
- height: 100svh;
3216
+ /* Real mobile: pin between safe areas so header is never cut (notch/status bar). Fallback when env is 0 (no viewport-fit=cover). */
3217
+ top: max(env(safe-area-inset-top, 0px), 20px) !important;
3218
+ bottom: max(env(safe-area-inset-bottom, 0px), 8px) !important;
3219
+ height: auto !important;
3220
+ min-height: 0;
3221
+ padding-top: 0;
3222
+ padding-bottom: 0;
3222
3223
  box-sizing: border-box;
3223
3224
  & > *:last-child {
3224
3225
  height: 100%;
3226
+ min-height: 0;
3225
3227
  }
3226
3228
  }
3227
3229
  `}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibti-tech/chatbot",
3
- "version": "0.9.7",
3
+ "version": "0.9.8",
4
4
  "description": "Chatbot system developed to be embedded in any website",
5
5
  "packageManager": "yarn@3.6.4",
6
6
  "main": "./dist/index.mjs",