@flextudio/scenario 0.1.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/LICENSE +202 -0
- package/README.md +260 -0
- package/bin/flex-scenario.mjs +895 -0
- package/commands/flex-spec.md +28 -0
- package/contract-data/README.md +267 -0
- package/contract-data/examples/README.md +147 -0
- package/contract-data/examples/basic/basic-list-detail.json +2521 -0
- package/contract-data/examples/basic/delivery-address-popup.json +2175 -0
- package/contract-data/examples/basic/fixedtop-floating-form.json +1524 -0
- package/contract-data/examples/basic/search-period-popup.json +1524 -0
- package/contract-data/examples/design/booking-wizard-3step.json +1335 -0
- package/contract-data/examples/design/list-detail-form-3step.json +1516 -0
- package/contract-data/examples/design/list-filter-2step.json +1365 -0
- package/contract-data/examples/design/list-filter-detail-3step.json +1570 -0
- package/contract-data/examples/design/result-entry-wizard-4step.json +1861 -0
- package/contract-data/examples/intent/mock-employee-list.json +54 -0
- package/contract-data/examples/intent/script-cart-flow.json +96 -0
- package/contract-data/examples/intent/script-dialog-confirm.json +61 -0
- package/contract-data/runtime/v1/collection/README.md +119 -0
- package/contract-data/runtime/v1/collection/_c.md +205 -0
- package/contract-data/runtime/v1/collection/category.md +165 -0
- package/contract-data/runtime/v1/collection/collection.md +135 -0
- package/contract-data/runtime/v1/collection/lifecycle.md +140 -0
- package/contract-data/runtime/v1/collection/naming.md +174 -0
- package/contract-data/runtime/v1/collection/sector.md +176 -0
- package/contract-data/runtime/v1/collection/status.md +114 -0
- package/contract-data/runtime/v1/intent-system/INTENT.md +552 -0
- package/contract-data/runtime/v1/intent-system/README.md +118 -0
- package/contract-data/runtime/v1/intent-system/intent.schema.json +164 -0
- package/contract-data/runtime/v1/intent-system/kinds/_base.mjs +137 -0
- package/contract-data/runtime/v1/intent-system/kinds/clearCategory.mjs +35 -0
- package/contract-data/runtime/v1/intent-system/kinds/copyStepValues.mjs +100 -0
- package/contract-data/runtime/v1/intent-system/kinds/deleteActive.mjs +45 -0
- package/contract-data/runtime/v1/intent-system/kinds/dialog.mjs +127 -0
- package/contract-data/runtime/v1/intent-system/kinds/reloadGroup.mjs +28 -0
- package/contract-data/runtime/v1/intent-system/kinds/updateActive.mjs +74 -0
- package/contract-data/runtime/v1/intent-system/materialize.mjs +495 -0
- package/contract-data/runtime/v1/script/README.md +37 -0
- package/contract-data/runtime/v1/script/current_step.md +112 -0
- package/contract-data/runtime/v1/script/f_collection.md +142 -0
- package/contract-data/runtime/v1/script/f_content.md +133 -0
- package/contract-data/runtime/v1/script/f_messagebox.md +132 -0
- package/contract-data/runtime/v1/script/scenario-gen-rules.md +264 -0
- package/contract-data/schema/v1/SKELETON-SHELL.md +120 -0
- package/contract-data/schema/v1/bottom-buttons.md +155 -0
- package/contract-data/schema/v1/bottom-buttons.schema.json +134 -0
- package/contract-data/schema/v1/control/_base.schema.json +1296 -0
- package/contract-data/schema/v1/control/button.md +147 -0
- package/contract-data/schema/v1/control/button.schema.json +55 -0
- package/contract-data/schema/v1/control/calendar-navigator.md +143 -0
- package/contract-data/schema/v1/control/calendar-navigator.schema.json +164 -0
- package/contract-data/schema/v1/control/calendar.md +128 -0
- package/contract-data/schema/v1/control/calendar.schema.json +18 -0
- package/contract-data/schema/v1/control/check-box.md +117 -0
- package/contract-data/schema/v1/control/check-box.schema.json +41 -0
- package/contract-data/schema/v1/control/combo.md +293 -0
- package/contract-data/schema/v1/control/combo.schema.json +23 -0
- package/contract-data/schema/v1/control/embed.md +211 -0
- package/contract-data/schema/v1/control/embed.schema.json +30 -0
- package/contract-data/schema/v1/control/image-box.md +237 -0
- package/contract-data/schema/v1/control/image-box.schema.json +49 -0
- package/contract-data/schema/v1/control/input-date.md +175 -0
- package/contract-data/schema/v1/control/input-date.schema.json +27 -0
- package/contract-data/schema/v1/control/input-file.md +192 -0
- package/contract-data/schema/v1/control/input-file.schema.json +139 -0
- package/contract-data/schema/v1/control/input-mask.md +89 -0
- package/contract-data/schema/v1/control/input-mask.schema.json +45 -0
- package/contract-data/schema/v1/control/input-number.md +55 -0
- package/contract-data/schema/v1/control/input-number.schema.json +24 -0
- package/contract-data/schema/v1/control/input-text.md +73 -0
- package/contract-data/schema/v1/control/input-text.schema.json +24 -0
- package/contract-data/schema/v1/control/label.md +127 -0
- package/contract-data/schema/v1/control/label.schema.json +113 -0
- package/contract-data/schema/v1/control/multi-input-box.md +51 -0
- package/contract-data/schema/v1/control/multi-input-box.schema.json +19 -0
- package/contract-data/schema/v1/control/other.schema.json +24 -0
- package/contract-data/schema/v1/control/radio-box.md +150 -0
- package/contract-data/schema/v1/control/radio-box.schema.json +87 -0
- package/contract-data/schema/v1/control/search.md +163 -0
- package/contract-data/schema/v1/control/search.schema.json +23 -0
- package/contract-data/schema/v1/control/tab.md +240 -0
- package/contract-data/schema/v1/control/tab.schema.json +112 -0
- package/contract-data/schema/v1/control/tree.md +278 -0
- package/contract-data/schema/v1/control/tree.schema.json +83 -0
- package/contract-data/schema/v1/control.md +264 -0
- package/contract-data/schema/v1/control.schema.json +30 -0
- package/contract-data/schema/v1/data-objects.md +278 -0
- package/contract-data/schema/v1/data-objects.schema.json +161 -0
- package/contract-data/schema/v1/data-sources.md +215 -0
- package/contract-data/schema/v1/data-sources.schema.json +184 -0
- package/contract-data/schema/v1/design-system/DESIGN.md +282 -0
- package/contract-data/schema/v1/design-system/README.md +235 -0
- package/contract-data/schema/v1/design-system/design.schema.json +496 -0
- package/contract-data/schema/v1/design-system/error-mapping.mjs +132 -0
- package/contract-data/schema/v1/design-system/materialize.mjs +1435 -0
- package/contract-data/schema/v1/design-system/tests/_base.additional-meta.test.mjs +98 -0
- package/contract-data/schema/v1/design-system/tests/_base.materialize.test.mjs +596 -0
- package/contract-data/schema/v1/design-system/tests/checklist.test.mjs +135 -0
- package/contract-data/schema/v1/design-system/tests/design.schema.test.mjs +487 -0
- package/contract-data/schema/v1/design-system/tests/error-mapping.test.mjs +244 -0
- package/contract-data/schema/v1/design-system/tests/materialize.test.mjs +1093 -0
- package/contract-data/schema/v1/design-system/tests/move-step.test.mjs +119 -0
- package/contract-data/schema/v1/design-system/tests/override.integration.test.mjs +116 -0
- package/contract-data/schema/v1/design-system/tokens.json +76 -0
- package/contract-data/schema/v1/events.md +467 -0
- package/contract-data/schema/v1/events.schema.json +272 -0
- package/contract-data/schema/v1/group.md +146 -0
- package/contract-data/schema/v1/group.schema.json +133 -0
- package/contract-data/schema/v1/mockup-data.md +186 -0
- package/contract-data/schema/v1/naming-objects.schema.json +133 -0
- package/contract-data/schema/v1/node.md +32 -0
- package/contract-data/schema/v1/node.schema.json +24 -0
- package/contract-data/schema/v1/patterns/_base.additional-meta.mjs +135 -0
- package/contract-data/schema/v1/patterns/_base.controls.mjs +759 -0
- package/contract-data/schema/v1/patterns/_base.icon.mjs +61 -0
- package/contract-data/schema/v1/patterns/_base.id.mjs +15 -0
- package/contract-data/schema/v1/patterns/_base.materialize.mjs +1181 -0
- package/contract-data/schema/v1/patterns/_base.style.mjs +312 -0
- package/contract-data/schema/v1/patterns/atom/badge.materialize.mjs +68 -0
- package/contract-data/schema/v1/patterns/atom/badge.schema.json +44 -0
- package/contract-data/schema/v1/patterns/atom/button.materialize.mjs +91 -0
- package/contract-data/schema/v1/patterns/atom/button.schema.json +70 -0
- package/contract-data/schema/v1/patterns/atom/checkbox.materialize.mjs +40 -0
- package/contract-data/schema/v1/patterns/atom/checkbox.schema.json +39 -0
- package/contract-data/schema/v1/patterns/atom/segmented-radio.materialize.mjs +67 -0
- package/contract-data/schema/v1/patterns/atom/segmented-radio.schema.json +49 -0
- package/contract-data/schema/v1/patterns/atom/switch.materialize.mjs +58 -0
- package/contract-data/schema/v1/patterns/atom/switch.schema.json +27 -0
- package/contract-data/schema/v1/patterns/molecule/checklist.materialize.mjs +130 -0
- package/contract-data/schema/v1/patterns/molecule/checklist.schema.json +63 -0
- package/contract-data/schema/v1/patterns/molecule/input-action.materialize.mjs +356 -0
- package/contract-data/schema/v1/patterns/molecule/input-action.schema.json +251 -0
- package/contract-data/schema/v1/patterns/molecule/input-button.materialize.mjs +183 -0
- package/contract-data/schema/v1/patterns/molecule/input-button.schema.json +141 -0
- package/contract-data/schema/v1/patterns/molecule/input-pair.materialize.mjs +254 -0
- package/contract-data/schema/v1/patterns/molecule/input-pair.schema.json +210 -0
- package/contract-data/schema/v1/scenario.md +112 -0
- package/contract-data/schema/v1/scenario.schema.json +161 -0
- package/contract-data/schema/v1/service/CustomSystem.md +139 -0
- package/contract-data/schema/v1/service/CustomSystem.schema.json +41 -0
- package/contract-data/schema/v1/service/Firestore.md +125 -0
- package/contract-data/schema/v1/service/Firestore.schema.json +28 -0
- package/contract-data/schema/v1/service/FlexAutoQuery.md +128 -0
- package/contract-data/schema/v1/service/FlexAutoQuery.schema.json +35 -0
- package/contract-data/schema/v1/service/FlexSQL.md +96 -0
- package/contract-data/schema/v1/service/FlexSQL.schema.json +33 -0
- package/contract-data/schema/v1/service/Flextudio API.md +161 -0
- package/contract-data/schema/v1/service/Flextudio API.schema.json +115 -0
- package/contract-data/schema/v1/service/Flextudio.md +87 -0
- package/contract-data/schema/v1/service/Flextudio.schema.json +26 -0
- package/contract-data/schema/v1/service/GoogleSheet.md +71 -0
- package/contract-data/schema/v1/service/GoogleSheet.schema.json +31 -0
- package/contract-data/schema/v1/service/README.md +127 -0
- package/contract-data/schema/v1/service/_base.schema.json +31 -0
- package/contract-data/schema/v1/service/ksystem.md +76 -0
- package/contract-data/schema/v1/service/ksystem.schema.json +36 -0
- package/contract-data/schema/v1/service-binding.md +228 -0
- package/contract-data/schema/v1/service-binding.schema.json +51 -0
- package/contract-data/schema/v1/step.md +546 -0
- package/contract-data/schema/v1/step.schema.json +258 -0
- package/contract-data/schema/v1/style-objects.md +183 -0
- package/contract-data/schema/v1/style-objects.schema.json +155 -0
- package/contract-data/spec/catalog.json +406 -0
- package/contract-data/spec/rules.md +400 -0
- package/node_modules/@flextudio/contract-core/contract.mjs +367 -0
- package/node_modules/@flextudio/contract-core/index.mjs +16 -0
- package/node_modules/@flextudio/contract-core/package.json +21 -0
- package/node_modules/@flextudio/contract-core/paths.mjs +72 -0
- package/node_modules/@flextudio/contract-core/schemas.mjs +474 -0
- package/node_modules/@flextudio/contract-core/validators.mjs +2471 -0
- package/node_modules/ajv/.runkit_example.js +23 -0
- package/node_modules/ajv/LICENSE +22 -0
- package/node_modules/ajv/README.md +207 -0
- package/node_modules/ajv/dist/2019.d.ts +19 -0
- package/node_modules/ajv/dist/2019.js +61 -0
- package/node_modules/ajv/dist/2019.js.map +1 -0
- package/node_modules/ajv/dist/2020.d.ts +19 -0
- package/node_modules/ajv/dist/2020.js +55 -0
- package/node_modules/ajv/dist/2020.js.map +1 -0
- package/node_modules/ajv/dist/ajv.d.ts +18 -0
- package/node_modules/ajv/dist/ajv.js +50 -0
- package/node_modules/ajv/dist/ajv.js.map +1 -0
- package/node_modules/ajv/dist/compile/codegen/code.d.ts +40 -0
- package/node_modules/ajv/dist/compile/codegen/code.js +156 -0
- package/node_modules/ajv/dist/compile/codegen/code.js.map +1 -0
- package/node_modules/ajv/dist/compile/codegen/index.d.ts +79 -0
- package/node_modules/ajv/dist/compile/codegen/index.js +697 -0
- package/node_modules/ajv/dist/compile/codegen/index.js.map +1 -0
- package/node_modules/ajv/dist/compile/codegen/scope.d.ts +79 -0
- package/node_modules/ajv/dist/compile/codegen/scope.js +143 -0
- package/node_modules/ajv/dist/compile/codegen/scope.js.map +1 -0
- package/node_modules/ajv/dist/compile/errors.d.ts +13 -0
- package/node_modules/ajv/dist/compile/errors.js +123 -0
- package/node_modules/ajv/dist/compile/errors.js.map +1 -0
- package/node_modules/ajv/dist/compile/index.d.ts +80 -0
- package/node_modules/ajv/dist/compile/index.js +242 -0
- package/node_modules/ajv/dist/compile/index.js.map +1 -0
- package/node_modules/ajv/dist/compile/jtd/parse.d.ts +4 -0
- package/node_modules/ajv/dist/compile/jtd/parse.js +350 -0
- package/node_modules/ajv/dist/compile/jtd/parse.js.map +1 -0
- package/node_modules/ajv/dist/compile/jtd/serialize.d.ts +4 -0
- package/node_modules/ajv/dist/compile/jtd/serialize.js +236 -0
- package/node_modules/ajv/dist/compile/jtd/serialize.js.map +1 -0
- package/node_modules/ajv/dist/compile/jtd/types.d.ts +6 -0
- package/node_modules/ajv/dist/compile/jtd/types.js +14 -0
- package/node_modules/ajv/dist/compile/jtd/types.js.map +1 -0
- package/node_modules/ajv/dist/compile/names.d.ts +20 -0
- package/node_modules/ajv/dist/compile/names.js +28 -0
- package/node_modules/ajv/dist/compile/names.js.map +1 -0
- package/node_modules/ajv/dist/compile/ref_error.d.ts +6 -0
- package/node_modules/ajv/dist/compile/ref_error.js +12 -0
- package/node_modules/ajv/dist/compile/ref_error.js.map +1 -0
- package/node_modules/ajv/dist/compile/resolve.d.ts +12 -0
- package/node_modules/ajv/dist/compile/resolve.js +155 -0
- package/node_modules/ajv/dist/compile/resolve.js.map +1 -0
- package/node_modules/ajv/dist/compile/rules.d.ts +28 -0
- package/node_modules/ajv/dist/compile/rules.js +26 -0
- package/node_modules/ajv/dist/compile/rules.js.map +1 -0
- package/node_modules/ajv/dist/compile/util.d.ts +40 -0
- package/node_modules/ajv/dist/compile/util.js +178 -0
- package/node_modules/ajv/dist/compile/util.js.map +1 -0
- package/node_modules/ajv/dist/compile/validate/applicability.d.ts +6 -0
- package/node_modules/ajv/dist/compile/validate/applicability.js +19 -0
- package/node_modules/ajv/dist/compile/validate/applicability.js.map +1 -0
- package/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +4 -0
- package/node_modules/ajv/dist/compile/validate/boolSchema.js +50 -0
- package/node_modules/ajv/dist/compile/validate/boolSchema.js.map +1 -0
- package/node_modules/ajv/dist/compile/validate/dataType.d.ts +17 -0
- package/node_modules/ajv/dist/compile/validate/dataType.js +203 -0
- package/node_modules/ajv/dist/compile/validate/dataType.js.map +1 -0
- package/node_modules/ajv/dist/compile/validate/defaults.d.ts +2 -0
- package/node_modules/ajv/dist/compile/validate/defaults.js +35 -0
- package/node_modules/ajv/dist/compile/validate/defaults.js.map +1 -0
- package/node_modules/ajv/dist/compile/validate/index.d.ts +42 -0
- package/node_modules/ajv/dist/compile/validate/index.js +520 -0
- package/node_modules/ajv/dist/compile/validate/index.js.map +1 -0
- package/node_modules/ajv/dist/compile/validate/keyword.d.ts +8 -0
- package/node_modules/ajv/dist/compile/validate/keyword.js +124 -0
- package/node_modules/ajv/dist/compile/validate/keyword.js.map +1 -0
- package/node_modules/ajv/dist/compile/validate/subschema.d.ts +47 -0
- package/node_modules/ajv/dist/compile/validate/subschema.js +81 -0
- package/node_modules/ajv/dist/compile/validate/subschema.js.map +1 -0
- package/node_modules/ajv/dist/core.d.ts +174 -0
- package/node_modules/ajv/dist/core.js +618 -0
- package/node_modules/ajv/dist/core.js.map +1 -0
- package/node_modules/ajv/dist/jtd.d.ts +47 -0
- package/node_modules/ajv/dist/jtd.js +72 -0
- package/node_modules/ajv/dist/jtd.js.map +1 -0
- package/node_modules/ajv/dist/refs/data.json +13 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +2 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +28 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +1 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +17 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +57 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +14 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +39 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +2 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +30 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +1 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +17 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +51 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +55 -0
- package/node_modules/ajv/dist/refs/json-schema-draft-06.json +137 -0
- package/node_modules/ajv/dist/refs/json-schema-draft-07.json +151 -0
- package/node_modules/ajv/dist/refs/json-schema-secure.json +88 -0
- package/node_modules/ajv/dist/refs/jtd-schema.d.ts +3 -0
- package/node_modules/ajv/dist/refs/jtd-schema.js +118 -0
- package/node_modules/ajv/dist/refs/jtd-schema.js.map +1 -0
- package/node_modules/ajv/dist/runtime/equal.d.ts +6 -0
- package/node_modules/ajv/dist/runtime/equal.js +7 -0
- package/node_modules/ajv/dist/runtime/equal.js.map +1 -0
- package/node_modules/ajv/dist/runtime/parseJson.d.ts +18 -0
- package/node_modules/ajv/dist/runtime/parseJson.js +185 -0
- package/node_modules/ajv/dist/runtime/parseJson.js.map +1 -0
- package/node_modules/ajv/dist/runtime/quote.d.ts +5 -0
- package/node_modules/ajv/dist/runtime/quote.js +30 -0
- package/node_modules/ajv/dist/runtime/quote.js.map +1 -0
- package/node_modules/ajv/dist/runtime/re2.d.ts +6 -0
- package/node_modules/ajv/dist/runtime/re2.js +6 -0
- package/node_modules/ajv/dist/runtime/re2.js.map +1 -0
- package/node_modules/ajv/dist/runtime/timestamp.d.ts +5 -0
- package/node_modules/ajv/dist/runtime/timestamp.js +42 -0
- package/node_modules/ajv/dist/runtime/timestamp.js.map +1 -0
- package/node_modules/ajv/dist/runtime/ucs2length.d.ts +5 -0
- package/node_modules/ajv/dist/runtime/ucs2length.js +24 -0
- package/node_modules/ajv/dist/runtime/ucs2length.js.map +1 -0
- package/node_modules/ajv/dist/runtime/uri.d.ts +6 -0
- package/node_modules/ajv/dist/runtime/uri.js +6 -0
- package/node_modules/ajv/dist/runtime/uri.js.map +1 -0
- package/node_modules/ajv/dist/runtime/validation_error.d.ts +7 -0
- package/node_modules/ajv/dist/runtime/validation_error.js +11 -0
- package/node_modules/ajv/dist/runtime/validation_error.js.map +1 -0
- package/node_modules/ajv/dist/standalone/index.d.ts +6 -0
- package/node_modules/ajv/dist/standalone/index.js +90 -0
- package/node_modules/ajv/dist/standalone/index.js.map +1 -0
- package/node_modules/ajv/dist/standalone/instance.d.ts +12 -0
- package/node_modules/ajv/dist/standalone/instance.js +35 -0
- package/node_modules/ajv/dist/standalone/instance.js.map +1 -0
- package/node_modules/ajv/dist/types/index.d.ts +183 -0
- package/node_modules/ajv/dist/types/index.js +3 -0
- package/node_modules/ajv/dist/types/index.js.map +1 -0
- package/node_modules/ajv/dist/types/json-schema.d.ts +125 -0
- package/node_modules/ajv/dist/types/json-schema.js +3 -0
- package/node_modules/ajv/dist/types/json-schema.js.map +1 -0
- package/node_modules/ajv/dist/types/jtd-schema.d.ts +174 -0
- package/node_modules/ajv/dist/types/jtd-schema.js +3 -0
- package/node_modules/ajv/dist/types/jtd-schema.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +8 -0
- package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +49 -0
- package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +106 -0
- package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/applicator/allOf.js +23 -0
- package/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +4 -0
- package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +12 -0
- package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +7 -0
- package/node_modules/ajv/dist/vocabularies/applicator/contains.js +95 -0
- package/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +21 -0
- package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +85 -0
- package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +11 -0
- package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/applicator/if.js +66 -0
- package/node_modules/ajv/dist/vocabularies/applicator/if.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +13 -0
- package/node_modules/ajv/dist/vocabularies/applicator/index.js +44 -0
- package/node_modules/ajv/dist/vocabularies/applicator/index.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +5 -0
- package/node_modules/ajv/dist/vocabularies/applicator/items.js +52 -0
- package/node_modules/ajv/dist/vocabularies/applicator/items.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/applicator/items2020.js +30 -0
- package/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +4 -0
- package/node_modules/ajv/dist/vocabularies/applicator/not.js +26 -0
- package/node_modules/ajv/dist/vocabularies/applicator/not.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +60 -0
- package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +75 -0
- package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +12 -0
- package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/applicator/properties.js +54 -0
- package/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +38 -0
- package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +13 -0
- package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/code.d.ts +17 -0
- package/node_modules/ajv/dist/vocabularies/code.js +131 -0
- package/node_modules/ajv/dist/vocabularies/code.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/core/id.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/core/id.js +10 -0
- package/node_modules/ajv/dist/vocabularies/core/id.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/core/index.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/core/index.js +16 -0
- package/node_modules/ajv/dist/vocabularies/core/index.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/core/ref.d.ts +8 -0
- package/node_modules/ajv/dist/vocabularies/core/ref.js +122 -0
- package/node_modules/ajv/dist/vocabularies/core/ref.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +5 -0
- package/node_modules/ajv/dist/vocabularies/discriminator/index.js +104 -0
- package/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +10 -0
- package/node_modules/ajv/dist/vocabularies/discriminator/types.js +9 -0
- package/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/draft2020.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/draft2020.js +23 -0
- package/node_modules/ajv/dist/vocabularies/draft2020.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/draft7.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/draft7.js +17 -0
- package/node_modules/ajv/dist/vocabularies/draft7.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +5 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +30 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +5 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +51 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/index.js +9 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +16 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +10 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/errors.d.ts +9 -0
- package/node_modules/ajv/dist/vocabularies/errors.js +3 -0
- package/node_modules/ajv/dist/vocabularies/errors.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/format/format.d.ts +8 -0
- package/node_modules/ajv/dist/vocabularies/format/format.js +92 -0
- package/node_modules/ajv/dist/vocabularies/format/format.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/format/index.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/format/index.js +6 -0
- package/node_modules/ajv/dist/vocabularies/format/index.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +71 -0
- package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +5 -0
- package/node_modules/ajv/dist/vocabularies/jtd/elements.js +24 -0
- package/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/jtd/enum.js +43 -0
- package/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +9 -0
- package/node_modules/ajv/dist/vocabularies/jtd/error.js +20 -0
- package/node_modules/ajv/dist/vocabularies/jtd/error.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +10 -0
- package/node_modules/ajv/dist/vocabularies/jtd/index.js +29 -0
- package/node_modules/ajv/dist/vocabularies/jtd/index.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +5 -0
- package/node_modules/ajv/dist/vocabularies/jtd/metadata.js +25 -0
- package/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +4 -0
- package/node_modules/ajv/dist/vocabularies/jtd/nullable.js +22 -0
- package/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +15 -0
- package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +22 -0
- package/node_modules/ajv/dist/vocabularies/jtd/properties.js +149 -0
- package/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +4 -0
- package/node_modules/ajv/dist/vocabularies/jtd/ref.js +67 -0
- package/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +10 -0
- package/node_modules/ajv/dist/vocabularies/jtd/type.js +69 -0
- package/node_modules/ajv/dist/vocabularies/jtd/type.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/jtd/union.js +12 -0
- package/node_modules/ajv/dist/vocabularies/jtd/union.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +5 -0
- package/node_modules/ajv/dist/vocabularies/jtd/values.js +51 -0
- package/node_modules/ajv/dist/vocabularies/jtd/values.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/metadata.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/metadata.js +18 -0
- package/node_modules/ajv/dist/vocabularies/metadata.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/next.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/next.js +8 -0
- package/node_modules/ajv/dist/vocabularies/next.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/index.js +7 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +40 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +65 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/const.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/validation/const.js +25 -0
- package/node_modules/ajv/dist/vocabularies/validation/const.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +5 -0
- package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +12 -0
- package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +8 -0
- package/node_modules/ajv/dist/vocabularies/validation/enum.js +48 -0
- package/node_modules/ajv/dist/vocabularies/validation/enum.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/index.d.ts +16 -0
- package/node_modules/ajv/dist/vocabularies/validation/index.js +33 -0
- package/node_modules/ajv/dist/vocabularies/validation/index.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitContains.js +15 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitItems.js +24 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitLength.js +27 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +11 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +27 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +24 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +8 -0
- package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +26 -0
- package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +8 -0
- package/node_modules/ajv/dist/vocabularies/validation/pattern.js +33 -0
- package/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/required.d.ts +8 -0
- package/node_modules/ajv/dist/vocabularies/validation/required.js +79 -0
- package/node_modules/ajv/dist/vocabularies/validation/required.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +9 -0
- package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +64 -0
- package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +1 -0
- package/node_modules/ajv/lib/2019.ts +81 -0
- package/node_modules/ajv/lib/2020.ts +75 -0
- package/node_modules/ajv/lib/ajv.ts +70 -0
- package/node_modules/ajv/lib/compile/codegen/code.ts +169 -0
- package/node_modules/ajv/lib/compile/codegen/index.ts +852 -0
- package/node_modules/ajv/lib/compile/codegen/scope.ts +215 -0
- package/node_modules/ajv/lib/compile/errors.ts +184 -0
- package/node_modules/ajv/lib/compile/index.ts +324 -0
- package/node_modules/ajv/lib/compile/jtd/parse.ts +411 -0
- package/node_modules/ajv/lib/compile/jtd/serialize.ts +277 -0
- package/node_modules/ajv/lib/compile/jtd/types.ts +16 -0
- package/node_modules/ajv/lib/compile/names.ts +27 -0
- package/node_modules/ajv/lib/compile/ref_error.ts +13 -0
- package/node_modules/ajv/lib/compile/resolve.ts +149 -0
- package/node_modules/ajv/lib/compile/rules.ts +50 -0
- package/node_modules/ajv/lib/compile/util.ts +213 -0
- package/node_modules/ajv/lib/compile/validate/applicability.ts +22 -0
- package/node_modules/ajv/lib/compile/validate/boolSchema.ts +47 -0
- package/node_modules/ajv/lib/compile/validate/dataType.ts +230 -0
- package/node_modules/ajv/lib/compile/validate/defaults.ts +32 -0
- package/node_modules/ajv/lib/compile/validate/index.ts +582 -0
- package/node_modules/ajv/lib/compile/validate/keyword.ts +171 -0
- package/node_modules/ajv/lib/compile/validate/subschema.ts +135 -0
- package/node_modules/ajv/lib/core.ts +892 -0
- package/node_modules/ajv/lib/jtd.ts +132 -0
- package/node_modules/ajv/lib/refs/data.json +13 -0
- package/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +28 -0
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +17 -0
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +57 -0
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +14 -0
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +39 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +30 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +17 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +51 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +55 -0
- package/node_modules/ajv/lib/refs/json-schema-draft-06.json +137 -0
- package/node_modules/ajv/lib/refs/json-schema-draft-07.json +151 -0
- package/node_modules/ajv/lib/refs/json-schema-secure.json +88 -0
- package/node_modules/ajv/lib/refs/jtd-schema.ts +130 -0
- package/node_modules/ajv/lib/runtime/equal.ts +7 -0
- package/node_modules/ajv/lib/runtime/parseJson.ts +177 -0
- package/node_modules/ajv/lib/runtime/quote.ts +31 -0
- package/node_modules/ajv/lib/runtime/re2.ts +6 -0
- package/node_modules/ajv/lib/runtime/timestamp.ts +46 -0
- package/node_modules/ajv/lib/runtime/ucs2length.ts +20 -0
- package/node_modules/ajv/lib/runtime/uri.ts +6 -0
- package/node_modules/ajv/lib/runtime/validation_error.ts +13 -0
- package/node_modules/ajv/lib/standalone/index.ts +100 -0
- package/node_modules/ajv/lib/standalone/instance.ts +36 -0
- package/node_modules/ajv/lib/types/index.ts +244 -0
- package/node_modules/ajv/lib/types/json-schema.ts +187 -0
- package/node_modules/ajv/lib/types/jtd-schema.ts +273 -0
- package/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +56 -0
- package/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +118 -0
- package/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +22 -0
- package/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +14 -0
- package/node_modules/ajv/lib/vocabularies/applicator/contains.ts +109 -0
- package/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +112 -0
- package/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +11 -0
- package/node_modules/ajv/lib/vocabularies/applicator/if.ts +80 -0
- package/node_modules/ajv/lib/vocabularies/applicator/index.ts +53 -0
- package/node_modules/ajv/lib/vocabularies/applicator/items.ts +59 -0
- package/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +36 -0
- package/node_modules/ajv/lib/vocabularies/applicator/not.ts +38 -0
- package/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +82 -0
- package/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +91 -0
- package/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +12 -0
- package/node_modules/ajv/lib/vocabularies/applicator/properties.ts +57 -0
- package/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +50 -0
- package/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +13 -0
- package/node_modules/ajv/lib/vocabularies/code.ts +168 -0
- package/node_modules/ajv/lib/vocabularies/core/id.ts +10 -0
- package/node_modules/ajv/lib/vocabularies/core/index.ts +16 -0
- package/node_modules/ajv/lib/vocabularies/core/ref.ts +129 -0
- package/node_modules/ajv/lib/vocabularies/discriminator/index.ts +113 -0
- package/node_modules/ajv/lib/vocabularies/discriminator/types.ts +12 -0
- package/node_modules/ajv/lib/vocabularies/draft2020.ts +23 -0
- package/node_modules/ajv/lib/vocabularies/draft7.ts +17 -0
- package/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +31 -0
- package/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +51 -0
- package/node_modules/ajv/lib/vocabularies/dynamic/index.ts +9 -0
- package/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +14 -0
- package/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +10 -0
- package/node_modules/ajv/lib/vocabularies/errors.ts +18 -0
- package/node_modules/ajv/lib/vocabularies/format/format.ts +120 -0
- package/node_modules/ajv/lib/vocabularies/format/index.ts +6 -0
- package/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +89 -0
- package/node_modules/ajv/lib/vocabularies/jtd/elements.ts +32 -0
- package/node_modules/ajv/lib/vocabularies/jtd/enum.ts +45 -0
- package/node_modules/ajv/lib/vocabularies/jtd/error.ts +23 -0
- package/node_modules/ajv/lib/vocabularies/jtd/index.ts +37 -0
- package/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +24 -0
- package/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +21 -0
- package/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +15 -0
- package/node_modules/ajv/lib/vocabularies/jtd/properties.ts +184 -0
- package/node_modules/ajv/lib/vocabularies/jtd/ref.ts +76 -0
- package/node_modules/ajv/lib/vocabularies/jtd/type.ts +75 -0
- package/node_modules/ajv/lib/vocabularies/jtd/union.ts +12 -0
- package/node_modules/ajv/lib/vocabularies/jtd/values.ts +58 -0
- package/node_modules/ajv/lib/vocabularies/metadata.ts +17 -0
- package/node_modules/ajv/lib/vocabularies/next.ts +8 -0
- package/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +7 -0
- package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +47 -0
- package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +85 -0
- package/node_modules/ajv/lib/vocabularies/validation/const.ts +28 -0
- package/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +23 -0
- package/node_modules/ajv/lib/vocabularies/validation/enum.ts +54 -0
- package/node_modules/ajv/lib/vocabularies/validation/index.ts +49 -0
- package/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +16 -0
- package/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +26 -0
- package/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +30 -0
- package/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +42 -0
- package/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +26 -0
- package/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +34 -0
- package/node_modules/ajv/lib/vocabularies/validation/pattern.ts +39 -0
- package/node_modules/ajv/lib/vocabularies/validation/required.ts +98 -0
- package/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +79 -0
- package/node_modules/ajv/package.json +126 -0
- package/node_modules/fast-deep-equal/LICENSE +21 -0
- package/node_modules/fast-deep-equal/README.md +96 -0
- package/node_modules/fast-deep-equal/es6/index.d.ts +2 -0
- package/node_modules/fast-deep-equal/es6/index.js +72 -0
- package/node_modules/fast-deep-equal/es6/react.d.ts +2 -0
- package/node_modules/fast-deep-equal/es6/react.js +79 -0
- package/node_modules/fast-deep-equal/index.d.ts +4 -0
- package/node_modules/fast-deep-equal/index.js +46 -0
- package/node_modules/fast-deep-equal/package.json +61 -0
- package/node_modules/fast-deep-equal/react.d.ts +2 -0
- package/node_modules/fast-deep-equal/react.js +53 -0
- package/node_modules/fast-uri/.gitattributes +2 -0
- package/node_modules/fast-uri/.github/dependabot.yml +13 -0
- package/node_modules/fast-uri/.github/workflows/ci.yml +106 -0
- package/node_modules/fast-uri/.github/workflows/lock-threads.yml +19 -0
- package/node_modules/fast-uri/.github/workflows/package-manager-ci.yml +24 -0
- package/node_modules/fast-uri/LICENSE +30 -0
- package/node_modules/fast-uri/README.md +152 -0
- package/node_modules/fast-uri/benchmark/benchmark.mjs +159 -0
- package/node_modules/fast-uri/benchmark/equal.mjs +51 -0
- package/node_modules/fast-uri/benchmark/non-simple-domain.mjs +22 -0
- package/node_modules/fast-uri/benchmark/package.json +17 -0
- package/node_modules/fast-uri/benchmark/string-array-to-hex-stripped.mjs +24 -0
- package/node_modules/fast-uri/benchmark/ws-is-secure.mjs +65 -0
- package/node_modules/fast-uri/eslint.config.js +6 -0
- package/node_modules/fast-uri/index.js +406 -0
- package/node_modules/fast-uri/lib/schemes.js +267 -0
- package/node_modules/fast-uri/lib/utils.js +443 -0
- package/node_modules/fast-uri/package.json +68 -0
- package/node_modules/fast-uri/test/ajv.test.js +43 -0
- package/node_modules/fast-uri/test/equal.test.js +117 -0
- package/node_modules/fast-uri/test/fixtures/uri-js-parse.json +501 -0
- package/node_modules/fast-uri/test/fixtures/uri-js-serialize.json +120 -0
- package/node_modules/fast-uri/test/parse.test.js +323 -0
- package/node_modules/fast-uri/test/resolve.test.js +87 -0
- package/node_modules/fast-uri/test/rfc-3986.test.js +90 -0
- package/node_modules/fast-uri/test/security-normalization.test.js +39 -0
- package/node_modules/fast-uri/test/security.test.js +133 -0
- package/node_modules/fast-uri/test/serialize.test.js +151 -0
- package/node_modules/fast-uri/test/uri-js-compatibility.test.js +33 -0
- package/node_modules/fast-uri/test/uri-js.test.js +912 -0
- package/node_modules/fast-uri/test/util.test.js +38 -0
- package/node_modules/fast-uri/tsconfig.json +9 -0
- package/node_modules/fast-uri/types/index.d.ts +60 -0
- package/node_modules/fast-uri/types/index.test-d.ts +17 -0
- package/node_modules/json-schema-traverse/.eslintrc.yml +27 -0
- package/node_modules/json-schema-traverse/.github/FUNDING.yml +2 -0
- package/node_modules/json-schema-traverse/.github/workflows/build.yml +28 -0
- package/node_modules/json-schema-traverse/.github/workflows/publish.yml +27 -0
- package/node_modules/json-schema-traverse/LICENSE +21 -0
- package/node_modules/json-schema-traverse/README.md +95 -0
- package/node_modules/json-schema-traverse/index.d.ts +40 -0
- package/node_modules/json-schema-traverse/index.js +93 -0
- package/node_modules/json-schema-traverse/package.json +43 -0
- package/node_modules/json-schema-traverse/spec/.eslintrc.yml +6 -0
- package/node_modules/json-schema-traverse/spec/fixtures/schema.js +125 -0
- package/node_modules/json-schema-traverse/spec/index.spec.js +171 -0
- package/node_modules/require-from-string/index.js +34 -0
- package/node_modules/require-from-string/license +21 -0
- package/node_modules/require-from-string/package.json +28 -0
- package/node_modules/require-from-string/readme.md +56 -0
- package/package.json +51 -0
- package/scripts/api-call.mjs +59 -0
- package/scripts/auth.mjs +262 -0
- package/scripts/build-skill-payload.mjs +338 -0
- package/scripts/cleanup.mjs +166 -0
- package/scripts/install-paths.mjs +146 -0
- package/scripts/postinstall.mjs +218 -0
- package/scripts/postpack.mjs +43 -0
- package/scripts/prepack.mjs +222 -0
- package/scripts/tty-menu.mjs +100 -0
- package/skill/README.md +55 -0
- package/skill/SKILL.md +138 -0
- package/skill/catalog.json +406 -0
- package/skill/design-rules.md +282 -0
- package/skill/design-system.md +235 -0
- package/skill/docs/SKELETON-SHELL.md +120 -0
- package/skill/docs/bottom-buttons.md +155 -0
- package/skill/docs/control/button.md +147 -0
- package/skill/docs/control/calendar-navigator.md +143 -0
- package/skill/docs/control/calendar.md +128 -0
- package/skill/docs/control/check-box.md +117 -0
- package/skill/docs/control/combo.md +293 -0
- package/skill/docs/control/embed.md +211 -0
- package/skill/docs/control/image-box.md +237 -0
- package/skill/docs/control/input-date.md +175 -0
- package/skill/docs/control/input-file.md +192 -0
- package/skill/docs/control/input-mask.md +89 -0
- package/skill/docs/control/input-number.md +55 -0
- package/skill/docs/control/input-text.md +73 -0
- package/skill/docs/control/label.md +127 -0
- package/skill/docs/control/multi-input-box.md +51 -0
- package/skill/docs/control/radio-box.md +150 -0
- package/skill/docs/control/search.md +163 -0
- package/skill/docs/control/tab.md +240 -0
- package/skill/docs/control/tree.md +278 -0
- package/skill/docs/control.md +264 -0
- package/skill/docs/data-objects.md +278 -0
- package/skill/docs/data-sources.md +215 -0
- package/skill/docs/events.md +467 -0
- package/skill/docs/group.md +146 -0
- package/skill/docs/index.json +125 -0
- package/skill/docs/mockup-data.md +186 -0
- package/skill/docs/node.md +32 -0
- package/skill/docs/scenario.md +112 -0
- package/skill/docs/service/CustomSystem.md +139 -0
- package/skill/docs/service/Firestore.md +125 -0
- package/skill/docs/service/FlexAutoQuery.md +128 -0
- package/skill/docs/service/FlexSQL.md +96 -0
- package/skill/docs/service/Flextudio API.md +161 -0
- package/skill/docs/service/Flextudio.md +87 -0
- package/skill/docs/service/GoogleSheet.md +71 -0
- package/skill/docs/service/README.md +127 -0
- package/skill/docs/service/ksystem.md +76 -0
- package/skill/docs/service-binding.md +228 -0
- package/skill/docs/step.md +546 -0
- package/skill/docs/style-objects.md +183 -0
- package/skill/examples/README.md +147 -0
- package/skill/examples/basic/basic-list-detail.json +2521 -0
- package/skill/examples/basic/delivery-address-popup.json +2175 -0
- package/skill/examples/basic/fixedtop-floating-form.json +1524 -0
- package/skill/examples/basic/search-period-popup.json +1524 -0
- package/skill/examples/design/booking-wizard-3step.json +1335 -0
- package/skill/examples/design/list-detail-form-3step.json +1516 -0
- package/skill/examples/design/list-filter-2step.json +1365 -0
- package/skill/examples/design/list-filter-detail-3step.json +1570 -0
- package/skill/examples/design/result-entry-wizard-4step.json +1861 -0
- package/skill/examples/index.json +150 -0
- package/skill/examples/intent/mock-employee-list.json +54 -0
- package/skill/examples/intent/script-cart-flow.json +96 -0
- package/skill/examples/intent/script-dialog-confirm.json +61 -0
- package/skill/intent-rules.md +552 -0
- package/skill/intent-system.md +118 -0
- package/skill/patterns/atom/badge.json +103 -0
- package/skill/patterns/atom/button.json +111 -0
- package/skill/patterns/atom/checkbox.json +70 -0
- package/skill/patterns/atom/segmented-radio.json +92 -0
- package/skill/patterns/atom/switch.json +57 -0
- package/skill/patterns/index.json +471 -0
- package/skill/patterns/molecule/checklist.json +107 -0
- package/skill/patterns/molecule/input-action.json +355 -0
- package/skill/patterns/molecule/input-button.json +212 -0
- package/skill/patterns/molecule/input-pair.json +284 -0
- package/skill/references/build-sequence.md +55 -0
- package/skill/references/patterns-cheatsheet.md +87 -0
- package/skill/references/spec-evolve/README.md +43 -0
- package/skill/references/spec-evolve/conventions.md +92 -0
- package/skill/references/spec-evolve/data-connection.md +102 -0
- package/skill/references/spec-evolve/intake.md +41 -0
- package/skill/references/spec-evolve/key-roles.md +44 -0
- package/skill/references/spec-evolve/lint.md +27 -0
- package/skill/references/spec-evolve/mockup.md +50 -0
- package/skill/references/spec-evolve/query-screens.md +66 -0
- package/skill/references/spec-evolve/routing.md +43 -0
- package/skill/references/spec-evolve/spec-format.md +76 -0
- package/skill/references/spec-evolve/templates/master-detail.spec.md +97 -0
- package/skill/references/spec-evolve/templates/query-screen.spec.md +96 -0
- package/skill/references/spec-evolve/templates/static-prototype.spec.md +54 -0
- package/skill/references/spec-evolve/templates-index.json +26 -0
- package/skill/rules.md +400 -0
- package/skill/schemas/bottom-buttons.schema.json +134 -0
- package/skill/schemas/control/_base.schema.json +1296 -0
- package/skill/schemas/control/button.schema.json +55 -0
- package/skill/schemas/control/calendar-navigator.schema.json +164 -0
- package/skill/schemas/control/calendar.schema.json +18 -0
- package/skill/schemas/control/check-box.schema.json +41 -0
- package/skill/schemas/control/combo.schema.json +23 -0
- package/skill/schemas/control/embed.schema.json +30 -0
- package/skill/schemas/control/image-box.schema.json +49 -0
- package/skill/schemas/control/input-date.schema.json +27 -0
- package/skill/schemas/control/input-file.schema.json +139 -0
- package/skill/schemas/control/input-mask.schema.json +45 -0
- package/skill/schemas/control/input-number.schema.json +24 -0
- package/skill/schemas/control/input-text.schema.json +24 -0
- package/skill/schemas/control/label.schema.json +113 -0
- package/skill/schemas/control/multi-input-box.schema.json +19 -0
- package/skill/schemas/control/other.schema.json +24 -0
- package/skill/schemas/control/radio-box.schema.json +87 -0
- package/skill/schemas/control/search.schema.json +23 -0
- package/skill/schemas/control/tab.schema.json +112 -0
- package/skill/schemas/control/tree.schema.json +83 -0
- package/skill/schemas/control.schema.json +30 -0
- package/skill/schemas/data-objects.schema.json +161 -0
- package/skill/schemas/data-sources.schema.json +184 -0
- package/skill/schemas/design-system/design.schema.json +496 -0
- package/skill/schemas/events.schema.json +272 -0
- package/skill/schemas/group.schema.json +133 -0
- package/skill/schemas/index.json +362 -0
- package/skill/schemas/naming-objects.schema.json +133 -0
- package/skill/schemas/node.schema.json +24 -0
- package/skill/schemas/patterns/atom/badge.schema.json +44 -0
- package/skill/schemas/patterns/atom/button.schema.json +70 -0
- package/skill/schemas/patterns/atom/checkbox.schema.json +39 -0
- package/skill/schemas/patterns/atom/segmented-radio.schema.json +49 -0
- package/skill/schemas/patterns/atom/switch.schema.json +27 -0
- package/skill/schemas/patterns/molecule/checklist.schema.json +63 -0
- package/skill/schemas/patterns/molecule/input-action.schema.json +251 -0
- package/skill/schemas/patterns/molecule/input-button.schema.json +141 -0
- package/skill/schemas/patterns/molecule/input-pair.schema.json +210 -0
- package/skill/schemas/scenario.schema.json +161 -0
- package/skill/schemas/service/CustomSystem.schema.json +41 -0
- package/skill/schemas/service/Firestore.schema.json +28 -0
- package/skill/schemas/service/FlexAutoQuery.schema.json +35 -0
- package/skill/schemas/service/FlexSQL.schema.json +33 -0
- package/skill/schemas/service/Flextudio API.schema.json +115 -0
- package/skill/schemas/service/Flextudio.schema.json +26 -0
- package/skill/schemas/service/GoogleSheet.schema.json +31 -0
- package/skill/schemas/service/_base.schema.json +31 -0
- package/skill/schemas/service/ksystem.schema.json +36 -0
- package/skill/schemas/service-binding.schema.json +51 -0
- package/skill/schemas/step.schema.json +258 -0
- package/skill/schemas/style-objects.schema.json +155 -0
- package/skill/skill-guides/README.md +50 -0
- package/skill/skill-guides/control-options.md +126 -0
- package/skill/skill-guides/events.md +61 -0
- package/skill/skill-guides/failure-discipline.md +95 -0
- package/skill/skill-guides/index.json +40 -0
- package/skill/skill-guides/prompt-interview.md +92 -0
- package/skill/skill-guides/scripts.md +169 -0
- package/skill/skill-guides/step-navigation.md +98 -0
|
@@ -0,0 +1,1570 @@
|
|
|
1
|
+
{
|
|
2
|
+
"modules": {},
|
|
3
|
+
"htmlkey": "stephtml",
|
|
4
|
+
"ScenarioTitle": "",
|
|
5
|
+
"fConverterVersion": 1,
|
|
6
|
+
"fScenarioName": "리스트→필터→상세 (3-step)",
|
|
7
|
+
"Collections": {},
|
|
8
|
+
"FlexSQLService": {},
|
|
9
|
+
"ServiceBinding": {},
|
|
10
|
+
"StartSteps": [
|
|
11
|
+
"Step1"
|
|
12
|
+
],
|
|
13
|
+
"Language": {},
|
|
14
|
+
"Events": {},
|
|
15
|
+
"DataSources": {},
|
|
16
|
+
"Panel": {
|
|
17
|
+
"Collection": {
|
|
18
|
+
"Ckeys": []
|
|
19
|
+
},
|
|
20
|
+
"Category": {},
|
|
21
|
+
"CategoryOrder": [],
|
|
22
|
+
"Table": [],
|
|
23
|
+
"ExternalTable": [],
|
|
24
|
+
"AuthKey": []
|
|
25
|
+
},
|
|
26
|
+
"Steps": {
|
|
27
|
+
"Step1": {
|
|
28
|
+
"StepName": "[스텝명]",
|
|
29
|
+
"StepType": "StepView",
|
|
30
|
+
"StepRow": 0,
|
|
31
|
+
"StepCol": 0,
|
|
32
|
+
"FixedContentsTop": [
|
|
33
|
+
{
|
|
34
|
+
"Id": "f_1001",
|
|
35
|
+
"ContentsName": "TopBar",
|
|
36
|
+
"ContentsType": "Group",
|
|
37
|
+
"ContentStyle": "None",
|
|
38
|
+
"UseDataConnection": false,
|
|
39
|
+
"design": {
|
|
40
|
+
"w": "full",
|
|
41
|
+
"bg": "card",
|
|
42
|
+
"p": "8 16 16 16"
|
|
43
|
+
},
|
|
44
|
+
"Contents": [
|
|
45
|
+
{
|
|
46
|
+
"input-action": {
|
|
47
|
+
"inputType": "inputDate",
|
|
48
|
+
"inputOptions": {
|
|
49
|
+
"placeholder": "[입력 안내]",
|
|
50
|
+
"name": "StatementDate",
|
|
51
|
+
"dateFormat": "YYYY.MM.DD"
|
|
52
|
+
},
|
|
53
|
+
"icon": "filter",
|
|
54
|
+
"badge": {
|
|
55
|
+
"label": "[수]",
|
|
56
|
+
"color": "red"
|
|
57
|
+
},
|
|
58
|
+
"moveStep": "Step2"
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
]
|
|
62
|
+
}
|
|
63
|
+
],
|
|
64
|
+
"Contents": [
|
|
65
|
+
{
|
|
66
|
+
"Id": "f_1034",
|
|
67
|
+
"ContentsName": "ListBody",
|
|
68
|
+
"ContentsType": "Group",
|
|
69
|
+
"ContentStyle": "None",
|
|
70
|
+
"UseDataConnection": false,
|
|
71
|
+
"design": {
|
|
72
|
+
"flex": {
|
|
73
|
+
"dir": "column",
|
|
74
|
+
"gap": 8
|
|
75
|
+
},
|
|
76
|
+
"w": "full",
|
|
77
|
+
"p": "0 8",
|
|
78
|
+
"bg": "subtle"
|
|
79
|
+
},
|
|
80
|
+
"Contents": [
|
|
81
|
+
{
|
|
82
|
+
"Id": "f_1002",
|
|
83
|
+
"ControlType": "Label",
|
|
84
|
+
"ControlName": "DateHeader",
|
|
85
|
+
"labeltext": "[텍스트]",
|
|
86
|
+
"ControlStyle": "None",
|
|
87
|
+
"Caption": "",
|
|
88
|
+
"isColumnCtrl": false,
|
|
89
|
+
"design": {
|
|
90
|
+
"font": "body-medium",
|
|
91
|
+
"align": "center",
|
|
92
|
+
"w": "full",
|
|
93
|
+
"h": "text",
|
|
94
|
+
"p": "8 0"
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"Id": "f_1033",
|
|
99
|
+
"ContentsName": "CardList",
|
|
100
|
+
"ContentsType": "Group",
|
|
101
|
+
"ContentStyle": "None",
|
|
102
|
+
"UseDataConnection": false,
|
|
103
|
+
"design": {
|
|
104
|
+
"flex": {
|
|
105
|
+
"dir": "column",
|
|
106
|
+
"gap": 8
|
|
107
|
+
},
|
|
108
|
+
"w": "full"
|
|
109
|
+
},
|
|
110
|
+
"Contents": [
|
|
111
|
+
{
|
|
112
|
+
"Id": "f_1017",
|
|
113
|
+
"ContentsName": "StatementCard",
|
|
114
|
+
"ContentsType": "Group",
|
|
115
|
+
"ContentStyle": "None",
|
|
116
|
+
"UseDataConnection": false,
|
|
117
|
+
"design": {
|
|
118
|
+
"flex": {
|
|
119
|
+
"dir": "column",
|
|
120
|
+
"gap": 16
|
|
121
|
+
},
|
|
122
|
+
"w": "full",
|
|
123
|
+
"bg": "card",
|
|
124
|
+
"border": "hairline",
|
|
125
|
+
"radius": "12",
|
|
126
|
+
"p": "16"
|
|
127
|
+
},
|
|
128
|
+
"Contents": [
|
|
129
|
+
{
|
|
130
|
+
"Id": "f_1008",
|
|
131
|
+
"ContentsName": "CardHeader",
|
|
132
|
+
"ContentsType": "Group",
|
|
133
|
+
"ContentStyle": "None",
|
|
134
|
+
"UseDataConnection": false,
|
|
135
|
+
"design": {
|
|
136
|
+
"flex": {
|
|
137
|
+
"dir": "wrap",
|
|
138
|
+
"gap": 4
|
|
139
|
+
},
|
|
140
|
+
"w": "full",
|
|
141
|
+
"p": "0 0 16 0",
|
|
142
|
+
"border": {
|
|
143
|
+
"color": "hairline-strong",
|
|
144
|
+
"sides": {
|
|
145
|
+
"b": "1"
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
},
|
|
149
|
+
"Contents": [
|
|
150
|
+
{
|
|
151
|
+
"Id": "f_1003",
|
|
152
|
+
"ControlType": "Label",
|
|
153
|
+
"ControlName": "Chip",
|
|
154
|
+
"labeltext": "[상태]",
|
|
155
|
+
"ControlStyle": "None",
|
|
156
|
+
"Caption": "",
|
|
157
|
+
"isColumnCtrl": false,
|
|
158
|
+
"design": {
|
|
159
|
+
"font": "body-small",
|
|
160
|
+
"radius": "9999",
|
|
161
|
+
"p": "4 8",
|
|
162
|
+
"w": "text",
|
|
163
|
+
"h": "text",
|
|
164
|
+
"fixed": true,
|
|
165
|
+
"color": "body-soft",
|
|
166
|
+
"border": "hairline-strong"
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"Id": "f_1004",
|
|
171
|
+
"ControlType": "Label",
|
|
172
|
+
"ControlName": "Chip",
|
|
173
|
+
"labeltext": "[상태]",
|
|
174
|
+
"ControlStyle": "None",
|
|
175
|
+
"Caption": "",
|
|
176
|
+
"isColumnCtrl": false,
|
|
177
|
+
"design": {
|
|
178
|
+
"font": "body-small",
|
|
179
|
+
"radius": "9999",
|
|
180
|
+
"p": "4 8",
|
|
181
|
+
"w": "text",
|
|
182
|
+
"h": "text",
|
|
183
|
+
"fixed": true,
|
|
184
|
+
"color": "body",
|
|
185
|
+
"bg": "subtle"
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"Id": "f_1007",
|
|
190
|
+
"ContentsName": "NameRow",
|
|
191
|
+
"ContentsType": "Group",
|
|
192
|
+
"ContentStyle": "None",
|
|
193
|
+
"UseDataConnection": false,
|
|
194
|
+
"design": {
|
|
195
|
+
"flex": {
|
|
196
|
+
"dir": "row",
|
|
197
|
+
"valign": "center",
|
|
198
|
+
"gap": 8
|
|
199
|
+
},
|
|
200
|
+
"w": "full"
|
|
201
|
+
},
|
|
202
|
+
"Contents": [
|
|
203
|
+
{
|
|
204
|
+
"Id": "f_1005",
|
|
205
|
+
"ControlType": "Label",
|
|
206
|
+
"ControlName": "Company",
|
|
207
|
+
"labeltext": "[제목]",
|
|
208
|
+
"ControlStyle": "None",
|
|
209
|
+
"Caption": "",
|
|
210
|
+
"isColumnCtrl": false,
|
|
211
|
+
"design": {
|
|
212
|
+
"font": "title-large",
|
|
213
|
+
"w": "text",
|
|
214
|
+
"h": "text",
|
|
215
|
+
"fixed": true
|
|
216
|
+
}
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"Id": "f_1006",
|
|
220
|
+
"ControlType": "Label",
|
|
221
|
+
"ControlName": "Person",
|
|
222
|
+
"labeltext": "[텍스트]",
|
|
223
|
+
"ControlStyle": "None",
|
|
224
|
+
"Caption": "",
|
|
225
|
+
"isColumnCtrl": false,
|
|
226
|
+
"design": {
|
|
227
|
+
"font": "body-small",
|
|
228
|
+
"color": "body-soft",
|
|
229
|
+
"w": "text",
|
|
230
|
+
"h": "text",
|
|
231
|
+
"fixed": true
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
]
|
|
235
|
+
}
|
|
236
|
+
]
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"Id": "f_1016",
|
|
240
|
+
"ContentsName": "CardBody",
|
|
241
|
+
"ContentsType": "Group",
|
|
242
|
+
"ContentStyle": "None",
|
|
243
|
+
"UseDataConnection": false,
|
|
244
|
+
"design": {
|
|
245
|
+
"flex": {
|
|
246
|
+
"dir": "column",
|
|
247
|
+
"gap": 4
|
|
248
|
+
},
|
|
249
|
+
"w": "full"
|
|
250
|
+
},
|
|
251
|
+
"Contents": [
|
|
252
|
+
{
|
|
253
|
+
"Id": "f_1009",
|
|
254
|
+
"ControlType": "Label",
|
|
255
|
+
"ControlName": "Product",
|
|
256
|
+
"labeltext": "[텍스트]",
|
|
257
|
+
"ControlStyle": "None",
|
|
258
|
+
"Caption": "",
|
|
259
|
+
"isColumnCtrl": false,
|
|
260
|
+
"design": {
|
|
261
|
+
"font": "body-medium",
|
|
262
|
+
"w": "full",
|
|
263
|
+
"h": "text"
|
|
264
|
+
}
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"Id": "f_1010",
|
|
268
|
+
"ControlType": "Label",
|
|
269
|
+
"ControlName": "Code",
|
|
270
|
+
"labeltext": "[텍스트]",
|
|
271
|
+
"ControlStyle": "None",
|
|
272
|
+
"Caption": "",
|
|
273
|
+
"isColumnCtrl": false,
|
|
274
|
+
"design": {
|
|
275
|
+
"font": "body-small",
|
|
276
|
+
"color": "body-soft",
|
|
277
|
+
"w": "full",
|
|
278
|
+
"h": "text"
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"Id": "f_1011",
|
|
283
|
+
"ControlType": "Label",
|
|
284
|
+
"ControlName": "Dest",
|
|
285
|
+
"labeltext": "[텍스트]",
|
|
286
|
+
"ControlStyle": "None",
|
|
287
|
+
"Caption": "",
|
|
288
|
+
"isColumnCtrl": false,
|
|
289
|
+
"design": {
|
|
290
|
+
"font": "body-small",
|
|
291
|
+
"color": "body-soft",
|
|
292
|
+
"w": "text",
|
|
293
|
+
"h": "text",
|
|
294
|
+
"fixed": true
|
|
295
|
+
}
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"Id": "f_1015",
|
|
299
|
+
"ContentsName": "QtyRow",
|
|
300
|
+
"ContentsType": "Group",
|
|
301
|
+
"ContentStyle": "None",
|
|
302
|
+
"UseDataConnection": false,
|
|
303
|
+
"design": {
|
|
304
|
+
"flex": {
|
|
305
|
+
"dir": "row",
|
|
306
|
+
"valign": "center",
|
|
307
|
+
"gap": 8
|
|
308
|
+
},
|
|
309
|
+
"w": "full"
|
|
310
|
+
},
|
|
311
|
+
"Contents": [
|
|
312
|
+
{
|
|
313
|
+
"Id": "f_1012",
|
|
314
|
+
"ControlType": "Label",
|
|
315
|
+
"ControlName": "Count",
|
|
316
|
+
"labeltext": "[텍스트]",
|
|
317
|
+
"ControlStyle": "None",
|
|
318
|
+
"Caption": "",
|
|
319
|
+
"isColumnCtrl": false,
|
|
320
|
+
"design": {
|
|
321
|
+
"font": "body-medium",
|
|
322
|
+
"color": "success",
|
|
323
|
+
"w": "text",
|
|
324
|
+
"h": "text",
|
|
325
|
+
"fixed": true
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"Id": "f_1013",
|
|
330
|
+
"ControlType": "Label",
|
|
331
|
+
"ControlName": "Sep",
|
|
332
|
+
"labeltext": "/",
|
|
333
|
+
"ControlStyle": "None",
|
|
334
|
+
"Caption": "",
|
|
335
|
+
"isColumnCtrl": false,
|
|
336
|
+
"design": {
|
|
337
|
+
"font": "body-medium",
|
|
338
|
+
"color": "muted",
|
|
339
|
+
"w": "text",
|
|
340
|
+
"h": "text",
|
|
341
|
+
"fixed": true
|
|
342
|
+
}
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"Id": "f_1014",
|
|
346
|
+
"ControlType": "Label",
|
|
347
|
+
"ControlName": "Weight",
|
|
348
|
+
"labeltext": "[텍스트]",
|
|
349
|
+
"ControlStyle": "None",
|
|
350
|
+
"Caption": "",
|
|
351
|
+
"isColumnCtrl": false,
|
|
352
|
+
"design": {
|
|
353
|
+
"font": "body-medium",
|
|
354
|
+
"color": "success",
|
|
355
|
+
"w": "text",
|
|
356
|
+
"h": "text",
|
|
357
|
+
"fixed": true
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
]
|
|
361
|
+
}
|
|
362
|
+
]
|
|
363
|
+
}
|
|
364
|
+
]
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"Id": "f_1032",
|
|
368
|
+
"ContentsName": "StatementCard",
|
|
369
|
+
"ContentsType": "Group",
|
|
370
|
+
"ContentStyle": "None",
|
|
371
|
+
"UseDataConnection": false,
|
|
372
|
+
"design": {
|
|
373
|
+
"flex": {
|
|
374
|
+
"dir": "column",
|
|
375
|
+
"gap": 16
|
|
376
|
+
},
|
|
377
|
+
"w": "full",
|
|
378
|
+
"bg": "card",
|
|
379
|
+
"border": "hairline",
|
|
380
|
+
"radius": "12",
|
|
381
|
+
"p": "16"
|
|
382
|
+
},
|
|
383
|
+
"Contents": [
|
|
384
|
+
{
|
|
385
|
+
"Id": "f_1023",
|
|
386
|
+
"ContentsName": "CardHeader",
|
|
387
|
+
"ContentsType": "Group",
|
|
388
|
+
"ContentStyle": "None",
|
|
389
|
+
"UseDataConnection": false,
|
|
390
|
+
"design": {
|
|
391
|
+
"flex": {
|
|
392
|
+
"dir": "wrap",
|
|
393
|
+
"gap": 4
|
|
394
|
+
},
|
|
395
|
+
"w": "full",
|
|
396
|
+
"p": "0 0 16 0",
|
|
397
|
+
"border": {
|
|
398
|
+
"color": "hairline-strong",
|
|
399
|
+
"sides": {
|
|
400
|
+
"b": "1"
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
},
|
|
404
|
+
"Contents": [
|
|
405
|
+
{
|
|
406
|
+
"Id": "f_1018",
|
|
407
|
+
"ControlType": "Label",
|
|
408
|
+
"ControlName": "Chip",
|
|
409
|
+
"labeltext": "[상태]",
|
|
410
|
+
"ControlStyle": "None",
|
|
411
|
+
"Caption": "",
|
|
412
|
+
"isColumnCtrl": false,
|
|
413
|
+
"design": {
|
|
414
|
+
"font": "body-small",
|
|
415
|
+
"radius": "9999",
|
|
416
|
+
"p": "4 8",
|
|
417
|
+
"w": "text",
|
|
418
|
+
"h": "text",
|
|
419
|
+
"fixed": true,
|
|
420
|
+
"color": "body-soft",
|
|
421
|
+
"border": "hairline-strong"
|
|
422
|
+
}
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"Id": "f_1019",
|
|
426
|
+
"ControlType": "Label",
|
|
427
|
+
"ControlName": "Chip",
|
|
428
|
+
"labeltext": "[상태]",
|
|
429
|
+
"ControlStyle": "None",
|
|
430
|
+
"Caption": "",
|
|
431
|
+
"isColumnCtrl": false,
|
|
432
|
+
"design": {
|
|
433
|
+
"font": "body-small",
|
|
434
|
+
"radius": "9999",
|
|
435
|
+
"p": "4 8",
|
|
436
|
+
"w": "text",
|
|
437
|
+
"h": "text",
|
|
438
|
+
"fixed": true,
|
|
439
|
+
"color": "body",
|
|
440
|
+
"bg": "subtle"
|
|
441
|
+
}
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"Id": "f_1022",
|
|
445
|
+
"ContentsName": "NameRow",
|
|
446
|
+
"ContentsType": "Group",
|
|
447
|
+
"ContentStyle": "None",
|
|
448
|
+
"UseDataConnection": false,
|
|
449
|
+
"design": {
|
|
450
|
+
"flex": {
|
|
451
|
+
"dir": "row",
|
|
452
|
+
"valign": "center",
|
|
453
|
+
"gap": 8
|
|
454
|
+
},
|
|
455
|
+
"w": "full"
|
|
456
|
+
},
|
|
457
|
+
"Contents": [
|
|
458
|
+
{
|
|
459
|
+
"Id": "f_1020",
|
|
460
|
+
"ControlType": "Label",
|
|
461
|
+
"ControlName": "Company",
|
|
462
|
+
"labeltext": "[제목]",
|
|
463
|
+
"ControlStyle": "None",
|
|
464
|
+
"Caption": "",
|
|
465
|
+
"isColumnCtrl": false,
|
|
466
|
+
"design": {
|
|
467
|
+
"font": "title-large",
|
|
468
|
+
"w": "text",
|
|
469
|
+
"h": "text",
|
|
470
|
+
"fixed": true
|
|
471
|
+
}
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
"Id": "f_1021",
|
|
475
|
+
"ControlType": "Label",
|
|
476
|
+
"ControlName": "Person",
|
|
477
|
+
"labeltext": "[텍스트]",
|
|
478
|
+
"ControlStyle": "None",
|
|
479
|
+
"Caption": "",
|
|
480
|
+
"isColumnCtrl": false,
|
|
481
|
+
"design": {
|
|
482
|
+
"font": "body-small",
|
|
483
|
+
"color": "body-soft",
|
|
484
|
+
"w": "text",
|
|
485
|
+
"h": "text",
|
|
486
|
+
"fixed": true
|
|
487
|
+
}
|
|
488
|
+
}
|
|
489
|
+
]
|
|
490
|
+
}
|
|
491
|
+
]
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"Id": "f_1031",
|
|
495
|
+
"ContentsName": "CardBody",
|
|
496
|
+
"ContentsType": "Group",
|
|
497
|
+
"ContentStyle": "None",
|
|
498
|
+
"UseDataConnection": false,
|
|
499
|
+
"design": {
|
|
500
|
+
"flex": {
|
|
501
|
+
"dir": "column",
|
|
502
|
+
"gap": 4
|
|
503
|
+
},
|
|
504
|
+
"w": "full"
|
|
505
|
+
},
|
|
506
|
+
"Contents": [
|
|
507
|
+
{
|
|
508
|
+
"Id": "f_1024",
|
|
509
|
+
"ControlType": "Label",
|
|
510
|
+
"ControlName": "Product",
|
|
511
|
+
"labeltext": "[텍스트]",
|
|
512
|
+
"ControlStyle": "None",
|
|
513
|
+
"Caption": "",
|
|
514
|
+
"isColumnCtrl": false,
|
|
515
|
+
"design": {
|
|
516
|
+
"font": "body-medium",
|
|
517
|
+
"w": "full",
|
|
518
|
+
"h": "text"
|
|
519
|
+
}
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
"Id": "f_1025",
|
|
523
|
+
"ControlType": "Label",
|
|
524
|
+
"ControlName": "Code",
|
|
525
|
+
"labeltext": "[텍스트]",
|
|
526
|
+
"ControlStyle": "None",
|
|
527
|
+
"Caption": "",
|
|
528
|
+
"isColumnCtrl": false,
|
|
529
|
+
"design": {
|
|
530
|
+
"font": "body-small",
|
|
531
|
+
"color": "body-soft",
|
|
532
|
+
"w": "full",
|
|
533
|
+
"h": "text"
|
|
534
|
+
}
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"Id": "f_1026",
|
|
538
|
+
"ControlType": "Label",
|
|
539
|
+
"ControlName": "Dest",
|
|
540
|
+
"labeltext": "[텍스트]",
|
|
541
|
+
"ControlStyle": "None",
|
|
542
|
+
"Caption": "",
|
|
543
|
+
"isColumnCtrl": false,
|
|
544
|
+
"design": {
|
|
545
|
+
"font": "body-small",
|
|
546
|
+
"color": "body-soft",
|
|
547
|
+
"w": "text",
|
|
548
|
+
"h": "text",
|
|
549
|
+
"fixed": true
|
|
550
|
+
}
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"Id": "f_1030",
|
|
554
|
+
"ContentsName": "QtyRow",
|
|
555
|
+
"ContentsType": "Group",
|
|
556
|
+
"ContentStyle": "None",
|
|
557
|
+
"UseDataConnection": false,
|
|
558
|
+
"design": {
|
|
559
|
+
"flex": {
|
|
560
|
+
"dir": "row",
|
|
561
|
+
"valign": "center",
|
|
562
|
+
"gap": 8
|
|
563
|
+
},
|
|
564
|
+
"w": "full"
|
|
565
|
+
},
|
|
566
|
+
"Contents": [
|
|
567
|
+
{
|
|
568
|
+
"Id": "f_1027",
|
|
569
|
+
"ControlType": "Label",
|
|
570
|
+
"ControlName": "Count",
|
|
571
|
+
"labeltext": "[텍스트]",
|
|
572
|
+
"ControlStyle": "None",
|
|
573
|
+
"Caption": "",
|
|
574
|
+
"isColumnCtrl": false,
|
|
575
|
+
"design": {
|
|
576
|
+
"font": "body-medium",
|
|
577
|
+
"color": "success",
|
|
578
|
+
"w": "text",
|
|
579
|
+
"h": "text",
|
|
580
|
+
"fixed": true
|
|
581
|
+
}
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
"Id": "f_1028",
|
|
585
|
+
"ControlType": "Label",
|
|
586
|
+
"ControlName": "Sep",
|
|
587
|
+
"labeltext": "/",
|
|
588
|
+
"ControlStyle": "None",
|
|
589
|
+
"Caption": "",
|
|
590
|
+
"isColumnCtrl": false,
|
|
591
|
+
"design": {
|
|
592
|
+
"font": "body-medium",
|
|
593
|
+
"color": "muted",
|
|
594
|
+
"w": "text",
|
|
595
|
+
"h": "text",
|
|
596
|
+
"fixed": true
|
|
597
|
+
}
|
|
598
|
+
},
|
|
599
|
+
{
|
|
600
|
+
"Id": "f_1029",
|
|
601
|
+
"ControlType": "Label",
|
|
602
|
+
"ControlName": "Weight",
|
|
603
|
+
"labeltext": "[텍스트]",
|
|
604
|
+
"ControlStyle": "None",
|
|
605
|
+
"Caption": "",
|
|
606
|
+
"isColumnCtrl": false,
|
|
607
|
+
"design": {
|
|
608
|
+
"font": "body-medium",
|
|
609
|
+
"color": "success",
|
|
610
|
+
"w": "text",
|
|
611
|
+
"h": "text",
|
|
612
|
+
"fixed": true
|
|
613
|
+
}
|
|
614
|
+
}
|
|
615
|
+
]
|
|
616
|
+
}
|
|
617
|
+
]
|
|
618
|
+
}
|
|
619
|
+
]
|
|
620
|
+
}
|
|
621
|
+
]
|
|
622
|
+
}
|
|
623
|
+
]
|
|
624
|
+
}
|
|
625
|
+
],
|
|
626
|
+
"Next": [
|
|
627
|
+
"Step2"
|
|
628
|
+
],
|
|
629
|
+
"UseStepHeader": false,
|
|
630
|
+
"UseBackButton": false,
|
|
631
|
+
"UseBottomButton": false,
|
|
632
|
+
"UseEvents": false,
|
|
633
|
+
"Events": []
|
|
634
|
+
},
|
|
635
|
+
"Step2": {
|
|
636
|
+
"StepName": "[스텝명]",
|
|
637
|
+
"StepType": "StepView",
|
|
638
|
+
"StepRow": 0,
|
|
639
|
+
"StepCol": 0,
|
|
640
|
+
"FixedContentsTop": [
|
|
641
|
+
{
|
|
642
|
+
"Id": "f_1050",
|
|
643
|
+
"ContentsName": "FilterHeader",
|
|
644
|
+
"ContentsType": "Group",
|
|
645
|
+
"ContentStyle": "None",
|
|
646
|
+
"UseDataConnection": false,
|
|
647
|
+
"design": {
|
|
648
|
+
"flex": {
|
|
649
|
+
"dir": "row",
|
|
650
|
+
"valign": "center"
|
|
651
|
+
},
|
|
652
|
+
"w": "full",
|
|
653
|
+
"h": "text",
|
|
654
|
+
"p": "12 20",
|
|
655
|
+
"bg": "card"
|
|
656
|
+
},
|
|
657
|
+
"Contents": [
|
|
658
|
+
{
|
|
659
|
+
"Id": "f_1048",
|
|
660
|
+
"ControlType": "Label",
|
|
661
|
+
"ControlName": "FilterTitle",
|
|
662
|
+
"labeltext": "[제목]",
|
|
663
|
+
"ControlStyle": "None",
|
|
664
|
+
"Caption": "",
|
|
665
|
+
"isColumnCtrl": false,
|
|
666
|
+
"design": {
|
|
667
|
+
"font": "title-large",
|
|
668
|
+
"color": "body",
|
|
669
|
+
"w": "full",
|
|
670
|
+
"h": "text"
|
|
671
|
+
}
|
|
672
|
+
},
|
|
673
|
+
{
|
|
674
|
+
"Id": "f_1049",
|
|
675
|
+
"ControlType": "Label",
|
|
676
|
+
"ControlName": "Close",
|
|
677
|
+
"labeltext": "✕",
|
|
678
|
+
"ControlStyle": "None",
|
|
679
|
+
"Caption": "",
|
|
680
|
+
"isColumnCtrl": false,
|
|
681
|
+
"design": {
|
|
682
|
+
"font": "title-large",
|
|
683
|
+
"color": "body-soft",
|
|
684
|
+
"w": "text",
|
|
685
|
+
"h": "text",
|
|
686
|
+
"fixed": true
|
|
687
|
+
}
|
|
688
|
+
}
|
|
689
|
+
]
|
|
690
|
+
}
|
|
691
|
+
],
|
|
692
|
+
"Contents": [
|
|
693
|
+
{
|
|
694
|
+
"Id": "f_1051",
|
|
695
|
+
"ContentsName": "FilterFields",
|
|
696
|
+
"ContentsType": "Group",
|
|
697
|
+
"ContentStyle": "None",
|
|
698
|
+
"UseDataConnection": false,
|
|
699
|
+
"design": {
|
|
700
|
+
"flex": {
|
|
701
|
+
"dir": "column",
|
|
702
|
+
"gap": 12
|
|
703
|
+
},
|
|
704
|
+
"w": "full",
|
|
705
|
+
"p": "16 20",
|
|
706
|
+
"bg": "canvas"
|
|
707
|
+
},
|
|
708
|
+
"Contents": [
|
|
709
|
+
{
|
|
710
|
+
"ControlType": "InputDate",
|
|
711
|
+
"Id": "f_1036",
|
|
712
|
+
"ControlName": "FieldStmtDate",
|
|
713
|
+
"ControlName2": "FieldStmtDate",
|
|
714
|
+
"Caption": "",
|
|
715
|
+
"isColumnCtrl": false,
|
|
716
|
+
"ControlStyle": "None",
|
|
717
|
+
"DateFormat": "YYYY.MM.DD",
|
|
718
|
+
"Placeholder": "[입력 안내]",
|
|
719
|
+
"DisplayValue": "",
|
|
720
|
+
"design": {
|
|
721
|
+
"w": "full",
|
|
722
|
+
"h": "48px",
|
|
723
|
+
"font": "body-medium",
|
|
724
|
+
"border": "hairline-strong",
|
|
725
|
+
"radius": "8",
|
|
726
|
+
"caption": {
|
|
727
|
+
"text": "[필드명]",
|
|
728
|
+
"font": "body-small",
|
|
729
|
+
"pos": "top"
|
|
730
|
+
}
|
|
731
|
+
},
|
|
732
|
+
"Dialog": {
|
|
733
|
+
"Layouts": [
|
|
734
|
+
{
|
|
735
|
+
"ContentsType": "Layout",
|
|
736
|
+
"Controls": [
|
|
737
|
+
{
|
|
738
|
+
"ControlType": "Calendar",
|
|
739
|
+
"Id": "f_1035",
|
|
740
|
+
"CalendarType": "dayCalendar",
|
|
741
|
+
"SelectType": "FromTo",
|
|
742
|
+
"UseDlgSetting": false,
|
|
743
|
+
"StartDate": {
|
|
744
|
+
"Ckeys": []
|
|
745
|
+
},
|
|
746
|
+
"EndDate": {
|
|
747
|
+
"Ckeys": []
|
|
748
|
+
},
|
|
749
|
+
"UseMultiData": false,
|
|
750
|
+
"UseCategory": false
|
|
751
|
+
}
|
|
752
|
+
]
|
|
753
|
+
}
|
|
754
|
+
]
|
|
755
|
+
}
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
"ControlType": "InputText",
|
|
759
|
+
"ControlDefaultName": "InputText",
|
|
760
|
+
"ControlName": "FieldStmtNo",
|
|
761
|
+
"ControlName2": "FieldStmtNo",
|
|
762
|
+
"ControlStyle": "None",
|
|
763
|
+
"Caption": "",
|
|
764
|
+
"isColumnCtrl": false,
|
|
765
|
+
"UseEvents": false,
|
|
766
|
+
"DisplayType": "CtrlDisplayCkey",
|
|
767
|
+
"InputType": "text",
|
|
768
|
+
"Id": "f_1037",
|
|
769
|
+
"Placeholder": "[입력 안내]",
|
|
770
|
+
"design": {
|
|
771
|
+
"w": "full",
|
|
772
|
+
"h": "48px",
|
|
773
|
+
"font": "body-medium",
|
|
774
|
+
"border": "hairline-strong",
|
|
775
|
+
"radius": "8",
|
|
776
|
+
"caption": {
|
|
777
|
+
"text": "[필드명]",
|
|
778
|
+
"font": "body-small",
|
|
779
|
+
"pos": "top"
|
|
780
|
+
}
|
|
781
|
+
}
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
"ControlType": "InputText",
|
|
785
|
+
"ControlDefaultName": "InputText",
|
|
786
|
+
"ControlName": "FieldShipType",
|
|
787
|
+
"ControlName2": "FieldShipType",
|
|
788
|
+
"ControlStyle": "None",
|
|
789
|
+
"Caption": "",
|
|
790
|
+
"isColumnCtrl": false,
|
|
791
|
+
"UseEvents": false,
|
|
792
|
+
"DisplayType": "CtrlDisplayCkey",
|
|
793
|
+
"InputType": "text",
|
|
794
|
+
"Id": "f_1038",
|
|
795
|
+
"Placeholder": "[입력 안내]",
|
|
796
|
+
"design": {
|
|
797
|
+
"w": "full",
|
|
798
|
+
"h": "48px",
|
|
799
|
+
"font": "body-medium",
|
|
800
|
+
"border": "hairline-strong",
|
|
801
|
+
"radius": "8",
|
|
802
|
+
"caption": {
|
|
803
|
+
"text": "[필드명]",
|
|
804
|
+
"font": "body-small",
|
|
805
|
+
"pos": "top"
|
|
806
|
+
}
|
|
807
|
+
}
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
"ControlType": "InputText",
|
|
811
|
+
"ControlDefaultName": "InputText",
|
|
812
|
+
"ControlName": "FieldDept",
|
|
813
|
+
"ControlName2": "FieldDept",
|
|
814
|
+
"ControlStyle": "None",
|
|
815
|
+
"Caption": "",
|
|
816
|
+
"isColumnCtrl": false,
|
|
817
|
+
"UseEvents": false,
|
|
818
|
+
"DisplayType": "CtrlDisplayCkey",
|
|
819
|
+
"InputType": "text",
|
|
820
|
+
"Id": "f_1039",
|
|
821
|
+
"Placeholder": "[입력 안내]",
|
|
822
|
+
"design": {
|
|
823
|
+
"w": "full",
|
|
824
|
+
"h": "48px",
|
|
825
|
+
"font": "body-medium",
|
|
826
|
+
"border": "hairline-strong",
|
|
827
|
+
"radius": "8",
|
|
828
|
+
"caption": {
|
|
829
|
+
"text": "[필드명]",
|
|
830
|
+
"font": "body-small",
|
|
831
|
+
"pos": "top"
|
|
832
|
+
}
|
|
833
|
+
}
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
"ControlType": "InputText",
|
|
837
|
+
"ControlDefaultName": "InputText",
|
|
838
|
+
"ControlName": "FieldOwner",
|
|
839
|
+
"ControlName2": "FieldOwner",
|
|
840
|
+
"ControlStyle": "None",
|
|
841
|
+
"Caption": "",
|
|
842
|
+
"isColumnCtrl": false,
|
|
843
|
+
"UseEvents": false,
|
|
844
|
+
"DisplayType": "CtrlDisplayCkey",
|
|
845
|
+
"InputType": "text",
|
|
846
|
+
"Id": "f_1040",
|
|
847
|
+
"Placeholder": "[입력 안내]",
|
|
848
|
+
"design": {
|
|
849
|
+
"w": "full",
|
|
850
|
+
"h": "48px",
|
|
851
|
+
"font": "body-medium",
|
|
852
|
+
"border": "hairline-strong",
|
|
853
|
+
"radius": "8",
|
|
854
|
+
"caption": {
|
|
855
|
+
"text": "[필드명]",
|
|
856
|
+
"font": "body-small",
|
|
857
|
+
"pos": "top"
|
|
858
|
+
}
|
|
859
|
+
}
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
"ControlType": "InputText",
|
|
863
|
+
"ControlDefaultName": "InputText",
|
|
864
|
+
"ControlName": "FieldClient",
|
|
865
|
+
"ControlName2": "FieldClient",
|
|
866
|
+
"ControlStyle": "None",
|
|
867
|
+
"Caption": "",
|
|
868
|
+
"isColumnCtrl": false,
|
|
869
|
+
"UseEvents": false,
|
|
870
|
+
"DisplayType": "CtrlDisplayCkey",
|
|
871
|
+
"InputType": "text",
|
|
872
|
+
"Id": "f_1041",
|
|
873
|
+
"Placeholder": "[입력 안내]",
|
|
874
|
+
"design": {
|
|
875
|
+
"w": "full",
|
|
876
|
+
"h": "48px",
|
|
877
|
+
"font": "body-medium",
|
|
878
|
+
"border": "hairline-strong",
|
|
879
|
+
"radius": "8",
|
|
880
|
+
"caption": {
|
|
881
|
+
"text": "[필드명]",
|
|
882
|
+
"font": "body-small",
|
|
883
|
+
"pos": "top"
|
|
884
|
+
}
|
|
885
|
+
}
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
"ControlType": "InputText",
|
|
889
|
+
"ControlDefaultName": "InputText",
|
|
890
|
+
"ControlName": "FieldDeliverClient",
|
|
891
|
+
"ControlName2": "FieldDeliverClient",
|
|
892
|
+
"ControlStyle": "None",
|
|
893
|
+
"Caption": "",
|
|
894
|
+
"isColumnCtrl": false,
|
|
895
|
+
"UseEvents": false,
|
|
896
|
+
"DisplayType": "CtrlDisplayCkey",
|
|
897
|
+
"InputType": "text",
|
|
898
|
+
"Id": "f_1042",
|
|
899
|
+
"Placeholder": "[입력 안내]",
|
|
900
|
+
"design": {
|
|
901
|
+
"w": "full",
|
|
902
|
+
"h": "48px",
|
|
903
|
+
"font": "body-medium",
|
|
904
|
+
"border": "hairline-strong",
|
|
905
|
+
"radius": "8",
|
|
906
|
+
"caption": {
|
|
907
|
+
"text": "[필드명]",
|
|
908
|
+
"font": "body-small",
|
|
909
|
+
"pos": "top"
|
|
910
|
+
}
|
|
911
|
+
}
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
"ControlType": "InputText",
|
|
915
|
+
"ControlDefaultName": "InputText",
|
|
916
|
+
"ControlName": "FieldItemName",
|
|
917
|
+
"ControlName2": "FieldItemName",
|
|
918
|
+
"ControlStyle": "None",
|
|
919
|
+
"Caption": "",
|
|
920
|
+
"isColumnCtrl": false,
|
|
921
|
+
"UseEvents": false,
|
|
922
|
+
"DisplayType": "CtrlDisplayCkey",
|
|
923
|
+
"InputType": "text",
|
|
924
|
+
"Id": "f_1043",
|
|
925
|
+
"Placeholder": "[입력 안내]",
|
|
926
|
+
"design": {
|
|
927
|
+
"w": "full",
|
|
928
|
+
"h": "48px",
|
|
929
|
+
"font": "body-medium",
|
|
930
|
+
"border": "hairline-strong",
|
|
931
|
+
"radius": "8",
|
|
932
|
+
"caption": {
|
|
933
|
+
"text": "[필드명]",
|
|
934
|
+
"font": "body-small",
|
|
935
|
+
"pos": "top"
|
|
936
|
+
}
|
|
937
|
+
}
|
|
938
|
+
},
|
|
939
|
+
{
|
|
940
|
+
"ControlType": "InputText",
|
|
941
|
+
"ControlDefaultName": "InputText",
|
|
942
|
+
"ControlName": "FieldItemNo",
|
|
943
|
+
"ControlName2": "FieldItemNo",
|
|
944
|
+
"ControlStyle": "None",
|
|
945
|
+
"Caption": "",
|
|
946
|
+
"isColumnCtrl": false,
|
|
947
|
+
"UseEvents": false,
|
|
948
|
+
"DisplayType": "CtrlDisplayCkey",
|
|
949
|
+
"InputType": "text",
|
|
950
|
+
"Id": "f_1044",
|
|
951
|
+
"Placeholder": "[입력 안내]",
|
|
952
|
+
"design": {
|
|
953
|
+
"w": "full",
|
|
954
|
+
"h": "48px",
|
|
955
|
+
"font": "body-medium",
|
|
956
|
+
"border": "hairline-strong",
|
|
957
|
+
"radius": "8",
|
|
958
|
+
"caption": {
|
|
959
|
+
"text": "[필드명]",
|
|
960
|
+
"font": "body-small",
|
|
961
|
+
"pos": "top"
|
|
962
|
+
}
|
|
963
|
+
}
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
"ControlType": "InputText",
|
|
967
|
+
"ControlDefaultName": "InputText",
|
|
968
|
+
"ControlName": "FieldLotNo",
|
|
969
|
+
"ControlName2": "FieldLotNo",
|
|
970
|
+
"ControlStyle": "None",
|
|
971
|
+
"Caption": "",
|
|
972
|
+
"isColumnCtrl": false,
|
|
973
|
+
"UseEvents": false,
|
|
974
|
+
"DisplayType": "CtrlDisplayCkey",
|
|
975
|
+
"InputType": "text",
|
|
976
|
+
"Id": "f_1045",
|
|
977
|
+
"Placeholder": "[입력 안내]",
|
|
978
|
+
"design": {
|
|
979
|
+
"w": "full",
|
|
980
|
+
"h": "48px",
|
|
981
|
+
"font": "body-medium",
|
|
982
|
+
"border": "hairline-strong",
|
|
983
|
+
"radius": "8",
|
|
984
|
+
"caption": {
|
|
985
|
+
"text": "[필드명]",
|
|
986
|
+
"font": "body-small",
|
|
987
|
+
"pos": "top"
|
|
988
|
+
}
|
|
989
|
+
}
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
"ControlType": "InputText",
|
|
993
|
+
"ControlDefaultName": "InputText",
|
|
994
|
+
"ControlName": "FieldCarNo",
|
|
995
|
+
"ControlName2": "FieldCarNo",
|
|
996
|
+
"ControlStyle": "None",
|
|
997
|
+
"Caption": "",
|
|
998
|
+
"isColumnCtrl": false,
|
|
999
|
+
"UseEvents": false,
|
|
1000
|
+
"DisplayType": "CtrlDisplayCkey",
|
|
1001
|
+
"InputType": "text",
|
|
1002
|
+
"Id": "f_1046",
|
|
1003
|
+
"Placeholder": "[입력 안내]",
|
|
1004
|
+
"design": {
|
|
1005
|
+
"w": "full",
|
|
1006
|
+
"h": "48px",
|
|
1007
|
+
"font": "body-medium",
|
|
1008
|
+
"border": "hairline-strong",
|
|
1009
|
+
"radius": "8",
|
|
1010
|
+
"caption": {
|
|
1011
|
+
"text": "[필드명]",
|
|
1012
|
+
"font": "body-small",
|
|
1013
|
+
"pos": "top"
|
|
1014
|
+
}
|
|
1015
|
+
}
|
|
1016
|
+
},
|
|
1017
|
+
{
|
|
1018
|
+
"ControlType": "InputText",
|
|
1019
|
+
"ControlDefaultName": "InputText",
|
|
1020
|
+
"ControlName": "FieldBizUnit",
|
|
1021
|
+
"ControlName2": "FieldBizUnit",
|
|
1022
|
+
"ControlStyle": "None",
|
|
1023
|
+
"Caption": "",
|
|
1024
|
+
"isColumnCtrl": false,
|
|
1025
|
+
"UseEvents": false,
|
|
1026
|
+
"DisplayType": "CtrlDisplayCkey",
|
|
1027
|
+
"InputType": "text",
|
|
1028
|
+
"Id": "f_1047",
|
|
1029
|
+
"Placeholder": "[입력 안내]",
|
|
1030
|
+
"design": {
|
|
1031
|
+
"w": "full",
|
|
1032
|
+
"h": "48px",
|
|
1033
|
+
"font": "body-medium",
|
|
1034
|
+
"border": "hairline-strong",
|
|
1035
|
+
"radius": "8",
|
|
1036
|
+
"caption": {
|
|
1037
|
+
"text": "[필드명]",
|
|
1038
|
+
"font": "body-small",
|
|
1039
|
+
"pos": "top"
|
|
1040
|
+
}
|
|
1041
|
+
}
|
|
1042
|
+
}
|
|
1043
|
+
]
|
|
1044
|
+
}
|
|
1045
|
+
],
|
|
1046
|
+
"FixedContentsBottom": [
|
|
1047
|
+
{
|
|
1048
|
+
"Id": "f_1052",
|
|
1049
|
+
"ContentsName": "BottomBar",
|
|
1050
|
+
"ContentsType": "Group",
|
|
1051
|
+
"ContentStyle": "None",
|
|
1052
|
+
"UseDataConnection": false,
|
|
1053
|
+
"design": {
|
|
1054
|
+
"flex": {
|
|
1055
|
+
"dir": "column"
|
|
1056
|
+
},
|
|
1057
|
+
"w": "full",
|
|
1058
|
+
"p": "8 20",
|
|
1059
|
+
"bg": "card"
|
|
1060
|
+
},
|
|
1061
|
+
"Contents": [
|
|
1062
|
+
{
|
|
1063
|
+
"button": {
|
|
1064
|
+
"label": "[버튼]",
|
|
1065
|
+
"variant": "primary",
|
|
1066
|
+
"width": "full",
|
|
1067
|
+
"moveStep": "Step4"
|
|
1068
|
+
}
|
|
1069
|
+
}
|
|
1070
|
+
]
|
|
1071
|
+
}
|
|
1072
|
+
],
|
|
1073
|
+
"Next": [
|
|
1074
|
+
"Step4"
|
|
1075
|
+
],
|
|
1076
|
+
"UseStepHeader": false,
|
|
1077
|
+
"UseBackButton": false,
|
|
1078
|
+
"UseBottomButton": false,
|
|
1079
|
+
"UseEvents": false,
|
|
1080
|
+
"Events": []
|
|
1081
|
+
},
|
|
1082
|
+
"Step4": {
|
|
1083
|
+
"StepName": "[스텝명]",
|
|
1084
|
+
"StepType": "StepView",
|
|
1085
|
+
"StepRow": 0,
|
|
1086
|
+
"StepCol": 0,
|
|
1087
|
+
"Padding": {
|
|
1088
|
+
"All": "0",
|
|
1089
|
+
"SizeUnit": "px",
|
|
1090
|
+
"UseEach": false,
|
|
1091
|
+
"UseAuto": true
|
|
1092
|
+
},
|
|
1093
|
+
"Contents": [
|
|
1094
|
+
{
|
|
1095
|
+
"Id": "f_1066",
|
|
1096
|
+
"ContentsName": "DetailCard",
|
|
1097
|
+
"ContentsType": "Group",
|
|
1098
|
+
"ContentStyle": "None",
|
|
1099
|
+
"UseDataConnection": false,
|
|
1100
|
+
"design": {
|
|
1101
|
+
"flex": {
|
|
1102
|
+
"dir": "column",
|
|
1103
|
+
"gap": 4
|
|
1104
|
+
},
|
|
1105
|
+
"w": "full",
|
|
1106
|
+
"p": "16",
|
|
1107
|
+
"border": {
|
|
1108
|
+
"color": "hairline",
|
|
1109
|
+
"sides": {
|
|
1110
|
+
"b": "8"
|
|
1111
|
+
}
|
|
1112
|
+
}
|
|
1113
|
+
},
|
|
1114
|
+
"Contents": [
|
|
1115
|
+
{
|
|
1116
|
+
"Id": "f_1058",
|
|
1117
|
+
"ContentsName": "DetailHeader",
|
|
1118
|
+
"ContentsType": "Group",
|
|
1119
|
+
"ContentStyle": "None",
|
|
1120
|
+
"UseDataConnection": false,
|
|
1121
|
+
"design": {
|
|
1122
|
+
"flex": {
|
|
1123
|
+
"dir": "wrap",
|
|
1124
|
+
"gap": 4
|
|
1125
|
+
},
|
|
1126
|
+
"w": "full"
|
|
1127
|
+
},
|
|
1128
|
+
"Contents": [
|
|
1129
|
+
{
|
|
1130
|
+
"Id": "f_1053",
|
|
1131
|
+
"ControlType": "Label",
|
|
1132
|
+
"ControlName": "Chip",
|
|
1133
|
+
"labeltext": "[상태]",
|
|
1134
|
+
"ControlStyle": "None",
|
|
1135
|
+
"Caption": "",
|
|
1136
|
+
"isColumnCtrl": false,
|
|
1137
|
+
"design": {
|
|
1138
|
+
"font": "body-small",
|
|
1139
|
+
"radius": "9999",
|
|
1140
|
+
"p": "4 8",
|
|
1141
|
+
"w": "text",
|
|
1142
|
+
"h": "text",
|
|
1143
|
+
"fixed": true,
|
|
1144
|
+
"color": "body-soft",
|
|
1145
|
+
"border": "hairline-strong"
|
|
1146
|
+
}
|
|
1147
|
+
},
|
|
1148
|
+
{
|
|
1149
|
+
"Id": "f_1054",
|
|
1150
|
+
"ControlType": "Label",
|
|
1151
|
+
"ControlName": "Chip",
|
|
1152
|
+
"labeltext": "[상태]",
|
|
1153
|
+
"ControlStyle": "None",
|
|
1154
|
+
"Caption": "",
|
|
1155
|
+
"isColumnCtrl": false,
|
|
1156
|
+
"design": {
|
|
1157
|
+
"font": "body-small",
|
|
1158
|
+
"radius": "9999",
|
|
1159
|
+
"p": "4 8",
|
|
1160
|
+
"w": "text",
|
|
1161
|
+
"h": "text",
|
|
1162
|
+
"fixed": true,
|
|
1163
|
+
"color": "body",
|
|
1164
|
+
"bg": "subtle"
|
|
1165
|
+
}
|
|
1166
|
+
},
|
|
1167
|
+
{
|
|
1168
|
+
"Id": "f_1057",
|
|
1169
|
+
"ContentsName": "NameRow",
|
|
1170
|
+
"ContentsType": "Group",
|
|
1171
|
+
"ContentStyle": "None",
|
|
1172
|
+
"UseDataConnection": false,
|
|
1173
|
+
"design": {
|
|
1174
|
+
"flex": {
|
|
1175
|
+
"dir": "row",
|
|
1176
|
+
"valign": "bottom",
|
|
1177
|
+
"gap": 8
|
|
1178
|
+
},
|
|
1179
|
+
"w": "full",
|
|
1180
|
+
"p": "0 0 12 0"
|
|
1181
|
+
},
|
|
1182
|
+
"Contents": [
|
|
1183
|
+
{
|
|
1184
|
+
"Id": "f_1055",
|
|
1185
|
+
"ControlType": "Label",
|
|
1186
|
+
"ControlName": "Company",
|
|
1187
|
+
"labeltext": "[제목]",
|
|
1188
|
+
"ControlStyle": "None",
|
|
1189
|
+
"Caption": "",
|
|
1190
|
+
"isColumnCtrl": false,
|
|
1191
|
+
"design": {
|
|
1192
|
+
"font": "title-large",
|
|
1193
|
+
"w": "text",
|
|
1194
|
+
"h": "text",
|
|
1195
|
+
"fixed": true
|
|
1196
|
+
}
|
|
1197
|
+
},
|
|
1198
|
+
{
|
|
1199
|
+
"Id": "f_1056",
|
|
1200
|
+
"ControlType": "Label",
|
|
1201
|
+
"ControlName": "Person",
|
|
1202
|
+
"labeltext": "[텍스트]",
|
|
1203
|
+
"ControlStyle": "None",
|
|
1204
|
+
"Caption": "",
|
|
1205
|
+
"isColumnCtrl": false,
|
|
1206
|
+
"design": {
|
|
1207
|
+
"font": "body-medium",
|
|
1208
|
+
"color": "body-soft",
|
|
1209
|
+
"w": "text",
|
|
1210
|
+
"h": "text",
|
|
1211
|
+
"fixed": true
|
|
1212
|
+
}
|
|
1213
|
+
}
|
|
1214
|
+
]
|
|
1215
|
+
}
|
|
1216
|
+
]
|
|
1217
|
+
},
|
|
1218
|
+
{
|
|
1219
|
+
"Id": "f_1059",
|
|
1220
|
+
"ControlType": "Label",
|
|
1221
|
+
"ControlName": "Product",
|
|
1222
|
+
"labeltext": "[텍스트]",
|
|
1223
|
+
"ControlStyle": "None",
|
|
1224
|
+
"Caption": "",
|
|
1225
|
+
"isColumnCtrl": false,
|
|
1226
|
+
"design": {
|
|
1227
|
+
"font": "body-medium",
|
|
1228
|
+
"w": "full",
|
|
1229
|
+
"h": "text"
|
|
1230
|
+
}
|
|
1231
|
+
},
|
|
1232
|
+
{
|
|
1233
|
+
"Id": "f_1065",
|
|
1234
|
+
"ContentsName": "MetaRow",
|
|
1235
|
+
"ContentsType": "Group",
|
|
1236
|
+
"ContentStyle": "None",
|
|
1237
|
+
"UseDataConnection": false,
|
|
1238
|
+
"design": {
|
|
1239
|
+
"flex": {
|
|
1240
|
+
"dir": "row",
|
|
1241
|
+
"align": "between",
|
|
1242
|
+
"valign": "bottom"
|
|
1243
|
+
},
|
|
1244
|
+
"w": "full"
|
|
1245
|
+
},
|
|
1246
|
+
"Contents": [
|
|
1247
|
+
{
|
|
1248
|
+
"Id": "f_1063",
|
|
1249
|
+
"ContentsName": "MetaCol",
|
|
1250
|
+
"ContentsType": "Group",
|
|
1251
|
+
"ContentStyle": "None",
|
|
1252
|
+
"UseDataConnection": false,
|
|
1253
|
+
"design": {
|
|
1254
|
+
"flex": {
|
|
1255
|
+
"dir": "column",
|
|
1256
|
+
"gap": 4
|
|
1257
|
+
},
|
|
1258
|
+
"w": "full"
|
|
1259
|
+
},
|
|
1260
|
+
"Contents": [
|
|
1261
|
+
{
|
|
1262
|
+
"Id": "f_1060",
|
|
1263
|
+
"ControlType": "Label",
|
|
1264
|
+
"ControlName": "Code",
|
|
1265
|
+
"labeltext": "[텍스트]",
|
|
1266
|
+
"ControlStyle": "None",
|
|
1267
|
+
"Caption": "",
|
|
1268
|
+
"isColumnCtrl": false,
|
|
1269
|
+
"design": {
|
|
1270
|
+
"font": "body-small",
|
|
1271
|
+
"color": "body-soft",
|
|
1272
|
+
"w": "text",
|
|
1273
|
+
"h": "text",
|
|
1274
|
+
"fixed": true
|
|
1275
|
+
}
|
|
1276
|
+
},
|
|
1277
|
+
{
|
|
1278
|
+
"Id": "f_1061",
|
|
1279
|
+
"ControlType": "Label",
|
|
1280
|
+
"ControlName": "Dest",
|
|
1281
|
+
"labeltext": "[텍스트]",
|
|
1282
|
+
"ControlStyle": "None",
|
|
1283
|
+
"Caption": "",
|
|
1284
|
+
"isColumnCtrl": false,
|
|
1285
|
+
"design": {
|
|
1286
|
+
"font": "body-small",
|
|
1287
|
+
"color": "body-soft",
|
|
1288
|
+
"w": "text",
|
|
1289
|
+
"h": "text",
|
|
1290
|
+
"fixed": true
|
|
1291
|
+
}
|
|
1292
|
+
},
|
|
1293
|
+
{
|
|
1294
|
+
"Id": "f_1062",
|
|
1295
|
+
"ControlType": "Label",
|
|
1296
|
+
"ControlName": "StmtDate",
|
|
1297
|
+
"labeltext": "[텍스트]",
|
|
1298
|
+
"ControlStyle": "None",
|
|
1299
|
+
"Caption": "",
|
|
1300
|
+
"isColumnCtrl": false,
|
|
1301
|
+
"design": {
|
|
1302
|
+
"font": "body-small",
|
|
1303
|
+
"color": "body-soft",
|
|
1304
|
+
"w": "text",
|
|
1305
|
+
"h": "text",
|
|
1306
|
+
"fixed": true
|
|
1307
|
+
}
|
|
1308
|
+
}
|
|
1309
|
+
]
|
|
1310
|
+
},
|
|
1311
|
+
{
|
|
1312
|
+
"Id": "f_1064",
|
|
1313
|
+
"ControlType": "Label",
|
|
1314
|
+
"ControlName": "TotalWeight",
|
|
1315
|
+
"labeltext": "[제목]",
|
|
1316
|
+
"ControlStyle": "None",
|
|
1317
|
+
"Caption": "",
|
|
1318
|
+
"isColumnCtrl": false,
|
|
1319
|
+
"design": {
|
|
1320
|
+
"font": "title-large",
|
|
1321
|
+
"color": "success",
|
|
1322
|
+
"w": "text",
|
|
1323
|
+
"h": "text",
|
|
1324
|
+
"fixed": true
|
|
1325
|
+
}
|
|
1326
|
+
}
|
|
1327
|
+
]
|
|
1328
|
+
}
|
|
1329
|
+
]
|
|
1330
|
+
},
|
|
1331
|
+
{
|
|
1332
|
+
"Id": "f_1078",
|
|
1333
|
+
"ContentsName": "LotSection",
|
|
1334
|
+
"ContentsType": "Group",
|
|
1335
|
+
"ContentStyle": "None",
|
|
1336
|
+
"UseDataConnection": false,
|
|
1337
|
+
"design": {
|
|
1338
|
+
"flex": {
|
|
1339
|
+
"dir": "column",
|
|
1340
|
+
"gap": 16
|
|
1341
|
+
},
|
|
1342
|
+
"w": "full",
|
|
1343
|
+
"p": "16"
|
|
1344
|
+
},
|
|
1345
|
+
"Contents": [
|
|
1346
|
+
{
|
|
1347
|
+
"Id": "f_1070",
|
|
1348
|
+
"ContentsName": "LotHeader",
|
|
1349
|
+
"ContentsType": "Group",
|
|
1350
|
+
"ContentStyle": "None",
|
|
1351
|
+
"UseDataConnection": false,
|
|
1352
|
+
"design": {
|
|
1353
|
+
"flex": {
|
|
1354
|
+
"dir": "row",
|
|
1355
|
+
"valign": "center",
|
|
1356
|
+
"gap": 4
|
|
1357
|
+
},
|
|
1358
|
+
"w": "full"
|
|
1359
|
+
},
|
|
1360
|
+
"Contents": [
|
|
1361
|
+
{
|
|
1362
|
+
"Id": "f_1067",
|
|
1363
|
+
"ControlType": "Label",
|
|
1364
|
+
"ControlName": "LotLabel",
|
|
1365
|
+
"labeltext": "[텍스트]",
|
|
1366
|
+
"ControlStyle": "None",
|
|
1367
|
+
"Caption": "",
|
|
1368
|
+
"isColumnCtrl": false,
|
|
1369
|
+
"design": {
|
|
1370
|
+
"font": "body-medium",
|
|
1371
|
+
"w": "text",
|
|
1372
|
+
"h": "text",
|
|
1373
|
+
"fixed": true
|
|
1374
|
+
}
|
|
1375
|
+
},
|
|
1376
|
+
{
|
|
1377
|
+
"Id": "f_1068",
|
|
1378
|
+
"ControlType": "Label",
|
|
1379
|
+
"ControlName": "LotCount",
|
|
1380
|
+
"labeltext": "[텍스트]",
|
|
1381
|
+
"ControlStyle": "None",
|
|
1382
|
+
"Caption": "",
|
|
1383
|
+
"isColumnCtrl": false,
|
|
1384
|
+
"design": {
|
|
1385
|
+
"font": "body-medium",
|
|
1386
|
+
"color": "success",
|
|
1387
|
+
"w": "full",
|
|
1388
|
+
"h": "text"
|
|
1389
|
+
}
|
|
1390
|
+
},
|
|
1391
|
+
{
|
|
1392
|
+
"Id": "f_1069",
|
|
1393
|
+
"ControlType": "Label",
|
|
1394
|
+
"ControlName": "LotAdd",
|
|
1395
|
+
"labeltext": "+",
|
|
1396
|
+
"ControlStyle": "None",
|
|
1397
|
+
"Caption": "",
|
|
1398
|
+
"isColumnCtrl": false,
|
|
1399
|
+
"design": {
|
|
1400
|
+
"font": "body-medium",
|
|
1401
|
+
"color": "body-soft",
|
|
1402
|
+
"w": "text",
|
|
1403
|
+
"h": "text",
|
|
1404
|
+
"fixed": true
|
|
1405
|
+
}
|
|
1406
|
+
}
|
|
1407
|
+
]
|
|
1408
|
+
},
|
|
1409
|
+
{
|
|
1410
|
+
"Id": "f_1077",
|
|
1411
|
+
"ContentsName": "LotList",
|
|
1412
|
+
"ContentsType": "Group",
|
|
1413
|
+
"ContentStyle": "None",
|
|
1414
|
+
"UseDataConnection": false,
|
|
1415
|
+
"design": {
|
|
1416
|
+
"flex": {
|
|
1417
|
+
"dir": "column",
|
|
1418
|
+
"gap": 16
|
|
1419
|
+
},
|
|
1420
|
+
"w": "full"
|
|
1421
|
+
},
|
|
1422
|
+
"Contents": [
|
|
1423
|
+
{
|
|
1424
|
+
"Id": "f_1073",
|
|
1425
|
+
"ContentsName": "LotRow",
|
|
1426
|
+
"ContentsType": "Group",
|
|
1427
|
+
"ContentStyle": "None",
|
|
1428
|
+
"UseDataConnection": false,
|
|
1429
|
+
"design": {
|
|
1430
|
+
"flex": {
|
|
1431
|
+
"dir": "row",
|
|
1432
|
+
"valign": "center",
|
|
1433
|
+
"gap": 4
|
|
1434
|
+
},
|
|
1435
|
+
"w": "full",
|
|
1436
|
+
"h": "text"
|
|
1437
|
+
},
|
|
1438
|
+
"Contents": [
|
|
1439
|
+
{
|
|
1440
|
+
"Id": "f_1071",
|
|
1441
|
+
"ControlType": "Label",
|
|
1442
|
+
"ControlName": "LotCode",
|
|
1443
|
+
"labeltext": "[텍스트]",
|
|
1444
|
+
"ControlStyle": "None",
|
|
1445
|
+
"Caption": "",
|
|
1446
|
+
"isColumnCtrl": false,
|
|
1447
|
+
"design": {
|
|
1448
|
+
"font": "body-medium",
|
|
1449
|
+
"w": "full",
|
|
1450
|
+
"h": "text"
|
|
1451
|
+
}
|
|
1452
|
+
},
|
|
1453
|
+
{
|
|
1454
|
+
"Id": "f_1072",
|
|
1455
|
+
"ControlType": "Label",
|
|
1456
|
+
"ControlName": "LotWeight",
|
|
1457
|
+
"labeltext": "[텍스트]",
|
|
1458
|
+
"ControlStyle": "None",
|
|
1459
|
+
"Caption": "",
|
|
1460
|
+
"isColumnCtrl": false,
|
|
1461
|
+
"design": {
|
|
1462
|
+
"font": "body-medium",
|
|
1463
|
+
"w": "text",
|
|
1464
|
+
"h": "text",
|
|
1465
|
+
"fixed": true
|
|
1466
|
+
}
|
|
1467
|
+
}
|
|
1468
|
+
]
|
|
1469
|
+
},
|
|
1470
|
+
{
|
|
1471
|
+
"Id": "f_1076",
|
|
1472
|
+
"ContentsName": "LotRow",
|
|
1473
|
+
"ContentsType": "Group",
|
|
1474
|
+
"ContentStyle": "None",
|
|
1475
|
+
"UseDataConnection": false,
|
|
1476
|
+
"design": {
|
|
1477
|
+
"flex": {
|
|
1478
|
+
"dir": "row",
|
|
1479
|
+
"valign": "center",
|
|
1480
|
+
"gap": 4
|
|
1481
|
+
},
|
|
1482
|
+
"w": "full",
|
|
1483
|
+
"h": "text"
|
|
1484
|
+
},
|
|
1485
|
+
"Contents": [
|
|
1486
|
+
{
|
|
1487
|
+
"Id": "f_1074",
|
|
1488
|
+
"ControlType": "Label",
|
|
1489
|
+
"ControlName": "LotCode",
|
|
1490
|
+
"labeltext": "[텍스트]",
|
|
1491
|
+
"ControlStyle": "None",
|
|
1492
|
+
"Caption": "",
|
|
1493
|
+
"isColumnCtrl": false,
|
|
1494
|
+
"design": {
|
|
1495
|
+
"font": "body-medium",
|
|
1496
|
+
"w": "full",
|
|
1497
|
+
"h": "text"
|
|
1498
|
+
}
|
|
1499
|
+
},
|
|
1500
|
+
{
|
|
1501
|
+
"Id": "f_1075",
|
|
1502
|
+
"ControlType": "Label",
|
|
1503
|
+
"ControlName": "LotWeight",
|
|
1504
|
+
"labeltext": "[텍스트]",
|
|
1505
|
+
"ControlStyle": "None",
|
|
1506
|
+
"Caption": "",
|
|
1507
|
+
"isColumnCtrl": false,
|
|
1508
|
+
"design": {
|
|
1509
|
+
"font": "body-medium",
|
|
1510
|
+
"w": "text",
|
|
1511
|
+
"h": "text",
|
|
1512
|
+
"fixed": true
|
|
1513
|
+
}
|
|
1514
|
+
}
|
|
1515
|
+
]
|
|
1516
|
+
}
|
|
1517
|
+
]
|
|
1518
|
+
}
|
|
1519
|
+
]
|
|
1520
|
+
}
|
|
1521
|
+
],
|
|
1522
|
+
"FixedContentsBottom": [
|
|
1523
|
+
{
|
|
1524
|
+
"Id": "f_1079",
|
|
1525
|
+
"ContentsName": "BottomBar",
|
|
1526
|
+
"ContentsType": "Group",
|
|
1527
|
+
"ContentStyle": "None",
|
|
1528
|
+
"UseDataConnection": false,
|
|
1529
|
+
"design": {
|
|
1530
|
+
"flex": {
|
|
1531
|
+
"dir": "row",
|
|
1532
|
+
"gap": 8,
|
|
1533
|
+
"valign": "center"
|
|
1534
|
+
},
|
|
1535
|
+
"w": "full",
|
|
1536
|
+
"p": "8 20",
|
|
1537
|
+
"bg": "card"
|
|
1538
|
+
},
|
|
1539
|
+
"Contents": [
|
|
1540
|
+
{
|
|
1541
|
+
"button": {
|
|
1542
|
+
"label": "삭제",
|
|
1543
|
+
"variant": "secondary",
|
|
1544
|
+
"width": "fit",
|
|
1545
|
+
"override": {
|
|
1546
|
+
"root": {
|
|
1547
|
+
"UseFixedSize": true
|
|
1548
|
+
}
|
|
1549
|
+
}
|
|
1550
|
+
}
|
|
1551
|
+
},
|
|
1552
|
+
{
|
|
1553
|
+
"button": {
|
|
1554
|
+
"label": "확인",
|
|
1555
|
+
"variant": "primary",
|
|
1556
|
+
"width": "full"
|
|
1557
|
+
}
|
|
1558
|
+
}
|
|
1559
|
+
]
|
|
1560
|
+
}
|
|
1561
|
+
],
|
|
1562
|
+
"Next": [],
|
|
1563
|
+
"UseStepHeader": false,
|
|
1564
|
+
"UseBackButton": false,
|
|
1565
|
+
"UseBottomButton": false,
|
|
1566
|
+
"UseEvents": false,
|
|
1567
|
+
"Events": []
|
|
1568
|
+
}
|
|
1569
|
+
}
|
|
1570
|
+
}
|