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

Commit

Permalink
FLOW-442, FLOW-508 | All Form Input Components added | f-div gap prop…
Browse files Browse the repository at this point in the history
…erty update (#35)
  • Loading branch information
mayankfulera authored Jan 18, 2023
1 parent 4afae8f commit 4b58de2
Show file tree
Hide file tree
Showing 60 changed files with 12,634 additions and 533 deletions.
19 changes: 3 additions & 16 deletions .storybook/preview.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@ import AwsIconPack from "@cldcvr/flow-aws-icon/dist/types/icon-pack";

import { ConfigUtil } from "@cldcvr/flow-core/src/modules/config";
import "@cldcvr/flow-core/src";
import {
setCustomElementsManifest,
setCustomElements,
} from "@storybook/web-components";
import { setCustomElementsManifest, setCustomElements } from "@storybook/web-components";
import "./storybook.css";

export const parameters = {
Expand All @@ -36,15 +33,7 @@ export const parameters = {
["Introduction", "Design tokens", ["Overview"]],
["Overview", "Color", "Font", "Icon"],
"Components",
[
"f-div",
"f-divider",
"f-spacer",
"f-button",
"f-icon",
"f-text",
"f-pictogram",
],
["f-div", "f-divider", "f-spacer", "f-button", "f-icon", "f-text", "f-pictogram"],
],
},
},
Expand Down Expand Up @@ -84,9 +73,7 @@ export const decorators = [

async function run() {
const customElements = await (
await fetch(
new URL("../packages/flow-core/custom-elements.json", import.meta.url)
)
await fetch(new URL("../packages/flow-core/custom-elements.json", import.meta.url))
).json();

setCustomElementsManifest(customElements);
Expand Down
16 changes: 16 additions & 0 deletions packages/flow-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,38 @@

# Change Log

## [1.1.8] - 2023-01-18

### Features

- `f-input`, `f-select`, `f-checkbox`, `f-textarea`, `f-radio`, `f-switch`: Form Input components added.

### Improvements

- replaced `gap` prop for `f-div` with different pixels, x-large:24px, large:16px, medium:12px, small:8px, x-small:4px.

## [1.1.6] - 2023-01-03

### Improvements

- `.width-N` and `.height-N` utility classes added where N is multiple of 50 and less than 1000.

## [1.1.5] - 2023-01-02

### Improvements

- Publishing packages to github registry.

## [1.1.4] - 2022-11-28

### Bug fixes

- theme setting mechanism changed to remove jest or test library error.

## [1.1.3] - 2022-11-28

### Features

- `f-div` added custom fill prop.

## [1.1.2] - 2022-11-25
Expand Down
Loading

0 comments on commit 4b58de2

Please sign in to comment.