Skip to content
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.

Commit

Permalink
FLOW-971 f-input typescript issue fixed (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
vikas-cldcvr authored Dec 4, 2023
1 parent c67565c commit a50ee62
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions packages/flow-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

# Change Log

## [2.6.1] - 2023-12-04

### Bug fixes

- re-exporting types of `f-input-base` from `f-input`. (To fix component type generation bug).

## [2.6.0] - 2023-12-04

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/flow-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cldcvr/flow-core",
"version": "2.6.0",
"version": "2.6.1",
"description": "Core package of flow design system",
"module": "dist/flow-core.es.js",
"main": "dist/flow-core.cjs.js",
Expand Down
2 changes: 2 additions & 0 deletions packages/flow-core/src/components/f-input/f-input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ import { FInputBase, FInputCustomEvent } from "./f-input-base";
import { FInputLight } from "./f-input-light";
injectCss("f-input", globalStyle);

export type { FInputState, FInputCustomEvent, FInputSuffixWhen } from "./f-input-base";

@flowElement("f-input")
export class FInput extends FInputBase {
/**
Expand Down

0 comments on commit a50ee62

Please sign in to comment.