IBM - United States
For more than a century, IBM has been a global technology innovator, leading advances in AI, automation and hybrid cloud solutions that help businesses grow.
Web components worked well for what we were doing 5 years ago. Back then, we had millions of pages on IBM.com while we migrated from an old design system to Carbon. The masthead as a web component helped bring in the masthead globally with gradual migration of pages still on the old design system.
22.03.2025 12:55
π 1
π 0
π¬ 0
π 0
I'd like an invite, our team is hiring and would be happy to share there too.
31.01.2025 02:24
π 1
π 0
π¬ 0
π 0
Maybe they open sourced VS Code just so they don't have to pay for GitHub Action runners. Oh wait...
31.01.2025 02:05
π 1
π 0
π¬ 0
π 0
Thank you for the shout out!
17.01.2025 00:10
π 1
π 0
π¬ 0
π 0
React v19, now with Web Component support!
Creating and managing React wrappers for our clients' design systems has long been a pain in the ass. This is very welcome step in the right direction. bradfrost.com/blog/link/re...
05.12.2024 20:28
π 59
π 8
π¬ 1
π 1
I just noticed today that the Disney+ video player is build with @lit.dev!
03.12.2024 18:14
π 46
π 5
π¬ 1
π 0
Tis the season!
03.12.2024 16:11
π 2
π 0
π¬ 0
π 0
Incredible read! Thank you for taking the time to write and share this, @infrequently.org !
30.11.2024 02:14
π 2
π 0
π¬ 0
π 0
One of the best things about Thanksgiving is leftovers. How often do I get to eat a turkey mushroom omelette for breakfast?
29.11.2024 16:00
π 0
π 0
π¬ 0
π 0
One thing we are super fortunate about is that even Arvind knows about Carbon Design System and the value it brings to IBM. But it took awhile for us to get here!
23.11.2024 13:44
π 1
π 0
π¬ 1
π 0
Carbon Design System
Carbon is IBMβs open source design system for products and digital experiences. With the IBM Design Language as its foundation, the system consists of working code, design tools and resources, human i...
Our team delivers to hundreds of teams across IBM, and the way we organized ourselves revolves around treating ourselves like a product. We finally put pen to paper and published our POV on our product development lifecycle, and our definition of done.
carbondesignsystem.com/contributing...
23.11.2024 12:49
π 3
π 0
π¬ 0
π 0
Great playback, and excited to hear about your journey with web components! At IBM, we are having our own journey where we as a team are consolidating to just supporting React and Web Components. The other framework flavors are still around, but are supported by the community.
22.11.2024 18:30
π 1
π 0
π¬ 0
π 0
Figma somehow hijacked my calendar!
22.11.2024 15:43
π 1
π 0
π¬ 0
π 0
Love your blog posts! The first one I read is about design system ecosystems where you mentioned Carbon!
22.11.2024 15:07
π 1
π 0
π¬ 1
π 0
Thanks for the shout-out about Carbon Design System, @scottjehl.com !
#webcomponents
22.11.2024 14:56
π 3
π 0
π¬ 1
π 0
// simple-greeting.ts
import {html, css, LitElement} from 'lit';
import {customElement, property} from 'lit/decorators.js';
import type { PropertyValues } from 'lit';
@customElement('simple-greeting')
export class SimpleGreeting extends LitElement {
@property() name = 'Somebody';
// BEFORE
// updated(changedProperties: Map<string, unknown>) {
// if (changedProperties.has('name')) {
// // works but any key is valid
// }
// }
// AFTER
updated(changedProperties: PropertyValues<this>) {
if (changedProperties.has('name')) {
// works and tells you if a key is incorrect!
}
}
render() {
return html`<p>Hello, ${this.name}!</p>`;
}
}
How did I not know about this in @lit.dev
TL;DR β you can use `PropertyValues` to get strongly typed maps in lifecycle methods. π€©
21.11.2024 15:56
π 47
π 7
π¬ 2
π 0
Very excited for this! I have had my eye on this proposal for awhile as well. We will certainly find practical uses for this at IBM!
21.11.2024 14:46
π 1
π 1
π¬ 0
π 0
Super excited for this one! For our particular use case at IBM, having versioned scoped elements would be useful to us! We're also starting to see local design systems based on web components so then having their own scope would be incredibly useful.
21.11.2024 12:45
π 0
π 0
π¬ 0
π 0
Hi, thank you for putting this starter pack together! I'm on the Carbon Design System from IBM π
21.11.2024 12:36
π 1
π 0
π¬ 1
π 0
What gif pops up when you type your name?
19.11.2024 12:28
π 1
π 0
π¬ 0
π 0
So in the last month, Trump won the election and Mike Tyson lost to a YouTuber. Anything else on the 2024 bingo card I should prepare for?
16.11.2024 12:45
π 0
π 0
π¬ 0
π 0
Meme with side by side pictures of Marco Rubio and RFK, Jr, labeled βMarcoβ and βPolio.β
Who made this? Ahahaha
15.11.2024 19:52
π 72855
π 13808
π¬ 1573
π 1062
So...are we now living in the prequel to Idiocracy?
14.11.2024 21:47
π 0
π 0
π¬ 0
π 0
Hello World!
14.11.2024 02:28
π 1
π 0
π¬ 0
π 0