-
Notifications
You must be signed in to change notification settings - Fork 195
feat: replaced pink 1 with pink2 in documents permission component #2128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
ItzNotABug
merged 6 commits into
appwrite:main
from
HarshMN2345:feat-SER-16-replace-pink1-with-pink2-doc-permissions
Jul 25, 2025
Merged
Changes from 3 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
8f9c726
feat: replaced pink 1 with pink2
HarshMN2345 2df7aae
fix: made some more components replaced with pink2
HarshMN2345 8db1621
fix:removed a class
HarshMN2345 5c225f8
fix:done some chnages suggested
HarshMN2345 004414b
Merge branch 'appwrite:main' into feat-SER-16-replace-pink1-with-pink…
HarshMN2345 b7009ef
changed size from m to l
HarshMN2345 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
6 changes: 3 additions & 3 deletions
6
...routes/(console)/organization-[organization]/settings/deleteOrganizationEstimation.svelte
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -3,7 +3,8 @@ | |
| import { base } from '$app/paths'; | ||
| import { page } from '$app/state'; | ||
| import { Submit, trackError, trackEvent } from '$lib/actions/analytics'; | ||
| import { Alert, Confirm, Id } from '$lib/components'; | ||
| import { Confirm, Id } from '$lib/components'; | ||
| import { Alert } from '@appwrite.io/pink-svelte'; | ||
| import { Dependencies } from '$lib/constants'; | ||
| import { Button as ConsoleButton, InputChoice } from '$lib/elements/forms'; | ||
| import { addNotification } from '$lib/stores/notifications'; | ||
|
|
@@ -343,7 +344,8 @@ | |
| {/each} | ||
| </Table.Root> | ||
| <div class="u-flex u-flex-vertical u-gap-16"> | ||
|
||
| <Alert>To change the selection edit the relationship settings.</Alert> | ||
| <Alert.Inline status="info" | ||
| >To change the selection edit the relationship settings.</Alert.Inline> | ||
|
|
||
| <ul> | ||
| <InputChoice id="delete" label="Delete" showLabel={false} bind:value={checked}> | ||
|
|
||
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -13,7 +13,7 @@ | |
| import { sdk } from '$lib/stores/sdk'; | ||
| import { Dependencies } from '$lib/constants'; | ||
| import { invalidate } from '$app/navigation'; | ||
| import { Alert } from '$lib/components'; | ||
| import { Alert } from '@appwrite.io/pink-svelte'; | ||
| import { Button } from '$lib/elements/forms'; | ||
| import { Click, trackEvent } from '$lib/actions/analytics'; | ||
| import UpdateRepository from './updateRepository.svelte'; | ||
|
|
@@ -55,35 +55,33 @@ | |
|
|
||
| <Container> | ||
| {#if data.function.version === 'v2' && showAlert} | ||
| <Alert | ||
| type="warning" | ||
| dismissible | ||
| class="u-margin-block-start-24" | ||
| on:dismiss={() => (showAlert = false)}> | ||
| <svelte:fragment slot="title">Your function is outdated</svelte:fragment> | ||
| Update your function version to make use of new features including build commands and HTTP | ||
| data in your executions. To update, follow the steps outlined in our | ||
| <a | ||
| href="https://appwrite.io/docs/products/functions/development" | ||
| target="_blank" | ||
| rel="noopener noreferrer" | ||
| class="link">documentation</a | ||
| >. | ||
| <svelte:fragment slot="buttons"> | ||
| <Button | ||
| on:click={() => | ||
| trackEvent(Click.WebsiteOpenClick, { | ||
| from: 'button', | ||
| source: 'function_keys_card', | ||
| destination: 'docs' | ||
| })} | ||
| <div class="u-margin-block-start-24"> | ||
|
||
| <Alert.Inline status="warning" dismissible on:dismiss={() => (showAlert = false)}> | ||
| <svelte:fragment slot="title">Your function is outdated</svelte:fragment> | ||
HarshMN2345 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| Update your function version to make use of new features including build commands and | ||
| HTTP data in your executions. To update, follow the steps outlined in our | ||
| <a | ||
HarshMN2345 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| href="https://appwrite.io/docs/products/functions/development" | ||
| external | ||
| text> | ||
| Learn more | ||
| </Button> | ||
| </svelte:fragment> | ||
| </Alert> | ||
| target="_blank" | ||
| rel="noopener noreferrer" | ||
| class="link">documentation</a | ||
| >. | ||
| <svelte:fragment slot="actions"> | ||
| <Button | ||
| on:click={() => | ||
| trackEvent(Click.WebsiteOpenClick, { | ||
| from: 'button', | ||
| source: 'function_keys_card', | ||
| destination: 'docs' | ||
| })} | ||
| href="https://appwrite.io/docs/products/functions/development" | ||
| external | ||
| text> | ||
| Learn more | ||
| </Button> | ||
| </svelte:fragment> | ||
| </Alert.Inline> | ||
| </div> | ||
| {/if} | ||
| <ExecuteFunction /> | ||
| <UpdateName /> | ||
|
|
||
This file contains hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.