giime 0.0.16 → 0.0.17
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/index.css +34 -34
- package/es/components/src/plugins/copy/method.mjs +29 -1
- package/es/components/src/plugins/copy/method.mjs.map +1 -1
- package/es/giime/version.d.ts +1 -1
- package/es/giime/version.mjs +1 -1
- package/es/giime/version.mjs.map +1 -1
- package/es/index.css +34 -34
- package/lib/components/src/plugins/copy/method.js +29 -1
- package/lib/components/src/plugins/copy/method.js.map +1 -1
- package/lib/giime/version.d.ts +1 -1
- package/lib/giime/version.js +1 -1
- package/lib/giime/version.js.map +1 -1
- package/lib/index.css +34 -34
- package/package.json +2 -2
package/dist/index.css
CHANGED
|
@@ -1,3 +1,37 @@
|
|
|
1
|
+
.gm-flex-center[data-v-d1c6dac0] {
|
|
2
|
+
align-items: center;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.gm-flex-justify-between[data-v-d1c6dac0] {
|
|
6
|
+
justify-content: space-between;
|
|
7
|
+
}
|
|
8
|
+
[data-v-512cf874] .gmSearchForm .el-form-item {
|
|
9
|
+
margin-right: 8px;
|
|
10
|
+
margin-bottom: 8px;
|
|
11
|
+
}
|
|
12
|
+
[data-v-48398692] .gmTableNoBorder .el-table__body .el-table__cell {
|
|
13
|
+
border-right: none;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
[data-v-48398692] .gmTableNoBorder .el-table__inner-wrapper:before {
|
|
17
|
+
height: 0;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
[data-v-48398692] .gmTableNoBorder.el-table--border .el-table__inner-wrapper:after {
|
|
21
|
+
height: 0;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
[data-v-48398692] .gmTableNoBorder.el-table--border:after {
|
|
25
|
+
height: 0;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
[data-v-48398692] .gmTableNoBorder.el-table--border:before {
|
|
29
|
+
height: 0;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
[data-v-48398692] .gmTableNoBorder .el-table__border-left-patch {
|
|
33
|
+
height: 0;
|
|
34
|
+
}
|
|
1
35
|
/*
|
|
2
36
|
! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com
|
|
3
37
|
*//*
|
|
@@ -616,38 +650,4 @@ video {
|
|
|
616
650
|
.gm-text-orange-400 {
|
|
617
651
|
--tw-text-opacity: 1;
|
|
618
652
|
color: rgb(251 146 60 / var(--tw-text-opacity));
|
|
619
|
-
}
|
|
620
|
-
.gm-flex-center[data-v-d1c6dac0] {
|
|
621
|
-
align-items: center;
|
|
622
|
-
}
|
|
623
|
-
|
|
624
|
-
.gm-flex-justify-between[data-v-d1c6dac0] {
|
|
625
|
-
justify-content: space-between;
|
|
626
|
-
}
|
|
627
|
-
[data-v-512cf874] .gmSearchForm .el-form-item {
|
|
628
|
-
margin-right: 8px;
|
|
629
|
-
margin-bottom: 8px;
|
|
630
|
-
}
|
|
631
|
-
[data-v-48398692] .gmTableNoBorder .el-table__body .el-table__cell {
|
|
632
|
-
border-right: none;
|
|
633
|
-
}
|
|
634
|
-
|
|
635
|
-
[data-v-48398692] .gmTableNoBorder .el-table__inner-wrapper:before {
|
|
636
|
-
height: 0;
|
|
637
|
-
}
|
|
638
|
-
|
|
639
|
-
[data-v-48398692] .gmTableNoBorder.el-table--border .el-table__inner-wrapper:after {
|
|
640
|
-
height: 0;
|
|
641
|
-
}
|
|
642
|
-
|
|
643
|
-
[data-v-48398692] .gmTableNoBorder.el-table--border:after {
|
|
644
|
-
height: 0;
|
|
645
|
-
}
|
|
646
|
-
|
|
647
|
-
[data-v-48398692] .gmTableNoBorder.el-table--border:before {
|
|
648
|
-
height: 0;
|
|
649
|
-
}
|
|
650
|
-
|
|
651
|
-
[data-v-48398692] .gmTableNoBorder .el-table__border-left-patch {
|
|
652
|
-
height: 0;
|
|
653
653
|
}
|
|
@@ -1,5 +1,33 @@
|
|
|
1
|
-
import
|
|
1
|
+
import Clipboard from 'clipboard';
|
|
2
2
|
|
|
3
|
+
const useClipboard = (opts) => {
|
|
4
|
+
const appendToBody = opts?.appendToBody === void 0 ? true : opts.appendToBody;
|
|
5
|
+
return {
|
|
6
|
+
toClipboard(text, container) {
|
|
7
|
+
return new Promise((resolve, reject) => {
|
|
8
|
+
const fakeEl = document.createElement("button");
|
|
9
|
+
const clipboard = new Clipboard(fakeEl, {
|
|
10
|
+
text: () => text,
|
|
11
|
+
action: () => "copy",
|
|
12
|
+
container: container !== void 0 ? container : document.body
|
|
13
|
+
});
|
|
14
|
+
clipboard.on("success", (e) => {
|
|
15
|
+
clipboard.destroy();
|
|
16
|
+
resolve(e);
|
|
17
|
+
});
|
|
18
|
+
clipboard.on("error", (e) => {
|
|
19
|
+
clipboard.destroy();
|
|
20
|
+
reject(e);
|
|
21
|
+
});
|
|
22
|
+
if (appendToBody)
|
|
23
|
+
document.body.appendChild(fakeEl);
|
|
24
|
+
fakeEl.click();
|
|
25
|
+
if (appendToBody)
|
|
26
|
+
document.body.removeChild(fakeEl);
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
};
|
|
3
31
|
const handleCopy = async (str) => {
|
|
4
32
|
const { toClipboard } = useClipboard();
|
|
5
33
|
try {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"method.mjs","sources":["../../../../../../../packages/components/src/plugins/copy/method.ts"],"sourcesContent":["import
|
|
1
|
+
{"version":3,"file":"method.mjs","sources":["../../../../../../../packages/components/src/plugins/copy/method.ts"],"sourcesContent":["import Clipboard from 'clipboard';\r\n\r\ninterface UseClipboardOptions {\r\n /** Fixes IE by appending element to body */\r\n appendToBody: boolean;\r\n}\r\n\r\nconst useClipboard = (opts?: UseClipboardOptions) => {\r\n // default appendToBody true\r\n const appendToBody = opts?.appendToBody === undefined ? true : opts.appendToBody;\r\n return {\r\n toClipboard(text: string, container?: HTMLElement) {\r\n return new Promise((resolve, reject) => {\r\n // make fake element\r\n const fakeEl = document.createElement('button');\r\n // setup a new Clipboard.js\r\n const clipboard = new Clipboard(fakeEl, {\r\n text: () => text,\r\n action: () => 'copy',\r\n container: container !== undefined ? container : document.body,\r\n });\r\n clipboard.on('success', e => {\r\n clipboard.destroy();\r\n resolve(e);\r\n });\r\n clipboard.on('error', e => {\r\n clipboard.destroy();\r\n reject(e);\r\n });\r\n // appendToBody fixes IE\r\n if (appendToBody) document.body.appendChild(fakeEl);\r\n // simulate click\r\n fakeEl.click();\r\n // remove from body if appended\r\n if (appendToBody) document.body.removeChild(fakeEl);\r\n });\r\n },\r\n };\r\n};\r\n\r\nexport const handleCopy = async (str: string) => {\r\n const { toClipboard } = useClipboard();\r\n // const { copy } = useClipboard({ legacy: true });\r\n try {\r\n await toClipboard(str);\r\n GmMessage.success('复制成功');\r\n } catch (error) {\r\n console.error(error);\r\n GmMessage.error('复制失败');\r\n }\r\n};\r\n"],"names":[],"mappings":";;AAOA,MAAM,YAAA,GAAe,CAAC,IAA+B,KAAA;AAEnD,EAAA,MAAM,YAAe,GAAA,IAAA,EAAM,YAAiB,KAAA,KAAA,CAAA,GAAY,OAAO,IAAK,CAAA,YAAA,CAAA;AACpE,EAAO,OAAA;AAAA,IACL,WAAA,CAAY,MAAc,SAAyB,EAAA;AACjD,MAAA,OAAO,IAAI,OAAA,CAAQ,CAAC,OAAA,EAAS,MAAW,KAAA;AAEtC,QAAM,MAAA,MAAA,GAAS,QAAS,CAAA,aAAA,CAAc,QAAQ,CAAA,CAAA;AAE9C,QAAM,MAAA,SAAA,GAAY,IAAI,SAAA,CAAU,MAAQ,EAAA;AAAA,UACtC,MAAM,MAAM,IAAA;AAAA,UACZ,QAAQ,MAAM,MAAA;AAAA,UACd,SAAW,EAAA,SAAA,KAAc,KAAY,CAAA,GAAA,SAAA,GAAY,QAAS,CAAA,IAAA;AAAA,SAC3D,CAAA,CAAA;AACD,QAAU,SAAA,CAAA,EAAA,CAAG,WAAW,CAAK,CAAA,KAAA;AAC3B,UAAA,SAAA,CAAU,OAAQ,EAAA,CAAA;AAClB,UAAA,OAAA,CAAQ,CAAC,CAAA,CAAA;AAAA,SACV,CAAA,CAAA;AACD,QAAU,SAAA,CAAA,EAAA,CAAG,SAAS,CAAK,CAAA,KAAA;AACzB,UAAA,SAAA,CAAU,OAAQ,EAAA,CAAA;AAClB,UAAA,MAAA,CAAO,CAAC,CAAA,CAAA;AAAA,SACT,CAAA,CAAA;AAED,QAAI,IAAA,YAAA;AAAc,UAAS,QAAA,CAAA,IAAA,CAAK,YAAY,MAAM,CAAA,CAAA;AAElD,QAAA,MAAA,CAAO,KAAM,EAAA,CAAA;AAEb,QAAI,IAAA,YAAA;AAAc,UAAS,QAAA,CAAA,IAAA,CAAK,YAAY,MAAM,CAAA,CAAA;AAAA,OACnD,CAAA,CAAA;AAAA,KACH;AAAA,GACF,CAAA;AACF,CAAA,CAAA;AAEa,MAAA,UAAA,GAAa,OAAO,GAAgB,KAAA;AAC/C,EAAM,MAAA,EAAE,WAAY,EAAA,GAAI,YAAa,EAAA,CAAA;AAErC,EAAI,IAAA;AACF,IAAA,MAAM,YAAY,GAAG,CAAA,CAAA;AACrB,IAAA,SAAA,CAAU,QAAQ,0BAAM,CAAA,CAAA;AAAA,WACjB,KAAO,EAAA;AACd,IAAA,OAAA,CAAQ,MAAM,KAAK,CAAA,CAAA;AACnB,IAAA,SAAA,CAAU,MAAM,0BAAM,CAAA,CAAA;AAAA,GACxB;AACF;;;;"}
|
package/es/giime/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "0.0.
|
|
1
|
+
export declare const version = "0.0.17";
|
package/es/giime/version.mjs
CHANGED
package/es/giime/version.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.mjs","sources":["../../../../packages/giime/version.ts"],"sourcesContent":["export const version = '0.0.
|
|
1
|
+
{"version":3,"file":"version.mjs","sources":["../../../../packages/giime/version.ts"],"sourcesContent":["export const version = '0.0.16';\n"],"names":[],"mappings":"AAAO,MAAM,OAAU,GAAA;;;;"}
|
package/es/index.css
CHANGED
|
@@ -1,3 +1,37 @@
|
|
|
1
|
+
.gm-flex-center[data-v-d1c6dac0] {
|
|
2
|
+
align-items: center;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.gm-flex-justify-between[data-v-d1c6dac0] {
|
|
6
|
+
justify-content: space-between;
|
|
7
|
+
}
|
|
8
|
+
[data-v-512cf874] .gmSearchForm .el-form-item {
|
|
9
|
+
margin-right: 8px;
|
|
10
|
+
margin-bottom: 8px;
|
|
11
|
+
}
|
|
12
|
+
[data-v-48398692] .gmTableNoBorder .el-table__body .el-table__cell {
|
|
13
|
+
border-right: none;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
[data-v-48398692] .gmTableNoBorder .el-table__inner-wrapper:before {
|
|
17
|
+
height: 0;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
[data-v-48398692] .gmTableNoBorder.el-table--border .el-table__inner-wrapper:after {
|
|
21
|
+
height: 0;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
[data-v-48398692] .gmTableNoBorder.el-table--border:after {
|
|
25
|
+
height: 0;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
[data-v-48398692] .gmTableNoBorder.el-table--border:before {
|
|
29
|
+
height: 0;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
[data-v-48398692] .gmTableNoBorder .el-table__border-left-patch {
|
|
33
|
+
height: 0;
|
|
34
|
+
}
|
|
1
35
|
/*
|
|
2
36
|
! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com
|
|
3
37
|
*//*
|
|
@@ -616,38 +650,4 @@ video {
|
|
|
616
650
|
.gm-text-orange-400 {
|
|
617
651
|
--tw-text-opacity: 1;
|
|
618
652
|
color: rgb(251 146 60 / var(--tw-text-opacity));
|
|
619
|
-
}
|
|
620
|
-
.gm-flex-center[data-v-d1c6dac0] {
|
|
621
|
-
align-items: center;
|
|
622
|
-
}
|
|
623
|
-
|
|
624
|
-
.gm-flex-justify-between[data-v-d1c6dac0] {
|
|
625
|
-
justify-content: space-between;
|
|
626
|
-
}
|
|
627
|
-
[data-v-512cf874] .gmSearchForm .el-form-item {
|
|
628
|
-
margin-right: 8px;
|
|
629
|
-
margin-bottom: 8px;
|
|
630
|
-
}
|
|
631
|
-
[data-v-48398692] .gmTableNoBorder .el-table__body .el-table__cell {
|
|
632
|
-
border-right: none;
|
|
633
|
-
}
|
|
634
|
-
|
|
635
|
-
[data-v-48398692] .gmTableNoBorder .el-table__inner-wrapper:before {
|
|
636
|
-
height: 0;
|
|
637
|
-
}
|
|
638
|
-
|
|
639
|
-
[data-v-48398692] .gmTableNoBorder.el-table--border .el-table__inner-wrapper:after {
|
|
640
|
-
height: 0;
|
|
641
|
-
}
|
|
642
|
-
|
|
643
|
-
[data-v-48398692] .gmTableNoBorder.el-table--border:after {
|
|
644
|
-
height: 0;
|
|
645
|
-
}
|
|
646
|
-
|
|
647
|
-
[data-v-48398692] .gmTableNoBorder.el-table--border:before {
|
|
648
|
-
height: 0;
|
|
649
|
-
}
|
|
650
|
-
|
|
651
|
-
[data-v-48398692] .gmTableNoBorder .el-table__border-left-patch {
|
|
652
|
-
height: 0;
|
|
653
653
|
}
|
|
@@ -1,7 +1,35 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var Clipboard = require('clipboard');
|
|
4
4
|
|
|
5
|
+
const useClipboard = (opts) => {
|
|
6
|
+
const appendToBody = opts?.appendToBody === void 0 ? true : opts.appendToBody;
|
|
7
|
+
return {
|
|
8
|
+
toClipboard(text, container) {
|
|
9
|
+
return new Promise((resolve, reject) => {
|
|
10
|
+
const fakeEl = document.createElement("button");
|
|
11
|
+
const clipboard = new Clipboard(fakeEl, {
|
|
12
|
+
text: () => text,
|
|
13
|
+
action: () => "copy",
|
|
14
|
+
container: container !== void 0 ? container : document.body
|
|
15
|
+
});
|
|
16
|
+
clipboard.on("success", (e) => {
|
|
17
|
+
clipboard.destroy();
|
|
18
|
+
resolve(e);
|
|
19
|
+
});
|
|
20
|
+
clipboard.on("error", (e) => {
|
|
21
|
+
clipboard.destroy();
|
|
22
|
+
reject(e);
|
|
23
|
+
});
|
|
24
|
+
if (appendToBody)
|
|
25
|
+
document.body.appendChild(fakeEl);
|
|
26
|
+
fakeEl.click();
|
|
27
|
+
if (appendToBody)
|
|
28
|
+
document.body.removeChild(fakeEl);
|
|
29
|
+
});
|
|
30
|
+
}
|
|
31
|
+
};
|
|
32
|
+
};
|
|
5
33
|
const handleCopy = async (str) => {
|
|
6
34
|
const { toClipboard } = useClipboard();
|
|
7
35
|
try {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"method.js","sources":["../../../../../../../packages/components/src/plugins/copy/method.ts"],"sourcesContent":["import
|
|
1
|
+
{"version":3,"file":"method.js","sources":["../../../../../../../packages/components/src/plugins/copy/method.ts"],"sourcesContent":["import Clipboard from 'clipboard';\r\n\r\ninterface UseClipboardOptions {\r\n /** Fixes IE by appending element to body */\r\n appendToBody: boolean;\r\n}\r\n\r\nconst useClipboard = (opts?: UseClipboardOptions) => {\r\n // default appendToBody true\r\n const appendToBody = opts?.appendToBody === undefined ? true : opts.appendToBody;\r\n return {\r\n toClipboard(text: string, container?: HTMLElement) {\r\n return new Promise((resolve, reject) => {\r\n // make fake element\r\n const fakeEl = document.createElement('button');\r\n // setup a new Clipboard.js\r\n const clipboard = new Clipboard(fakeEl, {\r\n text: () => text,\r\n action: () => 'copy',\r\n container: container !== undefined ? container : document.body,\r\n });\r\n clipboard.on('success', e => {\r\n clipboard.destroy();\r\n resolve(e);\r\n });\r\n clipboard.on('error', e => {\r\n clipboard.destroy();\r\n reject(e);\r\n });\r\n // appendToBody fixes IE\r\n if (appendToBody) document.body.appendChild(fakeEl);\r\n // simulate click\r\n fakeEl.click();\r\n // remove from body if appended\r\n if (appendToBody) document.body.removeChild(fakeEl);\r\n });\r\n },\r\n };\r\n};\r\n\r\nexport const handleCopy = async (str: string) => {\r\n const { toClipboard } = useClipboard();\r\n // const { copy } = useClipboard({ legacy: true });\r\n try {\r\n await toClipboard(str);\r\n GmMessage.success('复制成功');\r\n } catch (error) {\r\n console.error(error);\r\n GmMessage.error('复制失败');\r\n }\r\n};\r\n"],"names":[],"mappings":";;;;AAOA,MAAM,YAAA,GAAe,CAAC,IAA+B,KAAA;AAEnD,EAAA,MAAM,YAAe,GAAA,IAAA,EAAM,YAAiB,KAAA,KAAA,CAAA,GAAY,OAAO,IAAK,CAAA,YAAA,CAAA;AACpE,EAAO,OAAA;AAAA,IACL,WAAA,CAAY,MAAc,SAAyB,EAAA;AACjD,MAAA,OAAO,IAAI,OAAA,CAAQ,CAAC,OAAA,EAAS,MAAW,KAAA;AAEtC,QAAM,MAAA,MAAA,GAAS,QAAS,CAAA,aAAA,CAAc,QAAQ,CAAA,CAAA;AAE9C,QAAM,MAAA,SAAA,GAAY,IAAI,SAAA,CAAU,MAAQ,EAAA;AAAA,UACtC,MAAM,MAAM,IAAA;AAAA,UACZ,QAAQ,MAAM,MAAA;AAAA,UACd,SAAW,EAAA,SAAA,KAAc,KAAY,CAAA,GAAA,SAAA,GAAY,QAAS,CAAA,IAAA;AAAA,SAC3D,CAAA,CAAA;AACD,QAAU,SAAA,CAAA,EAAA,CAAG,WAAW,CAAK,CAAA,KAAA;AAC3B,UAAA,SAAA,CAAU,OAAQ,EAAA,CAAA;AAClB,UAAA,OAAA,CAAQ,CAAC,CAAA,CAAA;AAAA,SACV,CAAA,CAAA;AACD,QAAU,SAAA,CAAA,EAAA,CAAG,SAAS,CAAK,CAAA,KAAA;AACzB,UAAA,SAAA,CAAU,OAAQ,EAAA,CAAA;AAClB,UAAA,MAAA,CAAO,CAAC,CAAA,CAAA;AAAA,SACT,CAAA,CAAA;AAED,QAAI,IAAA,YAAA;AAAc,UAAS,QAAA,CAAA,IAAA,CAAK,YAAY,MAAM,CAAA,CAAA;AAElD,QAAA,MAAA,CAAO,KAAM,EAAA,CAAA;AAEb,QAAI,IAAA,YAAA;AAAc,UAAS,QAAA,CAAA,IAAA,CAAK,YAAY,MAAM,CAAA,CAAA;AAAA,OACnD,CAAA,CAAA;AAAA,KACH;AAAA,GACF,CAAA;AACF,CAAA,CAAA;AAEa,MAAA,UAAA,GAAa,OAAO,GAAgB,KAAA;AAC/C,EAAM,MAAA,EAAE,WAAY,EAAA,GAAI,YAAa,EAAA,CAAA;AAErC,EAAI,IAAA;AACF,IAAA,MAAM,YAAY,GAAG,CAAA,CAAA;AACrB,IAAA,SAAA,CAAU,QAAQ,0BAAM,CAAA,CAAA;AAAA,WACjB,KAAO,EAAA;AACd,IAAA,OAAA,CAAQ,MAAM,KAAK,CAAA,CAAA;AACnB,IAAA,SAAA,CAAU,MAAM,0BAAM,CAAA,CAAA;AAAA,GACxB;AACF;;;;"}
|
package/lib/giime/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "0.0.
|
|
1
|
+
export declare const version = "0.0.17";
|
package/lib/giime/version.js
CHANGED
package/lib/giime/version.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.js","sources":["../../../../packages/giime/version.ts"],"sourcesContent":["export const version = '0.0.
|
|
1
|
+
{"version":3,"file":"version.js","sources":["../../../../packages/giime/version.ts"],"sourcesContent":["export const version = '0.0.16';\n"],"names":[],"mappings":";;AAAO,MAAM,OAAU,GAAA;;;;"}
|
package/lib/index.css
CHANGED
|
@@ -1,3 +1,37 @@
|
|
|
1
|
+
.gm-flex-center[data-v-d1c6dac0] {
|
|
2
|
+
align-items: center;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.gm-flex-justify-between[data-v-d1c6dac0] {
|
|
6
|
+
justify-content: space-between;
|
|
7
|
+
}
|
|
8
|
+
[data-v-512cf874] .gmSearchForm .el-form-item {
|
|
9
|
+
margin-right: 8px;
|
|
10
|
+
margin-bottom: 8px;
|
|
11
|
+
}
|
|
12
|
+
[data-v-48398692] .gmTableNoBorder .el-table__body .el-table__cell {
|
|
13
|
+
border-right: none;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
[data-v-48398692] .gmTableNoBorder .el-table__inner-wrapper:before {
|
|
17
|
+
height: 0;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
[data-v-48398692] .gmTableNoBorder.el-table--border .el-table__inner-wrapper:after {
|
|
21
|
+
height: 0;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
[data-v-48398692] .gmTableNoBorder.el-table--border:after {
|
|
25
|
+
height: 0;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
[data-v-48398692] .gmTableNoBorder.el-table--border:before {
|
|
29
|
+
height: 0;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
[data-v-48398692] .gmTableNoBorder .el-table__border-left-patch {
|
|
33
|
+
height: 0;
|
|
34
|
+
}
|
|
1
35
|
/*
|
|
2
36
|
! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com
|
|
3
37
|
*//*
|
|
@@ -616,38 +650,4 @@ video {
|
|
|
616
650
|
.gm-text-orange-400 {
|
|
617
651
|
--tw-text-opacity: 1;
|
|
618
652
|
color: rgb(251 146 60 / var(--tw-text-opacity));
|
|
619
|
-
}
|
|
620
|
-
.gm-flex-center[data-v-d1c6dac0] {
|
|
621
|
-
align-items: center;
|
|
622
|
-
}
|
|
623
|
-
|
|
624
|
-
.gm-flex-justify-between[data-v-d1c6dac0] {
|
|
625
|
-
justify-content: space-between;
|
|
626
|
-
}
|
|
627
|
-
[data-v-512cf874] .gmSearchForm .el-form-item {
|
|
628
|
-
margin-right: 8px;
|
|
629
|
-
margin-bottom: 8px;
|
|
630
|
-
}
|
|
631
|
-
[data-v-48398692] .gmTableNoBorder .el-table__body .el-table__cell {
|
|
632
|
-
border-right: none;
|
|
633
|
-
}
|
|
634
|
-
|
|
635
|
-
[data-v-48398692] .gmTableNoBorder .el-table__inner-wrapper:before {
|
|
636
|
-
height: 0;
|
|
637
|
-
}
|
|
638
|
-
|
|
639
|
-
[data-v-48398692] .gmTableNoBorder.el-table--border .el-table__inner-wrapper:after {
|
|
640
|
-
height: 0;
|
|
641
|
-
}
|
|
642
|
-
|
|
643
|
-
[data-v-48398692] .gmTableNoBorder.el-table--border:after {
|
|
644
|
-
height: 0;
|
|
645
|
-
}
|
|
646
|
-
|
|
647
|
-
[data-v-48398692] .gmTableNoBorder.el-table--border:before {
|
|
648
|
-
height: 0;
|
|
649
|
-
}
|
|
650
|
-
|
|
651
|
-
[data-v-48398692] .gmTableNoBorder .el-table__border-left-patch {
|
|
652
|
-
height: 0;
|
|
653
653
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "giime",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.17",
|
|
4
4
|
"description": "A Component Library for Vue 3",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"giime",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"lodash-es": "^4.17.21",
|
|
62
62
|
"idb-keyval": "^6.2.1",
|
|
63
|
-
"
|
|
63
|
+
"clipboard": "^2.0.11",
|
|
64
64
|
"@types/lodash": "^4.17.0",
|
|
65
65
|
"@types/lodash-es": "^4.17.12"
|
|
66
66
|
},
|