@conference-kit/ui-vue 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/icons.d.ts +9 -0
- package/dist/icons.d.ts.map +1 -0
- package/dist/icons.js +18 -0
- package/dist/icons.js.map +1 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +7 -0
- package/dist/index.js.map +1 -0
- package/package.json +3 -3
package/dist/icons.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { type FunctionalComponent, type SVGAttributes } from "vue";
|
|
2
|
+
export declare const SignalIcon: FunctionalComponent<SVGAttributes, {}, any, {}>;
|
|
3
|
+
export declare const WifiOffIcon: FunctionalComponent<SVGAttributes, {}, any, {}>;
|
|
4
|
+
export declare const MicIcon: FunctionalComponent<SVGAttributes, {}, any, {}>;
|
|
5
|
+
export declare const VideoIcon: FunctionalComponent<SVGAttributes, {}, any, {}>;
|
|
6
|
+
export declare const PhoneIcon: FunctionalComponent<SVGAttributes, {}, any, {}>;
|
|
7
|
+
export declare const ScreenIcon: FunctionalComponent<SVGAttributes, {}, any, {}>;
|
|
8
|
+
export declare const ChatIcon: FunctionalComponent<SVGAttributes, {}, any, {}>;
|
|
9
|
+
//# sourceMappingURL=icons.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../src/icons.ts"],"names":[],"mappings":"AAAA,OAAO,EAAK,KAAK,mBAAmB,EAAE,KAAK,aAAa,EAAE,MAAM,KAAK,CAAC;AAiBtE,eAAO,MAAM,UAAU,iDAEtB,CAAC;AACF,eAAO,MAAM,WAAW,iDAEvB,CAAC;AACF,eAAO,MAAM,OAAO,iDAEnB,CAAC;AACF,eAAO,MAAM,SAAS,iDAErB,CAAC;AACF,eAAO,MAAM,SAAS,iDAErB,CAAC;AACF,eAAO,MAAM,UAAU,iDAAoC,CAAC;AAC5D,eAAO,MAAM,QAAQ,iDAEpB,CAAC"}
|
package/dist/icons.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { h } from "vue";
|
|
2
|
+
function makeIcon(path) {
|
|
3
|
+
return (props) => h("svg", {
|
|
4
|
+
viewBox: "0 0 24 24",
|
|
5
|
+
fill: "none",
|
|
6
|
+
stroke: "currentColor",
|
|
7
|
+
strokeWidth: 1.6,
|
|
8
|
+
...props,
|
|
9
|
+
}, [h("path", { d: path })]);
|
|
10
|
+
}
|
|
11
|
+
export const SignalIcon = makeIcon("M4 18h2v-4H4v4Zm5 0h2V8H9v10Zm5 0h2V4h-2v14Zm5 0h2v-7h-2v7Z");
|
|
12
|
+
export const WifiOffIcon = makeIcon("m3 3 18 18M7.5 7.1A13 13 0 0 1 12 6c1.9 0 3.7.4 5.4 1.2M5 10.2A10 10 0 0 1 12 8c1.6 0 3.2.3 4.6 1M7 13.3A7 7 0 0 1 12 12c1.4 0 2.6.3 3.8.9M9.5 16.4A3.5 3.5 0 0 1 12 16c.5 0 1 .1 1.5.3");
|
|
13
|
+
export const MicIcon = makeIcon("M7 4a5 5 0 1 1 10 0v6a5 5 0 1 1-10 0V4Z M5 11v1a7 7 0 0 0 14 0v-1 M12 19v2");
|
|
14
|
+
export const VideoIcon = makeIcon("M3 7.5A2.5 2.5 0 0 1 5.5 5h7A2.5 2.5 0 0 1 15 7.5v9A2.5 2.5 0 0 1 12.5 19h-7A2.5 2.5 0 0 1 3 16.5v-9Z M15 10.5 20.5 7v10l-5.5-3V10.5Z");
|
|
15
|
+
export const PhoneIcon = makeIcon("M5 4h4l1.5 4-2 1a10 10 0 0 0 5.5 5.5l1-2L19 15v4a2 2 0 0 1-2 2 14 14 0 0 1-14-14 2 2 0 0 1 2-2Z");
|
|
16
|
+
export const ScreenIcon = makeIcon("M3 5h18v12H3z M8 19h8");
|
|
17
|
+
export const ChatIcon = makeIcon("M5 5h14a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H9l-4 3v-5H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2Z");
|
|
18
|
+
//# sourceMappingURL=icons.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icons.js","sourceRoot":"","sources":["../src/icons.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAgD,MAAM,KAAK,CAAC;AAEtE,SAAS,QAAQ,CAAC,IAAY;IAC5B,OAAO,CAAC,KAAK,EAAE,EAAE,CACf,CAAC,CACC,KAAK,EACL;QACE,OAAO,EAAE,WAAW;QACpB,IAAI,EAAE,MAAM;QACZ,MAAM,EAAE,cAAc;QACtB,WAAW,EAAE,GAAG;QAChB,GAAG,KAAK;KACT,EACD,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC,CACzB,CAAC;AACN,CAAC;AAED,MAAM,CAAC,MAAM,UAAU,GAAG,QAAQ,CAChC,6DAA6D,CAC9D,CAAC;AACF,MAAM,CAAC,MAAM,WAAW,GAAG,QAAQ,CACjC,yLAAyL,CAC1L,CAAC;AACF,MAAM,CAAC,MAAM,OAAO,GAAG,QAAQ,CAC7B,4EAA4E,CAC7E,CAAC;AACF,MAAM,CAAC,MAAM,SAAS,GAAG,QAAQ,CAC/B,uIAAuI,CACxI,CAAC;AACF,MAAM,CAAC,MAAM,SAAS,GAAG,QAAQ,CAC/B,iGAAiG,CAClG,CAAC;AACF,MAAM,CAAC,MAAM,UAAU,GAAG,QAAQ,CAAC,uBAAuB,CAAC,CAAC;AAC5D,MAAM,CAAC,MAAM,QAAQ,GAAG,QAAQ,CAC9B,kFAAkF,CACnF,CAAC"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { default as ConnectionBadge } from "./ConnectionBadge.vue";
|
|
2
|
+
export { default as ParticipantTile } from "./ParticipantTile.vue";
|
|
3
|
+
export { default as ParticipantGrid } from "./ParticipantGrid.vue";
|
|
4
|
+
export { default as RosterList } from "./RosterList.vue";
|
|
5
|
+
export { default as ControlBar } from "./ControlBar.vue";
|
|
6
|
+
export { default as ChatPanel } from "./ChatPanel.vue";
|
|
7
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACnE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACnE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACnE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { default as ConnectionBadge } from "./ConnectionBadge.vue";
|
|
2
|
+
export { default as ParticipantTile } from "./ParticipantTile.vue";
|
|
3
|
+
export { default as ParticipantGrid } from "./ParticipantGrid.vue";
|
|
4
|
+
export { default as RosterList } from "./RosterList.vue";
|
|
5
|
+
export { default as ControlBar } from "./ControlBar.vue";
|
|
6
|
+
export { default as ChatPanel } from "./ChatPanel.vue";
|
|
7
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACnE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACnE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACnE,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@conference-kit/ui-vue",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"tailwindcss": ">=3.4.0"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@conference-kit/vue": "^0.0.
|
|
22
|
-
"@conference-kit/core": "^0.0.
|
|
21
|
+
"@conference-kit/vue": "^0.0.4",
|
|
22
|
+
"@conference-kit/core": "^0.0.4"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"typescript": "^5.9.3"
|