@opendesign-plus-test/components 0.0.1-rc.132 → 0.0.1-rc.134

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.
@@ -4,6 +4,7 @@ interface SigDetailPropsT {
4
4
  sigDetail?: SigCompleteItemT;
5
5
  repositories?: SigRepoEntryT[];
6
6
  headerBg?: string;
7
+ gitBase?: string;
7
8
  getContributeData: any;
8
9
  }
9
10
  declare function __VLS_template(): {
@@ -18,6 +19,7 @@ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
18
19
  declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').DefineComponent<SigDetailPropsT, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<SigDetailPropsT> & Readonly<{}>, {
19
20
  sigName: string;
20
21
  repositories: SigRepoEntryT[];
22
+ gitBase: string;
21
23
  sigDetail: SigCompleteItemT;
22
24
  headerBg: string;
23
25
  }, {}, {}, {}, string, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {}, HTMLDivElement>;
@@ -4,6 +4,7 @@ declare const _default: import('../../../vue/dist/vue.esm-bundler.js').DefineCom
4
4
  }, string, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<SigListPropsT> & Readonly<{
5
5
  "onTo-sig-detail"?: ((sigName: string) => any) | undefined;
6
6
  }>, {
7
+ gitBase: string;
7
8
  sigLandscape: GroupInfoT[];
8
9
  sigList: SigListItemT[];
9
10
  }, {}, {}, {}, string, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {
@@ -5,10 +5,13 @@ type __VLS_Props = {
5
5
  locale: 'zh' | 'en';
6
6
  mobile?: boolean;
7
7
  activeRepo?: string;
8
+ gitBase?: string;
8
9
  };
9
10
  declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {} & {
10
11
  "to-sig-detail": (sigName: string) => any;
11
12
  }, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<__VLS_Props> & Readonly<{
12
13
  "onTo-sig-detail"?: ((sigName: string) => any) | undefined;
13
- }>, {}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {}, HTMLDivElement>;
14
+ }>, {
15
+ gitBase: string;
16
+ }, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {}, HTMLDivElement>;
14
17
  export default _default;
@@ -1,8 +1,10 @@
1
1
  import { SigRepoEntryT } from '../types';
2
2
  interface SigRepoPropsT {
3
3
  repositories?: SigRepoEntryT[];
4
+ gitBase?: string;
4
5
  }
5
6
  declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<SigRepoPropsT, {}, {}, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<SigRepoPropsT> & Readonly<{}>, {
6
7
  repositories: SigRepoEntryT[];
8
+ gitBase: string;
7
9
  }, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {}, HTMLDivElement>;
8
10
  export default _default;
@@ -17,6 +17,7 @@ export interface SigCompleteItemT {
17
17
  etherpadUrl?: string;
18
18
  subscribeUrl?: string;
19
19
  discuss_url?: string;
20
+ gitUrl?: string;
20
21
  mature_level?: string;
21
22
  maintainers: string[];
22
23
  committers: string[];
@@ -110,6 +111,7 @@ export interface SigListPropsT {
110
111
  sigLandscape?: GroupInfoT[];
111
112
  sigList?: SigListItemT[];
112
113
  searchFn?: (params: SigSearchParamsT) => Promise<SigSearchResultT>;
114
+ gitBase?: string;
113
115
  }
114
116
  export interface DayDataT {
115
117
  creator?: string;