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
54 changes: 0 additions & 54 deletions .changeset/brown-fireants-work.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/ninety-balloons-drum.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quiet-cooks-reflect.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @frontify/frontify-cli

## 5.9.0

### Minor Changes

- [#1257](https://github.com/Frontify/brand-sdk/pull/1257) [`cae6a20`](https://github.com/Frontify/brand-sdk/commit/cae6a20a75e18f6b1e1e2e0e49edeebb211557ef) Thanks [@imoutaharik](https://github.com/imoutaharik)! - Add optional experimental flag to the manifest

## 5.8.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@frontify/frontify-cli",
"type": "module",
"version": "5.8.9",
"version": "5.9.0",
"author": "Frontify Developers <developers@frontify.com>",
"repository": {
"type": "git",
Expand Down
62 changes: 62 additions & 0 deletions packages/guideline-blocks-settings/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,67 @@
# @frontify/guideline-blocks-settings

## 1.0.0

### Major Changes

- [#1267](https://github.com/Frontify/brand-sdk/pull/1267) [`3b34bfb`](https://github.com/Frontify/brand-sdk/commit/3b34bfb597cd73e82c4016913f8268d17665745b) Thanks [@fulopdaniel](https://github.com/fulopdaniel)! - refactor(\*): replace deprecated fondue components

### Breaking Changes

- **`AttachmentsProps`**

- `triggerComponent` type changed from:
```ts
triggerComponent?: (props: AttachmentsTriggerProps) => ReactElement;
```
to:
```ts
triggerComponent?: React.ForwardRefExoticComponent<
AttachmentsTriggerProps & React.RefAttributes<HTMLButtonElement>
>;
```

- **`AttachmentTriggerProps`**

- Removed:
```ts
triggerProps: HTMLAttributes<HTMLButtonElement>;
triggerRef: MutableRefObject<HTMLButtonElement>;
```

- **`LinkInput`**

- Removed props:
```ts
openInNewTab?: boolean;
clearable?: boolean;
```
- Changed:
```ts
buttonSize?: 'small' | 'medium' | 'large'; // was: buttonSize?: ButtonSize;
newTab?: boolean; // was: newTab?: CheckboxState;
```

- **`LinkSelector`**

- Changed:
```ts
buttonSize?: 'small' | 'medium' | 'large'; // was: buttonSize?: ButtonSize;
```

- **`InsertModalDispatchType` & `InsertModalStateProps`**
- Changed:
```ts
newTab?: boolean; // was: newTab?: CheckboxState;
```

### Patch Changes

- [#1258](https://github.com/Frontify/brand-sdk/pull/1258) [`a82646f`](https://github.com/Frontify/brand-sdk/commit/a82646f71f9cb23eb7718062c5ab35c117e18f61) Thanks [@ragi96](https://github.com/ragi96)! - chore: bump `@frontify/fondue` to `12.11.0`

- Updated dependencies [[`a82646f`](https://github.com/Frontify/brand-sdk/commit/a82646f71f9cb23eb7718062c5ab35c117e18f61)]:
- @frontify/sidebar-settings@0.10.2

## 0.38.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/guideline-blocks-settings/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@frontify/guideline-blocks-settings",
"type": "module",
"version": "0.38.1",
"version": "1.0.0",
"description": "Provides types and helpers for the guideline block development",
"author": "Frontify Developers <developers@frontify.com>",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ export const DocumentLink = ({
data-test-id="tree-item-toggle"
className="tw-flex tw-items-center tw-justify-center -tw-mr-2 tw-pr-3.5 tw-pt-1.5 tw-pb-1.5 tw-pl-3.5 tw-cursor-pointer"
onClick={() => setIsExpanded(!isExpanded)}
onKeyDown={(event) => event.key === 'Enter' && event.stopPropagation()}
>
<div
className={merge([
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ export const PageLink = ({
data-test-id="tree-item-toggle"
className="tw-flex tw-items-center tw-justify-center -tw-mr-2 tw-pr-3.5 tw-pt-1.5 tw-pb-1.5 tw-pl-3.5 tw-cursor-pointer"
onClick={() => setIsExpanded(!isExpanded)}
onKeyDown={(event) => event.key === 'Enter' && event.stopPropagation()}
>
<div
className={merge([
Expand Down
7 changes: 7 additions & 0 deletions packages/platform-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @frontify/platform-app

## 0.1.15

### Patch Changes

- Updated dependencies [[`a82646f`](https://github.com/Frontify/brand-sdk/commit/a82646f71f9cb23eb7718062c5ab35c117e18f61)]:
- @frontify/sidebar-settings@0.10.2

## 0.1.14

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/platform-app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@frontify/platform-app",
"type": "module",
"version": "0.1.14",
"version": "0.1.15",
"description": "Provides the types for the Apps",
"author": "Frontify Developers <developers@frontify.com>",
"repository": {
Expand Down
6 changes: 6 additions & 0 deletions packages/sidebar-settings/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @frontify/sidebar-settings

## 0.10.2

### Patch Changes

- [#1258](https://github.com/Frontify/brand-sdk/pull/1258) [`a82646f`](https://github.com/Frontify/brand-sdk/commit/a82646f71f9cb23eb7718062c5ab35c117e18f61) Thanks [@ragi96](https://github.com/ragi96)! - chore: bump `@frontify/fondue` to `12.11.0`

## 0.10.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sidebar-settings/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@frontify/sidebar-settings",
"type": "module",
"version": "0.10.1",
"version": "0.10.2",
"description": "Provides types and helpers for the settings sidebar",
"author": "Frontify Developers <developers@frontify.com>",
"repository": {
Expand Down