wox-gui 0.1.1 → 0.1.2
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/wox-gui.cdn.js +35 -0
- package/package.json +1 -1
package/dist/wox-gui.cdn.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { FX_STYLES as r, WoxBadge as w, WoxButton as n, WoxColorPicker as p, WoxColorSwatch as i, WoxContextMenu as c, WoxDatagrid as d, WoxDatePicker as l, WoxElement as b, WoxGradientEditor as m, WoxGradientSelector as W, WoxIcon as u, WoxInput as g, WoxLayerItem as f, WoxMenu as h, WoxMenuItem as S, WoxMenubar as z, WoxModal as T, WoxPanel as C, WoxSection as y, WoxSelect as E, WoxSeparator as I, WoxSlider as M, WoxStatusbar as G, WoxTab as v, WoxTabs as B, WoxToast as P, WoxToolbar as _, WoxToolbarGroup as k, WoxTooltip as D, cssToGradient as L, gradientToCSS as X } from "./wox-gui.js";
|
|
1
2
|
import "./register.js";
|
|
2
3
|
const x = () => {
|
|
3
4
|
if (document.getElementById("wox-theme")) return;
|
|
@@ -62,3 +63,37 @@ const x = () => {
|
|
|
62
63
|
--wox-shadow-accent: 0 0 10px rgba(0, 229, 255, 0.3);
|
|
63
64
|
}`;
|
|
64
65
|
x();
|
|
66
|
+
export {
|
|
67
|
+
r as FX_STYLES,
|
|
68
|
+
w as WoxBadge,
|
|
69
|
+
n as WoxButton,
|
|
70
|
+
p as WoxColorPicker,
|
|
71
|
+
i as WoxColorSwatch,
|
|
72
|
+
c as WoxContextMenu,
|
|
73
|
+
d as WoxDatagrid,
|
|
74
|
+
l as WoxDatePicker,
|
|
75
|
+
b as WoxElement,
|
|
76
|
+
m as WoxGradientEditor,
|
|
77
|
+
W as WoxGradientSelector,
|
|
78
|
+
u as WoxIcon,
|
|
79
|
+
g as WoxInput,
|
|
80
|
+
f as WoxLayerItem,
|
|
81
|
+
h as WoxMenu,
|
|
82
|
+
S as WoxMenuItem,
|
|
83
|
+
z as WoxMenubar,
|
|
84
|
+
T as WoxModal,
|
|
85
|
+
C as WoxPanel,
|
|
86
|
+
y as WoxSection,
|
|
87
|
+
E as WoxSelect,
|
|
88
|
+
I as WoxSeparator,
|
|
89
|
+
M as WoxSlider,
|
|
90
|
+
G as WoxStatusbar,
|
|
91
|
+
v as WoxTab,
|
|
92
|
+
B as WoxTabs,
|
|
93
|
+
P as WoxToast,
|
|
94
|
+
_ as WoxToolbar,
|
|
95
|
+
k as WoxToolbarGroup,
|
|
96
|
+
D as WoxTooltip,
|
|
97
|
+
L as cssToGradient,
|
|
98
|
+
X as gradientToCSS
|
|
99
|
+
};
|