giime 0.0.0-dev.1 → 0.0.0-dev.10
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 +15 -0
- package/es/components/index.d.ts +1 -1
- package/es/components/index.mjs +2 -1
- package/es/components/index.mjs.map +1 -1
- package/es/components/src/test/Test.vue.d.ts +243 -0
- package/es/components/src/test/Test.vue.mjs +8 -0
- package/es/components/src/test/Test.vue.mjs.map +1 -0
- package/es/components/src/test/Test.vue2.mjs +64 -0
- package/es/components/src/test/Test.vue2.mjs.map +1 -0
- package/es/components/src/{text/Text.vue3.mjs → test/Test.vue3.mjs} +1 -1
- package/es/components/src/test/Test.vue3.mjs.map +1 -0
- package/es/components/src/test/index.d.ts +246 -0
- package/es/components/src/test/index.mjs +7 -0
- package/es/components/src/test/index.mjs.map +1 -0
- package/es/components/src/test/test.d.ts +72 -0
- package/es/components/src/test/test.mjs +16 -0
- package/es/components/src/test/test.mjs.map +1 -0
- package/es/giime/component.d.ts +242 -1
- package/es/giime/component.mjs +2 -2
- package/es/giime/component.mjs.map +1 -1
- package/es/giime/index.d.ts +1 -0
- package/es/giime/index.mjs +3 -1
- package/es/giime/index.mjs.map +1 -1
- package/es/giime/tailwind.css.mjs +4 -0
- package/es/giime/tailwind.css.mjs.map +1 -0
- package/es/index.css +494 -2
- package/es/theme-chalk/tailwindPreset.d.ts +93 -0
- package/es/theme-chalk/tailwindPreset.mjs +70 -0
- package/es/theme-chalk/tailwindPreset.mjs.map +1 -0
- package/lib/components/index.d.ts +1 -1
- package/lib/components/index.js +4 -2
- package/lib/components/index.js.map +1 -1
- package/lib/components/src/test/Test.vue.d.ts +243 -0
- package/lib/components/src/test/Test.vue.js +12 -0
- package/lib/components/src/test/Test.vue.js.map +1 -0
- package/lib/components/src/test/Test.vue2.js +68 -0
- package/lib/components/src/test/Test.vue2.js.map +1 -0
- package/lib/components/src/{text/Text.vue3.js → test/Test.vue3.js} +1 -1
- package/lib/components/src/test/Test.vue3.js.map +1 -0
- package/lib/components/src/test/index.d.ts +246 -0
- package/lib/components/src/test/index.js +13 -0
- package/lib/components/src/test/index.js.map +1 -0
- package/lib/components/src/test/test.d.ts +72 -0
- package/lib/components/src/test/test.js +18 -0
- package/lib/components/src/test/test.js.map +1 -0
- package/lib/giime/component.d.ts +242 -1
- package/lib/giime/component.js +2 -2
- package/lib/giime/component.js.map +1 -1
- package/lib/giime/index.d.ts +1 -0
- package/lib/giime/index.js +5 -2
- package/lib/giime/index.js.map +1 -1
- package/lib/giime/tailwind.css.js +8 -0
- package/lib/giime/tailwind.css.js.map +1 -0
- package/lib/index.css +494 -2
- package/lib/theme-chalk/tailwindPreset.d.ts +93 -0
- package/lib/theme-chalk/tailwindPreset.js +74 -0
- package/lib/theme-chalk/tailwindPreset.js.map +1 -0
- package/package.json +1 -1
- package/theme-chalk/index.css +61 -0
- package/es/components/src/text/Text.vue.d.ts +0 -2
- package/es/components/src/text/Text.vue.mjs +0 -8
- package/es/components/src/text/Text.vue.mjs.map +0 -1
- package/es/components/src/text/Text.vue2.mjs +0 -18
- package/es/components/src/text/Text.vue2.mjs.map +0 -1
- package/es/components/src/text/Text.vue3.mjs.map +0 -1
- package/es/components/src/text/index.d.ts +0 -2
- package/es/components/src/text/index.mjs +0 -6
- package/es/components/src/text/index.mjs.map +0 -1
- package/lib/components/src/text/Text.vue.d.ts +0 -2
- package/lib/components/src/text/Text.vue.js +0 -12
- package/lib/components/src/text/Text.vue.js.map +0 -1
- package/lib/components/src/text/Text.vue2.js +0 -22
- package/lib/components/src/text/Text.vue2.js.map +0 -1
- package/lib/components/src/text/Text.vue3.js.map +0 -1
- package/lib/components/src/text/index.d.ts +0 -2
- package/lib/components/src/text/index.js +0 -11
- package/lib/components/src/text/index.js.map +0 -1
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/* index.css */
|
|
2
|
+
:root {
|
|
3
|
+
--gm-border-color-primary: #e4e4e4;
|
|
4
|
+
--gm-border-color-secondary: #e9e9e9;
|
|
5
|
+
--gm-border-color-tertiary: #f2f2f2;
|
|
6
|
+
--gm-border-radius-small: 4px;
|
|
7
|
+
--gm-border-radius-large: 8px;
|
|
8
|
+
--gm-color-primary: #0000ff;
|
|
9
|
+
--gm-color-primary-light-3: #3366ff;
|
|
10
|
+
--gm-color-success: #19be6b;
|
|
11
|
+
--gm-color-warning: #ff9900;
|
|
12
|
+
--gm-color-error: #f56c6c;
|
|
13
|
+
--gm-color-error-light-3: #f89898;
|
|
14
|
+
--gm-color-error-light-5: #fab6b6;
|
|
15
|
+
--gm-color-error-light-7: #fcd3d3;
|
|
16
|
+
--gm-color-error-light-8: #fde2e2;
|
|
17
|
+
--gm-color-error-light-9: #fef0f0;
|
|
18
|
+
--gm-text-color-title: #333;
|
|
19
|
+
|
|
20
|
+
--gm-text-color-primary: #666;
|
|
21
|
+
--gm-text-color-secondary: #999;
|
|
22
|
+
--gm-text-color-decs: #ccc;
|
|
23
|
+
--gm-text-color-link: #0000ff;
|
|
24
|
+
--gm-text-color-error: #f56c6c;
|
|
25
|
+
--gm-text-color-warning: #ff9900;
|
|
26
|
+
--gm-text-color-success: #19be6b;
|
|
27
|
+
|
|
28
|
+
--gm-bg-color: #f5f5f5;
|
|
29
|
+
--gm-data-crimson: #fb6260;
|
|
30
|
+
--gm-data-sky-blue: #0099ff;
|
|
31
|
+
--gm-data-lavender: #8167f5;
|
|
32
|
+
--gm-data-fresh-green: #51d351;
|
|
33
|
+
--gm-data-soft-pink: #ff7a8c;
|
|
34
|
+
--gm-data-golden-tangerine: #ffa94c;
|
|
35
|
+
--gm-data-breeze-blue: #73a0fa;
|
|
36
|
+
--gm-data-slate-gray: #7585a2;
|
|
37
|
+
--gm-data-teal-blue: #24d2d3;
|
|
38
|
+
--gm-data-sunset-yellow: #fec03d;
|
|
39
|
+
--gm-data-ocean-blue: #52c1f5;
|
|
40
|
+
--gm-data-spring-green: #82d588;
|
|
41
|
+
--gm-shadow-color: rgba(0, 0, 0, 0.1);
|
|
42
|
+
--gm-shadow-blur: 10px;
|
|
43
|
+
--gm-shadow-offset-x: 0px;
|
|
44
|
+
--gm-shadow-offset-y: 0px;
|
|
45
|
+
--gm-shadow-dark-color: rgba(0, 0, 0, 0.15);
|
|
46
|
+
--gm-shadow-dark-blur: 10px;
|
|
47
|
+
--gm-shadow-light-color: rgba(0, 0, 0, 0.05);
|
|
48
|
+
--gm-shadow-light-blur: 5px;
|
|
49
|
+
--gm-shadow-input-focus-color: rgba(64, 158, 255, 0.5);
|
|
50
|
+
--gm-shadow-input-focus-blur: 5px;
|
|
51
|
+
--gm-shadow-dialog-color: rgba(0, 0, 0, 0.15);
|
|
52
|
+
--gm-shadow-dialog-blur: 10px;
|
|
53
|
+
--gm-text-title: 20px;
|
|
54
|
+
--gm-text-model: 16px;
|
|
55
|
+
--gm-text-primary: 14px;
|
|
56
|
+
/* ---- 行高---- */
|
|
57
|
+
--gm-leading-title: 28px;
|
|
58
|
+
--gm-leading-model: 24px;
|
|
59
|
+
--gm-leading-primary: 22px;
|
|
60
|
+
}
|
|
61
|
+
/* 其他全局样式或 CSS 变量可以放在这里或其它相关的文件中 */
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import _sfc_main from './Text.vue2.mjs';
|
|
2
|
-
import './Text.vue3.mjs';
|
|
3
|
-
import _export_sfc from '../../../_virtual/_plugin-vue_export-helper.mjs';
|
|
4
|
-
|
|
5
|
-
var Text = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-7e095b5b"], ["__file", "Text.vue"]]);
|
|
6
|
-
|
|
7
|
-
export { Text as default };
|
|
8
|
-
//# sourceMappingURL=Text.vue.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Text.vue.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;"}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { pushScopeId, popScopeId, defineComponent, openBlock, createElementBlock } from 'vue';
|
|
2
|
-
|
|
3
|
-
const _withScopeId = (n) => (pushScopeId("data-v-7e095b5b"), n = n(), popScopeId(), n);
|
|
4
|
-
const _hoisted_1 = { class: "gm-text" };
|
|
5
|
-
var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
6
|
-
...{
|
|
7
|
-
name: "GmText"
|
|
8
|
-
},
|
|
9
|
-
__name: "Text",
|
|
10
|
-
setup(__props) {
|
|
11
|
-
return (_ctx, _cache) => {
|
|
12
|
-
return openBlock(), createElementBlock("div", _hoisted_1, "123");
|
|
13
|
-
};
|
|
14
|
-
}
|
|
15
|
-
});
|
|
16
|
-
|
|
17
|
-
export { _sfc_main as default };
|
|
18
|
-
//# sourceMappingURL=Text.vue2.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Text.vue2.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Text.vue3.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":["../../../../../../packages/components/src/text/index.ts"],"sourcesContent":["import Text from './Text.vue';\r\nexport const GmText = Text;\r\nexport default GmText;\r\n"],"names":[],"mappings":";;AACO,MAAM,MAAS,GAAA;;;;"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
|
-
var Text_vue_vue_type_script_setup_true_lang = require('./Text.vue2.js');
|
|
6
|
-
require('./Text.vue3.js');
|
|
7
|
-
var _pluginVue_exportHelper = require('../../../_virtual/_plugin-vue_export-helper.js');
|
|
8
|
-
|
|
9
|
-
var Text = /* @__PURE__ */ _pluginVue_exportHelper.default(Text_vue_vue_type_script_setup_true_lang.default, [["__scopeId", "data-v-7e095b5b"], ["__file", "Text.vue"]]);
|
|
10
|
-
|
|
11
|
-
exports.default = Text;
|
|
12
|
-
//# sourceMappingURL=Text.vue.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Text.vue.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;"}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
|
-
var vue = require('vue');
|
|
6
|
-
|
|
7
|
-
const _withScopeId = (n) => (vue.pushScopeId("data-v-7e095b5b"), n = n(), vue.popScopeId(), n);
|
|
8
|
-
const _hoisted_1 = { class: "gm-text" };
|
|
9
|
-
var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
10
|
-
...{
|
|
11
|
-
name: "GmText"
|
|
12
|
-
},
|
|
13
|
-
__name: "Text",
|
|
14
|
-
setup(__props) {
|
|
15
|
-
return (_ctx, _cache) => {
|
|
16
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1, "123");
|
|
17
|
-
};
|
|
18
|
-
}
|
|
19
|
-
});
|
|
20
|
-
|
|
21
|
-
exports.default = _sfc_main;
|
|
22
|
-
//# sourceMappingURL=Text.vue2.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Text.vue2.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Text.vue3.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../../../../../packages/components/src/text/index.ts"],"sourcesContent":["import Text from './Text.vue';\r\nexport const GmText = Text;\r\nexport default GmText;\r\n"],"names":["Text"],"mappings":";;;;;;AACO,MAAM,MAAS,GAAAA;;;;;"}
|