Skip to content
#

design-system

Here are 471 public repositories matching this topic...

njacharya
njacharya commented Aug 16, 2019

A description is incomplete. It should mention:

These patterns are not competing, but complementing each other. To achieve availability, one needs both fail-over and replication.

right after

"There are two main patterns to support high availability: fail-over and replication. "

docz
css
rebass
daltonvarao
daltonvarao commented Oct 11, 2019

Describe the bug
By clicking See guide in Library Screen the app opens a broken link.

To Reproduce
Steps to reproduce the behavior:

  1. Go to Home Screen
  2. Click Library
  3. Scroll down
  4. Click in See Guide link
  5. Wait Browser open Doc Page
  6. See error

Expected behavior
Open Install local library guide page

Screenshots

Expected Page

![image](https://user-im

polaris-react
theme-ui
mxstbr
mxstbr commented Feb 14, 2020

Based on the discussions around #121 and the test we just merged in #662, we are going to convert theme-ui to TypeScript! 🎉 The plan is to go package-by-package and gradually move all .js files to .ts files.

Click to see the list of the packages that still need to be converted
  • chrome
  • color (#672)
  • color-modes (claimed)
  • compo
sense-it-gmbh
sense-it-gmbh commented Feb 19, 2020

Current behavior

When applying mixins, vue - as far as i understand - is taking account of the order. For example:

const a = {
  props: {
    value: { type: [ String, Number ], default: '' }
  }
}
const b = {
  props: {
    value: { type: Number, default: Infinity }
  }
}

export default {
  name: 'my-component',
  mixins: [ a, b ]  // the resulting value-type will be
bug
tmeasday
tmeasday commented Feb 2, 2020

As reported by @stephyswe on Discord:

  1. Prepare your design system for export - BABEL_ENV needs "set" to work for Windows Users, also --copy-files to add .mdx files in /dist/ folder
    REPLACE
    {
    "scripts": {
    "build": "BABEL_ENV=production babel src -d dist",
    WITH
    {
    "scripts": {
    "build": "set BABEL_ENV=production&& babel src -d dist --copy-files",
    ...
tomrav
tomrav commented Jul 16, 2019

Currently we only provide documentation for consuming the existing custom-values offered by Stylable, stMap, stArray and if you explicitly import it stBorder.

Need to add the relevant documentation to both the package readme and to the stylable.io.

raikusy
raikusy commented Feb 11, 2020

Hello, I am using atomize in one of my soon to be released project. I loved the concept how atomize works.
But I feel the documentation needs more work. Also there aren't any release changelog in github.
It would be good to have a changelog so that I can keep track with version updates.
Also any plan of moving the examples to functional components and introducing more hooks?

Also I had some

abautist
abautist commented Dec 9, 2019

With docs and static storybook now integrated in the CI process, the npm run storybook script no longer builds a static storybook.

We should either a) remove the script all together or b) refactor the code to allow devs to build static stories if they run npm run storybook.

siddharthkp
siddharthkp commented Dec 3, 2018

Is your feature request related to a problem? Please describe.

Some components are opinionated about what they want as children (most aren't)

Example:

<Breadcrumb>
  <Breadcrumb.Link href="/home">Home</Breadcrumb.Link>
  <Breadcrumb.Link href="/parent">Parent</Breadcrumb.Link>
  <Breadcrumb.Link href="/parent/page">Page</Breadcrumb.Link>
</Breadcrumb>

Right now, th

Improve this page

Add a description, image, and links to the design-system topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the design-system topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.