Skip to content

Commit

Permalink
chore: Promote SegmentedControl out of labs (Workday#524)
Browse files Browse the repository at this point in the history
  • Loading branch information
anicholls committed Mar 18, 2020
1 parent 2e439f5 commit 2e6db84
Show file tree
Hide file tree
Showing 12 changed files with 8 additions and 6 deletions.
1 change: 1 addition & 0 deletions modules/_canvas-kit-react/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export * from '@workday/canvas-kit-react-modal';
export * from '@workday/canvas-kit-react-page-header';
export * from '@workday/canvas-kit-react-popup';
export * from '@workday/canvas-kit-react-radio';
export * from '@workday/canvas-kit-react-segmented-control';
export * from '@workday/canvas-kit-react-select';
export * from '@workday/canvas-kit-react-side-panel';
export * from '@workday/canvas-kit-react-skeleton';
Expand Down
1 change: 1 addition & 0 deletions modules/_canvas-kit-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
"@workday/canvas-kit-react-page-header": "^3.5.0",
"@workday/canvas-kit-react-popup": "^3.5.0",
"@workday/canvas-kit-react-radio": "^3.5.0",
"@workday/canvas-kit-react-segmented-control": "0.0.0",
"@workday/canvas-kit-react-select": "^3.5.0",
"@workday/canvas-kit-react-side-panel": "^3.5.0",
"@workday/canvas-kit-react-skeleton": "^3.5.0",
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ is a
## Installation

```sh
yarn add @workday/canvas-kit-labs-react-segmented-control
yarn add @workday/canvas-kit-react-segmented-control
```

## Usage
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

{
"name": "@workday/canvas-kit-labs-react-segmented-control",
"name": "@workday/canvas-kit-react-segmented-control",
"version": "0.0.0",
"description": "A linear set of two or more segments, each of which functions as a mutually exclusive button",
"author": "Workday, Inc. (https://www.workday.com)",
Expand All @@ -11,7 +11,7 @@
"types": "dist/es6/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Workday/canvas-kit/tree/master/modules/_labs/segmented-control/react"
"url": "https://github.com/Workday/canvas-kit/tree/master/modules/segmented-control/react"
},
"files": [
"dist/",
Expand All @@ -25,7 +25,7 @@
"build:es6": "tsc -p tsconfig.es6.json",
"build:rebuild": "npm-run-all clean build",
"build": "npm-run-all --parallel build:cjs build:es6",
"depcheck": "node ../../../../utils/check-dependencies-exist.js"
"depcheck": "node ../../../utils/check-dependencies-exist.js"
},
"keywords": [
"canvas",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// <reference path="../../../../../typings.d.ts" />
/// <reference path="../../../../typings.d.ts" />
import * as React from 'react';
import {storiesOf} from '@storybook/react';
import {action} from '@storybook/addon-actions';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

{
"extends": "../../../../tsconfig.json",
"extends": "../../../tsconfig.json",
"exclude": ["node_modules", "ts-tmp", "dist", "spec", "stories"]
}

0 comments on commit 2e6db84

Please sign in to comment.