![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@anexia/platform-tools
Advanced tools
Provides Ionic Framework way class mapping of current platform and orientation on the root document node ´html´ for usage inside scss or :host-context selecting.
Provides Ionic Framework way class mapping of current platform and orientation on the root document node ´html´ for usage inside scss or :host-context selecting.
Simply inject the service in your root app component and it will add classes to your document.
import {PlatformToolsService} from "./platform-tools.service";
export class AppComponent {
public constructor(
// ...
private readonly platformService: PlatformToolsService
// ...
) {
}
}
Now you're able to use :host-context(.plt-tablet)
at Angular Component SCSS level for writing context based css,
or use at global.scss/style.scss as selector .plt-tablet > app-component { ... }
.
Selector Name | Description |
---|---|
plt-android | a device running Android |
plt-desktop | a desktop device |
plt-ios | a device running iOS |
plt-ipad | an iPad device |
plt-iphone | an iPhone device |
plt-mobile | a mobile device |
plt-mobileweb | a web browser running in a mobile device |
plt-phablet | a phablet device |
plt-pwa | a PWA app |
plt-tablet | a tablet device |
is-landscape | a device with landscape orientation |
is-portrait | a device with portrait orientation |
Inside your Angular Component Stylesheet SCSS
:host {
display: block;
width: 100%;
height: 100vh;
}
// set color of font to white on ios platform
:host-context(.plt-ios) {
:host {
color: white;
}
}
// set background color to blue on tablet
:host-context(.plt-tablet) {
:host {
background-color: blue;
}
// set background color red if tablet and landscape
:host-context(.is-landscape) {
:host {
background-color: red;
}
}
}
Or inside your style.scss / global.scss without :host-context
since it is only
available inside component scss scopes.
html.plt-ios {
// ... your rules
}
// or
.plt-tablet{
}
Platform class mapping won't change if simply changing device emulator inside Chrome since platform evaluation is done only on boot. A Reload will be needed. Screen orientation will be update on screenorientation change by listening to the window resize event.
To the Ionic Framework core team for the inspiration.
FAQs
Provides Ionic Framework way class mapping of current platform and orientation on the root document node ´html´ for usage inside scss or :host-context selecting.
The npm package @anexia/platform-tools receives a total of 6 weekly downloads. As such, @anexia/platform-tools popularity was classified as not popular.
We found that @anexia/platform-tools demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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
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.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.