-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #583 from aziontech/dev
DEPLOY 2024.01.18
- Loading branch information
Showing
255 changed files
with
11,345 additions
and
1,508 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
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
yarn build | ||
|
||
rm -rf dist |
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
24 changes: 24 additions & 0 deletions
24
src/assets/themes/scss/themes/azion-dark/extended-components/_picklist.scss
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Custom PickList | ||
.p-picklist { | ||
.p-picklist-buttons { | ||
.p-button { | ||
background-color: transparent; | ||
transition: all 150ms; | ||
border: 1px solid var(--surface-border); | ||
color: $textSecondaryColor !important; | ||
} | ||
.p-button:hover { | ||
background-color: var(--surface-hover) !important; | ||
} | ||
} | ||
.p-picklist-list { | ||
.p-picklist-item { | ||
padding: 0 0.5rem !important; | ||
font-size: 0.875rem; | ||
min-height: 2.375rem !important; | ||
border-radius: $borderRadius; | ||
display: flex; | ||
align-items: center; | ||
} | ||
} | ||
} |
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
24 changes: 24 additions & 0 deletions
24
src/assets/themes/scss/themes/azion-light/extended-components/_picklist.scss
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Custom PickList | ||
.p-picklist { | ||
.p-picklist-buttons { | ||
.p-button { | ||
background-color: transparent; | ||
transition: all 150ms; | ||
border: 1px solid var(--surface-border); | ||
color: $textSecondaryColor !important; | ||
} | ||
.p-button:hover { | ||
background-color: var(--surface-hover) !important; | ||
} | ||
} | ||
.p-picklist-list { | ||
.p-picklist-item { | ||
padding: 0 0.5rem !important; | ||
font-size: 0.875rem; | ||
min-height: 2.375rem !important; | ||
border-radius: $borderRadius; | ||
display: flex; | ||
align-items: center; | ||
} | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,37 @@ | ||
import { clipboardWrite } from './clipboard' | ||
import { documentationCatalog, documentationGuideProducts } from './azion-documentation-catalog' | ||
import { | ||
openDocumentation, | ||
openAPIDocumentation, | ||
openContactSupport, | ||
openSearchResult, | ||
openGoogleAuthenticatorAppDocumentation | ||
openDocumentation, | ||
openGoogleAuthenticatorAppDocumentation, | ||
openSearchResult | ||
} from './azion-documentation-window-opener' | ||
import InviteSession from './invite-session' | ||
import { themeSelect } from './theme-select' | ||
import { azionPrivacyPolicyWindowOpener } from './azion-privacy-policy-opener' | ||
import { azionTermsAndServicesWindowOpener } from './azion-terms-and-services-opener' | ||
import { parseCamelToSnake, parseSnakeToCamel } from './parse-api-body' | ||
import { clipboardWrite } from './clipboard' | ||
import { getEnvironmentFromUrl } from './get-environment-from-url' | ||
import { getFirstApiError } from './get-first-api-error' | ||
import InviteSession from './invite-session' | ||
import { metricsPlaygroundOpener } from './metrics-playground-opener' | ||
import { parseCamelToSnake, parseSnakeToCamel } from './parse-api-body' | ||
import { themeSelect } from './theme-select' | ||
|
||
export { | ||
themeSelect, | ||
InviteSession, | ||
azionPrivacyPolicyWindowOpener, | ||
azionTermsAndServicesWindowOpener, | ||
clipboardWrite, | ||
documentationCatalog, | ||
documentationGuideProducts, | ||
openDocumentation, | ||
getEnvironmentFromUrl, | ||
getFirstApiError, | ||
metricsPlaygroundOpener, | ||
openAPIDocumentation, | ||
openContactSupport, | ||
InviteSession, | ||
azionPrivacyPolicyWindowOpener, | ||
azionTermsAndServicesWindowOpener, | ||
openDocumentation, | ||
openGoogleAuthenticatorAppDocumentation, | ||
openSearchResult, | ||
parseCamelToSnake, | ||
parseSnakeToCamel, | ||
openSearchResult, | ||
getEnvironmentFromUrl, | ||
openGoogleAuthenticatorAppDocumentation, | ||
getFirstApiError | ||
themeSelect | ||
} |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export const metricsPlaygroundOpener = () => { | ||
window.open('https://azion.com', '_blank') | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { useLoadingStore } from '@/stores/loading' | ||
|
||
export default function afterEachRoute() { | ||
const loadingStore = useLoadingStore() | ||
loadingStore.finishLoading() | ||
} |
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
Oops, something went wrong.