@opendesign-plus-test/components 0.0.1-rc.144 → 0.0.1-rc.145
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/components/sig/OSigDetail.vue.d.ts +0 -2
- package/dist/components/sig/components/OSigRepo.vue.d.ts +0 -2
- package/dist/components.cjs.js +30 -30
- package/dist/components.es.js +2088 -2087
- package/dist/treeshaking/components/sig/OSigDetail.vue.d.ts +0 -2
- package/dist/treeshaking/components/sig/OSigDetail.vue.mjs +7 -5
- package/dist/treeshaking/components/sig/components/OSigRepo.vue.d.ts +0 -2
- package/dist/treeshaking/components/sig/components/OSigRepo.vue.mjs +1 -2
- package/package.json +1 -1
|
@@ -4,7 +4,6 @@ interface SigDetailPropsT {
|
|
|
4
4
|
sigDetail?: SigCompleteItemT;
|
|
5
5
|
repositories?: SigRepoEntryT[];
|
|
6
6
|
headerBg?: string;
|
|
7
|
-
gitBase?: string;
|
|
8
7
|
getContributeData: any;
|
|
9
8
|
}
|
|
10
9
|
declare function __VLS_template(): {
|
|
@@ -19,7 +18,6 @@ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
|
19
18
|
declare const __VLS_component: import('vue').DefineComponent<SigDetailPropsT, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<SigDetailPropsT> & Readonly<{}>, {
|
|
20
19
|
sigName: string;
|
|
21
20
|
repositories: SigRepoEntryT[];
|
|
22
|
-
gitBase: string;
|
|
23
21
|
sigDetail: SigCompleteItemT;
|
|
24
22
|
headerBg: string;
|
|
25
23
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
@@ -46,7 +46,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
46
46
|
sigDetail: { default: void 0 },
|
|
47
47
|
repositories: { default: () => [] },
|
|
48
48
|
headerBg: { default: "" },
|
|
49
|
-
gitBase: { default: "https://atomgit.com/" },
|
|
50
49
|
getContributeData: {}
|
|
51
50
|
},
|
|
52
51
|
setup(__props) {
|
|
@@ -232,10 +231,13 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
232
231
|
renderSlot(_ctx.$slots, "meeting")
|
|
233
232
|
])) : createCommentVNode("", true),
|
|
234
233
|
createElementVNode("div", _hoisted_19, [
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
}, null, 8, ["repositories",
|
|
234
|
+
__props.repositories.length ? (openBlock(), createBlock(_sfc_main$3, {
|
|
235
|
+
key: 0,
|
|
236
|
+
repositories: __props.repositories
|
|
237
|
+
}, null, 8, ["repositories"])) : (openBlock(), createBlock(_sfc_main$3, {
|
|
238
|
+
key: 1,
|
|
239
|
+
repositories: __props.repositories
|
|
240
|
+
}, null, 8, ["repositories"]))
|
|
239
241
|
]),
|
|
240
242
|
createElementVNode("div", _hoisted_20, [
|
|
241
243
|
createVNode(_sfc_main$4, {
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import { SigRepoEntryT } from '../types';
|
|
2
2
|
interface SigRepoPropsT {
|
|
3
3
|
repositories?: SigRepoEntryT[];
|
|
4
|
-
gitBase?: string;
|
|
5
4
|
}
|
|
6
5
|
declare const _default: import('vue').DefineComponent<SigRepoPropsT, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<SigRepoPropsT> & Readonly<{}>, {
|
|
7
6
|
repositories: SigRepoEntryT[];
|
|
8
|
-
gitBase: string;
|
|
9
7
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
10
8
|
export default _default;
|
|
@@ -16,8 +16,7 @@ const _hoisted_4 = {
|
|
|
16
16
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
17
17
|
__name: "OSigRepo",
|
|
18
18
|
props: {
|
|
19
|
-
repositories: { default: () => [] }
|
|
20
|
-
gitBase: { default: "https://atomgit.com/" }
|
|
19
|
+
repositories: { default: () => [] }
|
|
21
20
|
},
|
|
22
21
|
setup(__props) {
|
|
23
22
|
const props = __props;
|