@mtngtools/frame-vue 0.0.17-experimental.0 → 0.0.19-experimental.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/dist/IconClose-7R37a2Ma.js +165 -0
- package/dist/{LoggedInOut-BTGgPGqa.js → LoggedInOut-NpAFe-uy.js} +235 -200
- package/dist/components/icons/IconClose.vue.d.ts +9 -0
- package/dist/components/icons/IconClose.vue.d.ts.map +1 -0
- package/dist/components/icons/IconPanelBottom.vue.d.ts +9 -0
- package/dist/components/icons/IconPanelBottom.vue.d.ts.map +1 -0
- package/dist/components/icons/IconPanelFull.vue.d.ts +9 -0
- package/dist/components/icons/IconPanelFull.vue.d.ts.map +1 -0
- package/dist/components/icons/IconPanelRight.vue.d.ts +9 -0
- package/dist/components/icons/IconPanelRight.vue.d.ts.map +1 -0
- package/dist/components/icons/index.d.ts +5 -0
- package/dist/components/icons/index.d.ts.map +1 -0
- package/dist/components/icons/style.d.ts +9 -0
- package/dist/components/icons/style.d.ts.map +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/live/LiveFrame/LiveFrame.vue.d.ts +2 -0
- package/dist/components/live/LiveFrame/LiveFrame.vue.d.ts.map +1 -1
- package/dist/components/live/LiveFrame/helpers.test.d.ts +48 -6
- package/dist/components/live/LiveFrame/helpers.test.d.ts.map +1 -1
- package/dist/components/live/SidePanelButtonGroup/SidePanelButtonGroup.vue.d.ts +2 -0
- package/dist/components/live/SidePanelButtonGroup/SidePanelButtonGroup.vue.d.ts.map +1 -1
- package/dist/components/live/SidePanelControlButton/SidePanelControlButton.vue.d.ts +2 -0
- package/dist/components/live/SidePanelControlButton/SidePanelControlButton.vue.d.ts.map +1 -1
- package/dist/components/live/SidePanelFrame/SidePanelFrame.vue.d.ts +2 -0
- package/dist/components/live/SidePanelFrame/SidePanelFrame.vue.d.ts.map +1 -1
- package/dist/components.js +5 -3
- package/dist/composables.js +1 -1
- package/dist/frame-vue.css +1 -1
- package/dist/icons.d.ts +2 -0
- package/dist/icons.js +2 -0
- package/dist/index.js +4 -3
- package/package.json +5 -1
- /package/dist/{useSimpleLoggedIn-CSv5Xy3J.js → useSimpleLoggedIn-Dy7e3LcN.js} +0 -0
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
import { createCommentVNode, createElementBlock, createElementVNode, defineComponent, mergeDefaults, openBlock } from "vue";
|
|
2
|
+
function getDefaultIconProps() {
|
|
3
|
+
return {
|
|
4
|
+
borderSize: 2,
|
|
5
|
+
borderColor: "rgba(255, 255, 255, .85)",
|
|
6
|
+
backgroundColor: "rgba(255, 255, 255, 0.25)",
|
|
7
|
+
foregroundColor: "rgba(255, 255, 255, .85)"
|
|
8
|
+
};
|
|
9
|
+
}
|
|
10
|
+
const defaultIconProps = getDefaultIconProps();
|
|
11
|
+
var _hoisted_1$3 = {
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
class: "icon-panel-right"
|
|
16
|
+
}, _hoisted_2$3 = ["fill"], _hoisted_3$3 = ["fill"], _hoisted_4$1 = ["stroke", "stroke-width"], _hoisted_5$1 = ["stroke", "stroke-width"], IconPanelRight_default = /* @__PURE__ */ defineComponent({
|
|
17
|
+
__name: "IconPanelRight",
|
|
18
|
+
props: /* @__PURE__ */ mergeDefaults({
|
|
19
|
+
borderSize: {},
|
|
20
|
+
borderColor: {},
|
|
21
|
+
backgroundColor: {},
|
|
22
|
+
foregroundColor: {}
|
|
23
|
+
}, defaultIconProps),
|
|
24
|
+
setup(e) {
|
|
25
|
+
return (t, n) => (openBlock(), createElementBlock("svg", _hoisted_1$3, [
|
|
26
|
+
createElementVNode("rect", {
|
|
27
|
+
x: "2",
|
|
28
|
+
y: "2",
|
|
29
|
+
width: "20",
|
|
30
|
+
height: "20",
|
|
31
|
+
rx: "3",
|
|
32
|
+
fill: e.backgroundColor
|
|
33
|
+
}, null, 8, _hoisted_2$3),
|
|
34
|
+
createElementVNode("path", {
|
|
35
|
+
d: "M17 2H19C20.6569 2 22 3.34315 22 5V19C22 20.6569 20.6569 22 19 22H17V2Z",
|
|
36
|
+
fill: e.foregroundColor
|
|
37
|
+
}, null, 8, _hoisted_3$3),
|
|
38
|
+
createElementVNode("rect", {
|
|
39
|
+
x: "2",
|
|
40
|
+
y: "2",
|
|
41
|
+
width: "20",
|
|
42
|
+
height: "20",
|
|
43
|
+
rx: "3",
|
|
44
|
+
stroke: e.borderColor,
|
|
45
|
+
"stroke-width": e.borderSize
|
|
46
|
+
}, null, 8, _hoisted_4$1),
|
|
47
|
+
createElementVNode("line", {
|
|
48
|
+
x1: "17",
|
|
49
|
+
y1: "2",
|
|
50
|
+
x2: "17",
|
|
51
|
+
y2: "22",
|
|
52
|
+
stroke: e.borderColor,
|
|
53
|
+
"stroke-width": e.borderSize
|
|
54
|
+
}, null, 8, _hoisted_5$1)
|
|
55
|
+
]));
|
|
56
|
+
}
|
|
57
|
+
}), _hoisted_1$2 = {
|
|
58
|
+
viewBox: "0 0 24 24",
|
|
59
|
+
fill: "none",
|
|
60
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
61
|
+
class: "icon-panel-bottom"
|
|
62
|
+
}, _hoisted_2$2 = ["fill"], _hoisted_3$2 = ["fill"], _hoisted_4 = ["stroke", "stroke-width"], _hoisted_5 = ["stroke", "stroke-width"], IconPanelBottom_default = /* @__PURE__ */ defineComponent({
|
|
63
|
+
__name: "IconPanelBottom",
|
|
64
|
+
props: /* @__PURE__ */ mergeDefaults({
|
|
65
|
+
borderSize: {},
|
|
66
|
+
borderColor: {},
|
|
67
|
+
backgroundColor: {},
|
|
68
|
+
foregroundColor: {}
|
|
69
|
+
}, defaultIconProps),
|
|
70
|
+
setup(e) {
|
|
71
|
+
return (t, n) => (openBlock(), createElementBlock("svg", _hoisted_1$2, [
|
|
72
|
+
createElementVNode("rect", {
|
|
73
|
+
x: "2",
|
|
74
|
+
y: "2",
|
|
75
|
+
width: "20",
|
|
76
|
+
height: "20",
|
|
77
|
+
rx: "3",
|
|
78
|
+
fill: e.backgroundColor
|
|
79
|
+
}, null, 8, _hoisted_2$2),
|
|
80
|
+
createElementVNode("path", {
|
|
81
|
+
d: "M2 15H22V19C22 20.6569 20.6569 22 19 22H5C3.34315 22 2 20.6569 2 19V15Z",
|
|
82
|
+
fill: e.foregroundColor
|
|
83
|
+
}, null, 8, _hoisted_3$2),
|
|
84
|
+
createElementVNode("rect", {
|
|
85
|
+
x: "2",
|
|
86
|
+
y: "2",
|
|
87
|
+
width: "20",
|
|
88
|
+
height: "20",
|
|
89
|
+
rx: "3",
|
|
90
|
+
stroke: e.borderColor,
|
|
91
|
+
"stroke-width": e.borderSize
|
|
92
|
+
}, null, 8, _hoisted_4),
|
|
93
|
+
createElementVNode("line", {
|
|
94
|
+
x1: "2",
|
|
95
|
+
y1: "15",
|
|
96
|
+
x2: "22",
|
|
97
|
+
y2: "15",
|
|
98
|
+
stroke: e.borderColor,
|
|
99
|
+
"stroke-width": e.borderSize
|
|
100
|
+
}, null, 8, _hoisted_5)
|
|
101
|
+
]));
|
|
102
|
+
}
|
|
103
|
+
}), _hoisted_1$1 = {
|
|
104
|
+
viewBox: "0 0 24 24",
|
|
105
|
+
fill: "none",
|
|
106
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
107
|
+
class: "icon-panel-full"
|
|
108
|
+
}, _hoisted_2$1 = ["fill"], _hoisted_3$1 = ["stroke", "stroke-width"], IconPanelFull_default = /* @__PURE__ */ defineComponent({
|
|
109
|
+
__name: "IconPanelFull",
|
|
110
|
+
props: /* @__PURE__ */ mergeDefaults({
|
|
111
|
+
borderSize: {},
|
|
112
|
+
borderColor: {},
|
|
113
|
+
backgroundColor: {},
|
|
114
|
+
foregroundColor: {}
|
|
115
|
+
}, defaultIconProps),
|
|
116
|
+
setup(e) {
|
|
117
|
+
return (t, n) => (openBlock(), createElementBlock("svg", _hoisted_1$1, [createElementVNode("rect", {
|
|
118
|
+
x: "2",
|
|
119
|
+
y: "2",
|
|
120
|
+
width: "20",
|
|
121
|
+
height: "20",
|
|
122
|
+
rx: "3",
|
|
123
|
+
fill: e.foregroundColor
|
|
124
|
+
}, null, 8, _hoisted_2$1), createElementVNode("rect", {
|
|
125
|
+
x: "2",
|
|
126
|
+
y: "2",
|
|
127
|
+
width: "20",
|
|
128
|
+
height: "20",
|
|
129
|
+
rx: "3",
|
|
130
|
+
stroke: e.borderColor,
|
|
131
|
+
"stroke-width": e.borderSize
|
|
132
|
+
}, null, 8, _hoisted_3$1)]));
|
|
133
|
+
}
|
|
134
|
+
}), _hoisted_1 = {
|
|
135
|
+
viewBox: "0 0 24 24",
|
|
136
|
+
fill: "none",
|
|
137
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
138
|
+
class: "icon-close"
|
|
139
|
+
}, _hoisted_2 = ["fill"], _hoisted_3 = ["stroke", "stroke-width"], IconClose_default = /* @__PURE__ */ defineComponent({
|
|
140
|
+
__name: "IconClose",
|
|
141
|
+
props: /* @__PURE__ */ mergeDefaults({
|
|
142
|
+
borderSize: {},
|
|
143
|
+
borderColor: {},
|
|
144
|
+
backgroundColor: {},
|
|
145
|
+
foregroundColor: {}
|
|
146
|
+
}, defaultIconProps),
|
|
147
|
+
setup(t) {
|
|
148
|
+
return (n, r) => (openBlock(), createElementBlock("svg", _hoisted_1, [t.backgroundColor === "transparent" ? createCommentVNode("", !0) : (openBlock(), createElementBlock("rect", {
|
|
149
|
+
key: 0,
|
|
150
|
+
x: "2",
|
|
151
|
+
y: "2",
|
|
152
|
+
width: "20",
|
|
153
|
+
height: "20",
|
|
154
|
+
rx: "3",
|
|
155
|
+
fill: t.backgroundColor
|
|
156
|
+
}, null, 8, _hoisted_2)), createElementVNode("path", {
|
|
157
|
+
d: "M16 8L8 16M8 8L16 16",
|
|
158
|
+
stroke: t.foregroundColor,
|
|
159
|
+
"stroke-width": Number(t.borderSize) * 1.25,
|
|
160
|
+
"stroke-linecap": "round",
|
|
161
|
+
"stroke-linejoin": "round"
|
|
162
|
+
}, null, 8, _hoisted_3)]));
|
|
163
|
+
}
|
|
164
|
+
});
|
|
165
|
+
export { IconPanelRight_default as i, IconPanelFull_default as n, IconPanelBottom_default as r, IconClose_default as t };
|