@frontify/guideline-blocks-settings 0.14.0 → 0.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -6,7 +6,7 @@ Provides the block settings types for the guideline-blocks.
6
6
 
7
7
  ```ts
8
8
  import { Bundle, BlockSettings } from '@frontify/guideline-blocks-settings';
9
- import { IconEnum } from '@frontify/arcade';
9
+ import { IconEnum } from '@frontify/fondue';
10
10
 
11
11
  const Settings: BlockSettings = {
12
12
  main: [
@@ -1,4 +1,4 @@
1
- import { IconEnum } from '@frontify/arcade';
1
+ import { IconEnum } from '@frontify/fondue';
2
2
  import { BaseBlock } from './base';
3
3
  export declare type Choice = {
4
4
  label?: string | number;
@@ -1,4 +1,4 @@
1
- import { Color } from '@frontify/arcade';
1
+ import { Color } from '@frontify/fondue';
2
2
  import { BaseBlock } from './base';
3
3
  export declare type ColorInputBlock = {
4
4
  type: 'colorInput';
@@ -1,4 +1,4 @@
1
- import { DropdownSize } from '@frontify/arcade';
1
+ import { DropdownSize } from '@frontify/fondue';
2
2
  import { ChoicesType } from './choices';
3
3
  export declare type DropdownBlock = {
4
4
  type: 'dropdown';
@@ -1,4 +1,4 @@
1
- import { TextInputType } from '@frontify/arcade';
1
+ import { TextInputType } from '@frontify/fondue';
2
2
  import { Rule } from '../validation';
3
3
  import { BaseBlock } from './base';
4
4
  export declare type InputBlock = {
@@ -1,4 +1,4 @@
1
- import { SearchResult, Validation } from '@frontify/arcade';
1
+ import { SearchResult, Validation } from '@frontify/fondue';
2
2
  import { BaseBlock } from './base';
3
3
  export declare type LinkChooserBlock = {
4
4
  type: 'linkChooser';
@@ -1,4 +1,4 @@
1
- import { MultiInputLayout } from '@frontify/arcade';
1
+ import { MultiInputLayout } from '@frontify/fondue';
2
2
  import { BaseBlock } from './base';
3
3
  import { ColorInputBlock } from './colorInput';
4
4
  import { DropdownBlock } from './dropdown';
package/package.json CHANGED
@@ -1,37 +1,37 @@
1
1
  {
2
- "name": "@frontify/guideline-blocks-settings",
3
- "version": "0.14.0",
4
- "description": "Provides the types for the block settings",
5
- "sideEffects": false,
6
- "main": "dist/index.umd.js",
7
- "unpkg": "dist/index.umd.js",
8
- "jsdelivr": "dist/index.umd.js",
9
- "module": "dist/index.es.js",
10
- "types": "dist/index.d.ts",
11
- "publishConfig": {
12
- "access": "public"
13
- },
14
- "author": "Frontify Developers <developers@frontify.com>",
15
- "devDependencies": {
16
- "@frontify/eslint-config-typescript": "0.15.2",
17
- "eslint": "8.15.0",
18
- "prettier": "2.6.2",
19
- "react": "17.0.2",
20
- "react-dom": "17.0.2",
21
- "typescript": "4.6.4",
22
- "vite": "2.9.8",
23
- "vite-plugin-dts": "1.1.1"
24
- },
25
- "dependencies": {
26
- "@frontify/app-bridge": "*",
27
- "@frontify/arcade": "*"
28
- },
29
- "scripts": {
30
- "build": "vite build",
31
- "lint": "eslint types",
32
- "lint:fix": "eslint --fix types",
33
- "prettier": "prettier --check types",
34
- "prettier:fix": "prettier --write types",
35
- "typecheck": "tsc --noEmit"
36
- }
37
- }
2
+ "name": "@frontify/guideline-blocks-settings",
3
+ "version": "0.15.0",
4
+ "description": "Provides the types for the block settings",
5
+ "sideEffects": false,
6
+ "main": "dist/index.umd.js",
7
+ "unpkg": "dist/index.umd.js",
8
+ "jsdelivr": "dist/index.umd.js",
9
+ "module": "dist/index.es.js",
10
+ "types": "dist/index.d.ts",
11
+ "publishConfig": {
12
+ "access": "public"
13
+ },
14
+ "author": "Frontify Developers <developers@frontify.com>",
15
+ "scripts": {
16
+ "build": "vite build",
17
+ "lint": "eslint types",
18
+ "lint:fix": "eslint --fix types",
19
+ "prettier": "prettier --check types",
20
+ "prettier:fix": "prettier --write types",
21
+ "typecheck": "tsc --noEmit"
22
+ },
23
+ "devDependencies": {
24
+ "@frontify/eslint-config-typescript": "0.15.2",
25
+ "eslint": "8.15.0",
26
+ "prettier": "2.6.2",
27
+ "react": "17.0.2",
28
+ "react-dom": "17.0.2",
29
+ "typescript": "4.6.4",
30
+ "vite": "2.9.9",
31
+ "vite-plugin-dts": "1.2.0"
32
+ },
33
+ "dependencies": {
34
+ "@frontify/app-bridge": "*",
35
+ "@frontify/fondue": "*"
36
+ }
37
+ }
@@ -1,6 +1,6 @@
1
1
  /* (c) Copyright Frontify Ltd., all rights reserved. */
2
2
 
3
- import { IconEnum } from '@frontify/arcade';
3
+ import { IconEnum } from '@frontify/fondue';
4
4
  import { BaseBlock } from './base';
5
5
 
6
6
  export type Choice = {
@@ -1,6 +1,6 @@
1
1
  /* (c) Copyright Frontify Ltd., all rights reserved. */
2
2
 
3
- import { Color } from '@frontify/arcade';
3
+ import { Color } from '@frontify/fondue';
4
4
  import { BaseBlock } from './base';
5
5
 
6
6
  export type ColorInputBlock = {
@@ -1,6 +1,6 @@
1
1
  /* (c) Copyright Frontify Ltd., all rights reserved. */
2
2
 
3
- import { DropdownSize } from '@frontify/arcade';
3
+ import { DropdownSize } from '@frontify/fondue';
4
4
  import { ChoicesType } from './choices';
5
5
 
6
6
  export type DropdownBlock = {
@@ -1,6 +1,6 @@
1
1
  /* (c) Copyright Frontify Ltd., all rights reserved. */
2
2
 
3
- import { TextInputType } from '@frontify/arcade';
3
+ import { TextInputType } from '@frontify/fondue';
4
4
  import { Rule } from '../validation';
5
5
  import { BaseBlock } from './base';
6
6
 
@@ -1,6 +1,6 @@
1
1
  /* (c) Copyright Frontify Ltd., all rights reserved. */
2
2
 
3
- import { SearchResult, Validation } from '@frontify/arcade';
3
+ import { SearchResult, Validation } from '@frontify/fondue';
4
4
  import { BaseBlock } from './base';
5
5
 
6
6
  export type LinkChooserBlock = {
@@ -1,6 +1,6 @@
1
1
  /* (c) Copyright Frontify Ltd., all rights reserved. */
2
2
 
3
- import { MultiInputLayout } from '@frontify/arcade';
3
+ import { MultiInputLayout } from '@frontify/fondue';
4
4
  import { BaseBlock } from './base';
5
5
  import { ColorInputBlock } from './colorInput';
6
6
  import { DropdownBlock } from './dropdown';