Rename package to 'flipper'
Summary: - rename package `'sonar'` > `'flipper'` - rename package `'sonar-static'` > `'flipper-static'` - rename package export from `window.Sonar` to `window.Flipper` Reviewed By: passy Differential Revision: D9851181 fbshipit-source-id: 34d4447c3b287496b3d20ddb54471ce777ec74e1
This commit is contained in:
committed by
Facebook Github Bot
parent
2e2924c979
commit
66e77075be
@@ -215,7 +215,7 @@ type State = {
|
||||
* **Usage**
|
||||
*
|
||||
* ```jsx
|
||||
* import {Button} from 'sonar';
|
||||
* import {Button} from 'flipper';
|
||||
* <Button onClick={handler}>Click me</Button>
|
||||
* ```
|
||||
*
|
||||
|
||||
@@ -13,7 +13,7 @@ import {
|
||||
maybeSnapTop,
|
||||
SNAP_SIZE,
|
||||
} from '../../utils/snap.js';
|
||||
import {styled} from 'sonar';
|
||||
import {styled} from 'flipper';
|
||||
|
||||
const invariant = require('invariant');
|
||||
const React = require('react');
|
||||
|
||||
@@ -48,7 +48,7 @@ type Props = {
|
||||
* **Usage**
|
||||
*
|
||||
* ```jsx
|
||||
* import {ToggleButton} from 'sonar';
|
||||
* import {ToggleButton} from 'flipper';
|
||||
* <ToggleButton onClick={handler} toggled={boolean}/>
|
||||
* ```
|
||||
*/
|
||||
|
||||
@@ -16,7 +16,7 @@ import {
|
||||
View,
|
||||
} from '../index';
|
||||
import styled from '../styled/index';
|
||||
import type {TableBodyRow, TableRows} from 'sonar';
|
||||
import type {TableBodyRow, TableRows} from 'flipper';
|
||||
import type {PluginClient} from '../../plugin';
|
||||
|
||||
type ValueWithType = {|
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
import {Component} from 'react';
|
||||
import FlexRow from '../FlexRow.js';
|
||||
import {Elements} from './elements.js';
|
||||
import type {ContextMenuExtension} from 'sonar';
|
||||
import type {ContextMenuExtension} from 'flipper';
|
||||
|
||||
export type ElementID = string;
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ import Panel from '../Panel.js';
|
||||
import ManagedDataInspector from '../data-inspector/ManagedDataInspector.js';
|
||||
import {Component} from 'react';
|
||||
import {Console} from '../console';
|
||||
import {GK} from 'sonar';
|
||||
import {GK} from 'flipper';
|
||||
|
||||
const deepEqual = require('deep-equal');
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ import {
|
||||
colors,
|
||||
brandColors,
|
||||
PureComponent,
|
||||
} from 'sonar';
|
||||
} from 'flipper';
|
||||
|
||||
const Containter = styled(FlexColumn)({
|
||||
fontSize: 17,
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @format
|
||||
*/
|
||||
|
||||
import type {Filter} from 'sonar';
|
||||
import type {Filter} from 'flipper';
|
||||
import {PureComponent} from 'react';
|
||||
import Text from '../Text.js';
|
||||
import styled from '../../styled/index.js';
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @format
|
||||
*/
|
||||
|
||||
import type {Filter} from 'sonar';
|
||||
import type {Filter} from 'flipper';
|
||||
import {PureComponent} from 'react';
|
||||
import Toolbar from '../Toolbar.js';
|
||||
import FlexRow from '../FlexRow.js';
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* @format
|
||||
*/
|
||||
|
||||
import type {ManagedTableProps, TableBodyRow, Filter} from 'sonar';
|
||||
import type {ManagedTableProps, TableBodyRow, Filter} from 'flipper';
|
||||
import type {SearchableProps} from './Searchable.js';
|
||||
import {PureComponent} from 'react';
|
||||
import ManagedTable from '../table/ManagedTable.js';
|
||||
|
||||
Reference in New Issue
Block a user