Skip to content

Commit

Permalink
docs: update demo (#461)
Browse files Browse the repository at this point in the history
  • Loading branch information
zombieJ authored Oct 17, 2023
1 parent 966131e commit 06cb799
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 5 deletions.
2 changes: 2 additions & 0 deletions assets/bootstrap_white.less
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@
margin-top: -@tooltip-arrow-width;
border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;
border-right-color: @tooltip-arrow-color;
transform: translateX(calc(-100% + @tooltip-shadow-width));
}

&-placement-right &-arrow-inner,
Expand Down Expand Up @@ -135,6 +136,7 @@
margin-top: -@tooltip-arrow-width;
border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;
border-left-color: @tooltip-arrow-color;
transform: translateX(calc(100% - @tooltip-shadow-width));
}

&-placement-left &-arrow-inner,
Expand Down
22 changes: 17 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,22 @@
"skipLibCheck": true,
"esModuleInterop": true,
"paths": {
"@/*": ["src/*"],
"@@/*": [".dumi/tmp/*"],
"rc-tooltip": ["src/index.tsx"]
"@/*": [
"src/*"
],
"@@/*": [
".dumi/tmp/*"
],
"rc-tooltip": [
"src/index.tsx"
]
}
},
"include": [".dumi/**/*", ".dumirc.ts", "./src/**/*.ts", "./src/**/*.tsx", "./docs/**/*.tsx", "./tests/**/*.tsx"]
}
"include": [
".dumirc.ts",
"./src/**/*.ts",
"./src/**/*.tsx",
"./docs/**/*.tsx",
"./tests/**/*.tsx"
]
}

0 comments on commit 06cb799

Please sign in to comment.