![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@myuw-web-components/myuw-basic-card
Advanced tools
This is a basic card web component used with MyUW.
Add the following to your page's <head>
:
<script src="https://unpkg.com/@myuw-web-components/myuw-basic-card@^1"></script>
Using the component
<myuw-basic-card
title="My Account"
uid="unique-identifier"
url="/star"
md-icon="account_circle"
button-text="Launch"
>
</myuw-compact-card>
title
: The title of the web component.
uid
: The unique ID of the card.
md-icon
: Material UI icon name.
fa-icon
: Font Awesome icon name.
svg-icon
: A relative SVG icon URL.
url
: The URL to open when the card is clicked. If the URL starts with http
or https
the link will open in a new tab. If it is relative it will open in the same tab.
button-text
: The text to show in the launch button.
When the remove card button is clicked a deleteCardNotify
event is fired where event.detail
as the UID of the card.
const el = document.getElementById('my-card');
el.addEventListener('deleteCardNotify', event => {
console.log(event.detail);
});
Install dependencies with npm install
Run local server with npm run serve:element
Build the element into a single JavaScript file with npm run build-element
. A single file
will be generated in element/element.js
. This build path can be changed in build-elements.js
FAQs
A basic card for MyUW
The npm package @myuw-web-components/myuw-basic-card receives a total of 3 weekly downloads. As such, @myuw-web-components/myuw-basic-card popularity was classified as not popular.
We found that @myuw-web-components/myuw-basic-card demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.