测试
This commit is contained in:
6
frontend/node_modules/element-plus/lib/components/row/index.d.ts
generated
vendored
Normal file
6
frontend/node_modules/element-plus/lib/components/row/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import Row from './src/row.vue';
|
||||
import type { SFCWithInstall } from 'element-plus/es/utils';
|
||||
export declare const ElRow: SFCWithInstall<typeof Row>;
|
||||
export default ElRow;
|
||||
export * from './src/row';
|
||||
export * from './src/constants';
|
||||
18
frontend/node_modules/element-plus/lib/components/row/index.js
generated
vendored
Normal file
18
frontend/node_modules/element-plus/lib/components/row/index.js
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var row$1 = require('./src/row2.js');
|
||||
var row = require('./src/row.js');
|
||||
var constants = require('./src/constants.js');
|
||||
var install = require('../../utils/vue/install.js');
|
||||
|
||||
const ElRow = install.withInstall(row$1["default"]);
|
||||
|
||||
exports.RowAlign = row.RowAlign;
|
||||
exports.RowJustify = row.RowJustify;
|
||||
exports.rowProps = row.rowProps;
|
||||
exports.rowContextKey = constants.rowContextKey;
|
||||
exports.ElRow = ElRow;
|
||||
exports["default"] = ElRow;
|
||||
//# sourceMappingURL=index.js.map
|
||||
1
frontend/node_modules/element-plus/lib/components/row/index.js.map
generated
vendored
Normal file
1
frontend/node_modules/element-plus/lib/components/row/index.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.js","sources":["../../../../../packages/components/row/index.ts"],"sourcesContent":["import { withInstall } from '@element-plus/utils'\nimport Row from './src/row.vue'\n\nimport type { SFCWithInstall } from '@element-plus/utils'\n\nexport const ElRow: SFCWithInstall<typeof Row> = withInstall(Row)\nexport default ElRow\n\nexport * from './src/row'\nexport * from './src/constants'\n"],"names":["withInstall","Row"],"mappings":";;;;;;;;;AAEY,MAAC,KAAK,GAAGA,mBAAW,CAACC,gBAAG;;;;;;;;;"}
|
||||
6
frontend/node_modules/element-plus/lib/components/row/src/constants.d.ts
generated
vendored
Normal file
6
frontend/node_modules/element-plus/lib/components/row/src/constants.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import type { ComputedRef, InjectionKey } from 'vue';
|
||||
interface RowContext {
|
||||
gutter: ComputedRef<number>;
|
||||
}
|
||||
export declare const rowContextKey: InjectionKey<RowContext>;
|
||||
export {};
|
||||
8
frontend/node_modules/element-plus/lib/components/row/src/constants.js
generated
vendored
Normal file
8
frontend/node_modules/element-plus/lib/components/row/src/constants.js
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
const rowContextKey = Symbol("rowContextKey");
|
||||
|
||||
exports.rowContextKey = rowContextKey;
|
||||
//# sourceMappingURL=constants.js.map
|
||||
1
frontend/node_modules/element-plus/lib/components/row/src/constants.js.map
generated
vendored
Normal file
1
frontend/node_modules/element-plus/lib/components/row/src/constants.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"constants.js","sources":["../../../../../../packages/components/row/src/constants.ts"],"sourcesContent":["import type { ComputedRef, InjectionKey } from 'vue'\n\ninterface RowContext {\n gutter: ComputedRef<number>\n}\n\nexport const rowContextKey: InjectionKey<RowContext> = Symbol('rowContextKey')\n"],"names":[],"mappings":";;;;AAAY,MAAC,aAAa,GAAG,MAAM,CAAC,eAAe;;;;"}
|
||||
18
frontend/node_modules/element-plus/lib/components/row/src/row.d.ts
generated
vendored
Normal file
18
frontend/node_modules/element-plus/lib/components/row/src/row.d.ts
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue';
|
||||
import type Row from './row.vue';
|
||||
export declare const RowJustify: readonly ["start", "center", "end", "space-around", "space-between", "space-evenly"];
|
||||
export declare const RowAlign: readonly ["top", "middle", "bottom"];
|
||||
export declare const rowProps: {
|
||||
readonly tag: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "div", boolean>;
|
||||
readonly gutter: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
||||
readonly justify: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "center" | "end" | "space-around" | "space-between" | "space-evenly" | "start", unknown, "start", boolean>;
|
||||
readonly align: {
|
||||
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "top" | "bottom" | "middle", unknown>>;
|
||||
readonly required: false;
|
||||
readonly validator: ((val: unknown) => boolean) | undefined;
|
||||
__epPropKey: true;
|
||||
};
|
||||
};
|
||||
export type RowProps = ExtractPropTypes<typeof rowProps>;
|
||||
export type RowPropsPublic = __ExtractPublicPropTypes<typeof rowProps>;
|
||||
export type RowInstance = InstanceType<typeof Row> & unknown;
|
||||
39
frontend/node_modules/element-plus/lib/components/row/src/row.js
generated
vendored
Normal file
39
frontend/node_modules/element-plus/lib/components/row/src/row.js
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var runtime = require('../../../utils/vue/props/runtime.js');
|
||||
|
||||
const RowJustify = [
|
||||
"start",
|
||||
"center",
|
||||
"end",
|
||||
"space-around",
|
||||
"space-between",
|
||||
"space-evenly"
|
||||
];
|
||||
const RowAlign = ["top", "middle", "bottom"];
|
||||
const rowProps = runtime.buildProps({
|
||||
tag: {
|
||||
type: String,
|
||||
default: "div"
|
||||
},
|
||||
gutter: {
|
||||
type: Number,
|
||||
default: 0
|
||||
},
|
||||
justify: {
|
||||
type: String,
|
||||
values: RowJustify,
|
||||
default: "start"
|
||||
},
|
||||
align: {
|
||||
type: String,
|
||||
values: RowAlign
|
||||
}
|
||||
});
|
||||
|
||||
exports.RowAlign = RowAlign;
|
||||
exports.RowJustify = RowJustify;
|
||||
exports.rowProps = rowProps;
|
||||
//# sourceMappingURL=row.js.map
|
||||
1
frontend/node_modules/element-plus/lib/components/row/src/row.js.map
generated
vendored
Normal file
1
frontend/node_modules/element-plus/lib/components/row/src/row.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"row.js","sources":["../../../../../../packages/components/row/src/row.ts"],"sourcesContent":["import { buildProps } from '@element-plus/utils'\n\nimport type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue'\nimport type Row from './row.vue'\n\nexport const RowJustify = [\n 'start',\n 'center',\n 'end',\n 'space-around',\n 'space-between',\n 'space-evenly',\n] as const\n\nexport const RowAlign = ['top', 'middle', 'bottom'] as const\n\nexport const rowProps = buildProps({\n /**\n * @description custom element tag\n */\n tag: {\n type: String,\n default: 'div',\n },\n /**\n * @description grid spacing\n */\n gutter: {\n type: Number,\n default: 0,\n },\n /**\n * @description horizontal alignment of flex layout\n */\n justify: {\n type: String,\n values: RowJustify,\n default: 'start',\n },\n /**\n * @description vertical alignment of flex layout\n */\n align: {\n type: String,\n values: RowAlign,\n },\n} as const)\n\nexport type RowProps = ExtractPropTypes<typeof rowProps>\nexport type RowPropsPublic = __ExtractPublicPropTypes<typeof rowProps>\nexport type RowInstance = InstanceType<typeof Row> & unknown\n"],"names":["buildProps"],"mappings":";;;;;;AACY,MAAC,UAAU,GAAG;AAC1B,EAAE,OAAO;AACT,EAAE,QAAQ;AACV,EAAE,KAAK;AACP,EAAE,cAAc;AAChB,EAAE,eAAe;AACjB,EAAE,cAAc;AAChB,EAAE;AACU,MAAC,QAAQ,GAAG,CAAC,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE;AACxC,MAAC,QAAQ,GAAGA,kBAAU,CAAC;AACnC,EAAE,GAAG,EAAE;AACP,IAAI,IAAI,EAAE,MAAM;AAChB,IAAI,OAAO,EAAE,KAAK;AAClB,GAAG;AACH,EAAE,MAAM,EAAE;AACV,IAAI,IAAI,EAAE,MAAM;AAChB,IAAI,OAAO,EAAE,CAAC;AACd,GAAG;AACH,EAAE,OAAO,EAAE;AACX,IAAI,IAAI,EAAE,MAAM;AAChB,IAAI,MAAM,EAAE,UAAU;AACtB,IAAI,OAAO,EAAE,OAAO;AACpB,GAAG;AACH,EAAE,KAAK,EAAE;AACT,IAAI,IAAI,EAAE,MAAM;AAChB,IAAI,MAAM,EAAE,QAAQ;AACpB,GAAG;AACH,CAAC;;;;;;"}
|
||||
35
frontend/node_modules/element-plus/lib/components/row/src/row.vue.d.ts
generated
vendored
Normal file
35
frontend/node_modules/element-plus/lib/components/row/src/row.vue.d.ts
generated
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
declare function __VLS_template(): {
|
||||
default?(_: {}): any;
|
||||
};
|
||||
declare const __VLS_component: import("vue").DefineComponent<{
|
||||
readonly tag: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "div", boolean>;
|
||||
readonly gutter: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
||||
readonly justify: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "center" | "end" | "space-around" | "space-between" | "space-evenly" | "start", unknown, "start", boolean>;
|
||||
readonly align: {
|
||||
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "top" | "bottom" | "middle", unknown>>;
|
||||
readonly required: false;
|
||||
readonly validator: ((val: unknown) => boolean) | undefined;
|
||||
__epPropKey: true;
|
||||
};
|
||||
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
||||
readonly tag: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "div", boolean>;
|
||||
readonly gutter: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
||||
readonly justify: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "center" | "end" | "space-around" | "space-between" | "space-evenly" | "start", unknown, "start", boolean>;
|
||||
readonly align: {
|
||||
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "top" | "bottom" | "middle", unknown>>;
|
||||
readonly required: false;
|
||||
readonly validator: ((val: unknown) => boolean) | undefined;
|
||||
__epPropKey: true;
|
||||
};
|
||||
}>>, {
|
||||
readonly justify: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "center" | "end" | "space-around" | "space-between" | "space-evenly" | "start", unknown>;
|
||||
readonly tag: string;
|
||||
readonly gutter: number;
|
||||
}>;
|
||||
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
||||
export default _default;
|
||||
type __VLS_WithTemplateSlots<T, S> = T & {
|
||||
new (): {
|
||||
$slots: S;
|
||||
};
|
||||
};
|
||||
53
frontend/node_modules/element-plus/lib/components/row/src/row2.js
generated
vendored
Normal file
53
frontend/node_modules/element-plus/lib/components/row/src/row2.js
generated
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var vue = require('vue');
|
||||
var constants = require('./constants.js');
|
||||
var row = require('./row.js');
|
||||
var pluginVue_exportHelper = require('../../../_virtual/plugin-vue_export-helper.js');
|
||||
var index = require('../../../hooks/use-namespace/index.js');
|
||||
|
||||
const __default__ = vue.defineComponent({
|
||||
name: "ElRow"
|
||||
});
|
||||
const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
||||
...__default__,
|
||||
props: row.rowProps,
|
||||
setup(__props) {
|
||||
const props = __props;
|
||||
const ns = index.useNamespace("row");
|
||||
const gutter = vue.computed(() => props.gutter);
|
||||
vue.provide(constants.rowContextKey, {
|
||||
gutter
|
||||
});
|
||||
const style = vue.computed(() => {
|
||||
const styles = {};
|
||||
if (!props.gutter) {
|
||||
return styles;
|
||||
}
|
||||
styles.marginRight = styles.marginLeft = `-${props.gutter / 2}px`;
|
||||
return styles;
|
||||
});
|
||||
const rowKls = vue.computed(() => [
|
||||
ns.b(),
|
||||
ns.is(`justify-${props.justify}`, props.justify !== "start"),
|
||||
ns.is(`align-${props.align}`, !!props.align)
|
||||
]);
|
||||
return (_ctx, _cache) => {
|
||||
return vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(_ctx.tag), {
|
||||
class: vue.normalizeClass(vue.unref(rowKls)),
|
||||
style: vue.normalizeStyle(vue.unref(style))
|
||||
}, {
|
||||
default: vue.withCtx(() => [
|
||||
vue.renderSlot(_ctx.$slots, "default")
|
||||
]),
|
||||
_: 3
|
||||
}, 8, ["class", "style"]);
|
||||
};
|
||||
}
|
||||
});
|
||||
var Row = /* @__PURE__ */ pluginVue_exportHelper["default"](_sfc_main, [["__file", "row.vue"]]);
|
||||
|
||||
exports["default"] = Row;
|
||||
//# sourceMappingURL=row2.js.map
|
||||
1
frontend/node_modules/element-plus/lib/components/row/src/row2.js.map
generated
vendored
Normal file
1
frontend/node_modules/element-plus/lib/components/row/src/row2.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"row2.js","sources":["../../../../../../packages/components/row/src/row.vue"],"sourcesContent":["<template>\n <component :is=\"tag\" :class=\"rowKls\" :style=\"style\">\n <slot />\n </component>\n</template>\n\n<script setup lang=\"ts\">\nimport { computed, provide } from 'vue'\nimport { useNamespace } from '@element-plus/hooks'\nimport { rowContextKey } from './constants'\nimport { rowProps } from './row'\n\nimport type { CSSProperties } from 'vue'\n\ndefineOptions({\n name: 'ElRow',\n})\n\nconst props = defineProps(rowProps)\n\nconst ns = useNamespace('row')\nconst gutter = computed(() => props.gutter)\n\nprovide(rowContextKey, {\n gutter,\n})\n\nconst style = computed(() => {\n const styles: CSSProperties = {}\n if (!props.gutter) {\n return styles\n }\n\n styles.marginRight = styles.marginLeft = `-${props.gutter / 2}px`\n return styles\n})\n\nconst rowKls = computed(() => [\n ns.b(),\n ns.is(`justify-${props.justify}`, props.justify !== 'start'),\n ns.is(`align-${props.align}`, !!props.align),\n])\n</script>\n"],"names":["useNamespace","computed","provide","rowContextKey"],"mappings":";;;;;;;;;;uCAcc,CAAA;AAAA,EACZ,IAAM,EAAA,OAAA;AACR,CAAA,CAAA,CAAA;;;;;;AAIA,IAAM,MAAA,EAAA,GAAKA,mBAAa,KAAK,CAAA,CAAA;AAC7B,IAAA,MAAM,MAAS,GAAAC,YAAA,CAAS,MAAM,KAAA,CAAM,MAAM,CAAA,CAAA;AAE1C,IAAAC,WAAA,CAAQC,uBAAe,EAAA;AAAA,MACrB,MAAA;AAAA,KACD,CAAA,CAAA;AAED,IAAM,MAAA,KAAA,GAAQF,aAAS,MAAM;AAC3B,MAAA,MAAM,SAAwB,EAAC,CAAA;AAC/B,MAAI,IAAA,CAAC,MAAM,MAAQ,EAAA;AACjB,QAAO,OAAA,MAAA,CAAA;AAAA,OACT;AAEA,MAAA,MAAA,CAAO,cAAc,MAAO,CAAA,UAAA,GAAa,CAAI,CAAA,EAAA,KAAA,CAAM,SAAS,CAAC,CAAA,EAAA,CAAA,CAAA;AAC7D,MAAO,OAAA,MAAA,CAAA;AAAA,KACR,CAAA,CAAA;AAED,IAAM,MAAA,MAAA,GAASA,aAAS,MAAM;AAAA,MAC5B,GAAG,CAAE,EAAA;AAAA,MACL,EAAA,CAAG,GAAG,CAAW,QAAA,EAAA,KAAA,CAAM,OAAO,CAAI,CAAA,EAAA,KAAA,CAAM,YAAY,OAAO,CAAA;AAAA,MAC3D,EAAA,CAAG,GAAG,CAAS,MAAA,EAAA,KAAA,CAAM,KAAK,CAAI,CAAA,EAAA,CAAC,CAAC,KAAA,CAAM,KAAK,CAAA;AAAA,KAC5C,CAAA,CAAA;;;;;;;;;;;;;;;;;;"}
|
||||
2
frontend/node_modules/element-plus/lib/components/row/style/css.d.ts
generated
vendored
Normal file
2
frontend/node_modules/element-plus/lib/components/row/style/css.d.ts
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
import 'element-plus/es/components/base/style/css';
|
||||
import 'element-plus/theme-chalk/el-row.css';
|
||||
6
frontend/node_modules/element-plus/lib/components/row/style/css.js
generated
vendored
Normal file
6
frontend/node_modules/element-plus/lib/components/row/style/css.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
'use strict';
|
||||
|
||||
require('../../base/style/css.js');
|
||||
require('element-plus/theme-chalk/el-row.css');
|
||||
|
||||
//# sourceMappingURL=css.js.map
|
||||
1
frontend/node_modules/element-plus/lib/components/row/style/css.js.map
generated
vendored
Normal file
1
frontend/node_modules/element-plus/lib/components/row/style/css.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"css.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;"}
|
||||
2
frontend/node_modules/element-plus/lib/components/row/style/index.d.ts
generated
vendored
Normal file
2
frontend/node_modules/element-plus/lib/components/row/style/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
import 'element-plus/es/components/base/style';
|
||||
import 'element-plus/theme-chalk/src/row.scss';
|
||||
6
frontend/node_modules/element-plus/lib/components/row/style/index.js
generated
vendored
Normal file
6
frontend/node_modules/element-plus/lib/components/row/style/index.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
'use strict';
|
||||
|
||||
require('../../base/style/index.js');
|
||||
require('element-plus/theme-chalk/src/row.scss');
|
||||
|
||||
//# sourceMappingURL=index.js.map
|
||||
1
frontend/node_modules/element-plus/lib/components/row/style/index.js.map
generated
vendored
Normal file
1
frontend/node_modules/element-plus/lib/components/row/style/index.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;"}
|
||||
Reference in New Issue
Block a user