Skip to content

Commit

Permalink
patch: test1
Browse files Browse the repository at this point in the history
  • Loading branch information
xsf0105 committed Mar 26, 2024
1 parent 60b3167 commit ac91e8e
Show file tree
Hide file tree
Showing 7 changed files with 468 additions and 40 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
/node_modules
/lib
/node_modules
38 changes: 0 additions & 38 deletions index.vue.html

This file was deleted.

433 changes: 433 additions & 0 deletions lib/index.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions lib/index.umd.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions lib/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions lib/types/dark-mode.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { QuarkElement } from "quarkc";
export default class DarkMode extends QuarkElement {
constructor();
componentDidMount(): void;
turnDark: () => void;
turnLight: () => void;
render(): any;
}
22 changes: 22 additions & 0 deletions lib/types/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import { QuarkElement } from "quarkc";
import "./dark-mode.tsx";
import "@docsearch/css";
declare class MyComponent extends QuarkElement {
#private;
from: string;
logo: string;
githubUrl: string;
homeUrl: string;
guideUrl: string;
componentUrl: string;
activeNav: string;
searchRef: import("quarkc").Ref<any>;
constructor();
navActive: () => void;
componentDidMount(): void;
_quarkdLogoSwitch: () => void;
_quarkcLogoSwitch: () => void;
_switchLang: () => void;
render(): any;
}
export default MyComponent;

0 comments on commit ac91e8e

Please sign in to comment.