zulip/web/shared
Shubham Padia 259ef423ad icons: Let the system using the icons specify the fill color.
The fill color is ignored when we generate webfonts in our main app.
For our help center beta project using Astro, we would have needed to
come up with a way to change fill colors for all the icons. Since, there
was no reason for us to keep the fill colors in the SVGs, we decided to
remove it instead and add a lint rule to keep that in check.
See
https://chat.zulip.org/#narrow/channel/6-frontend/topic/fill.20in.20our.20current.20svg.20icons
for more details.
2025-05-22 16:00:21 -07:00
..
icons icons: Let the system using the icons specify the fill color. 2025-05-22 16:00:21 -07:00
src hash_util: Set channel URL based on user setting. 2025-05-09 15:13:56 -07:00
tools web: Move web app to ‘web’ directory. 2023-02-23 16:04:17 -08:00
.gitignore web: Move web app to ‘web’ directory. 2023-02-23 16:04:17 -08:00
.npmrc web: Move web app to ‘web’ directory. 2023-02-23 16:04:17 -08:00
package.json tsconfig: Enable composite. 2024-06-09 12:08:03 -07:00
README.md web: Move web app to ‘web’ directory. 2023-02-23 16:04:17 -08:00
tsconfig.json tsconfig: Enable composite. 2024-06-09 12:08:03 -07:00

The files in this subtree are part of the Zulip web frontend, and are also incorporated by the Zulip mobile app.

Note that the deployment cycles are different:

  • In the web app, this code is deployed in the same way as the rest of the web frontend: it's part of the server tree, and the browser gets it from the server, so the client is always running the same version the server just gave it.

  • In the mobile app, this code is deployed in the same way as the rest of the mobile app: it's bundled up into the app binary which is uploaded to app stores and users install on their devices. The client will be running the version built into their version of the mobile app, which may be newer, older, or simply different from the version on the server.

    The mobile app always refers to a specific version of this code; changes to this code will appear in the mobile app only after a commit in the mobile app pulls them in.

To update the version of @zulip/shared on NPM, see the instructions in the mobile repo.