@frontify/guideline-blocks-settings 0.8.0 → 0.8.1
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.
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BaseBlock } from './base';
|
|
2
|
+
import { ColorInputBlock } from './colorInput';
|
|
3
|
+
import { DropdownBlock } from './dropdown';
|
|
4
|
+
import { InputBlock } from './input';
|
|
5
|
+
export declare type DynamicInputBlock = {
|
|
6
|
+
type: 'dynamicInput';
|
|
7
|
+
blocks: (Omit<InputBlock, 'value'> | Omit<ColorInputBlock, 'value'> | Omit<DropdownBlock, 'value'>)[];
|
|
8
|
+
} & BaseBlock<(InputBlock['value'] | ColorInputBlock['value'] | DropdownBlock['value'])[]>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dynamicInput.js","sourceRoot":"","sources":["../../types/blocks/dynamicInput.ts"],"names":[],"mappings":";AAAA,uDAAuD"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frontify/guideline-blocks-settings",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "Provides the types for the block settings",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
"author": "Frontify Developers <developers@frontify.com>",
|
|
16
16
|
"scripts": {
|
|
17
17
|
"build": "tsc",
|
|
18
|
+
"deploy": "npm publish",
|
|
18
19
|
"lint": "eslint types",
|
|
19
20
|
"lint:fix": "eslint --fix types",
|
|
20
21
|
"prettier": "prettier --check types",
|
|
@@ -23,12 +24,12 @@
|
|
|
23
24
|
},
|
|
24
25
|
"devDependencies": {
|
|
25
26
|
"@frontify/eslint-config-typescript": "0.15.2",
|
|
26
|
-
"eslint": "8.
|
|
27
|
-
"prettier": "2.
|
|
28
|
-
"typescript": "4.6.
|
|
27
|
+
"eslint": "8.12.0",
|
|
28
|
+
"prettier": "2.6.2",
|
|
29
|
+
"typescript": "4.6.3"
|
|
29
30
|
},
|
|
30
31
|
"dependencies": {
|
|
31
|
-
"@frontify/app-bridge": "
|
|
32
|
-
"@frontify/arcade": "
|
|
32
|
+
"@frontify/app-bridge": "*",
|
|
33
|
+
"@frontify/arcade": "*"
|
|
33
34
|
}
|
|
34
35
|
}
|