Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Release from next to main" #121

Merged
merged 1 commit into from
Jun 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 0 additions & 36 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,39 +1,3 @@
# [1.2.0-next.5](https://github.com/fabric-ds/react/compare/v1.2.0-next.4...v1.2.0-next.5) (2022-06-08)


### Bug Fixes

* bump component-classes to get Step fix ([c17ce7e](https://github.com/fabric-ds/react/commit/c17ce7e83e1e78aca28e867dbf29331d69c549fe))

# [1.2.0-next.4](https://github.com/fabric-ds/react/compare/v1.2.0-next.3...v1.2.0-next.4) (2022-06-08)


### Bug Fixes

* **animated-expansion:** rename to ExpandTransition and check if element ref exists ([#119](https://github.com/fabric-ds/react/issues/119)) ([b7a8026](https://github.com/fabric-ds/react/commit/b7a8026dd17e6c53c1fe3b1831964b104bfc5087))
* bump component-classes to get Step fix ([5d99506](https://github.com/fabric-ds/react/commit/5d99506bcf45f531522670e6a910f11e671c1a54))

# [1.2.0-next.3](https://github.com/fabric-ds/react/compare/v1.2.0-next.2...v1.2.0-next.3) (2022-06-07)


### Bug Fixes

* **affix:** Add aria-label to Affix icons ([17fab00](https://github.com/fabric-ds/react/commit/17fab00e1f939531a613df6e2ba9e752e5e9d23e))

# [1.2.0-next.2](https://github.com/fabric-ds/react/compare/v1.2.0-next.1...v1.2.0-next.2) (2022-06-02)


### Features

* **alert:** add expand and collapse behaviour to inline alert ([#114](https://github.com/fabric-ds/react/issues/114)) ([075f314](https://github.com/fabric-ds/react/commit/075f314adfa468960a42f7c87af855d2f1ddce6d))

# [1.2.0-next.1](https://github.com/fabric-ds/react/compare/v1.1.1...v1.2.0-next.1) (2022-05-31)


### Features

* **packages:** add inline Alert component ([#106](https://github.com/fabric-ds/react/issues/106)) ([ddfe084](https://github.com/fabric-ds/react/commit/ddfe0842c2af00e3dc531fbff25d18f395a5dfe7))

## [1.1.1](https://github.com/fabric-ds/react/compare/v1.1.0...v1.1.1) (2022-05-23)


Expand Down
5 changes: 0 additions & 5 deletions docs/src/Main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import {
Route,
Switch as ReactSwitch,
} from 'react-router-dom';
import Alert from '../../packages/alert/docs/Alert.mdx';
import Box from '../../packages/box/docs/Box.mdx';
import Breadcrumbs from '../../packages/breadcrumbs/docs/Breadcrumbs.mdx';
import Button from '../../packages/button/docs/Button.mdx';
Expand Down Expand Up @@ -47,10 +46,6 @@ const App = () => {
<Home />
</Route>

<Route path="/alert">
<Alert />
</Route>

<Route path="/modal">
<Modal />
</Route>
Expand Down
5 changes: 1 addition & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,7 @@
{
"title": "Feedback indicators",
"open": true,
"items": [
{ "title": "Alert", "href": "/alert" },
{ "title": "Steps", "href": "/steps" }
]
"items": [{ "title": "Steps", "href": "/steps" }]
},
{
"title": "Forms",
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fabric-ds/react",
"version": "1.2.0-next.5",
"version": "1.1.1",
"repository": "git@github.com:fabric-ds/react.git",
"license": "ISC",
"type": "module",
Expand Down Expand Up @@ -48,7 +48,9 @@
"@babel/core": "^7.12.10",
"@chbphone55/classnames": "^2.0.0",
"@eik/esbuild-plugin": "^1.1.0",
"@fabric-ds/component-classes": "^0.0.38",
"@fabric-ds/icons": "^0.3.12",
"@fabric-ds/tailwind-config": "^0.5.20",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "1.6.22",
"@semantic-release/changelog": "^6.0.1",
Expand Down Expand Up @@ -103,7 +105,7 @@
"dependencies": {
"@chbphone55/classnames": "^2.0.0",
"@fabric-ds/core": "0.0.13",
"@fabric-ds/css": "^1.1.4",
"@fabric-ds/css": "^1.1.2",
"d3-scale": "^4.0.2",
"react-focus-lock": "^2.5.2",
"react-spring": "^8.0.27",
Expand Down
6 changes: 1 addition & 5 deletions packages/_helpers/affix.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import { suffix, prefix } from '@fabric-ds/css/component-classes';
import { suffix, prefix } from '@fabric-ds/component-classes';
import { classNames } from '@chbphone55/classnames';

interface AffixProps {
Expand Down Expand Up @@ -43,8 +43,6 @@ export function Affix(props: AffixProps) {
<>
{props.clear && (
<svg
role="img"
aria-label="X"
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
Expand All @@ -62,8 +60,6 @@ export function Affix(props: AffixProps) {

{props.search && (
<svg
role="img"
aria-label="Forstørrelsesglass"
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
Expand Down
53 changes: 0 additions & 53 deletions packages/_helpers/expand-transition.tsx

This file was deleted.

1 change: 0 additions & 1 deletion packages/_helpers/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
export { Clickable } from './clickable';
export { DeadToggle } from './dead-toggle';
export { Affix } from './affix';
export { ExpandTransition } from './expand-transition';
80 changes: 0 additions & 80 deletions packages/alert/docs/Alert.mdx

This file was deleted.

123 changes: 0 additions & 123 deletions packages/alert/src/component.tsx

This file was deleted.

2 changes: 0 additions & 2 deletions packages/alert/src/index.ts

This file was deleted.

Loading