@quitting/ui 1.0.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.
Files changed (48) hide show
  1. package/dist/atim-ui.css +2 -0
  2. package/dist/atim-ui.es.js +1508 -0
  3. package/dist/atim-ui.es.js.map +1 -0
  4. package/dist/atim-ui.umd.js +2 -0
  5. package/dist/atim-ui.umd.js.map +1 -0
  6. package/dist/components/CallDialog.vue.d.ts +22 -0
  7. package/dist/components/CallDialog.vue.d.ts.map +1 -0
  8. package/dist/components/CallOutgoing.vue.d.ts +16 -0
  9. package/dist/components/CallOutgoing.vue.d.ts.map +1 -0
  10. package/dist/components/CallWindow.vue.d.ts +17 -0
  11. package/dist/components/CallWindow.vue.d.ts.map +1 -0
  12. package/dist/components/ChatPanel.vue.d.ts +13 -0
  13. package/dist/components/ChatPanel.vue.d.ts.map +1 -0
  14. package/dist/components/ConfirmDialog.vue.d.ts +16 -0
  15. package/dist/components/ConfirmDialog.vue.d.ts.map +1 -0
  16. package/dist/components/Icon.vue.d.ts +29 -0
  17. package/dist/components/Icon.vue.d.ts.map +1 -0
  18. package/dist/components/IncomingRing.vue.d.ts +16 -0
  19. package/dist/components/IncomingRing.vue.d.ts.map +1 -0
  20. package/dist/components/MeetWindow.vue.d.ts +77 -0
  21. package/dist/components/MeetWindow.vue.d.ts.map +1 -0
  22. package/dist/components/MeetingEndedToast.vue.d.ts +14 -0
  23. package/dist/components/MeetingEndedToast.vue.d.ts.map +1 -0
  24. package/dist/components/MeetingInvite.vue.d.ts +16 -0
  25. package/dist/components/MeetingInvite.vue.d.ts.map +1 -0
  26. package/dist/components/meeting/MainVideoTile.vue.d.ts +14 -0
  27. package/dist/components/meeting/MainVideoTile.vue.d.ts.map +1 -0
  28. package/dist/components/meeting/MeetingHeader.vue.d.ts +13 -0
  29. package/dist/components/meeting/MeetingHeader.vue.d.ts.map +1 -0
  30. package/dist/components/meeting/MemberItem.vue.d.ts +18 -0
  31. package/dist/components/meeting/MemberItem.vue.d.ts.map +1 -0
  32. package/dist/components/meeting/MemberListPanel.vue.d.ts +18 -0
  33. package/dist/components/meeting/MemberListPanel.vue.d.ts.map +1 -0
  34. package/dist/components/meeting/SidebarTabs.vue.d.ts +12 -0
  35. package/dist/components/meeting/SidebarTabs.vue.d.ts.map +1 -0
  36. package/dist/components/meeting/SmallVideoTile.vue.d.ts +18 -0
  37. package/dist/components/meeting/SmallVideoTile.vue.d.ts.map +1 -0
  38. package/dist/components/meeting/VideoListPanel.vue.d.ts +16 -0
  39. package/dist/components/meeting/VideoListPanel.vue.d.ts.map +1 -0
  40. package/dist/components/meeting/icons.d.ts +19 -0
  41. package/dist/components/meeting/icons.d.ts.map +1 -0
  42. package/dist/directives/draggable.d.ts +4 -0
  43. package/dist/directives/draggable.d.ts.map +1 -0
  44. package/dist/global-methods.d.ts +13 -0
  45. package/dist/global-methods.d.ts.map +1 -0
  46. package/dist/index.d.ts +18 -0
  47. package/dist/index.d.ts.map +1 -0
  48. package/package.json +54 -0
@@ -0,0 +1,22 @@
1
+ import { CallType } from '@quitting/contract';
2
+ type __VLS_Props = {
3
+ mode: 'outgoing' | 'incoming';
4
+ peerUid: string;
5
+ peerName?: string;
6
+ callType: CallType;
7
+ callId?: string;
8
+ timeoutSec?: number;
9
+ };
10
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
11
+ close: () => any;
12
+ connected: () => any;
13
+ accepted: (session: unknown) => any;
14
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
15
+ onClose?: (() => any) | undefined;
16
+ onConnected?: (() => any) | undefined;
17
+ onAccepted?: ((session: unknown) => any) | undefined;
18
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
19
+ ringAudio: HTMLAudioElement;
20
+ }, HTMLDivElement>;
21
+ export default _default;
22
+ //# sourceMappingURL=CallDialog.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CallDialog.vue.d.ts","sourceRoot":"","sources":["../../src/components/CallDialog.vue"],"names":[],"mappings":"AAsVA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AAiBlD,KAAK,WAAW,GAAG;IACjB,IAAI,EAAE,UAAU,GAAG,UAAU,CAAA;IAC7B,OAAO,EAAE,MAAM,CAAA;IACf,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,QAAQ,EAAE,QAAQ,CAAA;IAElB,MAAM,CAAC,EAAE,MAAM,CAAA;IAEf,UAAU,CAAC,EAAE,MAAM,CAAA;CACpB,CAAC;;;;;;;;;;;;AAyRF,wBASG"}
@@ -0,0 +1,16 @@
1
+ import { CallType } from '@quitting/contract';
2
+ type __VLS_Props = {
3
+ calleeUid: string;
4
+ calleeName?: string;
5
+ callType: CallType;
6
+ timeoutSec?: number;
7
+ };
8
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
9
+ close: () => any;
10
+ connected: () => any;
11
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
12
+ onClose?: (() => any) | undefined;
13
+ onConnected?: (() => any) | undefined;
14
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
15
+ export default _default;
16
+ //# sourceMappingURL=CallOutgoing.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CallOutgoing.vue.d.ts","sourceRoot":"","sources":["../../src/components/CallOutgoing.vue"],"names":[],"mappings":"AA0OA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AAWlD,KAAK,WAAW,GAAG;IACjB,SAAS,EAAE,MAAM,CAAA;IACjB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,QAAQ,EAAE,QAAQ,CAAA;IAElB,UAAU,CAAC,EAAE,MAAM,CAAA;CACpB,CAAC;;;;;;;;AAsLF,wBAQG"}
@@ -0,0 +1,17 @@
1
+ import { CallType } from '@quitting/contract';
2
+ type __VLS_Props = {
3
+ mode: 'caller' | 'callee';
4
+ calleeUid?: string;
5
+ callType: CallType;
6
+ onClose?: () => void;
7
+ };
8
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
9
+ close: () => any;
10
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
11
+ onClose?: (() => any) | undefined;
12
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
13
+ mainVideo: HTMLVideoElement;
14
+ pipVideo: HTMLVideoElement;
15
+ }, HTMLDivElement>;
16
+ export default _default;
17
+ //# sourceMappingURL=CallWindow.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CallWindow.vue.d.ts","sourceRoot":"","sources":["../../src/components/CallWindow.vue"],"names":[],"mappings":"AA4YA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AASlD,KAAK,WAAW,GAAG;IACjB,IAAI,EAAE,QAAQ,GAAG,QAAQ,CAAA;IACzB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,QAAQ,EAAE,QAAQ,CAAA;IAClB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;CACrB,CAAC;;;;;;;;;AAiXF,wBASG"}
@@ -0,0 +1,13 @@
1
+ type __VLS_Props = {
2
+ to: string;
3
+ onClose?: () => void;
4
+ };
5
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
6
+ close: () => any;
7
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
8
+ onClose?: (() => any) | undefined;
9
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
10
+ listEl: HTMLDivElement;
11
+ }, HTMLDivElement>;
12
+ export default _default;
13
+ //# sourceMappingURL=ChatPanel.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ChatPanel.vue.d.ts","sourceRoot":"","sources":["../../src/components/ChatPanel.vue"],"names":[],"mappings":"AA2MA,KAAK,WAAW,GAAG;IACjB,EAAE,EAAE,MAAM,CAAA;IACV,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;CACrB,CAAC;;;;;;;;AAmMF,wBASG"}
@@ -0,0 +1,16 @@
1
+ type __VLS_Props = {
2
+ title?: string;
3
+ message: string;
4
+ confirmText?: string;
5
+ cancelText?: string;
6
+ danger?: boolean;
7
+ };
8
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
9
+ cancel: () => any;
10
+ confirm: () => any;
11
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
12
+ onCancel?: (() => any) | undefined;
13
+ onConfirm?: (() => any) | undefined;
14
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
15
+ export default _default;
16
+ //# sourceMappingURL=ConfirmDialog.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ConfirmDialog.vue.d.ts","sourceRoot":"","sources":["../../src/components/ConfirmDialog.vue"],"names":[],"mappings":"AAAA,KAiGK,WAAW,GAAG;IACjB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,OAAO,EAAE,MAAM,CAAA;IACf,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,MAAM,CAAC,EAAE,OAAO,CAAA;CACjB,CAAC;;;;;;;;AA+FF,wBAQG"}
@@ -0,0 +1,29 @@
1
+ declare const ICON_PATHS: {
2
+ readonly 'mic-on': "<path d=\"M514.986667 112c80.170667 0 145.109333 62.08 145.109333 138.666667v277.248c0 76.586667-64.938667 138.624-145.066667 138.624-80.213333 0-145.152-62.08-145.152-138.624V250.666667c0-76.586667 64.981333-138.666667 145.109334-138.666667z m236.970666 411.221333c0 118.485333-93.013333 215.893333-212.608 228.992v135.637334a24.149333 24.149333 0 0 1-48.341333 0v-135.04c-122.709333-10.24-219.008-109.013333-219.008-229.546667v-96.426667a24.704 24.704 0 0 1 49.408 0v109.184c0 98.56 83.712 169.088 190.592 169.088 106.837333 0 196.309333-92.8 196.309333-169.088V423.936a21.845333 21.845333 0 0 1 43.690667 0v99.285333z\"/>";
3
+ readonly 'mic-off': "<path d=\"M656.384 559.232L369.877333 272.725333v-22.058666c0-76.586667 64.981333-138.666667 145.109334-138.666667 80.170667 0 145.109333 62.08 145.109333 138.666667v277.248c0 10.794667-1.28 21.248-3.712 31.317333z m-84.693333 96.341333a150.528 150.528 0 0 1-56.704 10.965334c-80.128 0-145.066667-62.08-145.066667-138.624v-74.154667l201.770667 201.813333z m153.898666-27.136l-29.610666-29.568a165.973333 165.973333 0 0 0 12.373333-62.848V423.936a21.845333 21.845333 0 0 1 43.648 0v99.285333c0 37.930667-9.557333 73.685333-26.453333 105.216z m-89.173333 91.904a245.290667 245.290667 0 0 1-97.066667 31.872v135.637334a24.149333 24.149333 0 0 1-48.341333 0v-135.04c-122.709333-10.24-219.008-109.013333-219.008-229.546667v-96.426667a24.704 24.704 0 0 1 49.408 0v109.184c0 98.56 86.613333 178.474667 193.450667 178.474667 33.92 0 65.834667-8.064 93.568-22.186667l28.032 28.032zM145.28 183.893333l45.226667-45.226666 678.826666 678.826666-45.226666 45.226667z\"/>";
4
+ readonly 'camera-on': "<path d=\"M873.770667 314.922667c19.797333-12.202667 37.632-2.048 37.632 18.304v335.232c0 24.362667-15.872 32.512-37.632 18.261333l-112.938667-67.029333c-19.797333-12.202667-37.632-26.453333-37.632-46.72V424.618667c0-18.261333 17.834667-30.464 37.632-42.666667l112.938667-67.029333zM207.232 288h391.936c43.562667 0 79.232 32 79.232 71.125333v305.749334c0 39.125333-35.669333 71.125333-79.232 71.125333H207.232C163.669333 736 128 704 128 664.874667V359.125333C128 320 163.669333 288 207.232 288z\"/>";
5
+ readonly 'camera-off': "<path d=\"M873.770667 314.922667c19.797333-12.202667 37.632-2.048 37.632 18.304v335.232c0 24.362667-15.872 32.512-37.632 18.261333l-112.938667-67.029333c-19.797333-12.202667-37.632-26.453333-37.632-46.72V424.618667c0-18.261333 17.834667-30.464 37.632-42.666667l112.938667-67.029333zM385.152 288h214.016c43.562667 0 79.232 32 79.232 71.125333v222.122667L385.152 288z m256.042667 437.077333a85.333333 85.333333 0 0 1-42.026667 10.922667H207.232C163.669333 736 128 704 128 664.874667V359.125333c0-38.186667 34.005333-69.632 76.16-71.082666l437.034667 437.034666zM145.28 183.893333l45.226667-45.226666 678.826666 678.826666-45.226666 45.226667z\"/>";
6
+ readonly 'sound-on': "<path d=\"M767.317333 767.018667a33.237333 33.237333 0 0 1-20.565333 6.656 34.56 34.56 0 0 1-25.386667-10.709334 34.986667 34.986667 0 0 1-10.666666-25.557333 35.2 35.2 0 0 1 13.994666-28.501333 5.76 5.76 0 0 0 1.450667-1.109334l0.725333-0.725333c13.738667-9.386667 26.453333-20.48 38.272-33.28 11.733333-12.842667 22.058667-26.794667 30.848-41.813333 8.832-15.061333 15.701333-31.146667 20.608-48.128a190.293333 190.293333 0 0 0 7.338667-52.906667c0-37.034667-9.301333-70.826667-27.946667-101.418667a250.794667 250.794667 0 0 0-69.845333-75.52 34.730667 34.730667 0 0 1-15.445333-29.568 34.986667 34.986667 0 0 1 10.666666-25.557333 34.56 34.56 0 0 1 25.386667-10.709333c8.32 0 15.658667 2.688 22.058667 8.106666 18.133333 12.842667 35.029333 27.776 50.730666 44.8 15.658667 17.066667 29.141333 35.541333 40.448 55.509334 11.264 19.968 20.053333 41.344 26.453334 64 6.4 22.698667 9.557333 46.165333 9.557333 70.314666 0 24.704-3.2 48.384-9.557333 71.082667a285.653333 285.653333 0 0 1-26.837334 64.384 305.450667 305.450667 0 0 1-92.288 100.693333v-0.042666z m-41.173333-332.330667c10.282667 14.336 18.517333 28.757333 24.661333 43.306667 6.101333 14.549333 9.173333 32.213333 9.173334 52.906666 0 19.754667-3.2 37.546667-9.557334 53.333334-6.4 15.786667-14.464 30.08-24.277333 42.88-3.925333 5.461333-8.106667 10.24-12.501333 14.464a23.552 23.552 0 0 1-16.896 6.272 29.866667 29.866667 0 0 1-22.442667-9.6 32.085333 32.085333 0 0 1-9.173333-22.954667 33.706667 33.706667 0 0 1 2.218666-11.861333h-0.768c2.474667-5.418667 5.418667-10.581333 8.832-15.530667 3.413333-4.949333 6.741333-9.984 9.941334-15.146667a84.48 84.48 0 0 0 8.106666-17.792c2.176-6.656 3.285333-14.677333 3.285334-24.064 0-8.874667-1.109333-16.64-3.328-23.296a94.208 94.208 0 0 0-8.106667-18.133333 240.170667 240.170667 0 0 0-9.898667-15.530667 67.072 67.072 0 0 1-8.106666-15.573333 29.994667 29.994667 0 0 1-2.176-11.818667c0-8.874667 3.072-16.512 9.173333-22.954666a29.866667 29.866667 0 0 1 22.442667-9.6c6.826667 0 12.501333 2.090667 16.896 6.272 4.437333 4.181333 8.576 9.002667 12.501333 14.421333z m-237.482667 439.637333a9078.869333 9078.869333 0 0 0-157.354666-139.136 10554.453333 10554.453333 0 0 0-83.797334-70.314666 177.408 177.408 0 0 1-16.213333 0.725333 125.781333 125.781333 0 0 1-13.952 0.768h-12.501333c-13.226667 0-24.021333-4.096-32.341334-12.202667a39.424 39.424 0 0 1-12.501333-29.269333v-186.453333h0.725333l-0.725333-0.768c0-13.824 4.266667-25.173333 12.885333-34.048a42.666667 42.666667 0 0 1 32-13.312h41.856a13012.906667 13012.906667 0 0 1 122.794667-103.637334c15.701333-13.312 31.146667-26.282667 46.336-38.826666 15.189333-12.586667 28.928-24.064 41.173333-34.432 12.245333-10.368 22.570667-18.986667 30.890667-25.898667 8.32-6.912 13.482667-11.093333 15.445333-12.586667 14.677333-10.88 26.581333-15.786667 35.626667-14.805333 9.088 0.981333 16.213333 5.418667 21.333333 13.312s8.704 17.493333 10.666667 28.885333c1.962667 11.349333 2.944 21.674667 2.944 31.061334v599.466666c0 9.386667-1.706667 19.413333-5.12 29.994667-3.456 10.624-8.746667 19.029333-15.829333 25.173333-7.125333 6.186667-16.042667 8.746667-26.88 7.765334-10.752-0.981333-23.253333-8.106667-37.461334-21.461334z\"/>";
7
+ readonly 'sound-off': "<path d=\"M767.872 670.72c10.624-11.946667 20.010667-24.917333 28.16-38.784 8.789333-15.018667 15.658667-31.061333 20.565333-48.085333a190.293333 190.293333 0 0 0 7.338667-52.906667c0-37.034667-9.301333-70.826667-27.946667-101.418667a250.794667 250.794667 0 0 0-69.845333-75.52 34.730667 34.730667 0 0 1-15.445333-29.568 34.986667 34.986667 0 0 1 10.666666-25.557333 34.56 34.56 0 0 1 25.386667-10.709333c8.32 0 15.658667 2.688 22.058667 8.106666 18.133333 12.842667 35.029333 27.776 50.730666 44.8 15.658667 17.066667 29.141333 35.541333 40.448 55.509334 11.264 19.968 20.053333 41.344 26.453334 64 6.4 22.698667 9.557333 46.165333 9.557333 70.314666 0 24.704-3.2 48.384-9.557333 71.082667a285.653333 285.653333 0 0 1-26.837334 64.384 304.64 304.64 0 0 1-40.533333 55.552l-51.2-51.2zM725.333333 628.224l-46.08-46.08c2.090667-3.072 4.096-6.229333 6.058667-9.386667a84.48 84.48 0 0 0 8.106667-17.792c2.176-6.656 3.285333-14.677333 3.285333-24.064 0-8.874667-1.109333-16.64-3.328-23.296a94.208 94.208 0 0 0-8.106667-18.133333 240.170667 240.170667 0 0 0-9.898666-15.530667 67.072 67.072 0 0 1-8.106667-15.573333 29.994667 29.994667 0 0 1-2.176-11.818667c0-8.874667 3.072-16.512 9.173333-22.954666a29.866667 29.866667 0 0 1 22.442667-9.6c6.826667 0 12.501333 2.090667 16.896 6.272 4.437333 4.181333 8.576 9.002667 12.501333 14.421333 10.282667 14.336 18.517333 28.757333 24.661334 43.306667 6.101333 14.549333 9.173333 32.213333 9.173333 52.906666 0 19.754667-3.2 37.546667-9.557333 53.333334A183.168 183.168 0 0 1 725.333333 628.181333zM278.997333 362.837333l294.954667 294.997334v175.061333c0 9.386667-1.706667 19.370667-5.12 29.952-3.456 10.624-8.746667 19.029333-15.829333 25.173333-7.125333 6.186667-16.042667 8.746667-26.88 7.765334-10.752-0.981333-23.253333-8.106667-37.461334-21.461334a9078.869333 9078.869333 0 0 0-157.354666-139.136 10554.453333 10554.453333 0 0 0-83.797334-70.314666 177.408 177.408 0 0 1-16.213333 0.725333 125.781333 125.781333 0 0 1-13.952 0.768h-12.501333c-13.226667 0-24.021333-4.096-32.341334-12.202667a39.424 39.424 0 0 1-12.501333-29.269333v-186.453333h0.725333l-0.725333-0.768c0-13.824 4.266667-25.173333 12.885333-34.048a42.666667 42.666667 0 0 1 32-13.312h41.856l32.256-27.434667z m98.261334-82.688c13.056-11.050667 25.898667-21.802667 38.613333-32.341333 15.189333-12.544 28.928-24.021333 41.173333-34.389333 12.245333-10.368 22.570667-18.986667 30.890667-25.898667 8.32-6.912 13.482667-11.093333 15.445333-12.586667 14.677333-10.88 26.581333-15.786667 35.626667-14.805333 9.088 0.981333 16.213333 5.418667 21.333333 13.312s8.704 17.493333 10.666667 28.885333c1.962667 11.349333 2.944 21.674667 2.944 31.061334v243.413333l-196.693333-196.693333zM145.28 183.893333l45.226667-45.226666 678.826666 678.826666-45.226666 45.226667z\"/>";
8
+ readonly answer: "<path d=\"M864.597333 647.338667l11.52 11.562666c0.341333 0.682667 0.597333 1.408 1.066667 2.005334 11.52 14.762667 14.848 32.213333 10.325333 52.266666-3.285333 14.421333-9.216 28.16-16.597333 41.386667-6.613333 11.861333-13.994667 23.381333-21.034667 34.986667l-9.045333 9.088c-5.845333 3.541333-11.477333 7.594667-17.493333 10.453333-15.018667 7.04-30.421333 8.533333-45.781334 8.490667-20.906667-0.042667-40.96-3.498667-60.970666-7.210667-32.810667-6.101333-64.896-13.952-94.933334-26.88-42.154667-18.133333-79.658667-42.922667-115.2-70.528a987.818667 987.818667 0 0 1-78.08-68.010667c-0.682667-0.682667-1.536-1.152-2.346666-1.706666l-44.373334-44.373334c-0.682667-0.938667-1.322667-1.962667-2.133333-2.816-19.072-22.058667-38.656-43.690667-57.216-66.218666a620.117333 620.117333 0 0 1-60.928-88.746667C236.245333 396.928 216.32 350.421333 212.608 296.362667c-1.450667-20.693333-4.224-41.088-2.389333-62.336 1.237333-14.677333 4.053333-29.184 11.52-43.008 2.048-3.797333 4.522667-7.381333 6.826666-11.050667l9.045334-9.045333c8.32-5.248 16.554667-10.538667 24.917333-15.616 13.909333-8.490667 27.733333-17.109333 42.965333-22.442667 15.957333-5.632 30.634667-4.778667 43.605334 3.2 4.906667 3.029333 9.429333 6.613333 14.122666 9.941333l8.789334 8.789334c0.768 1.066667 1.493333 2.133333 2.304 3.157333 4.266667 5.12 8.746667 10.026667 12.714666 15.36 23.637333 31.616 42.325333 66.56 58.581334 103.082667 8.448 19.029333 6.186667 38.741333-6.826667 58.154666-6.101333 9.045333-13.226667 17.621333-20.736 25.642667-14.506667 15.488-19.84 32.213333-15.616 50.56 1.536 6.570667 3.754667 12.928 6.570667 18.901333 9.258667 19.754667 22.826667 36.266667 37.76 51.626667 27.178667 27.861333 54.869333 55.338667 82.389333 82.901333 15.488 15.488 31.530667 30.378667 50.133333 42.24 11.52 7.381333 23.68 13.525333 37.973334 15.445334 14.08 1.962667 27.562667-1.365333 39.808-11.264 6.442667-5.205333 12.330667-11.136 18.645333-16.512 22.784-19.285333 46.506667-25.642667 71.850667-15.914667 37.546667 14.506667 71.253333 34.645333 102.826666 58.197333 4.778667 3.584 9.472 7.338667 14.208 10.965334z\"/>";
9
+ readonly hangup: "<path d=\"M68.820008 642.540165a22.883151 22.883151 0 0 0 13.903686 21.04864c2.800052 1.158641 5.793203 1.737961 8.689804 1.737961l216.37612-0.38621a22.786601 22.786601 0 0 0 22.786601-22.786601l0-87.670471c11.682955-13.807125 25.779752-25.296981 41.517949-33.986785a274.115036 274.115036 0 0 1 140.002394-34.276445l0.482771 0a270.832225 270.832225 0 0 1 139.616184 34.083335c15.641647 8.786365 29.641883 20.276209 41.228289 34.083346l0 87.1877a22.69004 22.69004 0 0 0 22.59349 22.786601l194.072289-0.28966 22.30383 0a22.59349 22.59349 0 0 0 22.690051-22.786601l0.09655-49.531883a22.207281 22.207281 0 0 0-0.67587-5.310432l-0.965541-3.958692a150.140499 150.140499 0 0 0-11.586405-46.828392c-43.352459-100.898276-222.748643-176.982342-417.303691-176.982342l-0.965541 0a868.01487 868.01487 0 0 0-229.024605 32.152275c-76.566836 21.72451-137.105804 52.138824-170.609819 85.64285-17.765829 17.283058-32.152275 37.752367-42.290379 60.442418-8.207045 18.441688-12.551947 38.428237-12.841607 58.607897l-0.09655 47.021491z\"/>";
10
+ readonly handup: "<path d=\"M166.997333 665.6H150.613333c-0.725333-0.213333-1.450667-0.597333-2.133333-0.682667-18.602667-2.261333-33.28-12.245333-44.288-29.653333a155.818667 155.818667 0 0 1-17.536-41.002667c-3.712-13.056-6.613333-26.410667-9.898667-39.594666v-12.842667c1.621333-6.613333 2.730667-13.482667 4.992-19.754667 5.632-15.573333 15.488-27.52 26.368-38.4 14.805333-14.72 31.402667-26.453333 48.213334-37.973333 27.477333-18.901333 55.765333-36.010667 86.144-48.128 42.624-16.981333 86.613333-25.941333 131.285333-31.573333 34.346667-4.266667 68.778667-6.4 103.296-7.125334 0.981333 0 1.92-0.298667 2.901333-0.469333h62.72c1.152 0.170667 2.346667 0.426667 3.498667 0.512 29.098667 2.090667 58.24 3.541333 87.296 6.314667 35.712 3.413333 70.997333 10.112 105.856 19.712 48.981333 13.44 95.957333 32.256 136.832 67.84 15.616 13.653333 32 26.069333 45.781333 42.368 9.472 11.264 17.749333 23.466667 22.229334 38.570666 1.28 4.138667 2.005333 8.405333 2.986666 12.629334v12.8c-2.176 9.6-4.266667 19.2-6.570666 28.714666-3.84 15.786667-7.552 31.701333-14.506667 46.208-7.338667 15.274667-18.304 25.002667-33.109333 28.586667-5.632 1.28-11.349333 1.962667-17.066667 2.944h-12.373333c-1.28-0.213333-2.56-0.469333-3.84-0.597333-6.656-0.64-13.269333-0.938667-19.882667-1.877334-39.082667-5.632-77.013333-17.152-114.346667-31.488-19.413333-7.466667-31.701333-22.997333-36.266666-45.952a205.098667 205.098667 0 0 1-3.456-32.810666c-0.682667-21.162667-8.746667-36.778667-24.746667-46.762667a94.72 94.72 0 0 0-17.92-8.704c-20.565333-7.424-41.856-9.514667-63.232-9.813333-38.954667-0.469333-77.952-0.341333-116.906667-0.341334-21.888 0-43.776 0.810667-65.365333 5.546667-13.312 2.944-26.24 7.210667-37.717333 15.914667-11.349333 8.618667-18.517333 20.48-20.181334 36.181333-0.853333 8.192-0.853333 16.554667-1.493333 24.789333-2.474667 29.781333-14.805333 51.072-39.594667 62.08-36.736 16.298667-74.88 25.898667-113.834666 31.573334-5.973333 0.853333-11.861333 1.493333-17.792 2.261333z\"/>";
11
+ readonly close: "<path d=\"M649.179 512l212.839-212.84c37.881-37.881 37.881-99.298 0-137.179s-99.298-37.881-137.179 0L512 374.821l-212.839-212.84c-37.881-37.881-99.298-37.881-137.179 0s-37.881 99.298 0 137.179L374.821 512 161.982 724.84c-37.881 37.881-37.881 99.297 0 137.179 18.94 18.94 43.765 28.41 68.589 28.41 24.825 0 49.649-9.47 68.589-28.41L512 649.179l212.839 212.84c18.94 18.94 43.765 28.41 68.589 28.41s49.649-9.47 68.59-28.41c37.881-37.882 37.881-99.298 0-137.179L649.179 512z\"/>";
12
+ readonly user: "<path d=\"M0 0h1024v1024H0V0z m614.8608 664.439467c-2.973013-30.685867-1.983147-53.4528-1.983147-82.158934 13.88544-7.918933 63.488-55.432533 67.437227-95.0272 10.922667-0.989867 28.757333-11.8784 33.716907-55.432533 2.976427-22.766933-7.932587-36.625067-14.875307-40.584533 17.851733-54.442667 25.78432-224.703147-99.170987-241.53088C587.093333 127.92832 554.366293 116.053333 511.72352 116.053333c-170.571093 2.9696-221.149867 130.6624-183.463253 276.176214-6.94272 3.959467-17.851733 16.827733-14.875307 40.584533 4.959573 43.554133 22.807893 54.442667 33.716907 55.432533 3.966293 40.584533 53.551787 88.098133 67.437226 95.0272 0 28.706133 0.989867 50.4832-1.98656 82.158934C378.835627 756.497067 157.696 708.983467 146.773333 907.946667h733.866667c-5.94944-201.936213-232.05888-151.453013-265.775787-243.510614z\"/>";
13
+ readonly more: "<circle cx=\"180\" cy=\"512\" r=\"90\"/><circle cx=\"512\" cy=\"512\" r=\"90\"/><circle cx=\"844\" cy=\"512\" r=\"90\"/>";
14
+ readonly plus: "<path d=\"M480 224v256H224a32 32 0 1 0 0 64h256v256a32 32 0 1 0 64 0V544h256a32 32 0 1 0 0-64H544V224a32 32 0 1 0-64 0z\"/>";
15
+ readonly minus: "<path d=\"M192 480h640a32 32 0 1 1 0 64H192a32 32 0 1 1 0-64z\"/>";
16
+ };
17
+ export type IconName = keyof typeof ICON_PATHS;
18
+ type __VLS_Props = {
19
+ name: IconName;
20
+ size?: number | string;
21
+ color?: string;
22
+ title?: string;
23
+ };
24
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
25
+ size: number | string;
26
+ color: string;
27
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, SVGSVGElement>;
28
+ export default _default;
29
+ //# sourceMappingURL=Icon.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Icon.vue.d.ts","sourceRoot":"","sources":["../../src/components/Icon.vue"],"names":[],"mappings":"AAoFA,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;CA6BN,CAAA;AAEV,MAAM,MAAM,QAAQ,GAAG,MAAM,OAAO,UAAU,CAAA;AAE9C,KAAK,WAAW,GAAG;IACf,IAAI,EAAE,QAAQ,CAAA;IACd,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACtB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,KAAK,CAAC,EAAE,MAAM,CAAA;CACf,CAAC;;UAHO,MAAM,GAAG,MAAM;WACd,MAAM;;AA4DlB,wBAQG"}
@@ -0,0 +1,16 @@
1
+ import { CallInviteEvent } from '@quitting/contract';
2
+ type __VLS_Props = {
3
+ invite: CallInviteEvent;
4
+ onClose?: () => void;
5
+ };
6
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
7
+ close: () => any;
8
+ accepted: (session: unknown) => any;
9
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
10
+ onClose?: (() => any) | undefined;
11
+ onAccepted?: ((session: unknown) => any) | undefined;
12
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
13
+ ringAudio: HTMLAudioElement;
14
+ }, HTMLDivElement>;
15
+ export default _default;
16
+ //# sourceMappingURL=IncomingRing.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IncomingRing.vue.d.ts","sourceRoot":"","sources":["../../src/components/IncomingRing.vue"],"names":[],"mappings":"AAgLA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAA;AAKzD,KAAK,WAAW,GAAG;IACjB,MAAM,EAAE,eAAe,CAAA;IACvB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;CACrB,CAAC;;;;;;;;;;AAsLF,wBASG"}
@@ -0,0 +1,77 @@
1
+ import { MeetingMember } from '@quitting/contract';
2
+ type __VLS_Props = {
3
+ mode: 'host' | 'participant';
4
+ title: string;
5
+ height?: string;
6
+ onClose?: () => void;
7
+ resolveUser?: (uid: string) => {
8
+ name: string;
9
+ dept?: string;
10
+ } | undefined;
11
+ };
12
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
13
+ close: () => any;
14
+ addMember: () => any;
15
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
16
+ onClose?: (() => any) | undefined;
17
+ onAddMember?: (() => any) | undefined;
18
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
19
+ contentEl: HTMLDivElement;
20
+ mainVideoWrap: HTMLDivElement;
21
+ mainVideoRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
22
+ identity: string;
23
+ name: string;
24
+ muted: boolean;
25
+ speaking: boolean;
26
+ isHost: boolean;
27
+ isSelf?: boolean;
28
+ onVideoElReady?: (identity: string, el: HTMLVideoElement | null) => void;
29
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
30
+ videoEl: HTMLVideoElement;
31
+ }, HTMLElement, import('vue').ComponentProvideOptions, {
32
+ P: {};
33
+ B: {};
34
+ D: {};
35
+ C: {};
36
+ M: {};
37
+ Defaults: {};
38
+ }, Readonly<{
39
+ identity: string;
40
+ name: string;
41
+ muted: boolean;
42
+ speaking: boolean;
43
+ isHost: boolean;
44
+ isSelf?: boolean;
45
+ onVideoElReady?: (identity: string, el: HTMLVideoElement | null) => void;
46
+ }> & Readonly<{}>, {}, {}, {}, {}, {}> | null;
47
+ sidebarEl: HTMLElement;
48
+ tabBarWrap: HTMLDivElement;
49
+ videoListPanelRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
50
+ members: MeetingMember[];
51
+ onTileMount?: (identity: string, el: HTMLVideoElement | null) => void;
52
+ }> & Readonly<{
53
+ onTileClick?: ((identity: string) => any) | undefined;
54
+ }>, {
55
+ listEl: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
56
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
57
+ tileClick: (identity: string) => any;
58
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
59
+ listEl: HTMLDivElement;
60
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
61
+ P: {};
62
+ B: {};
63
+ D: {};
64
+ C: {};
65
+ M: {};
66
+ Defaults: {};
67
+ }, Readonly<{
68
+ members: MeetingMember[];
69
+ onTileMount?: (identity: string, el: HTMLVideoElement | null) => void;
70
+ }> & Readonly<{
71
+ onTileClick?: ((identity: string) => any) | undefined;
72
+ }>, {
73
+ listEl: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
74
+ }, {}, {}, {}, {}> | null;
75
+ }, any>;
76
+ export default _default;
77
+ //# sourceMappingURL=MeetWindow.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MeetWindow.vue.d.ts","sourceRoot":"","sources":["../../src/components/MeetWindow.vue"],"names":[],"mappings":"AAo+BA,OAAO,KAAK,EAAE,aAAa,EAAkD,MAAM,oBAAoB,CAAA;AAMvG,KAAK,WAAW,GAAG;IACjB,IAAI,EAAE,MAAM,GAAG,aAAa,CAAA;IAC5B,KAAK,EAAE,MAAM,CAAA;IAGb,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;IAIpB,WAAW,CAAC,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,SAAS,CAAA;CAC3E,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAk/BF,wBAQG"}
@@ -0,0 +1,14 @@
1
+ type __VLS_Props = {
2
+ reason?: string;
3
+ duration?: number;
4
+ };
5
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
6
+ close: () => any;
7
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
8
+ onClose?: (() => any) | undefined;
9
+ }>, {
10
+ duration: number;
11
+ reason: string;
12
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
13
+ export default _default;
14
+ //# sourceMappingURL=MeetingEndedToast.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MeetingEndedToast.vue.d.ts","sourceRoot":"","sources":["../../src/components/MeetingEndedToast.vue"],"names":[],"mappings":"AAqIA,KAAK,WAAW,GAAG;IACf,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,QAAQ,CAAC,EAAE,MAAM,CAAA;CAClB,CAAC;;;;;;cADW,MAAM;YADR,MAAM;;AA0HnB,wBASG"}
@@ -0,0 +1,16 @@
1
+ import { MeetingInviteEvent } from '@quitting/contract';
2
+ type __VLS_Props = {
3
+ invite: MeetingInviteEvent;
4
+ conflict?: boolean;
5
+ fromName?: string;
6
+ onClose?: () => void;
7
+ };
8
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
9
+ close: () => any;
10
+ accepted: (session: unknown) => any;
11
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
12
+ onClose?: (() => any) | undefined;
13
+ onAccepted?: ((session: unknown) => any) | undefined;
14
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
15
+ export default _default;
16
+ //# sourceMappingURL=MeetingInvite.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MeetingInvite.vue.d.ts","sourceRoot":"","sources":["../../src/components/MeetingInvite.vue"],"names":[],"mappings":"AAwUA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAA;AAQ5D,KAAK,WAAW,GAAG;IACjB,MAAM,EAAE,kBAAkB,CAAA;IAC1B,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;CACrB,CAAC;;;;;;;;AA6NF,wBAQG"}
@@ -0,0 +1,14 @@
1
+ type __VLS_Props = {
2
+ identity: string;
3
+ name: string;
4
+ muted: boolean;
5
+ speaking: boolean;
6
+ isHost: boolean;
7
+ isSelf?: boolean;
8
+ onVideoElReady?: (identity: string, el: HTMLVideoElement | null) => void;
9
+ };
10
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
11
+ videoEl: HTMLVideoElement;
12
+ }, HTMLElement>;
13
+ export default _default;
14
+ //# sourceMappingURL=MainVideoTile.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MainVideoTile.vue.d.ts","sourceRoot":"","sources":["../../../src/components/meeting/MainVideoTile.vue"],"names":[],"mappings":"AA6KA,KAAK,WAAW,GAAG;IACjB,QAAQ,EAAE,MAAM,CAAA;IAChB,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,OAAO,CAAA;IACd,QAAQ,EAAE,OAAO,CAAA;IACjB,MAAM,EAAE,OAAO,CAAA;IACf,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,cAAc,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,EAAE,EAAE,gBAAgB,GAAG,IAAI,KAAK,IAAI,CAAA;CACzE,CAAC;;;;AAgIF,wBAQG"}
@@ -0,0 +1,13 @@
1
+ type __VLS_Props = {
2
+ title: string;
3
+ duration?: string;
4
+ };
5
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
6
+ close: () => any;
7
+ minimize: () => any;
8
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
9
+ onClose?: (() => any) | undefined;
10
+ onMinimize?: (() => any) | undefined;
11
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
12
+ export default _default;
13
+ //# sourceMappingURL=MeetingHeader.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MeetingHeader.vue.d.ts","sourceRoot":"","sources":["../../../src/components/meeting/MeetingHeader.vue"],"names":[],"mappings":"AA4GA,KAAK,WAAW,GAAG;IACjB,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,CAAC,EAAE,MAAM,CAAA;CAClB,CAAC;;;;;;;;AAgGF,wBAQG"}
@@ -0,0 +1,18 @@
1
+ import { MeetingMember } from '@quitting/contract';
2
+ type __VLS_Props = {
3
+ member: MeetingMember;
4
+ canPromote: boolean;
5
+ canKick: boolean;
6
+ canReinvite?: boolean;
7
+ };
8
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
9
+ transferHost: (uid: string) => any;
10
+ kick: (uid: string) => any;
11
+ reinvite: (uid: string) => any;
12
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
13
+ onTransferHost?: ((uid: string) => any) | undefined;
14
+ onKick?: ((uid: string) => any) | undefined;
15
+ onReinvite?: ((uid: string) => any) | undefined;
16
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
17
+ export default _default;
18
+ //# sourceMappingURL=MemberItem.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MemberItem.vue.d.ts","sourceRoot":"","sources":["../../../src/components/meeting/MemberItem.vue"],"names":[],"mappings":"AA4SA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAA;AAEvD,KAAK,WAAW,GAAG;IACjB,MAAM,EAAE,aAAa,CAAA;IAErB,UAAU,EAAE,OAAO,CAAA;IACnB,OAAO,EAAE,OAAO,CAAA;IAChB,WAAW,CAAC,EAAE,OAAO,CAAA;CACtB,CAAC;;;;;;;;;;AAmRF,wBAQG"}
@@ -0,0 +1,18 @@
1
+ import { MeetingMember } from '@quitting/contract';
2
+ type __VLS_Props = {
3
+ members: MeetingMember[];
4
+ canPromote: boolean;
5
+ canKick: boolean;
6
+ canReinvite?: boolean;
7
+ };
8
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
9
+ transferHost: (uid: string) => any;
10
+ kick: (uid: string) => any;
11
+ reinvite: (uid: string) => any;
12
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
13
+ onTransferHost?: ((uid: string) => any) | undefined;
14
+ onKick?: ((uid: string) => any) | undefined;
15
+ onReinvite?: ((uid: string) => any) | undefined;
16
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
17
+ export default _default;
18
+ //# sourceMappingURL=MemberListPanel.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MemberListPanel.vue.d.ts","sourceRoot":"","sources":["../../../src/components/meeting/MemberListPanel.vue"],"names":[],"mappings":"AAsDA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAA;AAEvD,KAAK,WAAW,GAAG;IACjB,OAAO,EAAE,aAAa,EAAE,CAAA;IACxB,UAAU,EAAE,OAAO,CAAA;IACnB,OAAO,EAAE,OAAO,CAAA;IAEhB,WAAW,CAAC,EAAE,OAAO,CAAA;CACtB,CAAC;;;;;;;;;;AAyFF,wBAQG"}
@@ -0,0 +1,12 @@
1
+ type __VLS_Props = {
2
+ activeTab: 'video' | 'member';
3
+ };
4
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
5
+ "update:activeTab": (tab: "video" | "member") => any;
6
+ addMember: () => any;
7
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
8
+ "onUpdate:activeTab"?: ((tab: "video" | "member") => any) | undefined;
9
+ onAddMember?: (() => any) | undefined;
10
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
11
+ export default _default;
12
+ //# sourceMappingURL=SidebarTabs.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SidebarTabs.vue.d.ts","sourceRoot":"","sources":["../../../src/components/meeting/SidebarTabs.vue"],"names":[],"mappings":"AAkHA,KAAK,WAAW,GAAG;IACjB,SAAS,EAAE,OAAO,GAAG,QAAQ,CAAA;CAC9B,CAAC;;;;;;;;AAiGF,wBAQG"}
@@ -0,0 +1,18 @@
1
+ type __VLS_Props = {
2
+ identity: string;
3
+ name: string;
4
+ muted: boolean;
5
+ speaking: boolean;
6
+ isHost: boolean;
7
+ isSelf?: boolean;
8
+ onVideoElReady?: (identity: string, el: HTMLVideoElement | null) => void;
9
+ };
10
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
11
+ click: (identity: string) => any;
12
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
13
+ onClick?: ((identity: string) => any) | undefined;
14
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
15
+ videoEl: HTMLVideoElement;
16
+ }, HTMLDivElement>;
17
+ export default _default;
18
+ //# sourceMappingURL=SmallVideoTile.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SmallVideoTile.vue.d.ts","sourceRoot":"","sources":["../../../src/components/meeting/SmallVideoTile.vue"],"names":[],"mappings":"AA8LA,KAAK,WAAW,GAAG;IACjB,QAAQ,EAAE,MAAM,CAAA;IAChB,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,OAAO,CAAA;IACd,QAAQ,EAAE,OAAO,CAAA;IACjB,MAAM,EAAE,OAAO,CAAA;IACf,MAAM,CAAC,EAAE,OAAO,CAAA;IAEhB,cAAc,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,EAAE,EAAE,gBAAgB,GAAG,IAAI,KAAK,IAAI,CAAA;CACzE,CAAC;;;;;;;;AA4IF,wBASG"}
@@ -0,0 +1,16 @@
1
+ import { MeetingMember } from '@quitting/contract';
2
+ type __VLS_Props = {
3
+ members: MeetingMember[];
4
+ onTileMount?: (identity: string, el: HTMLVideoElement | null) => void;
5
+ };
6
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {
7
+ listEl: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
8
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
9
+ tileClick: (identity: string) => any;
10
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
11
+ onTileClick?: ((identity: string) => any) | undefined;
12
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
13
+ listEl: HTMLDivElement;
14
+ }, HTMLDivElement>;
15
+ export default _default;
16
+ //# sourceMappingURL=VideoListPanel.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"VideoListPanel.vue.d.ts","sourceRoot":"","sources":["../../../src/components/meeting/VideoListPanel.vue"],"names":[],"mappings":"AA6DA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAA;AAEvD,KAAK,WAAW,GAAG;IACjB,OAAO,EAAE,aAAa,EAAE,CAAA;IAExB,WAAW,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,EAAE,EAAE,gBAAgB,GAAG,IAAI,KAAK,IAAI,CAAA;CACtE,CAAC;;;;;;;;;;AAmGF,wBAUG"}
@@ -0,0 +1,19 @@
1
+ /** 麦克风开启:白色描边 */
2
+ export declare const MicOnIcon = "<svg class=\"mic-icon\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" aria-hidden=\"true\">\n <path d=\"M12 2a3 3 0 0 1 3 3v6a3 3 0 0 1-6 0V5a3 3 0 0 1 3-3z\"></path>\n <path d=\"M19 10v2a7 7 0 0 1-14 0v-2\"></path>\n <line x1=\"12\" y1=\"19\" x2=\"12\" y2=\"23\"></line>\n <line x1=\"8\" y1=\"23\" x2=\"16\" y2=\"23\"></line>\n</svg>";
3
+ /** 麦克风关闭:红色描边 + 斜杠 */
4
+ export declare const MicOffIcon = "<svg class=\"mic-icon muted\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" aria-hidden=\"true\">\n <line x1=\"1\" y1=\"1\" x2=\"23\" y2=\"23\"></line>\n <path d=\"M9 9v5a3 3 0 0 0 5.1 2.1\"></path>\n <path d=\"M15 9.34V5a3 3 0 0 0-5.94-1.1\"></path>\n <path d=\"M17 16.95A7 7 0 0 1 5 12v-2\"></path>\n <path d=\"M19 5v4\"></path>\n <path d=\"M12 19v4\"></path>\n <path d=\"M8 23h8\"></path>\n</svg>";
5
+ /** 正在发言:声波柱动效(CSS keyframes 控制) */
6
+ export declare const SpeakingIndicator = "<span class=\"speaking-indicator\"><span class=\"wave-bar\"></span><span class=\"wave-bar\"></span><span class=\"wave-bar\"></span><span>\u6B63\u5728\u53D1\u8A00</span></span>";
7
+ /** 主持人 badge:用 "👑" emoji 太重,这里用简洁的"主"字徽标 */
8
+ export declare const HostBadge = "<span class=\"host-badge\">\u4E3B\u6301\u4EBA</span>";
9
+ /** 最小化按钮 SVG */
10
+ export declare const MinimizeIcon = "<svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\"></line></svg>";
11
+ /** 还原(最大化)按钮 SVG:四角向外箭头 */
12
+ export declare const MaximizeIcon = "<svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polyline points=\"15 3 21 3 21 9\"></polyline><polyline points=\"9 21 3 21 3 15\"></polyline><line x1=\"21\" y1=\"3\" x2=\"14\" y2=\"10\"></line><line x1=\"3\" y1=\"21\" x2=\"10\" y2=\"14\"></line></svg>";
13
+ /** 关闭按钮 SVG */
14
+ export declare const CloseIcon = "<svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><line x1=\"6\" y1=\"6\" x2=\"18\" y2=\"18\"></line><line x1=\"18\" y1=\"6\" x2=\"6\" y2=\"18\"></line></svg>";
15
+ /** 更多操作(⋯)按钮 SVG */
16
+ export declare const MoreIcon = "<svg viewBox=\"0 0 24 24\" fill=\"currentColor\"><circle cx=\"5\" cy=\"12\" r=\"2\"></circle><circle cx=\"12\" cy=\"12\" r=\"2\"></circle><circle cx=\"19\" cy=\"12\" r=\"2\"></circle></svg>";
17
+ /** 渲染麦克风图标——根据 muted 选 MicOnIcon/MicOffIcon */
18
+ export declare function renderMicIcon(muted: boolean): string;
19
+ //# sourceMappingURL=icons.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../../src/components/meeting/icons.ts"],"names":[],"mappings":"AAGA,iBAAiB;AACjB,eAAO,MAAM,SAAS,2aAKf,CAAA;AAEP,sBAAsB;AACtB,eAAO,MAAM,UAAU,+eAQhB,CAAA;AAEP,mCAAmC;AACnC,eAAO,MAAM,iBAAiB,oLAAwJ,CAAA;AAEtL,6CAA6C;AAC7C,eAAO,MAAM,SAAS,yDAAwC,CAAA;AAE9D,gBAAgB;AAChB,eAAO,MAAM,YAAY,sMAAkL,CAAA;AAE3M,2BAA2B;AAC3B,eAAO,MAAM,YAAY,wVAAwT,CAAA;AAEjV,eAAe;AACf,eAAO,MAAM,SAAS,wPAA4N,CAAA;AAElP,oBAAoB;AACpB,eAAO,MAAM,QAAQ,kMAA4K,CAAA;AAEjM,+CAA+C;AAC/C,wBAAgB,aAAa,CAAC,KAAK,EAAE,OAAO,GAAG,MAAM,CAEpD"}
@@ -0,0 +1,4 @@
1
+ import { Directive } from 'vue';
2
+ declare const draggable: Directive<HTMLElement>;
3
+ export default draggable;
4
+ //# sourceMappingURL=draggable.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"draggable.d.ts","sourceRoot":"","sources":["../../src/directives/draggable.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAoB,MAAM,KAAK,CAAA;AAyEtD,QAAA,MAAM,SAAS,EAAE,SAAS,CAAC,WAAW,CAkBrC,CAAA;AAED,eAAe,SAAS,CAAA"}
@@ -0,0 +1,13 @@
1
+ import { App } from 'vue';
2
+ import { AtimClient } from '@quitting/core';
3
+ import { CallType } from '@quitting/contract';
4
+ export declare function setupGlobalMethods(atimClient: AtimClient, vueApp: App): void;
5
+ export declare const AtimUI: {
6
+ chat(userId: string): void;
7
+ call(userId: string, type?: CallType): void;
8
+ meeting(opts: {
9
+ invitees: string[];
10
+ title?: string;
11
+ }): void;
12
+ };
13
+ //# sourceMappingURL=global-methods.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"global-methods.d.ts","sourceRoot":"","sources":["../src/global-methods.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,KAAK,GAAG,EAAE,MAAM,KAAK,CAAA;AAGzC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAA;AAChD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AA8ClD,wBAAgB,kBAAkB,CAAC,UAAU,EAAE,UAAU,EAAE,MAAM,EAAE,GAAG,QAsErE;AAGD,eAAO,MAAM,MAAM;iBAEJ,MAAM;iBAKN,MAAM,SAAQ,QAAQ;kBAkBrB;QAAE,QAAQ,EAAE,MAAM,EAAE,CAAC;QAAC,KAAK,CAAC,EAAE,MAAM,CAAA;KAAE;CASrD,CAAA"}
@@ -0,0 +1,18 @@
1
+ import { Plugin } from 'vue';
2
+ import { AtimClient } from '@quitting/core';
3
+ import { default as Icon } from './components/Icon.vue';
4
+ import { default as CallWindow } from './components/CallWindow.vue';
5
+ import { default as CallDialog } from './components/CallDialog.vue';
6
+ import { default as CallOutgoing } from './components/CallOutgoing.vue';
7
+ import { default as MeetWindow } from './components/MeetWindow.vue';
8
+ import { default as IncomingRing } from './components/IncomingRing.vue';
9
+ import { default as MeetingInvite } from './components/MeetingInvite.vue';
10
+ import { default as ChatPanel } from './components/ChatPanel.vue';
11
+ export interface AtimUIOptions {
12
+ client: AtimClient;
13
+ }
14
+ export declare const AtimUIPlugin: Plugin;
15
+ export default AtimUIPlugin;
16
+ export { Icon, CallWindow, CallDialog, CallOutgoing, MeetWindow, IncomingRing, MeetingInvite, ChatPanel, };
17
+ export { AtimUI } from './global-methods';
18
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAO,MAAM,EAAE,MAAM,KAAK,CAAA;AACtC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAA;AAGhD,OAAO,IAAI,MAAM,uBAAuB,CAAA;AACxC,OAAO,UAAU,MAAM,6BAA6B,CAAA;AACpD,OAAO,UAAU,MAAM,6BAA6B,CAAA;AACpD,OAAO,YAAY,MAAM,+BAA+B,CAAA;AACxD,OAAO,UAAU,MAAM,6BAA6B,CAAA;AACpD,OAAO,YAAY,MAAM,+BAA+B,CAAA;AACxD,OAAO,aAAa,MAAM,gCAAgC,CAAA;AAC1D,OAAO,SAAS,MAAM,4BAA4B,CAAA;AAYlD,MAAM,WAAW,aAAa;IAC5B,MAAM,EAAE,UAAU,CAAA;CACnB;AAED,eAAO,MAAM,YAAY,EAAE,MAkB1B,CAAA;AAED,eAAe,YAAY,CAAA;AAG3B,OAAO,EACL,IAAI,EACJ,UAAU,EACV,UAAU,EACV,YAAY,EACZ,UAAU,EACV,YAAY,EACZ,aAAa,EACb,SAAS,GACV,CAAA;AACD,OAAO,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAA"}
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "@quitting/ui",
3
+ "version": "1.0.0",
4
+ "description": "atim 半 UI SDK(Vue3 弹窗组件库 + 全局方法)",
5
+ "style": "./dist/atim-ui.css",
6
+ "files": [
7
+ "dist"
8
+ ],
9
+ "type": "module",
10
+ "sideEffects": [
11
+ "*.css",
12
+ "*.vue"
13
+ ],
14
+ "main": "./dist/atim-ui.umd.js",
15
+ "module": "./dist/atim-ui.es.js",
16
+ "types": "./dist/index.d.ts",
17
+ "exports": {
18
+ ".": {
19
+ "types": "./dist/index.d.ts",
20
+ "import": "./dist/atim-ui.es.js",
21
+ "require": "./dist/atim-ui.umd.js"
22
+ },
23
+ "./style.css": "./dist/atim-ui.css"
24
+ },
25
+ "publishConfig": {
26
+ "access": "public"
27
+ },
28
+ "dependencies": {
29
+ "livekit-client": "^2.20.1",
30
+ "@quitting/contract": "1.0.0",
31
+ "@quitting/core": "1.0.0"
32
+ },
33
+ "devDependencies": {
34
+ "@types/node": "^22.0.0",
35
+ "@vitejs/plugin-vue": "^6.0.7",
36
+ "typescript": "^5.9.3",
37
+ "vite": "^8.1.4",
38
+ "vite-plugin-dts": "^4.5.0",
39
+ "vue": "^3.5.39",
40
+ "vue-tsc": "^3.3.7",
41
+ "@quitting/core": "1.0.0",
42
+ "@quitting/contract": "1.0.0"
43
+ },
44
+ "peerDependencies": {
45
+ "@quitting/contract": "1.0.0",
46
+ "@quitting/core": "1.0.0",
47
+ "vue": "^3.5.0"
48
+ },
49
+ "scripts": {
50
+ "dev": "vite build --watch",
51
+ "build": "vite build",
52
+ "typecheck": "vue-tsc --noEmit"
53
+ }
54
+ }