Skip to content
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
11 changes: 10 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
{
"extends": "@folio/eslint-config-stripes"
"extends": "@folio/eslint-config-stripes",
"overrides": [
{
"files": ["**/*.d.ts"],
"rules": {
// eslint does not like .d.ts files without a corresponding .js file
"import/no-unresolved": "off"
}
}
]
}
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
* *BREAKING* `stripes-ui` `2.0.0`
* *BREAKING* `react` `v18`
* *BREAKING* `react-intl` `v6`
* `stripes-types` `v2`

## [8.0.0](https://github.com/folio-org/stripes/tree/v8.0.0) (2023-01-31)

Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ Stripes is a toolkit for building single-page web applications that FOLIO UI mod
* [Overview of Stripes](doc/overview.md) - Concepts that guided the design of Stripes
* [Stripes entities](doc/modules-apps-etc.md) - Terminology of things pertaining to Stripes


## Developing with Stripes

Getting started and new environment setup
Expand All @@ -39,6 +38,10 @@ Guides for development and testing
* [Depending on unreleased features](doc/depending-on-unreleased-features.md)
* [Troubleshooting guide](doc/troubleshooting.md) - An evolving troubleshooting guide

## TypeScript support

Typings for the Stripes framework may be found in [stripes-types](https://github.com/folio-org/stripes-types)

## Implementing Stripes

Guides for dev-ops and platform implementors
Expand Down
1 change: 1 addition & 0 deletions components/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from '@folio/stripes-types/components';
1 change: 1 addition & 0 deletions core/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from '@folio/stripes-types/core';
2 changes: 2 additions & 0 deletions final-form/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export { default } from '@folio/stripes-types/final-form';
export * from '@folio/stripes-types/final-form';
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"@folio/stripes-form": "~9.0.0",
"@folio/stripes-logger": "~1.0.0",
"@folio/stripes-smart-components": "~9.0.0",
"@folio/stripes-types": "^2.0.0",
"@folio/stripes-ui": "~2.0.0",
"@folio/stripes-util": "~6.0.0",
"redux": "^4.2.1"
Expand Down
2 changes: 2 additions & 0 deletions smart-components/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export { default } from '@folio/stripes-types/smart-components';
export * from '@folio/stripes-types/smart-components';