@wikicasa-dev/components 2.1.4-alpha.17 → 2.1.4-alpha.18
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/_virtual/_commonjsHelpers.js +6 -0
- package/dist/_virtual/cloneDeep.js +4 -0
- package/dist/_virtual/create-plugin.js +4 -0
- package/dist/_virtual/createPlugin.js +4 -0
- package/dist/_virtual/default-theme.js +4 -0
- package/dist/_virtual/defaultTheme.js +7 -0
- package/dist/_virtual/plugin.js +7 -0
- package/dist/node_modules/tailwindcss/defaultTheme.js +11 -0
- package/dist/node_modules/tailwindcss/lib/public/create-plugin.js +25 -0
- package/dist/node_modules/tailwindcss/lib/public/default-theme.js +26 -0
- package/dist/node_modules/tailwindcss/lib/util/cloneDeep.js +23 -0
- package/dist/node_modules/tailwindcss/lib/util/createPlugin.js +34 -0
- package/dist/node_modules/tailwindcss/plugin.js +11 -0
- package/dist/node_modules/tailwindcss/stubs/config.full.js +1068 -0
- package/dist/plugins/buttonPlugin.js +232 -0
- package/dist/tailwind.config.js +143 -0
- package/package.json +3 -2
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { __exports as r } from "../../../../_virtual/create-plugin.js";
|
|
2
|
+
import { __require as _ } from "../util/createPlugin.js";
|
|
3
|
+
var u;
|
|
4
|
+
function o() {
|
|
5
|
+
return u ? r : (u = 1, function(t) {
|
|
6
|
+
Object.defineProperty(t, "__esModule", {
|
|
7
|
+
value: !0
|
|
8
|
+
}), Object.defineProperty(t, "default", {
|
|
9
|
+
enumerable: !0,
|
|
10
|
+
get: function() {
|
|
11
|
+
return a;
|
|
12
|
+
}
|
|
13
|
+
});
|
|
14
|
+
const n = /* @__PURE__ */ i(_());
|
|
15
|
+
function i(e) {
|
|
16
|
+
return e && e.__esModule ? e : {
|
|
17
|
+
default: e
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
const a = n.default;
|
|
21
|
+
}(r), r);
|
|
22
|
+
}
|
|
23
|
+
export {
|
|
24
|
+
o as __require
|
|
25
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { __exports as r } from "../../../../_virtual/default-theme.js";
|
|
2
|
+
import { __require as l } from "../util/cloneDeep.js";
|
|
3
|
+
import { __require as _ } from "../../stubs/config.full.js";
|
|
4
|
+
var u;
|
|
5
|
+
function m() {
|
|
6
|
+
return u ? r : (u = 1, function(t) {
|
|
7
|
+
Object.defineProperty(t, "__esModule", {
|
|
8
|
+
value: !0
|
|
9
|
+
}), Object.defineProperty(t, "default", {
|
|
10
|
+
enumerable: !0,
|
|
11
|
+
get: function() {
|
|
12
|
+
return o;
|
|
13
|
+
}
|
|
14
|
+
});
|
|
15
|
+
const n = l(), f = /* @__PURE__ */ i(_());
|
|
16
|
+
function i(e) {
|
|
17
|
+
return e && e.__esModule ? e : {
|
|
18
|
+
default: e
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
const o = (0, n.cloneDeep)(f.default.theme);
|
|
22
|
+
}(r), r);
|
|
23
|
+
}
|
|
24
|
+
export {
|
|
25
|
+
m as __require
|
|
26
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { __exports as t } from "../../../../_virtual/cloneDeep.js";
|
|
2
|
+
var i;
|
|
3
|
+
function f() {
|
|
4
|
+
return i ? t : (i = 1, function(o) {
|
|
5
|
+
Object.defineProperty(o, "__esModule", {
|
|
6
|
+
value: !0
|
|
7
|
+
}), Object.defineProperty(o, "cloneDeep", {
|
|
8
|
+
enumerable: !0,
|
|
9
|
+
get: function() {
|
|
10
|
+
return r;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
function r(e) {
|
|
14
|
+
return Array.isArray(e) ? e.map((n) => r(n)) : typeof e == "object" && e !== null ? Object.fromEntries(Object.entries(e).map(([n, u]) => [
|
|
15
|
+
n,
|
|
16
|
+
r(u)
|
|
17
|
+
])) : e;
|
|
18
|
+
}
|
|
19
|
+
}(t), t);
|
|
20
|
+
}
|
|
21
|
+
export {
|
|
22
|
+
f as __require
|
|
23
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { __exports as u } from "../../../../_virtual/createPlugin.js";
|
|
2
|
+
var c;
|
|
3
|
+
function f() {
|
|
4
|
+
return c ? u : (c = 1, function(i) {
|
|
5
|
+
Object.defineProperty(i, "__esModule", {
|
|
6
|
+
value: !0
|
|
7
|
+
}), Object.defineProperty(i, "default", {
|
|
8
|
+
enumerable: !0,
|
|
9
|
+
get: function() {
|
|
10
|
+
return _;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
function o(e, n) {
|
|
14
|
+
return {
|
|
15
|
+
handler: e,
|
|
16
|
+
config: n
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
o.withOptions = function(e, n = () => ({})) {
|
|
20
|
+
const r = function(t) {
|
|
21
|
+
return {
|
|
22
|
+
__options: t,
|
|
23
|
+
handler: e(t),
|
|
24
|
+
config: n(t)
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
return r.__isOptionsFunction = !0, r.__pluginFunction = e, r.__configFunction = n, r;
|
|
28
|
+
};
|
|
29
|
+
const _ = o;
|
|
30
|
+
}(u), u);
|
|
31
|
+
}
|
|
32
|
+
export {
|
|
33
|
+
f as __require
|
|
34
|
+
};
|