-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: upgrade demo applications to
stream-chat-react@11-rc
(#85)
* Adjust social-messenger-ts to stream-chat-react v11 * Adjust team-ts to stream-chat-react v11 * Adjust virtual-event to stream-chat-react v11 * Adjust gaming-livestream to stream-chat-react v11 * Upgrade prettier * Add deploy workflow * Upgrade applications to [email protected]
- Loading branch information
1 parent
1636722
commit 9567b25
Showing
35 changed files
with
15,592 additions
and
20,709 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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Deploy Demo Apps | ||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- gaming-livestream/** | ||
- social-messenger-ts/** | ||
- team-ts/** | ||
- virtual-event/** | ||
- virtual-event-old/** | ||
- customer-support/** | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Build Apps | ||
run: yarn build:js:public | ||
|
||
- name: Upload Pages Artifact | ||
uses: actions/upload-pages-artifact@v1 | ||
with: | ||
path: docs/ | ||
name: gh-pages-artifact | ||
|
||
deploy: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
pages: write | ||
id-token: write | ||
|
||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
|
||
steps: | ||
- name: Deploy to Github Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v1 | ||
with: | ||
artifact_name: gh-pages-artifact |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,39 @@ | ||
// colors | ||
#root { | ||
--background: #000615; | ||
--component-background: #010c29; | ||
--button-background: #062471; | ||
--button-background-hover: #0d47d9; | ||
--background: rgb(0, 6, 21); | ||
--component-background: rgb(1, 12, 41); | ||
--button-background: rgb(6, 36, 113); | ||
--button-background-hover: rgb(13, 71, 217); | ||
|
||
--foreground: #fff; | ||
--foreground: rgb(255, 255, 255); | ||
|
||
--attendees: #00fc92; | ||
--border-color: #062471; | ||
--border-color-secondary: #081e58; | ||
--attendees: rgb(0, 252, 146); | ||
|
||
--border-color: rgb(6, 36, 113); | ||
--border-color-secondary: rgb(8, 30, 88); | ||
|
||
--header-height: 60px; | ||
--sidebar-width: 320px; | ||
|
||
--btn-border-radius: .5rem; | ||
--btn-border-radius: 0.5rem; | ||
|
||
--input-focused-box-shadow: 0 0 0 2px rgba(0, 108, 255, 0.36); | ||
} | ||
|
||
--em-rgb-color: var(--button-background); | ||
} | ||
|
||
em-emoji-picker { | ||
--category-icon-size: 16px; | ||
--font-size: 16px; | ||
|
||
--color-border-over: rgb(0, 108, 255); | ||
--color-border: rgb(0, 6, 21); | ||
|
||
--rgb-background: 1, 12, 41; | ||
--rgb-accent: 0, 108, 255; | ||
--rgb-color: 255, 255, 255; | ||
--rgb-input: 0, 6, 21; | ||
--shadow: none; | ||
|
||
border: 1px solid rgb(6, 36, 113); | ||
} |
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.