ebuilds-shared 0.1.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/README.md +69 -0
- package/dist/chunk-6DZX6EAA.mjs +37 -0
- package/dist/chunk-G4JQ2UQV.mjs +2878 -0
- package/dist/chunk-LATZ6U6A.js +2878 -0
- package/dist/chunk-MXO66M74.js +36 -0
- package/dist/chunk-OW2EL2VY.mjs +36 -0
- package/dist/chunk-QGM4M3NI.js +37 -0
- package/dist/chunk-QQPGJGSU.js +6916 -0
- package/dist/chunk-RRULL645.mjs +6916 -0
- package/dist/functionalComponent/index.d.mts +16 -0
- package/dist/functionalComponent/index.d.ts +16 -0
- package/dist/functionalComponent/index.js +25 -0
- package/dist/functionalComponent/index.mjs +25 -0
- package/dist/index-CVmrbYyU.d.mts +34 -0
- package/dist/index-CVmrbYyU.d.ts +34 -0
- package/dist/index.css +69 -0
- package/dist/index.d.mts +11 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +65 -0
- package/dist/index.mjs +65 -0
- package/dist/stores/index.d.mts +294 -0
- package/dist/stores/index.d.ts +294 -0
- package/dist/stores/index.js +13 -0
- package/dist/stores/index.mjs +13 -0
- package/dist/styles/index.css +69 -0
- package/dist/styles/index.d.mts +2 -0
- package/dist/styles/index.d.ts +2 -0
- package/dist/uno-config/index.d.mts +8 -0
- package/dist/uno-config/index.d.ts +8 -0
- package/dist/uno-config/index.js +9 -0
- package/dist/uno-config/index.mjs +9 -0
- package/dist/utils/index.d.mts +157 -0
- package/dist/utils/index.d.ts +157 -0
- package/dist/utils/index.js +49 -0
- package/dist/utils/index.mjs +49 -0
- package/dist/vite-config/index.d.mts +31 -0
- package/dist/vite-config/index.d.ts +31 -0
- package/dist/vite-config/index.js +7 -0
- package/dist/vite-config/index.mjs +7 -0
- package/package.json +79 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/uno-config/index.ts
|
|
2
|
+
var _unocss = require('unocss');
|
|
3
|
+
function createUnoConfig() {
|
|
4
|
+
return _unocss.defineConfig.call(void 0, {
|
|
5
|
+
presets: [
|
|
6
|
+
_unocss.presetUno.call(void 0, ),
|
|
7
|
+
_unocss.presetAttributify.call(void 0, ),
|
|
8
|
+
_unocss.presetTypography.call(void 0, ),
|
|
9
|
+
_unocss.presetIcons.call(void 0, {
|
|
10
|
+
scale: 1.2,
|
|
11
|
+
warn: true,
|
|
12
|
+
extraProperties: {
|
|
13
|
+
display: "inline-block",
|
|
14
|
+
"vertical-align": "middle"
|
|
15
|
+
}
|
|
16
|
+
})
|
|
17
|
+
],
|
|
18
|
+
shortcuts: [
|
|
19
|
+
{
|
|
20
|
+
"flex-center": "flex items-center justify-center",
|
|
21
|
+
"content-auto": "content-visibility-auto",
|
|
22
|
+
"border-bottom": "border-b border-[#ebeef5] border-b-solid",
|
|
23
|
+
"portal-title": "border-bottom p-x-15px p-y-10px flex items-center justify-between",
|
|
24
|
+
"dashboard-title": "h-30px font-600 line-height-30px ml2 flex-inline",
|
|
25
|
+
"custom-card": "rounded-10px bg-white p10px",
|
|
26
|
+
"custom-border": "border border-solid border-[#E0E0E0]"
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
});
|
|
30
|
+
}
|
|
31
|
+
var uno_config_default = createUnoConfig;
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
exports.createUnoConfig = createUnoConfig; exports.uno_config_default = uno_config_default;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// src/uno-config/index.ts
|
|
2
|
+
import { defineConfig, presetAttributify, presetIcons, presetTypography, presetUno } from "unocss";
|
|
3
|
+
function createUnoConfig() {
|
|
4
|
+
return defineConfig({
|
|
5
|
+
presets: [
|
|
6
|
+
presetUno(),
|
|
7
|
+
presetAttributify(),
|
|
8
|
+
presetTypography(),
|
|
9
|
+
presetIcons({
|
|
10
|
+
scale: 1.2,
|
|
11
|
+
warn: true,
|
|
12
|
+
extraProperties: {
|
|
13
|
+
display: "inline-block",
|
|
14
|
+
"vertical-align": "middle"
|
|
15
|
+
}
|
|
16
|
+
})
|
|
17
|
+
],
|
|
18
|
+
shortcuts: [
|
|
19
|
+
{
|
|
20
|
+
"flex-center": "flex items-center justify-center",
|
|
21
|
+
"content-auto": "content-visibility-auto",
|
|
22
|
+
"border-bottom": "border-b border-[#ebeef5] border-b-solid",
|
|
23
|
+
"portal-title": "border-bottom p-x-15px p-y-10px flex items-center justify-between",
|
|
24
|
+
"dashboard-title": "h-30px font-600 line-height-30px ml2 flex-inline",
|
|
25
|
+
"custom-card": "rounded-10px bg-white p10px",
|
|
26
|
+
"custom-border": "border border-solid border-[#E0E0E0]"
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
});
|
|
30
|
+
}
|
|
31
|
+
var uno_config_default = createUnoConfig;
|
|
32
|
+
|
|
33
|
+
export {
|
|
34
|
+
createUnoConfig,
|
|
35
|
+
uno_config_default
|
|
36
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
|
|
8
|
+
get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
|
|
9
|
+
}) : x)(function(x) {
|
|
10
|
+
if (typeof require !== "undefined") return require.apply(this, arguments);
|
|
11
|
+
throw Error('Dynamic require of "' + x + '" is not supported');
|
|
12
|
+
});
|
|
13
|
+
var __commonJS = (cb, mod) => function __require2() {
|
|
14
|
+
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
15
|
+
};
|
|
16
|
+
var __copyProps = (to, from, except, desc) => {
|
|
17
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
18
|
+
for (let key of __getOwnPropNames(from))
|
|
19
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
20
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
21
|
+
}
|
|
22
|
+
return to;
|
|
23
|
+
};
|
|
24
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
25
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
26
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
27
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
28
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
29
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
30
|
+
mod
|
|
31
|
+
));
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
exports.__require = __require; exports.__commonJS = __commonJS; exports.__toESM = __toESM;
|