@inorain_development/hotel-smarters-chat-ui 1.2.2 → 1.3.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/lib/commonjs/features/chat/components/common/calendar-icon.js +33 -0
- package/lib/commonjs/features/chat/components/common/calendar-icon.js.map +1 -0
- package/lib/commonjs/features/chat/components/common/calendar-icon.native.js +33 -0
- package/lib/commonjs/features/chat/components/common/calendar-icon.native.js.map +1 -0
- package/lib/commonjs/features/chat/components/common/cart-icon.js +36 -0
- package/lib/commonjs/features/chat/components/common/cart-icon.js.map +1 -0
- package/lib/commonjs/features/chat/components/common/chevron-icon.js +26 -0
- package/lib/commonjs/features/chat/components/common/chevron-icon.js.map +1 -0
- package/lib/commonjs/features/chat/components/common/chevron-icon.native.js +26 -0
- package/lib/commonjs/features/chat/components/common/chevron-icon.native.js.map +1 -0
- package/lib/commonjs/features/chat/components/common/plane-icon.js +23 -0
- package/lib/commonjs/features/chat/components/common/plane-icon.js.map +1 -0
- package/lib/commonjs/features/chat/components/common/plane-icon.native.js +23 -0
- package/lib/commonjs/features/chat/components/common/plane-icon.native.js.map +1 -0
- package/lib/commonjs/features/chat/components/flight/flight-card.js +130 -0
- package/lib/commonjs/features/chat/components/flight/flight-card.js.map +1 -0
- package/lib/commonjs/features/chat/components/flight/flight-card.native.js +132 -0
- package/lib/commonjs/features/chat/components/flight/flight-card.native.js.map +1 -0
- package/lib/commonjs/features/chat/components/flight/flight.js +149 -0
- package/lib/commonjs/features/chat/components/flight/flight.js.map +1 -0
- package/lib/commonjs/features/chat/components/flight/flight.model.js +6 -0
- package/lib/commonjs/features/chat/components/flight/flight.model.js.map +1 -0
- package/lib/commonjs/features/chat/components/flight/flight.native.js +151 -0
- package/lib/commonjs/features/chat/components/flight/flight.native.js.map +1 -0
- package/lib/commonjs/features/chat/components/flight/index.js +13 -0
- package/lib/commonjs/features/chat/components/flight/index.js.map +1 -0
- package/lib/commonjs/features/chat/components/flight-board/flight-board.js +154 -0
- package/lib/commonjs/features/chat/components/flight-board/flight-board.js.map +1 -0
- package/lib/commonjs/features/chat/components/flight-board/flight-board.model.js +6 -0
- package/lib/commonjs/features/chat/components/flight-board/flight-board.model.js.map +1 -0
- package/lib/commonjs/features/chat/components/flight-board/flight-board.native.js +165 -0
- package/lib/commonjs/features/chat/components/flight-board/flight-board.native.js.map +1 -0
- package/lib/commonjs/features/chat/components/flight-board/index.js +13 -0
- package/lib/commonjs/features/chat/components/flight-board/index.js.map +1 -0
- package/lib/commonjs/features/chat/components/info/info.js +41 -14
- package/lib/commonjs/features/chat/components/info/info.js.map +1 -1
- package/lib/commonjs/features/chat/components/info/info.native.js +45 -14
- package/lib/commonjs/features/chat/components/info/info.native.js.map +1 -1
- package/lib/commonjs/features/chat/components/order/index.js +20 -0
- package/lib/commonjs/features/chat/components/order/index.js.map +1 -0
- package/lib/commonjs/features/chat/components/order/order.js +171 -0
- package/lib/commonjs/features/chat/components/order/order.js.map +1 -0
- package/lib/commonjs/features/chat/components/order/order.model.js +15 -0
- package/lib/commonjs/features/chat/components/order/order.model.js.map +1 -0
- package/lib/commonjs/features/chat/components/order/order.native.js +192 -0
- package/lib/commonjs/features/chat/components/order/order.native.js.map +1 -0
- package/lib/commonjs/features/chat/components/reservation/index.js +20 -0
- package/lib/commonjs/features/chat/components/reservation/index.js.map +1 -0
- package/lib/commonjs/features/chat/components/reservation/reservation.js +164 -0
- package/lib/commonjs/features/chat/components/reservation/reservation.js.map +1 -0
- package/lib/commonjs/features/chat/components/reservation/reservation.model.js +13 -0
- package/lib/commonjs/features/chat/components/reservation/reservation.model.js.map +1 -0
- package/lib/commonjs/features/chat/components/reservation/reservation.native.js +180 -0
- package/lib/commonjs/features/chat/components/reservation/reservation.native.js.map +1 -0
- package/lib/commonjs/features/chat/model/chat.model.js +17 -1
- package/lib/commonjs/features/chat/model/chat.model.js.map +1 -1
- package/lib/commonjs/features/chat/renderer/renderer.js +26 -0
- package/lib/commonjs/features/chat/renderer/renderer.js.map +1 -1
- package/lib/commonjs/features/chat/renderer/renderer.native.js +26 -0
- package/lib/commonjs/features/chat/renderer/renderer.native.js.map +1 -1
- package/lib/commonjs/native.js +48 -0
- package/lib/commonjs/native.js.map +1 -1
- package/lib/commonjs/utils/flight.utils.js +86 -0
- package/lib/commonjs/utils/flight.utils.js.map +1 -0
- package/lib/commonjs/utils/order.utils.js +24 -0
- package/lib/commonjs/utils/order.utils.js.map +1 -0
- package/lib/commonjs/utils/reservation.utils.js +22 -0
- package/lib/commonjs/utils/reservation.utils.js.map +1 -0
- package/lib/commonjs/utils/status-badge.utils.js +75 -0
- package/lib/commonjs/utils/status-badge.utils.js.map +1 -0
- package/lib/commonjs/utils/theme.utils.js +8 -2
- package/lib/commonjs/utils/theme.utils.js.map +1 -1
- package/lib/commonjs/web.js +48 -0
- package/lib/commonjs/web.js.map +1 -1
- package/lib/module/features/chat/components/common/calendar-icon.js +29 -0
- package/lib/module/features/chat/components/common/calendar-icon.js.map +1 -0
- package/lib/module/features/chat/components/common/calendar-icon.native.js +29 -0
- package/lib/module/features/chat/components/common/calendar-icon.native.js.map +1 -0
- package/lib/module/features/chat/components/common/cart-icon.js +32 -0
- package/lib/module/features/chat/components/common/cart-icon.js.map +1 -0
- package/lib/module/features/chat/components/common/chevron-icon.js +22 -0
- package/lib/module/features/chat/components/common/chevron-icon.js.map +1 -0
- package/lib/module/features/chat/components/common/chevron-icon.native.js +22 -0
- package/lib/module/features/chat/components/common/chevron-icon.native.js.map +1 -0
- package/lib/module/features/chat/components/common/plane-icon.js +19 -0
- package/lib/module/features/chat/components/common/plane-icon.js.map +1 -0
- package/lib/module/features/chat/components/common/plane-icon.native.js +19 -0
- package/lib/module/features/chat/components/common/plane-icon.native.js.map +1 -0
- package/lib/module/features/chat/components/flight/flight-card.js +126 -0
- package/lib/module/features/chat/components/flight/flight-card.js.map +1 -0
- package/lib/module/features/chat/components/flight/flight-card.native.js +128 -0
- package/lib/module/features/chat/components/flight/flight-card.native.js.map +1 -0
- package/lib/module/features/chat/components/flight/flight.js +145 -0
- package/lib/module/features/chat/components/flight/flight.js.map +1 -0
- package/lib/module/features/chat/components/flight/flight.model.js +4 -0
- package/lib/module/features/chat/components/flight/flight.model.js.map +1 -0
- package/lib/module/features/chat/components/flight/flight.native.js +147 -0
- package/lib/module/features/chat/components/flight/flight.native.js.map +1 -0
- package/lib/module/features/chat/components/flight/index.js +4 -0
- package/lib/module/features/chat/components/flight/index.js.map +1 -0
- package/lib/module/features/chat/components/flight-board/flight-board.js +150 -0
- package/lib/module/features/chat/components/flight-board/flight-board.js.map +1 -0
- package/lib/module/features/chat/components/flight-board/flight-board.model.js +4 -0
- package/lib/module/features/chat/components/flight-board/flight-board.model.js.map +1 -0
- package/lib/module/features/chat/components/flight-board/flight-board.native.js +161 -0
- package/lib/module/features/chat/components/flight-board/flight-board.native.js.map +1 -0
- package/lib/module/features/chat/components/flight-board/index.js +4 -0
- package/lib/module/features/chat/components/flight-board/index.js.map +1 -0
- package/lib/module/features/chat/components/info/info.js +41 -14
- package/lib/module/features/chat/components/info/info.js.map +1 -1
- package/lib/module/features/chat/components/info/info.native.js +46 -15
- package/lib/module/features/chat/components/info/info.native.js.map +1 -1
- package/lib/module/features/chat/components/order/index.js +5 -0
- package/lib/module/features/chat/components/order/index.js.map +1 -0
- package/lib/module/features/chat/components/order/order.js +167 -0
- package/lib/module/features/chat/components/order/order.js.map +1 -0
- package/lib/module/features/chat/components/order/order.model.js +11 -0
- package/lib/module/features/chat/components/order/order.model.js.map +1 -0
- package/lib/module/features/chat/components/order/order.native.js +188 -0
- package/lib/module/features/chat/components/order/order.native.js.map +1 -0
- package/lib/module/features/chat/components/reservation/index.js +5 -0
- package/lib/module/features/chat/components/reservation/index.js.map +1 -0
- package/lib/module/features/chat/components/reservation/reservation.js +160 -0
- package/lib/module/features/chat/components/reservation/reservation.js.map +1 -0
- package/lib/module/features/chat/components/reservation/reservation.model.js +9 -0
- package/lib/module/features/chat/components/reservation/reservation.model.js.map +1 -0
- package/lib/module/features/chat/components/reservation/reservation.native.js +176 -0
- package/lib/module/features/chat/components/reservation/reservation.native.js.map +1 -0
- package/lib/module/features/chat/model/chat.model.js +16 -0
- package/lib/module/features/chat/model/chat.model.js.map +1 -1
- package/lib/module/features/chat/renderer/renderer.js +26 -0
- package/lib/module/features/chat/renderer/renderer.js.map +1 -1
- package/lib/module/features/chat/renderer/renderer.native.js +26 -0
- package/lib/module/features/chat/renderer/renderer.native.js.map +1 -1
- package/lib/module/native.js +7 -1
- package/lib/module/native.js.map +1 -1
- package/lib/module/utils/flight.utils.js +82 -0
- package/lib/module/utils/flight.utils.js.map +1 -0
- package/lib/module/utils/order.utils.js +20 -0
- package/lib/module/utils/order.utils.js.map +1 -0
- package/lib/module/utils/reservation.utils.js +18 -0
- package/lib/module/utils/reservation.utils.js.map +1 -0
- package/lib/module/utils/status-badge.utils.js +70 -0
- package/lib/module/utils/status-badge.utils.js.map +1 -0
- package/lib/module/utils/theme.utils.js +8 -2
- package/lib/module/utils/theme.utils.js.map +1 -1
- package/lib/module/web.js +7 -1
- package/lib/module/web.js.map +1 -1
- package/lib/typescript/commonjs/features/chat/components/common/calendar-icon.d.ts +6 -0
- package/lib/typescript/commonjs/features/chat/components/common/calendar-icon.d.ts.map +1 -0
- package/lib/typescript/commonjs/features/chat/components/common/calendar-icon.native.d.ts +6 -0
- package/lib/typescript/commonjs/features/chat/components/common/calendar-icon.native.d.ts.map +1 -0
- package/lib/typescript/commonjs/features/chat/components/common/cart-icon.d.ts +6 -0
- package/lib/typescript/commonjs/features/chat/components/common/cart-icon.d.ts.map +1 -0
- package/lib/typescript/commonjs/features/chat/components/common/chevron-icon.d.ts +6 -0
- package/lib/typescript/commonjs/features/chat/components/common/chevron-icon.d.ts.map +1 -0
- package/lib/typescript/commonjs/features/chat/components/common/chevron-icon.native.d.ts +6 -0
- package/lib/typescript/commonjs/features/chat/components/common/chevron-icon.native.d.ts.map +1 -0
- package/lib/typescript/commonjs/features/chat/components/common/plane-icon.d.ts +6 -0
- package/lib/typescript/commonjs/features/chat/components/common/plane-icon.d.ts.map +1 -0
- package/lib/typescript/commonjs/features/chat/components/common/plane-icon.native.d.ts +6 -0
- package/lib/typescript/commonjs/features/chat/components/common/plane-icon.native.d.ts.map +1 -0
- package/lib/typescript/commonjs/features/chat/components/flight/flight-card.d.ts +12 -0
- package/lib/typescript/commonjs/features/chat/components/flight/flight-card.d.ts.map +1 -0
- package/lib/typescript/commonjs/features/chat/components/flight/flight-card.native.d.ts +12 -0
- package/lib/typescript/commonjs/features/chat/components/flight/flight-card.native.d.ts.map +1 -0
- package/lib/typescript/commonjs/features/chat/components/flight/flight.d.ts +4 -0
- package/lib/typescript/commonjs/features/chat/components/flight/flight.d.ts.map +1 -0
- package/lib/typescript/commonjs/features/chat/components/flight/flight.model.d.ts +19 -0
- package/lib/typescript/commonjs/features/chat/components/flight/flight.model.d.ts.map +1 -0
- package/lib/typescript/commonjs/features/chat/components/flight/flight.native.d.ts +4 -0
- package/lib/typescript/commonjs/features/chat/components/flight/flight.native.d.ts.map +1 -0
- package/lib/typescript/commonjs/features/chat/components/flight/index.d.ts +3 -0
- package/lib/typescript/commonjs/features/chat/components/flight/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/features/chat/components/flight-board/flight-board.d.ts +4 -0
- package/lib/typescript/commonjs/features/chat/components/flight-board/flight-board.d.ts.map +1 -0
- package/lib/typescript/commonjs/features/chat/components/flight-board/flight-board.model.d.ts +22 -0
- package/lib/typescript/commonjs/features/chat/components/flight-board/flight-board.model.d.ts.map +1 -0
- package/lib/typescript/commonjs/features/chat/components/flight-board/flight-board.native.d.ts +4 -0
- package/lib/typescript/commonjs/features/chat/components/flight-board/flight-board.native.d.ts.map +1 -0
- package/lib/typescript/commonjs/features/chat/components/flight-board/index.d.ts +3 -0
- package/lib/typescript/commonjs/features/chat/components/flight-board/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/features/chat/components/info/info.d.ts +1 -1
- package/lib/typescript/commonjs/features/chat/components/info/info.d.ts.map +1 -1
- package/lib/typescript/commonjs/features/chat/components/info/info.model.d.ts +3 -0
- package/lib/typescript/commonjs/features/chat/components/info/info.model.d.ts.map +1 -1
- package/lib/typescript/commonjs/features/chat/components/info/info.native.d.ts +1 -1
- package/lib/typescript/commonjs/features/chat/components/info/info.native.d.ts.map +1 -1
- package/lib/typescript/commonjs/features/chat/components/order/index.d.ts +4 -0
- package/lib/typescript/commonjs/features/chat/components/order/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/features/chat/components/order/order.d.ts +4 -0
- package/lib/typescript/commonjs/features/chat/components/order/order.d.ts.map +1 -0
- package/lib/typescript/commonjs/features/chat/components/order/order.model.d.ts +30 -0
- package/lib/typescript/commonjs/features/chat/components/order/order.model.d.ts.map +1 -0
- package/lib/typescript/commonjs/features/chat/components/order/order.native.d.ts +4 -0
- package/lib/typescript/commonjs/features/chat/components/order/order.native.d.ts.map +1 -0
- package/lib/typescript/commonjs/features/chat/components/reservation/index.d.ts +4 -0
- package/lib/typescript/commonjs/features/chat/components/reservation/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/features/chat/components/reservation/reservation.d.ts +4 -0
- package/lib/typescript/commonjs/features/chat/components/reservation/reservation.d.ts.map +1 -0
- package/lib/typescript/commonjs/features/chat/components/reservation/reservation.model.d.ts +27 -0
- package/lib/typescript/commonjs/features/chat/components/reservation/reservation.model.d.ts.map +1 -0
- package/lib/typescript/commonjs/features/chat/components/reservation/reservation.native.d.ts +4 -0
- package/lib/typescript/commonjs/features/chat/components/reservation/reservation.native.d.ts.map +1 -0
- package/lib/typescript/commonjs/features/chat/model/chat.model.d.ts +17 -2
- package/lib/typescript/commonjs/features/chat/model/chat.model.d.ts.map +1 -1
- package/lib/typescript/commonjs/features/chat/renderer/renderer.d.ts +5 -1
- package/lib/typescript/commonjs/features/chat/renderer/renderer.d.ts.map +1 -1
- package/lib/typescript/commonjs/features/chat/renderer/renderer.native.d.ts +5 -1
- package/lib/typescript/commonjs/features/chat/renderer/renderer.native.d.ts.map +1 -1
- package/lib/typescript/commonjs/native.d.ts +11 -1
- package/lib/typescript/commonjs/native.d.ts.map +1 -1
- package/lib/typescript/commonjs/utils/flight.utils.d.ts +10 -0
- package/lib/typescript/commonjs/utils/flight.utils.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/order.utils.d.ts +7 -0
- package/lib/typescript/commonjs/utils/order.utils.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/reservation.utils.d.ts +7 -0
- package/lib/typescript/commonjs/utils/reservation.utils.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/status-badge.utils.d.ts +15 -0
- package/lib/typescript/commonjs/utils/status-badge.utils.d.ts.map +1 -0
- package/lib/typescript/commonjs/utils/theme.utils.d.ts +3 -0
- package/lib/typescript/commonjs/utils/theme.utils.d.ts.map +1 -1
- package/lib/typescript/commonjs/web.d.ts +11 -1
- package/lib/typescript/commonjs/web.d.ts.map +1 -1
- package/lib/typescript/module/features/chat/components/common/calendar-icon.d.ts +6 -0
- package/lib/typescript/module/features/chat/components/common/calendar-icon.d.ts.map +1 -0
- package/lib/typescript/module/features/chat/components/common/calendar-icon.native.d.ts +6 -0
- package/lib/typescript/module/features/chat/components/common/calendar-icon.native.d.ts.map +1 -0
- package/lib/typescript/module/features/chat/components/common/cart-icon.d.ts +6 -0
- package/lib/typescript/module/features/chat/components/common/cart-icon.d.ts.map +1 -0
- package/lib/typescript/module/features/chat/components/common/chevron-icon.d.ts +6 -0
- package/lib/typescript/module/features/chat/components/common/chevron-icon.d.ts.map +1 -0
- package/lib/typescript/module/features/chat/components/common/chevron-icon.native.d.ts +6 -0
- package/lib/typescript/module/features/chat/components/common/chevron-icon.native.d.ts.map +1 -0
- package/lib/typescript/module/features/chat/components/common/plane-icon.d.ts +6 -0
- package/lib/typescript/module/features/chat/components/common/plane-icon.d.ts.map +1 -0
- package/lib/typescript/module/features/chat/components/common/plane-icon.native.d.ts +6 -0
- package/lib/typescript/module/features/chat/components/common/plane-icon.native.d.ts.map +1 -0
- package/lib/typescript/module/features/chat/components/flight/flight-card.d.ts +12 -0
- package/lib/typescript/module/features/chat/components/flight/flight-card.d.ts.map +1 -0
- package/lib/typescript/module/features/chat/components/flight/flight-card.native.d.ts +12 -0
- package/lib/typescript/module/features/chat/components/flight/flight-card.native.d.ts.map +1 -0
- package/lib/typescript/module/features/chat/components/flight/flight.d.ts +4 -0
- package/lib/typescript/module/features/chat/components/flight/flight.d.ts.map +1 -0
- package/lib/typescript/module/features/chat/components/flight/flight.model.d.ts +19 -0
- package/lib/typescript/module/features/chat/components/flight/flight.model.d.ts.map +1 -0
- package/lib/typescript/module/features/chat/components/flight/flight.native.d.ts +4 -0
- package/lib/typescript/module/features/chat/components/flight/flight.native.d.ts.map +1 -0
- package/lib/typescript/module/features/chat/components/flight/index.d.ts +3 -0
- package/lib/typescript/module/features/chat/components/flight/index.d.ts.map +1 -0
- package/lib/typescript/module/features/chat/components/flight-board/flight-board.d.ts +4 -0
- package/lib/typescript/module/features/chat/components/flight-board/flight-board.d.ts.map +1 -0
- package/lib/typescript/module/features/chat/components/flight-board/flight-board.model.d.ts +22 -0
- package/lib/typescript/module/features/chat/components/flight-board/flight-board.model.d.ts.map +1 -0
- package/lib/typescript/module/features/chat/components/flight-board/flight-board.native.d.ts +4 -0
- package/lib/typescript/module/features/chat/components/flight-board/flight-board.native.d.ts.map +1 -0
- package/lib/typescript/module/features/chat/components/flight-board/index.d.ts +3 -0
- package/lib/typescript/module/features/chat/components/flight-board/index.d.ts.map +1 -0
- package/lib/typescript/module/features/chat/components/info/info.d.ts +1 -1
- package/lib/typescript/module/features/chat/components/info/info.d.ts.map +1 -1
- package/lib/typescript/module/features/chat/components/info/info.model.d.ts +3 -0
- package/lib/typescript/module/features/chat/components/info/info.model.d.ts.map +1 -1
- package/lib/typescript/module/features/chat/components/info/info.native.d.ts +1 -1
- package/lib/typescript/module/features/chat/components/info/info.native.d.ts.map +1 -1
- package/lib/typescript/module/features/chat/components/order/index.d.ts +4 -0
- package/lib/typescript/module/features/chat/components/order/index.d.ts.map +1 -0
- package/lib/typescript/module/features/chat/components/order/order.d.ts +4 -0
- package/lib/typescript/module/features/chat/components/order/order.d.ts.map +1 -0
- package/lib/typescript/module/features/chat/components/order/order.model.d.ts +30 -0
- package/lib/typescript/module/features/chat/components/order/order.model.d.ts.map +1 -0
- package/lib/typescript/module/features/chat/components/order/order.native.d.ts +4 -0
- package/lib/typescript/module/features/chat/components/order/order.native.d.ts.map +1 -0
- package/lib/typescript/module/features/chat/components/reservation/index.d.ts +4 -0
- package/lib/typescript/module/features/chat/components/reservation/index.d.ts.map +1 -0
- package/lib/typescript/module/features/chat/components/reservation/reservation.d.ts +4 -0
- package/lib/typescript/module/features/chat/components/reservation/reservation.d.ts.map +1 -0
- package/lib/typescript/module/features/chat/components/reservation/reservation.model.d.ts +27 -0
- package/lib/typescript/module/features/chat/components/reservation/reservation.model.d.ts.map +1 -0
- package/lib/typescript/module/features/chat/components/reservation/reservation.native.d.ts +4 -0
- package/lib/typescript/module/features/chat/components/reservation/reservation.native.d.ts.map +1 -0
- package/lib/typescript/module/features/chat/model/chat.model.d.ts +17 -2
- package/lib/typescript/module/features/chat/model/chat.model.d.ts.map +1 -1
- package/lib/typescript/module/features/chat/renderer/renderer.d.ts +5 -1
- package/lib/typescript/module/features/chat/renderer/renderer.d.ts.map +1 -1
- package/lib/typescript/module/features/chat/renderer/renderer.native.d.ts +5 -1
- package/lib/typescript/module/features/chat/renderer/renderer.native.d.ts.map +1 -1
- package/lib/typescript/module/native.d.ts +11 -1
- package/lib/typescript/module/native.d.ts.map +1 -1
- package/lib/typescript/module/utils/flight.utils.d.ts +10 -0
- package/lib/typescript/module/utils/flight.utils.d.ts.map +1 -0
- package/lib/typescript/module/utils/order.utils.d.ts +7 -0
- package/lib/typescript/module/utils/order.utils.d.ts.map +1 -0
- package/lib/typescript/module/utils/reservation.utils.d.ts +7 -0
- package/lib/typescript/module/utils/reservation.utils.d.ts.map +1 -0
- package/lib/typescript/module/utils/status-badge.utils.d.ts +15 -0
- package/lib/typescript/module/utils/status-badge.utils.d.ts.map +1 -0
- package/lib/typescript/module/utils/theme.utils.d.ts +3 -0
- package/lib/typescript/module/utils/theme.utils.d.ts.map +1 -1
- package/lib/typescript/module/web.d.ts +11 -1
- package/lib/typescript/module/web.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/features/chat/components/common/calendar-icon.native.tsx +13 -0
- package/src/features/chat/components/common/calendar-icon.tsx +13 -0
- package/src/features/chat/components/common/cart-icon.tsx +20 -0
- package/src/features/chat/components/common/chevron-icon.native.tsx +18 -0
- package/src/features/chat/components/common/chevron-icon.tsx +18 -0
- package/src/features/chat/components/common/plane-icon.native.tsx +15 -0
- package/src/features/chat/components/common/plane-icon.tsx +15 -0
- package/src/features/chat/components/flight/flight-card.native.tsx +100 -0
- package/src/features/chat/components/flight/flight-card.tsx +100 -0
- package/src/features/chat/components/flight/flight.model.ts +20 -0
- package/src/features/chat/components/flight/flight.native.tsx +131 -0
- package/src/features/chat/components/flight/flight.tsx +131 -0
- package/src/features/chat/components/flight/index.ts +2 -0
- package/src/features/chat/components/flight-board/flight-board.model.ts +23 -0
- package/src/features/chat/components/flight-board/flight-board.native.tsx +155 -0
- package/src/features/chat/components/flight-board/flight-board.tsx +160 -0
- package/src/features/chat/components/flight-board/index.ts +2 -0
- package/src/features/chat/components/info/info.model.ts +3 -0
- package/src/features/chat/components/info/info.native.tsx +47 -11
- package/src/features/chat/components/info/info.tsx +43 -10
- package/src/features/chat/components/order/index.ts +3 -0
- package/src/features/chat/components/order/order.model.ts +32 -0
- package/src/features/chat/components/order/order.native.tsx +175 -0
- package/src/features/chat/components/order/order.tsx +176 -0
- package/src/features/chat/components/reservation/index.ts +3 -0
- package/src/features/chat/components/reservation/reservation.model.ts +29 -0
- package/src/features/chat/components/reservation/reservation.native.tsx +159 -0
- package/src/features/chat/components/reservation/reservation.tsx +161 -0
- package/src/features/chat/model/chat.model.ts +16 -0
- package/src/features/chat/renderer/renderer.native.tsx +29 -1
- package/src/features/chat/renderer/renderer.tsx +29 -1
- package/src/native.ts +11 -1
- package/src/utils/flight.utils.ts +35 -0
- package/src/utils/order.utils.ts +28 -0
- package/src/utils/reservation.utils.ts +23 -0
- package/src/utils/status-badge.utils.ts +36 -0
- package/src/utils/theme.utils.ts +9 -0
- package/src/web.ts +11 -1
|
@@ -11,10 +11,25 @@ export declare enum ComponentType {
|
|
|
11
11
|
ServiceList = "serviceList",
|
|
12
12
|
Event = "event",
|
|
13
13
|
EventList = "eventList",
|
|
14
|
-
Info = "info"
|
|
14
|
+
Info = "info",
|
|
15
|
+
Flight = "flight",
|
|
16
|
+
FlightList = "flightList",
|
|
17
|
+
FlightBoard = "flightBoard",
|
|
18
|
+
Order = "order",
|
|
19
|
+
Reservation = "reservation",
|
|
20
|
+
ReservationList = "reservationList"
|
|
15
21
|
}
|
|
16
22
|
export declare enum ItemAction {
|
|
17
|
-
Add = "add"
|
|
23
|
+
Add = "add",
|
|
24
|
+
Manage = "manage",
|
|
25
|
+
Track = "track"
|
|
26
|
+
}
|
|
27
|
+
export declare enum FlightStatus {
|
|
28
|
+
OnTime = "onTime",
|
|
29
|
+
Delayed = "delayed",
|
|
30
|
+
Boarding = "boarding",
|
|
31
|
+
Landed = "landed",
|
|
32
|
+
Cancelled = "cancelled"
|
|
18
33
|
}
|
|
19
34
|
export type ActionHandler<TItem = unknown> = (item: TItem, action?: ItemAction) => void;
|
|
20
35
|
export interface ItemCount {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chat.model.d.ts","sourceRoot":"","sources":["../../../../../../src/features/chat/model/chat.model.ts"],"names":[],"mappings":"AAAA,oBAAY,KAAK;IACf,IAAI,SAAS;IACb,KAAK,UAAU;CAChB;AAED,MAAM,MAAM,QAAQ,GAAG,MAAM,CAAC;AAC9B,MAAM,MAAM,aAAa,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;AAEnD,oBAAY,aAAa;IACvB,OAAO,YAAY;IACnB,WAAW,gBAAgB;IAC3B,OAAO,YAAY;IACnB,WAAW,gBAAgB;IAC3B,KAAK,UAAU;IACf,SAAS,cAAc;IACvB,IAAI,SAAS;
|
|
1
|
+
{"version":3,"file":"chat.model.d.ts","sourceRoot":"","sources":["../../../../../../src/features/chat/model/chat.model.ts"],"names":[],"mappings":"AAAA,oBAAY,KAAK;IACf,IAAI,SAAS;IACb,KAAK,UAAU;CAChB;AAED,MAAM,MAAM,QAAQ,GAAG,MAAM,CAAC;AAC9B,MAAM,MAAM,aAAa,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;AAEnD,oBAAY,aAAa;IACvB,OAAO,YAAY;IACnB,WAAW,gBAAgB;IAC3B,OAAO,YAAY;IACnB,WAAW,gBAAgB;IAC3B,KAAK,UAAU;IACf,SAAS,cAAc;IACvB,IAAI,SAAS;IACb,MAAM,WAAW;IACjB,UAAU,eAAe;IACzB,WAAW,gBAAgB;IAC3B,KAAK,UAAU;IACf,WAAW,gBAAgB;IAC3B,eAAe,oBAAoB;CACpC;AAED,oBAAY,UAAU;IACpB,GAAG,QAAQ;IACX,MAAM,WAAW;IACjB,KAAK,UAAU;CAChB;AAED,oBAAY,YAAY;IACtB,MAAM,WAAW;IACjB,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,MAAM,WAAW;IACjB,SAAS,cAAc;CACxB;AAED,MAAM,MAAM,aAAa,CAAC,KAAK,GAAG,OAAO,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,CAAC,EAAE,UAAU,KAAK,IAAI,CAAC;AAExF,MAAM,WAAW,SAAS;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,kBAAkB,CAAC,KAAK,GAAG,OAAO;IACjD,IAAI,EAAE,aAAa,CAAC;IACpB,IAAI,EAAE,KAAK,GAAG,KAAK,EAAE,CAAC;IACtB,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,QAAQ,CAAC,EAAE,aAAa,CAAC,KAAK,CAAC,CAAC;IAChC,QAAQ,CAAC,EAAE,aAAa,CAAC,KAAK,CAAC,CAAC;IAChC,WAAW,CAAC,EAAE,MAAM,GAAG,CAAC,CAAC,IAAI,EAAE,KAAK,KAAK,MAAM,CAAC,CAAC;IACjD,MAAM,CAAC,EAAE,SAAS,EAAE,CAAC;IACrB,KAAK,CAAC,EAAE,KAAK,CAAC;CACf"}
|
|
@@ -2,6 +2,10 @@ import type { ProductItem } from '../components/product/product.model';
|
|
|
2
2
|
import type { ServiceItem } from '../components/service/service.model';
|
|
3
3
|
import type { EventItem } from '../components/event/event.model';
|
|
4
4
|
import type { InfoItem } from '../components/info/info.model';
|
|
5
|
+
import type { FlightItem } from '../components/flight/flight.model';
|
|
6
|
+
import type { FlightBoardItem } from '../components/flight-board/flight-board.model';
|
|
7
|
+
import type { OrderListItem } from '../components/order/order.model';
|
|
8
|
+
import type { ReservationListItem } from '../components/reservation/reservation.model';
|
|
5
9
|
import type { ChatComponentProps } from '../model/chat.model';
|
|
6
|
-
export declare function ChatComponentRenderer<TItem extends ProductItem | ServiceItem | EventItem | InfoItem>({ type, ...rest }: ChatComponentProps<TItem>): import("react").JSX.Element | null;
|
|
10
|
+
export declare function ChatComponentRenderer<TItem extends ProductItem | ServiceItem | EventItem | InfoItem | FlightItem | FlightBoardItem | OrderListItem | ReservationListItem>({ type, ...rest }: ChatComponentProps<TItem>): import("react").JSX.Element | null;
|
|
7
11
|
//# sourceMappingURL=renderer.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"renderer.d.ts","sourceRoot":"","sources":["../../../../../../src/features/chat/renderer/renderer.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"renderer.d.ts","sourceRoot":"","sources":["../../../../../../src/features/chat/renderer/renderer.tsx"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,qCAAqC,CAAC;AACvE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,qCAAqC,CAAC;AACvE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,iCAAiC,CAAC;AACjE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAC9D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mCAAmC,CAAC;AACpE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,+CAA+C,CAAC;AACrF,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,6CAA6C,CAAC;AAEvF,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AAE9D,wBAAgB,qBAAqB,CACnC,KAAK,SACD,WAAW,GACX,WAAW,GACX,SAAS,GACT,QAAQ,GACR,UAAU,GACV,eAAe,GACf,aAAa,GACb,mBAAmB,EACvB,EAAE,IAAI,EAAE,GAAG,IAAI,EAAE,EAAE,kBAAkB,CAAC,KAAK,CAAC,sCA4B7C"}
|
|
@@ -2,6 +2,10 @@ import type { ProductItem } from '../components/product/product.model';
|
|
|
2
2
|
import type { ServiceItem } from '../components/service/service.model';
|
|
3
3
|
import type { EventItem } from '../components/event/event.model';
|
|
4
4
|
import type { InfoItem } from '../components/info/info.model';
|
|
5
|
+
import type { FlightItem } from '../components/flight/flight.model';
|
|
6
|
+
import type { FlightBoardItem } from '../components/flight-board/flight-board.model';
|
|
7
|
+
import type { OrderListItem } from '../components/order/order.model';
|
|
8
|
+
import type { ReservationListItem } from '../components/reservation/reservation.model';
|
|
5
9
|
import type { ChatComponentProps } from '../model/chat.model';
|
|
6
|
-
export declare function ChatComponentRenderer<TItem extends ProductItem | ServiceItem | EventItem | InfoItem>({ type, ...rest }: ChatComponentProps<TItem>): import("react").JSX.Element | null;
|
|
10
|
+
export declare function ChatComponentRenderer<TItem extends ProductItem | ServiceItem | EventItem | InfoItem | FlightItem | FlightBoardItem | OrderListItem | ReservationListItem>({ type, ...rest }: ChatComponentProps<TItem>): import("react").JSX.Element | null;
|
|
7
11
|
//# sourceMappingURL=renderer.native.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"renderer.native.d.ts","sourceRoot":"","sources":["../../../../../../src/features/chat/renderer/renderer.native.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"renderer.native.d.ts","sourceRoot":"","sources":["../../../../../../src/features/chat/renderer/renderer.native.tsx"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,qCAAqC,CAAC;AACvE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,qCAAqC,CAAC;AACvE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,iCAAiC,CAAC;AACjE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAC9D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mCAAmC,CAAC;AACpE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,+CAA+C,CAAC;AACrF,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,6CAA6C,CAAC;AAEvF,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AAE9D,wBAAgB,qBAAqB,CACnC,KAAK,SACD,WAAW,GACX,WAAW,GACX,SAAS,GACT,QAAQ,GACR,UAAU,GACV,eAAe,GACf,aAAa,GACb,mBAAmB,EACvB,EAAE,IAAI,EAAE,GAAG,IAAI,EAAE,EAAE,kBAAkB,CAAC,KAAK,CAAC,sCA4B7C"}
|
|
@@ -2,14 +2,24 @@ export { Product } from './features/chat/components/product/product.native';
|
|
|
2
2
|
export { Service } from './features/chat/components/service/service.native';
|
|
3
3
|
export { Event } from './features/chat/components/event/event.native';
|
|
4
4
|
export { Info } from './features/chat/components/info/info.native';
|
|
5
|
+
export { Flight } from './features/chat/components/flight/flight.native';
|
|
6
|
+
export { FlightBoard } from './features/chat/components/flight-board/flight-board.native';
|
|
7
|
+
export { Order } from './features/chat/components/order/order.native';
|
|
8
|
+
export { Reservation } from './features/chat/components/reservation/reservation.native';
|
|
5
9
|
export { ChatComponentRenderer } from './features/chat/renderer/renderer.native';
|
|
6
10
|
export { ChatMessageRenderer } from './features/chat/message/message.native';
|
|
7
11
|
export { parseMessage } from './features/chat/message/message.logic';
|
|
8
|
-
export { ComponentType, ItemAction, Theme } from './features/chat/model/chat.model';
|
|
12
|
+
export { ComponentType, ItemAction, Theme, FlightStatus } from './features/chat/model/chat.model';
|
|
13
|
+
export { OrderStatus } from './features/chat/components/order/order.model';
|
|
14
|
+
export { ReservationStatus } from './features/chat/components/reservation/reservation.model';
|
|
9
15
|
export type { ProductItem } from './features/chat/components/product/product.model';
|
|
10
16
|
export type { ServiceItem } from './features/chat/components/service/service.model';
|
|
11
17
|
export type { EventItem } from './features/chat/components/event/event.model';
|
|
12
18
|
export type { InfoItem } from './features/chat/components/info/info.model';
|
|
19
|
+
export type { FlightItem, Airport } from './features/chat/components/flight/flight.model';
|
|
20
|
+
export type { FlightBoardItem, FlightRow } from './features/chat/components/flight-board/flight-board.model';
|
|
21
|
+
export type { OrderListItem, OrderRow } from './features/chat/components/order/order.model';
|
|
22
|
+
export type { ReservationListItem, ReservationRow } from './features/chat/components/reservation/reservation.model';
|
|
13
23
|
export type { ChatMessage, ChatMessageProps, MessageBlock, MessageBlockContent, MessageSegment, } from './features/chat/message/message.model';
|
|
14
24
|
export type { ActionHandler, ChatComponentProps, ItemCount, Language, LocalizedText, } from './features/chat/model/chat.model';
|
|
15
25
|
//# sourceMappingURL=native.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"native.d.ts","sourceRoot":"","sources":["../../../src/native.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,mDAAmD,CAAC;AAC5E,OAAO,EAAE,OAAO,EAAE,MAAM,mDAAmD,CAAC;AAC5E,OAAO,EAAE,KAAK,EAAE,MAAM,+CAA+C,CAAC;AACtE,OAAO,EAAE,IAAI,EAAE,MAAM,6CAA6C,CAAC;AACnE,OAAO,EAAE,qBAAqB,EAAE,MAAM,0CAA0C,CAAC;AACjF,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;AAC7E,OAAO,EAAE,YAAY,EAAE,MAAM,uCAAuC,CAAC;AACrE,OAAO,EAAE,aAAa,EAAE,UAAU,EAAE,KAAK,EAAE,MAAM,kCAAkC,CAAC;
|
|
1
|
+
{"version":3,"file":"native.d.ts","sourceRoot":"","sources":["../../../src/native.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,mDAAmD,CAAC;AAC5E,OAAO,EAAE,OAAO,EAAE,MAAM,mDAAmD,CAAC;AAC5E,OAAO,EAAE,KAAK,EAAE,MAAM,+CAA+C,CAAC;AACtE,OAAO,EAAE,IAAI,EAAE,MAAM,6CAA6C,CAAC;AACnE,OAAO,EAAE,MAAM,EAAE,MAAM,iDAAiD,CAAC;AACzE,OAAO,EAAE,WAAW,EAAE,MAAM,6DAA6D,CAAC;AAC1F,OAAO,EAAE,KAAK,EAAE,MAAM,+CAA+C,CAAC;AACtE,OAAO,EAAE,WAAW,EAAE,MAAM,2DAA2D,CAAC;AACxF,OAAO,EAAE,qBAAqB,EAAE,MAAM,0CAA0C,CAAC;AACjF,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;AAC7E,OAAO,EAAE,YAAY,EAAE,MAAM,uCAAuC,CAAC;AACrE,OAAO,EAAE,aAAa,EAAE,UAAU,EAAE,KAAK,EAAE,YAAY,EAAE,MAAM,kCAAkC,CAAC;AAClG,OAAO,EAAE,WAAW,EAAE,MAAM,8CAA8C,CAAC;AAC3E,OAAO,EAAE,iBAAiB,EAAE,MAAM,0DAA0D,CAAC;AAC7F,YAAY,EAAE,WAAW,EAAE,MAAM,kDAAkD,CAAC;AACpF,YAAY,EAAE,WAAW,EAAE,MAAM,kDAAkD,CAAC;AACpF,YAAY,EAAE,SAAS,EAAE,MAAM,8CAA8C,CAAC;AAC9E,YAAY,EAAE,QAAQ,EAAE,MAAM,4CAA4C,CAAC;AAC3E,YAAY,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,gDAAgD,CAAC;AAC1F,YAAY,EAAE,eAAe,EAAE,SAAS,EAAE,MAAM,4DAA4D,CAAC;AAC7G,YAAY,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,8CAA8C,CAAC;AAC5F,YAAY,EAAE,mBAAmB,EAAE,cAAc,EAAE,MAAM,0DAA0D,CAAC;AACpH,YAAY,EACV,WAAW,EACX,gBAAgB,EAChB,YAAY,EACZ,mBAAmB,EACnB,cAAc,GACf,MAAM,uCAAuC,CAAC;AAC/C,YAAY,EACV,aAAa,EACb,kBAAkB,EAClB,SAAS,EACT,QAAQ,EACR,aAAa,GACd,MAAM,kCAAkC,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FlightStatus, Theme } from '../features/chat/model/chat.model';
|
|
2
|
+
export interface FlightStatusStyle {
|
|
3
|
+
dot: string;
|
|
4
|
+
badgeBg: string;
|
|
5
|
+
badgeText: string;
|
|
6
|
+
showDot: boolean;
|
|
7
|
+
label: string;
|
|
8
|
+
}
|
|
9
|
+
export declare function getFlightStatusStyle(status?: FlightStatus, theme?: Theme): FlightStatusStyle;
|
|
10
|
+
//# sourceMappingURL=flight.utils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"flight.utils.d.ts","sourceRoot":"","sources":["../../../../src/utils/flight.utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,KAAK,EAAE,MAAM,mCAAmC,CAAC;AAExE,MAAM,WAAW,iBAAiB;IAChC,GAAG,EAAE,MAAM,CAAC;IACZ,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,OAAO,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;CACf;AAoBD,wBAAgB,oBAAoB,CAClC,MAAM,GAAE,YAAkC,EAC1C,KAAK,GAAE,KAAkB,GACxB,iBAAiB,CAGnB"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Theme } from '../features/chat/model/chat.model';
|
|
2
|
+
import { OrderStatus } from '../features/chat/components/order/order.model';
|
|
3
|
+
import type { StatusBadgeStyle } from './status-badge.utils';
|
|
4
|
+
export declare function getOrderStatusStyle(status?: OrderStatus, theme?: Theme): StatusBadgeStyle & {
|
|
5
|
+
label: string;
|
|
6
|
+
};
|
|
7
|
+
//# sourceMappingURL=order.utils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"order.utils.d.ts","sourceRoot":"","sources":["../../../../src/utils/order.utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,mCAAmC,CAAC;AAC1D,OAAO,EAAE,WAAW,EAAE,MAAM,+CAA+C,CAAC;AAE5E,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAU7D,wBAAgB,mBAAmB,CACjC,MAAM,GAAE,WAAiC,EACzC,KAAK,GAAE,KAAkB,GACxB,gBAAgB,GAAG;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,CAWtC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Theme } from '../features/chat/model/chat.model';
|
|
2
|
+
import { ReservationStatus } from '../features/chat/components/reservation/reservation.model';
|
|
3
|
+
import type { StatusBadgeStyle } from './status-badge.utils';
|
|
4
|
+
export declare function getReservationStatusStyle(status?: ReservationStatus, theme?: Theme): StatusBadgeStyle & {
|
|
5
|
+
label: string;
|
|
6
|
+
};
|
|
7
|
+
//# sourceMappingURL=reservation.utils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"reservation.utils.d.ts","sourceRoot":"","sources":["../../../../src/utils/reservation.utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,mCAAmC,CAAC;AAC1D,OAAO,EAAE,iBAAiB,EAAE,MAAM,2DAA2D,CAAC;AAE9F,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAQ7D,wBAAgB,yBAAyB,CACvC,MAAM,GAAE,iBAA6C,EACrD,KAAK,GAAE,KAAkB,GACxB,gBAAgB,GAAG;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,CAQtC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Theme } from '../features/chat/model/chat.model';
|
|
2
|
+
export declare enum StatusTone {
|
|
3
|
+
Pending = "pending",
|
|
4
|
+
Success = "success",
|
|
5
|
+
Danger = "danger",
|
|
6
|
+
Info = "info",
|
|
7
|
+
Neutral = "neutral"
|
|
8
|
+
}
|
|
9
|
+
export interface StatusBadgeStyle {
|
|
10
|
+
badgeBg: string;
|
|
11
|
+
badgeText: string;
|
|
12
|
+
dot: string;
|
|
13
|
+
}
|
|
14
|
+
export declare function getStatusBadgeStyle(tone: StatusTone, theme?: Theme): StatusBadgeStyle;
|
|
15
|
+
//# sourceMappingURL=status-badge.utils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"status-badge.utils.d.ts","sourceRoot":"","sources":["../../../../src/utils/status-badge.utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,mCAAmC,CAAC;AAE1D,oBAAY,UAAU;IACpB,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,IAAI,SAAS;IACb,OAAO,YAAY;CACpB;AAED,MAAM,WAAW,gBAAgB;IAC/B,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;IAClB,GAAG,EAAE,MAAM,CAAC;CACb;AAkBD,wBAAgB,mBAAmB,CAAC,IAAI,EAAE,UAAU,EAAE,KAAK,GAAE,KAAkB,GAAG,gBAAgB,CAGjG"}
|
|
@@ -12,6 +12,9 @@ export interface ThemeClasses {
|
|
|
12
12
|
iconBg: string;
|
|
13
13
|
iconText: string;
|
|
14
14
|
iconColor: string;
|
|
15
|
+
mutedIconBg: string;
|
|
16
|
+
mutedIconColor: string;
|
|
17
|
+
dashLine: string;
|
|
15
18
|
}
|
|
16
19
|
export declare function getThemeClasses(theme?: Theme): ThemeClasses;
|
|
17
20
|
//# sourceMappingURL=theme.utils.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"theme.utils.d.ts","sourceRoot":"","sources":["../../../../src/utils/theme.utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,mCAAmC,CAAC;AAE1D,MAAM,WAAW,YAAY;IAC3B,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"theme.utils.d.ts","sourceRoot":"","sources":["../../../../src/utils/theme.utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,mCAAmC,CAAC;AAE1D,MAAM,WAAW,YAAY;IAC3B,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc,EAAE,MAAM,CAAC;IACvB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAsCD,wBAAgB,eAAe,CAAC,KAAK,GAAE,KAAkB,GAAG,YAAY,CAEvE"}
|
|
@@ -2,14 +2,24 @@ export { Product } from './features/chat/components/product/product';
|
|
|
2
2
|
export { Service } from './features/chat/components/service/service';
|
|
3
3
|
export { Event } from './features/chat/components/event/event';
|
|
4
4
|
export { Info } from './features/chat/components/info/info';
|
|
5
|
+
export { Flight } from './features/chat/components/flight/flight';
|
|
6
|
+
export { FlightBoard } from './features/chat/components/flight-board/flight-board';
|
|
7
|
+
export { Order } from './features/chat/components/order/order';
|
|
8
|
+
export { Reservation } from './features/chat/components/reservation/reservation';
|
|
5
9
|
export { ChatComponentRenderer } from './features/chat/renderer/renderer';
|
|
6
10
|
export { ChatMessageRenderer } from './features/chat/message/message';
|
|
7
11
|
export { parseMessage } from './features/chat/message/message.logic';
|
|
8
|
-
export { ComponentType, ItemAction, Theme } from './features/chat/model/chat.model';
|
|
12
|
+
export { ComponentType, ItemAction, Theme, FlightStatus } from './features/chat/model/chat.model';
|
|
13
|
+
export { OrderStatus } from './features/chat/components/order/order.model';
|
|
14
|
+
export { ReservationStatus } from './features/chat/components/reservation/reservation.model';
|
|
9
15
|
export type { ProductItem } from './features/chat/components/product/product.model';
|
|
10
16
|
export type { ServiceItem } from './features/chat/components/service/service.model';
|
|
11
17
|
export type { EventItem } from './features/chat/components/event/event.model';
|
|
12
18
|
export type { InfoItem } from './features/chat/components/info/info.model';
|
|
19
|
+
export type { FlightItem, Airport } from './features/chat/components/flight/flight.model';
|
|
20
|
+
export type { FlightBoardItem, FlightRow } from './features/chat/components/flight-board/flight-board.model';
|
|
21
|
+
export type { OrderListItem, OrderRow } from './features/chat/components/order/order.model';
|
|
22
|
+
export type { ReservationListItem, ReservationRow } from './features/chat/components/reservation/reservation.model';
|
|
13
23
|
export type { ChatMessage, ChatMessageProps, MessageBlock, MessageBlockContent, MessageSegment, } from './features/chat/message/message.model';
|
|
14
24
|
export type { ActionHandler, ChatComponentProps, ItemCount, Language, LocalizedText, } from './features/chat/model/chat.model';
|
|
15
25
|
//# sourceMappingURL=web.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"web.d.ts","sourceRoot":"","sources":["../../../src/web.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,4CAA4C,CAAC;AACrE,OAAO,EAAE,OAAO,EAAE,MAAM,4CAA4C,CAAC;AACrE,OAAO,EAAE,KAAK,EAAE,MAAM,wCAAwC,CAAC;AAC/D,OAAO,EAAE,IAAI,EAAE,MAAM,sCAAsC,CAAC;AAC5D,OAAO,EAAE,qBAAqB,EAAE,MAAM,mCAAmC,CAAC;AAC1E,OAAO,EAAE,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AACtE,OAAO,EAAE,YAAY,EAAE,MAAM,uCAAuC,CAAC;AACrE,OAAO,EAAE,aAAa,EAAE,UAAU,EAAE,KAAK,EAAE,MAAM,kCAAkC,CAAC;
|
|
1
|
+
{"version":3,"file":"web.d.ts","sourceRoot":"","sources":["../../../src/web.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,4CAA4C,CAAC;AACrE,OAAO,EAAE,OAAO,EAAE,MAAM,4CAA4C,CAAC;AACrE,OAAO,EAAE,KAAK,EAAE,MAAM,wCAAwC,CAAC;AAC/D,OAAO,EAAE,IAAI,EAAE,MAAM,sCAAsC,CAAC;AAC5D,OAAO,EAAE,MAAM,EAAE,MAAM,0CAA0C,CAAC;AAClE,OAAO,EAAE,WAAW,EAAE,MAAM,sDAAsD,CAAC;AACnF,OAAO,EAAE,KAAK,EAAE,MAAM,wCAAwC,CAAC;AAC/D,OAAO,EAAE,WAAW,EAAE,MAAM,oDAAoD,CAAC;AACjF,OAAO,EAAE,qBAAqB,EAAE,MAAM,mCAAmC,CAAC;AAC1E,OAAO,EAAE,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AACtE,OAAO,EAAE,YAAY,EAAE,MAAM,uCAAuC,CAAC;AACrE,OAAO,EAAE,aAAa,EAAE,UAAU,EAAE,KAAK,EAAE,YAAY,EAAE,MAAM,kCAAkC,CAAC;AAClG,OAAO,EAAE,WAAW,EAAE,MAAM,8CAA8C,CAAC;AAC3E,OAAO,EAAE,iBAAiB,EAAE,MAAM,0DAA0D,CAAC;AAC7F,YAAY,EAAE,WAAW,EAAE,MAAM,kDAAkD,CAAC;AACpF,YAAY,EAAE,WAAW,EAAE,MAAM,kDAAkD,CAAC;AACpF,YAAY,EAAE,SAAS,EAAE,MAAM,8CAA8C,CAAC;AAC9E,YAAY,EAAE,QAAQ,EAAE,MAAM,4CAA4C,CAAC;AAC3E,YAAY,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,gDAAgD,CAAC;AAC1F,YAAY,EAAE,eAAe,EAAE,SAAS,EAAE,MAAM,4DAA4D,CAAC;AAC7G,YAAY,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,8CAA8C,CAAC;AAC5F,YAAY,EAAE,mBAAmB,EAAE,cAAc,EAAE,MAAM,0DAA0D,CAAC;AACpH,YAAY,EACV,WAAW,EACX,gBAAgB,EAChB,YAAY,EACZ,mBAAmB,EACnB,cAAc,GACf,MAAM,uCAAuC,CAAC;AAC/C,YAAY,EACV,aAAa,EACb,kBAAkB,EAClB,SAAS,EACT,QAAQ,EACR,aAAa,GACd,MAAM,kCAAkC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"calendar-icon.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/common/calendar-icon.tsx"],"names":[],"mappings":"AAAA,MAAM,WAAW,iBAAiB;IAChC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,wBAAgB,YAAY,CAAC,EAAE,IAAS,EAAE,KAAsB,EAAE,EAAE,iBAAiB,+BAOpF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"calendar-icon.native.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/common/calendar-icon.native.tsx"],"names":[],"mappings":"AAAA,MAAM,WAAW,iBAAiB;IAChC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,wBAAgB,YAAY,CAAC,EAAE,IAAS,EAAE,KAAsB,EAAE,EAAE,iBAAiB,+BAOpF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cart-icon.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/common/cart-icon.tsx"],"names":[],"mappings":"AAAA,MAAM,WAAW,aAAa;IAC5B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,wBAAgB,QAAQ,CAAC,EAAE,IAAS,EAAE,KAAsB,EAAE,EAAE,aAAa,+BAc5E"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"chevron-icon.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/common/chevron-icon.tsx"],"names":[],"mappings":"AAAA,MAAM,WAAW,gBAAgB;IAC/B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,wBAAgB,WAAW,CAAC,EAAE,IAAS,EAAE,KAAsB,EAAE,EAAE,gBAAgB,+BAYlF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"chevron-icon.native.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/common/chevron-icon.native.tsx"],"names":[],"mappings":"AAAA,MAAM,WAAW,gBAAgB;IAC/B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,wBAAgB,WAAW,CAAC,EAAE,IAAS,EAAE,KAAsB,EAAE,EAAE,gBAAgB,+BAYlF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"plane-icon.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/common/plane-icon.tsx"],"names":[],"mappings":"AAAA,MAAM,WAAW,cAAc;IAC7B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,wBAAgB,SAAS,CAAC,EAAE,IAAS,EAAE,KAAsB,EAAE,EAAE,cAAc,+BAS9E"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"plane-icon.native.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/common/plane-icon.native.tsx"],"names":[],"mappings":"AAAA,MAAM,WAAW,cAAc;IAC7B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,wBAAgB,SAAS,CAAC,EAAE,IAAS,EAAE,KAAsB,EAAE,EAAE,cAAc,+BAS9E"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Theme } from '../../model/chat.model.js';
|
|
2
|
+
import type { FlightItem } from './flight.model.js';
|
|
3
|
+
export interface FlightCardProps {
|
|
4
|
+
item: FlightItem;
|
|
5
|
+
theme: Theme;
|
|
6
|
+
language?: string;
|
|
7
|
+
accent: boolean;
|
|
8
|
+
defaultExpanded: boolean;
|
|
9
|
+
onSelect?: (item: FlightItem) => void;
|
|
10
|
+
}
|
|
11
|
+
export declare function FlightCard({ item, theme, language, accent, defaultExpanded, onSelect }: FlightCardProps): import("react").JSX.Element;
|
|
12
|
+
//# sourceMappingURL=flight-card.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"flight-card.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/flight/flight-card.tsx"],"names":[],"mappings":"AAOA,OAAO,EAAgB,KAAK,EAAE,MAAM,2BAAwB,CAAC;AAC7D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mBAAgB,CAAC;AAEjD,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,UAAU,CAAC;IACjB,KAAK,EAAE,KAAK,CAAC;IACb,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,OAAO,CAAC;IAChB,eAAe,EAAE,OAAO,CAAC;IACzB,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,UAAU,KAAK,IAAI,CAAC;CACvC;AAED,wBAAgB,UAAU,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,MAAM,EAAE,eAAe,EAAE,QAAQ,EAAE,EAAE,eAAe,+BAgFvG"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Theme } from '../../model/chat.model.js';
|
|
2
|
+
import type { FlightItem } from './flight.model.js';
|
|
3
|
+
export interface FlightCardProps {
|
|
4
|
+
item: FlightItem;
|
|
5
|
+
theme: Theme;
|
|
6
|
+
language?: string;
|
|
7
|
+
accent: boolean;
|
|
8
|
+
defaultExpanded: boolean;
|
|
9
|
+
onSelect?: (item: FlightItem) => void;
|
|
10
|
+
}
|
|
11
|
+
export declare function FlightCard({ item, theme, language, accent, defaultExpanded, onSelect }: FlightCardProps): import("react").JSX.Element;
|
|
12
|
+
//# sourceMappingURL=flight-card.native.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"flight-card.native.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/flight/flight-card.native.tsx"],"names":[],"mappings":"AAQA,OAAO,EAAgB,KAAK,EAAE,MAAM,2BAAwB,CAAC;AAC7D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mBAAgB,CAAC;AAEjD,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,UAAU,CAAC;IACjB,KAAK,EAAE,KAAK,CAAC;IACb,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,OAAO,CAAC;IAChB,eAAe,EAAE,OAAO,CAAC;IACzB,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,UAAU,KAAK,IAAI,CAAC;CACvC;AAED,wBAAgB,UAAU,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,MAAM,EAAE,eAAe,EAAE,QAAQ,EAAE,EAAE,eAAe,+BA+EvG"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { ChatComponentProps } from '../../model/chat.model.js';
|
|
2
|
+
import type { FlightItem } from './flight.model.js';
|
|
3
|
+
export declare function Flight({ data, theme, language, onSelect, }: ChatComponentProps<FlightItem>): import("react").JSX.Element;
|
|
4
|
+
//# sourceMappingURL=flight.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"flight.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/flight/flight.tsx"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,2BAAwB,CAAC;AACjE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mBAAgB,CAAC;AAkGjD,wBAAgB,MAAM,CAAC,EACrB,IAAI,EACJ,KAAkB,EAClB,QAAQ,EACR,QAAQ,GACT,EAAE,kBAAkB,CAAC,UAAU,CAAC,+BAkBhC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { FlightStatus, LocalizedText } from '../../model/chat.model.js';
|
|
2
|
+
export interface Airport {
|
|
3
|
+
code: string;
|
|
4
|
+
city: LocalizedText;
|
|
5
|
+
time: string;
|
|
6
|
+
}
|
|
7
|
+
export interface FlightItem {
|
|
8
|
+
id: number;
|
|
9
|
+
airline: LocalizedText;
|
|
10
|
+
flightNumber: string;
|
|
11
|
+
status?: FlightStatus;
|
|
12
|
+
statusLabel?: LocalizedText;
|
|
13
|
+
date?: LocalizedText;
|
|
14
|
+
terminal?: LocalizedText;
|
|
15
|
+
from: Airport;
|
|
16
|
+
to: Airport;
|
|
17
|
+
duration?: string;
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=flight.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"flight.model.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/flight/flight.model.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,2BAAwB,CAAC;AAE1E,MAAM,WAAW,OAAO;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,aAAa,CAAC;IACpB,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,UAAU;IACzB,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,EAAE,aAAa,CAAC;IACvB,YAAY,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,YAAY,CAAC;IACtB,WAAW,CAAC,EAAE,aAAa,CAAC;IAC5B,IAAI,CAAC,EAAE,aAAa,CAAC;IACrB,QAAQ,CAAC,EAAE,aAAa,CAAC;IACzB,IAAI,EAAE,OAAO,CAAC;IACd,EAAE,EAAE,OAAO,CAAC;IACZ,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { ChatComponentProps } from '../../model/chat.model.js';
|
|
2
|
+
import type { FlightItem } from './flight.model.js';
|
|
3
|
+
export declare function Flight({ data, theme, language, onSelect, }: ChatComponentProps<FlightItem>): import("react").JSX.Element;
|
|
4
|
+
//# sourceMappingURL=flight.native.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"flight.native.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/flight/flight.native.tsx"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,2BAAwB,CAAC;AACjE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mBAAgB,CAAC;AAiGjD,wBAAgB,MAAM,CAAC,EACrB,IAAI,EACJ,KAAkB,EAClB,QAAQ,EACR,QAAQ,GACT,EAAE,kBAAkB,CAAC,UAAU,CAAC,+BAkBhC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/flight/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,YAAY,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,mBAAgB,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { ChatComponentProps } from '../../model/chat.model.js';
|
|
2
|
+
import type { FlightBoardItem } from './flight-board.model.js';
|
|
3
|
+
export declare function FlightBoard({ data, theme, language, onSelect, }: ChatComponentProps<FlightBoardItem>): import("react").JSX.Element | null;
|
|
4
|
+
//# sourceMappingURL=flight-board.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"flight-board.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/flight-board/flight-board.tsx"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,2BAAwB,CAAC;AACjE,OAAO,KAAK,EAAE,eAAe,EAAa,MAAM,yBAAsB,CAAC;AAKvE,wBAAgB,WAAW,CAAC,EAC1B,IAAI,EACJ,KAAkB,EAClB,QAAQ,EACR,QAAQ,GACT,EAAE,kBAAkB,CAAC,eAAe,CAAC,sCA2IrC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { FlightStatus, LocalizedText } from '../../model/chat.model.js';
|
|
2
|
+
export interface FlightRow {
|
|
3
|
+
id: number;
|
|
4
|
+
time: string;
|
|
5
|
+
city: LocalizedText;
|
|
6
|
+
code: string;
|
|
7
|
+
airline: LocalizedText;
|
|
8
|
+
flightNumber: string;
|
|
9
|
+
gate?: string;
|
|
10
|
+
status?: FlightStatus;
|
|
11
|
+
statusLabel?: LocalizedText;
|
|
12
|
+
accent?: string;
|
|
13
|
+
}
|
|
14
|
+
export interface FlightBoardItem {
|
|
15
|
+
airport: LocalizedText;
|
|
16
|
+
code: string;
|
|
17
|
+
updatedAt?: string;
|
|
18
|
+
live?: boolean;
|
|
19
|
+
departures: FlightRow[];
|
|
20
|
+
arrivals?: FlightRow[];
|
|
21
|
+
}
|
|
22
|
+
//# sourceMappingURL=flight-board.model.d.ts.map
|
package/lib/typescript/module/features/chat/components/flight-board/flight-board.model.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"flight-board.model.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/flight-board/flight-board.model.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,2BAAwB,CAAC;AAE1E,MAAM,WAAW,SAAS;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,aAAa,CAAC;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,aAAa,CAAC;IACvB,YAAY,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,YAAY,CAAC;IACtB,WAAW,CAAC,EAAE,aAAa,CAAC;IAC5B,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,eAAe;IAC9B,OAAO,EAAE,aAAa,CAAC;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,UAAU,EAAE,SAAS,EAAE,CAAC;IACxB,QAAQ,CAAC,EAAE,SAAS,EAAE,CAAC;CACxB"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { ChatComponentProps } from '../../model/chat.model.js';
|
|
2
|
+
import type { FlightBoardItem } from './flight-board.model.js';
|
|
3
|
+
export declare function FlightBoard({ data, theme, language, onSelect, }: ChatComponentProps<FlightBoardItem>): import("react").JSX.Element | null;
|
|
4
|
+
//# sourceMappingURL=flight-board.native.d.ts.map
|
package/lib/typescript/module/features/chat/components/flight-board/flight-board.native.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"flight-board.native.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/flight-board/flight-board.native.tsx"],"names":[],"mappings":"AAUA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,2BAAwB,CAAC;AACjE,OAAO,KAAK,EAAE,eAAe,EAAa,MAAM,yBAAsB,CAAC;AAKvE,wBAAgB,WAAW,CAAC,EAC1B,IAAI,EACJ,KAAkB,EAClB,QAAQ,EACR,QAAQ,GACT,EAAE,kBAAkB,CAAC,eAAe,CAAC,sCAqIrC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/flight-board/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,YAAY,EAAE,eAAe,EAAE,SAAS,EAAE,MAAM,yBAAsB,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { ChatComponentProps } from '../../model/chat.model.js';
|
|
2
2
|
import type { InfoItem } from './info.model.js';
|
|
3
|
-
export declare function Info({ data, theme, language }: ChatComponentProps<InfoItem>): import("react").JSX.Element
|
|
3
|
+
export declare function Info({ data, theme, language, onSelect }: ChatComponentProps<InfoItem>): import("react").JSX.Element;
|
|
4
4
|
//# sourceMappingURL=info.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"info.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/info/info.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"info.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/info/info.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,2BAAwB,CAAC;AACjE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,iBAAc,CAAC;AAE7C,wBAAgB,IAAI,CAAC,EAAE,IAAI,EAAE,KAAkB,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE,kBAAkB,CAAC,QAAQ,CAAC,+BAgDlG"}
|
|
@@ -2,5 +2,8 @@ import type { LocalizedText } from '../../model/chat.model.js';
|
|
|
2
2
|
export interface InfoItem {
|
|
3
3
|
name: LocalizedText;
|
|
4
4
|
description: LocalizedText;
|
|
5
|
+
kicker?: LocalizedText;
|
|
6
|
+
image?: string;
|
|
7
|
+
actionLabel?: LocalizedText;
|
|
5
8
|
}
|
|
6
9
|
//# sourceMappingURL=info.model.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"info.model.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/info/info.model.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAAwB,CAAC;AAE5D,MAAM,WAAW,QAAQ;IACvB,IAAI,EAAE,aAAa,CAAC;IACpB,WAAW,EAAE,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"info.model.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/info/info.model.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAAwB,CAAC;AAE5D,MAAM,WAAW,QAAQ;IACvB,IAAI,EAAE,aAAa,CAAC;IACpB,WAAW,EAAE,aAAa,CAAC;IAC3B,MAAM,CAAC,EAAE,aAAa,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,aAAa,CAAC;CAC7B"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { ChatComponentProps } from '../../model/chat.model.js';
|
|
2
2
|
import type { InfoItem } from './info.model.js';
|
|
3
|
-
export declare function Info({ data, theme, language }: ChatComponentProps<InfoItem>): import("react").JSX.Element
|
|
3
|
+
export declare function Info({ data, theme, language, onSelect }: ChatComponentProps<InfoItem>): import("react").JSX.Element;
|
|
4
4
|
//# sourceMappingURL=info.native.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"info.native.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/info/info.native.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"info.native.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/info/info.native.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,2BAAwB,CAAC;AACjE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,iBAAc,CAAC;AAE7C,wBAAgB,IAAI,CAAC,EAAE,IAAI,EAAE,KAAkB,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE,kBAAkB,CAAC,QAAQ,CAAC,+BAmDlG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/order/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,WAAW,EAAE,MAAM,kBAAe,CAAC;AAC5C,YAAY,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,kBAAe,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { ChatComponentProps } from '../../model/chat.model.js';
|
|
2
|
+
import type { OrderListItem } from './order.model.js';
|
|
3
|
+
export declare function Order({ data, theme, language, actionLabel, onAction, onSelect, }: ChatComponentProps<OrderListItem>): import("react").JSX.Element | null;
|
|
4
|
+
//# sourceMappingURL=order.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"order.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/order/order.tsx"],"names":[],"mappings":"AAUA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,2BAAwB,CAAC;AACjE,OAAO,KAAK,EAAE,aAAa,EAAY,MAAM,kBAAe,CAAC;AAE7D,wBAAgB,KAAK,CAAC,EACpB,IAAI,EACJ,KAAkB,EAClB,QAAQ,EACR,WAAW,EACX,QAAQ,EACR,QAAQ,GACT,EAAE,kBAAkB,CAAC,aAAa,CAAC,sCA2JnC"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { LocalizedText } from '../../model/chat.model.js';
|
|
2
|
+
export declare enum OrderStatus {
|
|
3
|
+
Pending = "pending",
|
|
4
|
+
Preparing = "preparing",
|
|
5
|
+
Accepted = "accepted",
|
|
6
|
+
Rejected = "rejected",
|
|
7
|
+
Delivered = "delivered"
|
|
8
|
+
}
|
|
9
|
+
export interface OrderRow {
|
|
10
|
+
id: number;
|
|
11
|
+
image?: string;
|
|
12
|
+
name: LocalizedText;
|
|
13
|
+
quantity: number;
|
|
14
|
+
unitPrice?: string;
|
|
15
|
+
duration?: string;
|
|
16
|
+
price: string;
|
|
17
|
+
status?: OrderStatus;
|
|
18
|
+
statusLabel?: LocalizedText;
|
|
19
|
+
}
|
|
20
|
+
export interface OrderListItem {
|
|
21
|
+
orderNumber: string;
|
|
22
|
+
location?: LocalizedText;
|
|
23
|
+
status?: OrderStatus;
|
|
24
|
+
statusLabel?: LocalizedText;
|
|
25
|
+
items: OrderRow[];
|
|
26
|
+
totalLabel?: LocalizedText;
|
|
27
|
+
total?: string;
|
|
28
|
+
actionLabel?: LocalizedText;
|
|
29
|
+
}
|
|
30
|
+
//# sourceMappingURL=order.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"order.model.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/order/order.model.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAAwB,CAAC;AAE5D,oBAAY,WAAW;IACrB,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,SAAS,cAAc;CACxB;AAED,MAAM,WAAW,QAAQ;IACvB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,aAAa,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,WAAW,CAAC;IACrB,WAAW,CAAC,EAAE,aAAa,CAAC;CAC7B;AAED,MAAM,WAAW,aAAa;IAC5B,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,aAAa,CAAC;IACzB,MAAM,CAAC,EAAE,WAAW,CAAC;IACrB,WAAW,CAAC,EAAE,aAAa,CAAC;IAC5B,KAAK,EAAE,QAAQ,EAAE,CAAC;IAClB,UAAU,CAAC,EAAE,aAAa,CAAC;IAC3B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,aAAa,CAAC;CAC7B"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { ChatComponentProps } from '../../model/chat.model.js';
|
|
2
|
+
import type { OrderListItem } from './order.model.js';
|
|
3
|
+
export declare function Order({ data, theme, language, actionLabel, onAction, onSelect, }: ChatComponentProps<OrderListItem>): import("react").JSX.Element | null;
|
|
4
|
+
//# sourceMappingURL=order.native.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"order.native.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/order/order.native.tsx"],"names":[],"mappings":"AAWA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,2BAAwB,CAAC;AACjE,OAAO,KAAK,EAAE,aAAa,EAAY,MAAM,kBAAe,CAAC;AAE7D,wBAAgB,KAAK,CAAC,EACpB,IAAI,EACJ,KAAkB,EAClB,QAAQ,EACR,WAAW,EACX,QAAQ,EACR,QAAQ,GACT,EAAE,kBAAkB,CAAC,aAAa,CAAC,sCAyJnC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/chat/components/reservation/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAqB,CAAC;AACxD,YAAY,EAAE,mBAAmB,EAAE,cAAc,EAAE,MAAM,wBAAqB,CAAC"}
|