@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 +1 -1
- package/dist/blocks/choices.d.ts +1 -1
- package/dist/blocks/colorInput.d.ts +1 -1
- package/dist/blocks/dropdown.d.ts +1 -1
- package/dist/blocks/input.d.ts +1 -1
- package/dist/blocks/linkChooser.d.ts +1 -1
- package/dist/blocks/multiInput.d.ts +1 -1
- package/package.json +36 -36
- package/types/blocks/choices.ts +1 -1
- package/types/blocks/colorInput.ts +1 -1
- package/types/blocks/dropdown.ts +1 -1
- package/types/blocks/input.ts +1 -1
- package/types/blocks/linkChooser.ts +1 -1
- package/types/blocks/multiInput.ts +1 -1
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/
|
|
9
|
+
import { IconEnum } from '@frontify/fondue';
|
|
10
10
|
|
|
11
11
|
const Settings: BlockSettings = {
|
|
12
12
|
main: [
|
package/dist/blocks/choices.d.ts
CHANGED
package/dist/blocks/input.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,37 +1,37 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
"
|
|
34
|
-
|
|
35
|
-
|
|
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
|
+
}
|
package/types/blocks/choices.ts
CHANGED
package/types/blocks/dropdown.ts
CHANGED
package/types/blocks/input.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* (c) Copyright Frontify Ltd., all rights reserved. */
|
|
2
2
|
|
|
3
|
-
import { MultiInputLayout } from '@frontify/
|
|
3
|
+
import { MultiInputLayout } from '@frontify/fondue';
|
|
4
4
|
import { BaseBlock } from './base';
|
|
5
5
|
import { ColorInputBlock } from './colorInput';
|
|
6
6
|
import { DropdownBlock } from './dropdown';
|