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.
- package/README.md +61 -0
- package/dist/example.html +2 -2
- package/dist/mokkun.css +1 -1
- package/dist/mokkun.esm.js +494 -488
- package/dist/mokkun.esm.js.map +1 -1
- package/dist/mokkun.js +79 -79
- package/dist/mokkun.js.map +1 -1
- package/dist/types/parser/yaml-parser.d.ts +0 -1
- package/dist/types/types/schema.d.ts +3 -1
- package/package.json +1 -1
|
@@ -128,7 +128,9 @@ export interface ScreenValidation {
|
|
|
128
128
|
*/
|
|
129
129
|
export interface CommonComponentRaw {
|
|
130
130
|
/** コンポーネント名 */
|
|
131
|
-
component_name
|
|
131
|
+
component_name?: string;
|
|
132
|
+
/** コンポーネント名(name形式) */
|
|
133
|
+
name?: string;
|
|
132
134
|
/** 説明 */
|
|
133
135
|
description?: string;
|
|
134
136
|
/** 使用箇所 */
|