
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
tase-shared-components
Advanced tools
Sharedlibs is a library of web-components built with [Stencil.js](https://stenciljs.com/) and [Tailwind CSS](https://tailwindcss.com/)
Sharedlibs is a library of web-components built with Stencil.js and Tailwind CSS
Also used:
For develepment use command npm start and port http://localhost:4200/
For production use npm build and npm publish (You need npm authorization for the last one)
The version set manualy in package.json and tase-global.ts
Stencil.js use two types of components:
@Component({
tag: 'todo-list',
// additional options
})
export class TodoList {
// implementation omitted
}
those can be:
shadow: true
Preferred method. More or less predictable. Creates shadow dom for web-components. Works with Tailwind.shadow: false
Don't work with Tailwind, only with css
const Hello = (props) => <h1>Hello, {props.name}!</h1>;
Don't have state, don't work well with Tailwind, are buggy. Use only for the simplest things
<tase-header white-offset="100" fixed fetch-url="https://taseapi-wa-qa.azurewebsites.net/api/Cms?Route=header" transparent="true">
<tase-search most-active-url="https://taseapi-wa-qa.azurewebsites.net/api/MarketTrends/most-active" search-url="https://taseapi-wa-qa.azurewebsites.net/api/Search"></tase-search>
</tase-header>
<tase-footer fetch-url="https://taseapi-wa-qa.azurewebsites.net/api/Cms?Route=footer"> </tase-footer>
<tase-cookies-policy fetch-url="https://taseapi-wa-qa.azurewebsites.net/api/Cms?Route=%2Ffloating"> </tase-cookies-policy>
<tase-accessibility></tase-accessibility>
<tase-scroll-top></tase-scroll-top>
<tase-skip-to-main-content-menu element="#main1"> </tase-skip-to-main-content-menu>
<tase-share-and-customer-service fetch-url="https://taseapi-wa-qa.azurewebsites.net/api/Cms?Route=%2Ffloating"> </tase-share-and-customer-service>
<tase-focus-trap></tase-focus-trap>
FAQs
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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.