You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1 lines
2.3 KiB

{"ast":null,"code":"import { buildProps } from '../../../utils/vue/props/runtime.mjs';\nconst RowJustify = [\"start\", \"center\", \"end\", \"space-around\", \"space-between\", \"space-evenly\"];\nconst RowAlign = [\"top\", \"middle\", \"bottom\"];\nconst rowProps = buildProps({\n tag: {\n type: String,\n default: \"div\"\n },\n gutter: {\n type: Number,\n default: 0\n },\n justify: {\n type: String,\n values: RowJustify,\n default: \"start\"\n },\n align: {\n type: String,\n values: RowAlign\n }\n});\nexport { RowAlign, RowJustify, rowProps };","map":{"version":3,"names":["RowJustify","RowAlign","rowProps","buildProps","tag","type","String","default","gutter","Number","justify","values","align"],"sources":["../../../../../../packages/components/row/src/row.ts"],"sourcesContent":["import { buildProps } from '@element-plus/utils'\nimport type { ExtractPropTypes } 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 RowInstance = InstanceType<typeof Row>\n"],"mappings":";AACY,MAACA,UAAU,GAAG,CACxB,OAAO,EACP,QAAQ,EACR,KAAK,EACL,cAAc,EACd,eAAe,EACf,cAAc,CAChB;AACY,MAACC,QAAQ,GAAG,CAAC,KAAK,EAAE,QAAQ,EAAE,QAAQ;AACtC,MAACC,QAAQ,GAAGC,UAAU,CAAC;EACjCC,GAAG,EAAE;IACHC,IAAI,EAAEC,MAAM;IACZC,OAAO,EAAE;EACb,CAAG;EACDC,MAAM,EAAE;IACNH,IAAI,EAAEI,MAAM;IACZF,OAAO,EAAE;EACb,CAAG;EACDG,OAAO,EAAE;IACPL,IAAI,EAAEC,MAAM;IACZK,MAAM,EAAEX,UAAU;IAClBO,OAAO,EAAE;EACb,CAAG;EACDK,KAAK,EAAE;IACLP,IAAI,EAAEC,MAAM;IACZK,MAAM,EAAEV;EACZ;AACA,CAAC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}