mokkun 0.1.3 → 0.1.4

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.
@@ -28,7 +28,6 @@ export type ParseResult<T> = {
28
28
  errors: ParseError[];
29
29
  };
30
30
  export declare const VALID_FIELD_TYPES: InputFieldType[];
31
- export declare const PLACEHOLDER_FIELD_TYPES: string[];
32
31
  /**
33
32
  * YAMLテキストをパースしてMokkunSchemaに変換
34
33
  */
@@ -128,7 +128,9 @@ export interface ScreenValidation {
128
128
  */
129
129
  export interface CommonComponentRaw {
130
130
  /** コンポーネント名 */
131
- component_name: string;
131
+ component_name?: string;
132
+ /** コンポーネント名(name形式) */
133
+ name?: string;
132
134
  /** 説明 */
133
135
  description?: string;
134
136
  /** 使用箇所 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mokkun",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "YAML-based presentation and form builder",
5
5
  "type": "module",
6
6
  "bin": {