403Webshell
Server IP : 85.214.143.32  /  Your IP : 216.73.216.40
Web Server : nginx/1.24.0
System : Linux datensicherung.webdress.site 6.8.0-139-generic #139-Ubuntu SMP PREEMPT_DYNAMIC Sat Aug 1 03:52:05 UTC 2026 x86_64
User : www-data ( 33)
PHP Version : 7.4.33
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/nextcloud/dist/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/nextcloud/dist/NcInputField-5Sg6EUP6-DsazvGgr.chunk.mjs.map
{"version":3,"file":"NcInputField-5Sg6EUP6-DsazvGgr.chunk.mjs","sources":["../node_modules/@nextcloud/vue/dist/chunks/NcInputField-5Sg6EUP6.mjs"],"sourcesContent":["import '../assets/NcInputField-DpyFJ1xw.css';\nimport { defineComponent, useModel, useAttrs, useTemplateRef, computed, warn, openBlock, createElementBlock, normalizeClass, unref, createElementVNode, mergeProps, toDisplayString, createCommentVNode, withDirectives, renderSlot, vShow, createBlock, withCtx, createTextVNode, mergeModels } from \"vue\";\nimport { d as mdiCheck, j as mdiAlertCircleOutline } from \"./mdi-CpchYUUV.mjs\";\nimport { N as NcButton } from \"./NcButton-jvoYS2my.mjs\";\nimport { N as NcIconSvgWrapper } from \"./NcIconSvgWrapper-g8ubWhoz.mjs\";\nimport { c as createElementId } from \"./createElementId-DhjFt1I9.mjs\";\nimport { a as isLegacy } from \"./legacy-BoqDmOCa.mjs\";\nimport { _ as _export_sfc } from \"./_plugin-vue_export-helper-1tPrXgE0.mjs\";\nconst _hoisted_1 = { class: \"input-field__main-wrapper\" };\nconst _hoisted_2 = [\"id\", \"aria-describedby\", \"disabled\", \"placeholder\", \"type\", \"value\"];\nconst _hoisted_3 = [\"for\"];\nconst _hoisted_4 = { class: \"input-field__icon input-field__icon--leading\" };\nconst _hoisted_5 = {\n  key: 2,\n  class: \"input-field__icon input-field__icon--trailing\"\n};\nconst _hoisted_6 = [\"id\"];\nconst _sfc_main = /* @__PURE__ */ defineComponent({\n  ...{\n    inheritAttrs: false\n  },\n  __name: \"NcInputField\",\n  props: /* @__PURE__ */ mergeModels({\n    class: { default: \"\" },\n    inputClass: { default: \"\" },\n    id: { default: () => createElementId() },\n    label: { default: void 0 },\n    labelOutside: { type: Boolean },\n    type: { default: \"text\" },\n    placeholder: { default: void 0 },\n    showTrailingButton: { type: Boolean },\n    trailingButtonLabel: { default: void 0 },\n    success: { type: Boolean },\n    error: { type: Boolean },\n    helperText: { default: \"\" },\n    disabled: { type: Boolean },\n    pill: { type: Boolean }\n  }, {\n    \"modelValue\": { required: true },\n    \"modelModifiers\": {}\n  }),\n  emits: /* @__PURE__ */ mergeModels([\"trailingButtonClick\"], [\"update:modelValue\"]),\n  setup(__props, { expose: __expose, emit: __emit }) {\n    const modelValue = useModel(__props, \"modelValue\");\n    const props = __props;\n    const emit = __emit;\n    __expose({\n      focus,\n      select\n    });\n    const attrs = useAttrs();\n    const inputElement = useTemplateRef(\"input\");\n    const hasTrailingIcon = computed(() => props.showTrailingButton || props.success);\n    const internalPlaceholder = computed(() => {\n      if (props.placeholder) {\n        return props.placeholder;\n      }\n      if (props.label) {\n        return isLegacy ? props.label : \"\";\n      }\n      return void 0;\n    });\n    const isValidLabel = computed(() => {\n      const isValidLabel2 = props.label || props.labelOutside;\n      if (!isValidLabel2) {\n        warn(\"You need to add a label to the NcInputField component. Either use the prop label or use an external one, as per the example in the documentation.\");\n      }\n      return isValidLabel2;\n    });\n    const ariaDescribedby = computed(() => {\n      const ariaDescribedby2 = [];\n      if (props.helperText) {\n        ariaDescribedby2.push(`${props.id}-helper-text`);\n      }\n      if (attrs[\"aria-describedby\"]) {\n        ariaDescribedby2.push(String(attrs[\"aria-describedby\"]));\n      }\n      return ariaDescribedby2.join(\" \") || void 0;\n    });\n    function focus(options) {\n      inputElement.value.focus(options);\n    }\n    function select() {\n      inputElement.value.select();\n    }\n    function handleInput(event) {\n      const target = event.target;\n      modelValue.value = props.type === \"number\" && typeof modelValue.value === \"number\" ? parseFloat(target.value) : target.value;\n    }\n    return (_ctx, _cache) => {\n      return openBlock(), createElementBlock(\"div\", {\n        class: normalizeClass([\"input-field\", [{\n          \"input-field--disabled\": __props.disabled,\n          \"input-field--error\": __props.error,\n          \"input-field--label-outside\": __props.labelOutside || !isValidLabel.value,\n          \"input-field--leading-icon\": !!_ctx.$slots.icon,\n          \"input-field--trailing-icon\": hasTrailingIcon.value,\n          \"input-field--pill\": __props.pill,\n          \"input-field--success\": __props.success,\n          \"input-field--legacy\": unref(isLegacy)\n        }, _ctx.$props.class]])\n      }, [\n        createElementVNode(\"div\", _hoisted_1, [\n          createElementVNode(\"input\", mergeProps(_ctx.$attrs, {\n            id: __props.id,\n            ref: \"input\",\n            \"aria-describedby\": ariaDescribedby.value,\n            \"aria-live\": \"polite\",\n            class: [\"input-field__input\", __props.inputClass],\n            disabled: __props.disabled,\n            placeholder: internalPlaceholder.value,\n            type: __props.type,\n            value: modelValue.value.toString(),\n            onInput: handleInput\n          }), null, 16, _hoisted_2),\n          !__props.labelOutside && isValidLabel.value ? (openBlock(), createElementBlock(\"label\", {\n            key: 0,\n            class: \"input-field__label\",\n            for: __props.id\n          }, toDisplayString(__props.label), 9, _hoisted_3)) : createCommentVNode(\"\", true),\n          withDirectives(createElementVNode(\"div\", _hoisted_4, [\n            renderSlot(_ctx.$slots, \"icon\", {}, void 0, true)\n          ], 512), [\n            [vShow, !!_ctx.$slots.icon]\n          ]),\n          __props.showTrailingButton ? (openBlock(), createBlock(NcButton, {\n            key: 1,\n            class: \"input-field__trailing-button\",\n            \"aria-label\": __props.trailingButtonLabel,\n            disabled: __props.disabled,\n            variant: \"tertiary-no-background\",\n            onClick: _cache[0] || (_cache[0] = ($event) => emit(\"trailingButtonClick\", $event))\n          }, {\n            icon: withCtx(() => [\n              renderSlot(_ctx.$slots, \"trailing-button-icon\", {}, void 0, true)\n            ]),\n            _: 3\n          }, 8, [\"aria-label\", \"disabled\"])) : __props.success || __props.error ? (openBlock(), createElementBlock(\"div\", _hoisted_5, [\n            __props.success ? (openBlock(), createBlock(NcIconSvgWrapper, {\n              key: 0,\n              path: unref(mdiCheck)\n            }, null, 8, [\"path\"])) : (openBlock(), createBlock(NcIconSvgWrapper, {\n              key: 1,\n              path: unref(mdiAlertCircleOutline)\n            }, null, 8, [\"path\"]))\n          ])) : createCommentVNode(\"\", true)\n        ]),\n        __props.helperText ? (openBlock(), createElementBlock(\"p\", {\n          key: 0,\n          id: `${__props.id}-helper-text`,\n          class: \"input-field__helper-text-message\"\n        }, [\n          __props.success ? (openBlock(), createBlock(NcIconSvgWrapper, {\n            key: 0,\n            class: \"input-field__helper-text-message__icon\",\n            path: unref(mdiCheck),\n            inline: \"\"\n          }, null, 8, [\"path\"])) : __props.error ? (openBlock(), createBlock(NcIconSvgWrapper, {\n            key: 1,\n            class: \"input-field__helper-text-message__icon\",\n            path: unref(mdiAlertCircleOutline),\n            inline: \"\"\n          }, null, 8, [\"path\"])) : createCommentVNode(\"\", true),\n          createTextVNode(\" \" + toDisplayString(__props.helperText), 1)\n        ], 8, _hoisted_6)) : createCommentVNode(\"\", true)\n      ], 2);\n    };\n  }\n});\nconst NcInputField = /* @__PURE__ */ _export_sfc(_sfc_main, [[\"__scopeId\", \"data-v-8e16cbb5\"]]);\nexport {\n  NcInputField as N\n};\n//# sourceMappingURL=NcInputField-5Sg6EUP6.mjs.map\n"],"names":["_hoisted_1","_hoisted_2","_hoisted_3","_hoisted_4","_hoisted_5","_hoisted_6","_sfc_main","defineComponent","mergeModels","createElementId","__props","__expose","__emit","modelValue","useModel","props","emit","focus","select","attrs","useAttrs","inputElement","useTemplateRef","hasTrailingIcon","computed","internalPlaceholder","isLegacy","isValidLabel","ariaDescribedby","ariaDescribedby2","options","handleInput","event","target","_ctx","_cache","openBlock","createElementBlock","normalizeClass","unref","createElementVNode","mergeProps","toDisplayString","createCommentVNode","withDirectives","renderSlot","vShow","createBlock","NcButton","$event","withCtx","NcIconSvgWrapper","mdiCheck","mdiAlertCircleOutline","createTextVNode","NcInputField","_export_sfc"],"mappings":"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","x_google_ignoreList":[0]}

Youez - 2016 - github.com/yon3zu
LinuXploit