-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
489 additions
and
510 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
pnpm commitlint --edit "$1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
pnpm biome | ||
pnpm test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 23 additions & 18 deletions
41
...es/pinorama-studio/src/modules/log-explorer/components/log-details/styles/json-viewer.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,56 @@ | ||
.json-view-container { | ||
@apply whitespace-pre-wrap font-mono text-sm pl-1 | ||
@apply whitespace-pre-wrap font-mono text-sm pl-1; | ||
} | ||
|
||
.punctuation { | ||
@apply text-muted-foreground | ||
@apply text-muted-foreground; | ||
} | ||
|
||
.expander { | ||
@apply mr-1 | ||
@apply mr-1; | ||
} | ||
|
||
.expand-icon, .collapse-icon { | ||
@apply inline-flex w-[14px] ml-[-14px] text-lg leading-none text-muted-foreground/40 | ||
.expand-icon, | ||
.collapse-icon { | ||
@apply inline-flex w-[14px] ml-[-14px] text-lg leading-none text-muted-foreground/40; | ||
} | ||
|
||
.expand-icon::after { | ||
content: '▸'; | ||
content: "▸"; | ||
} | ||
|
||
.collapse-icon::after { | ||
content: '▾'; | ||
content: "▾"; | ||
} | ||
|
||
.collapsed-content { | ||
@apply mx-1 | ||
@apply mx-1; | ||
} | ||
|
||
.collapsed-content::after { | ||
content: '...'; | ||
content: "..."; | ||
} | ||
|
||
.basic-element-style { | ||
@apply my-1 mx-4 p-0 | ||
@apply my-1 mx-4 p-0; | ||
} | ||
|
||
.label, .clickable-label { | ||
@apply mr-2 font-semibold | ||
.label, | ||
.clickable-label { | ||
@apply mr-2 font-semibold; | ||
} | ||
|
||
.value-string { | ||
@apply text-sky-400 | ||
@apply text-sky-400; | ||
} | ||
|
||
.value-number, .value-boolean, .value-null, .value-undefined, .value-other { | ||
@apply text-rose-400 | ||
.value-number, | ||
.value-boolean, | ||
.value-null, | ||
.value-undefined, | ||
.value-other { | ||
@apply text-rose-400; | ||
} | ||
|
||
.collapse-icon {} | ||
.expand-icon {} | ||
|
||
/* .collapse-icon {} */ | ||
/* .expand-icon {} */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.