@davincihealthcare/elty-design-system-vue 2.7.2 → 2.8.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/dist/ElIcon.vue.cjs2.js +1 -1
- package/dist/ElIcon.vue.cjs2.js.map +1 -1
- package/dist/ElIcon.vue.d.ts +3 -0
- package/dist/ElIcon.vue.esm2.js +1 -1
- package/dist/ElIcon.vue.esm2.js.map +1 -1
- package/dist/ElInlineBanner.vue.d.ts +4 -0
- package/dist/ElItem.vue.d.ts +1 -1
- package/dist/ElModal.vue.d.ts +8 -0
- package/dist/forms/ElInputAutocomplete.vue.d.ts +1 -1
- package/dist/forms/ElInputCheckbox.vue.d.ts +1 -1
- package/dist/forms/ElInputDate.vue.d.ts +1 -1
- package/dist/forms/ElInputFile.vue.d.ts +1 -1
- package/dist/forms/ElInputMeasureUnit.vue.d.ts +1 -1
- package/dist/forms/ElInputNumber.vue.d.ts +1 -1
- package/dist/forms/ElInputPhone.vue.d.ts +1 -1
- package/dist/forms/ElInputRadioButton.vue.d.ts +1 -1
- package/dist/forms/ElInputSearch.vue.d.ts +9 -1
- package/dist/forms/ElInputSelect.vue.d.ts +1 -1
- package/dist/forms/ElInputText.vue.d.ts +1 -1
- package/dist/forms/ElInputTextarea.vue.d.ts +1 -1
- package/dist/style.cjs +1 -1
- package/dist/style.css +1 -1
- package/dist/table/ElServerSideResponsiveTable.vue.d.ts +13 -1
- package/package.json +1 -1
package/dist/ElIcon.vue.cjs2.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const n=require("vue"),
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const n=require("vue"),u=require("./node_modules/@heroicons/vue/24/outline/esm/index.cjs.js"),i=require("./node_modules/@heroicons/vue/24/solid/esm/index.cjs.js"),l=["pink","yellow","orange","cyan","rose","green","brand-blue","brand-green","red","purple","indigo"],t=n.defineComponent({__name:"ElIcon",props:{name:{},color:{},solid:{type:Boolean},disabled:{type:Boolean}},setup(a){const o=a,s=n.computed(()=>r(o.name));function r(e){return l.includes(e)}const d=n.computed(()=>{if(!r(o.name))return o.solid?i[o.name]:u[o.name]});return(e,g)=>s.value?(n.openBlock(),n.createElementBlock("div",{key:0,class:n.normalizeClass(["h-4 w-4 rounded-full",{"bg-yellow-500":e.name==="yellow","bg-orange-500":e.name==="orange","bg-cyan-500":e.name==="cyan","bg-rose-500":e.name==="rose","bg-green-500":e.name==="green","bg-brandBlue-500":e.name==="brand-blue","bg-brandGreen-500":e.name==="brand-green","bg-red-500":e.name==="red","bg-purple-500":e.name==="purple","bg-indigo-500":e.name==="indigo"}])},null,2)):(n.openBlock(),n.createBlock(n.resolveDynamicComponent(d.value),{key:1,class:n.normalizeClass({"text-yellow-500":e.color==="yellow","text-orange-500":e.color==="orange","text-cyan-500":e.color==="cyan","text-rose-500":e.color==="rose","text-green-500":e.color==="green","text-brandBlue-500":e.color==="brand-blue","text-brandGreen-500":e.color==="brand-green","text-red-500":e.color==="red","text-purple-500":e.color==="purple","text-indigo-500":e.color==="indigo"})},null,8,["class"]))}});exports.default=t;exports.elIconColors=l;
|
|
2
2
|
//# sourceMappingURL=ElIcon.vue.cjs2.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ElIcon.vue.cjs2.js","sources":["../src/ElIcon.vue"],"sourcesContent":["<script lang=\"ts\">\nexport const elIconColors = [\n 'pink',\n 'yellow',\n 'orange',\n 'cyan',\n 'rose',\n 'green',\n 'brand-blue',\n 'brand-green',\n 'red',\n 'purple',\n 'indigo',\n] as const;\ntype ElIconColors = (typeof elIconColors)[number];\nexport type IconNames = keyof typeof outlineIcons | ElIconColors;\nexport type ElIconProps = {\n name: IconNames;\n solid?: boolean;\n cursorPointer?: boolean;\n disabled?: boolean;\n};\n</script>\n\n<script lang=\"ts\" setup>\nimport * as outlineIcons from '@heroicons/vue/24/outline';\nimport * as solidIcons from '@heroicons/vue/24/solid';\nimport { computed } from 'vue';\n\nconst props = defineProps<{\n name: IconNames;\n solid?: boolean;\n disabled?: boolean;\n}>();\n\nfunction isElIconColor(color: string): color is ElIconColors {\n return elIconColors.includes(color as ElIconColors);\n}\n\nconst
|
|
1
|
+
{"version":3,"file":"ElIcon.vue.cjs2.js","sources":["../src/ElIcon.vue"],"sourcesContent":["<script lang=\"ts\">\nexport const elIconColors = [\n 'pink',\n 'yellow',\n 'orange',\n 'cyan',\n 'rose',\n 'green',\n 'brand-blue',\n 'brand-green',\n 'red',\n 'purple',\n 'indigo',\n] as const;\ntype ElIconColors = (typeof elIconColors)[number];\nexport type IconNames = keyof typeof outlineIcons | ElIconColors;\nexport type ElIconProps = {\n name: IconNames;\n color?: ElIconColors;\n solid?: boolean;\n cursorPointer?: boolean;\n disabled?: boolean;\n};\n</script>\n\n<script lang=\"ts\" setup>\nimport * as outlineIcons from '@heroicons/vue/24/outline';\nimport * as solidIcons from '@heroicons/vue/24/solid';\nimport { computed } from 'vue';\n\nconst props = defineProps<{\n name: IconNames;\n color?: ElIconColors;\n solid?: boolean;\n disabled?: boolean;\n}>();\n\n// Deprecated: this stuff is a mess, don't pass color as the name\nconst isColorDot = computed(() => isElIconColor(props.name));\nfunction isElIconColor(color: string): color is ElIconColors {\n return elIconColors.includes(color as ElIconColors);\n}\n\nconst iconComponent = computed(() => {\n if (isElIconColor(props.name)) return;\n return props.solid ? solidIcons[props.name] : outlineIcons[props.name];\n});\n</script>\n\n<template>\n <div\n v-if=\"isColorDot\"\n class=\"h-4 w-4 rounded-full\"\n :class=\"{\n 'bg-yellow-500': name === 'yellow',\n 'bg-orange-500': name === 'orange',\n 'bg-cyan-500': name === 'cyan',\n 'bg-rose-500': name === 'rose',\n 'bg-green-500': name === 'green',\n 'bg-brandBlue-500': name === 'brand-blue',\n 'bg-brandGreen-500': name === 'brand-green',\n 'bg-red-500': name === 'red',\n 'bg-purple-500': name === 'purple',\n 'bg-indigo-500': name === 'indigo',\n }\"\n ></div>\n <component\n :is=\"iconComponent\"\n v-else\n :class=\"{\n 'text-yellow-500': color === 'yellow',\n 'text-orange-500': color === 'orange',\n 'text-cyan-500': color === 'cyan',\n 'text-rose-500': color === 'rose',\n 'text-green-500': color === 'green',\n 'text-brandBlue-500': color === 'brand-blue',\n 'text-brandGreen-500': color === 'brand-green',\n 'text-red-500': color === 'red',\n 'text-purple-500': color === 'purple',\n 'text-indigo-500': color === 'indigo',\n }\"\n />\n</template>\n"],"names":["elIconColors","props","__props","isColorDot","computed","isElIconColor","color","iconComponent","solidIcons","outlineIcons"],"mappings":"+QACaA,EAAe,CAC1B,OACA,SACA,SACA,OACA,OACA,QACA,aACA,cACA,MACA,SACA,QACF,sHAiBA,MAAMC,EAAQC,EAQRC,EAAaC,EAAAA,SAAS,IAAMC,EAAcJ,EAAM,IAAI,CAAC,EAC3D,SAASI,EAAcC,EAAsC,CACpD,OAAAN,EAAa,SAASM,CAAqB,CACpD,CAEM,MAAAC,EAAgBH,EAAAA,SAAS,IAAM,CAC/B,GAAA,CAAAC,EAAcJ,EAAM,IAAI,EACrB,OAAAA,EAAM,MAAQO,EAAWP,EAAM,IAAI,EAAIQ,EAAaR,EAAM,IAAI,CAAA,CACtE"}
|
package/dist/ElIcon.vue.d.ts
CHANGED
|
@@ -4,16 +4,19 @@ type ElIconColors = (typeof elIconColors)[number];
|
|
|
4
4
|
export type IconNames = keyof typeof outlineIcons | ElIconColors;
|
|
5
5
|
export type ElIconProps = {
|
|
6
6
|
name: IconNames;
|
|
7
|
+
color?: ElIconColors;
|
|
7
8
|
solid?: boolean;
|
|
8
9
|
cursorPointer?: boolean;
|
|
9
10
|
disabled?: boolean;
|
|
10
11
|
};
|
|
11
12
|
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
12
13
|
name: IconNames;
|
|
14
|
+
color?: ElIconColors;
|
|
13
15
|
solid?: boolean;
|
|
14
16
|
disabled?: boolean;
|
|
15
17
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
16
18
|
name: IconNames;
|
|
19
|
+
color?: ElIconColors;
|
|
17
20
|
solid?: boolean;
|
|
18
21
|
disabled?: boolean;
|
|
19
22
|
}>>>, {}, {}>;
|
package/dist/ElIcon.vue.esm2.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{defineComponent as
|
|
1
|
+
import{defineComponent as m,computed as r,openBlock as l,createElementBlock as g,normalizeClass as a,createBlock as t,resolveDynamicComponent as p}from"vue";import*as u from"./node_modules/@heroicons/vue/24/outline/esm/index.esm.js";import*as b from"./node_modules/@heroicons/vue/24/solid/esm/index.esm.js";const c=["pink","yellow","orange","cyan","rose","green","brand-blue","brand-green","red","purple","indigo"],B=m({__name:"ElIcon",props:{name:{},color:{},solid:{type:Boolean},disabled:{type:Boolean}},setup(d){const n=d,s=r(()=>o(n.name));function o(e){return c.includes(e)}const i=r(()=>{if(!o(n.name))return n.solid?b[n.name]:u[n.name]});return(e,y)=>s.value?(l(),g("div",{key:0,class:a(["h-4 w-4 rounded-full",{"bg-yellow-500":e.name==="yellow","bg-orange-500":e.name==="orange","bg-cyan-500":e.name==="cyan","bg-rose-500":e.name==="rose","bg-green-500":e.name==="green","bg-brandBlue-500":e.name==="brand-blue","bg-brandGreen-500":e.name==="brand-green","bg-red-500":e.name==="red","bg-purple-500":e.name==="purple","bg-indigo-500":e.name==="indigo"}])},null,2)):(l(),t(p(i.value),{key:1,class:a({"text-yellow-500":e.color==="yellow","text-orange-500":e.color==="orange","text-cyan-500":e.color==="cyan","text-rose-500":e.color==="rose","text-green-500":e.color==="green","text-brandBlue-500":e.color==="brand-blue","text-brandGreen-500":e.color==="brand-green","text-red-500":e.color==="red","text-purple-500":e.color==="purple","text-indigo-500":e.color==="indigo"})},null,8,["class"]))}});export{B as default,c as elIconColors};
|
|
2
2
|
//# sourceMappingURL=ElIcon.vue.esm2.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ElIcon.vue.esm2.js","sources":["../src/ElIcon.vue"],"sourcesContent":["<script lang=\"ts\">\nexport const elIconColors = [\n 'pink',\n 'yellow',\n 'orange',\n 'cyan',\n 'rose',\n 'green',\n 'brand-blue',\n 'brand-green',\n 'red',\n 'purple',\n 'indigo',\n] as const;\ntype ElIconColors = (typeof elIconColors)[number];\nexport type IconNames = keyof typeof outlineIcons | ElIconColors;\nexport type ElIconProps = {\n name: IconNames;\n solid?: boolean;\n cursorPointer?: boolean;\n disabled?: boolean;\n};\n</script>\n\n<script lang=\"ts\" setup>\nimport * as outlineIcons from '@heroicons/vue/24/outline';\nimport * as solidIcons from '@heroicons/vue/24/solid';\nimport { computed } from 'vue';\n\nconst props = defineProps<{\n name: IconNames;\n solid?: boolean;\n disabled?: boolean;\n}>();\n\nfunction isElIconColor(color: string): color is ElIconColors {\n return elIconColors.includes(color as ElIconColors);\n}\n\nconst
|
|
1
|
+
{"version":3,"file":"ElIcon.vue.esm2.js","sources":["../src/ElIcon.vue"],"sourcesContent":["<script lang=\"ts\">\nexport const elIconColors = [\n 'pink',\n 'yellow',\n 'orange',\n 'cyan',\n 'rose',\n 'green',\n 'brand-blue',\n 'brand-green',\n 'red',\n 'purple',\n 'indigo',\n] as const;\ntype ElIconColors = (typeof elIconColors)[number];\nexport type IconNames = keyof typeof outlineIcons | ElIconColors;\nexport type ElIconProps = {\n name: IconNames;\n color?: ElIconColors;\n solid?: boolean;\n cursorPointer?: boolean;\n disabled?: boolean;\n};\n</script>\n\n<script lang=\"ts\" setup>\nimport * as outlineIcons from '@heroicons/vue/24/outline';\nimport * as solidIcons from '@heroicons/vue/24/solid';\nimport { computed } from 'vue';\n\nconst props = defineProps<{\n name: IconNames;\n color?: ElIconColors;\n solid?: boolean;\n disabled?: boolean;\n}>();\n\n// Deprecated: this stuff is a mess, don't pass color as the name\nconst isColorDot = computed(() => isElIconColor(props.name));\nfunction isElIconColor(color: string): color is ElIconColors {\n return elIconColors.includes(color as ElIconColors);\n}\n\nconst iconComponent = computed(() => {\n if (isElIconColor(props.name)) return;\n return props.solid ? solidIcons[props.name] : outlineIcons[props.name];\n});\n</script>\n\n<template>\n <div\n v-if=\"isColorDot\"\n class=\"h-4 w-4 rounded-full\"\n :class=\"{\n 'bg-yellow-500': name === 'yellow',\n 'bg-orange-500': name === 'orange',\n 'bg-cyan-500': name === 'cyan',\n 'bg-rose-500': name === 'rose',\n 'bg-green-500': name === 'green',\n 'bg-brandBlue-500': name === 'brand-blue',\n 'bg-brandGreen-500': name === 'brand-green',\n 'bg-red-500': name === 'red',\n 'bg-purple-500': name === 'purple',\n 'bg-indigo-500': name === 'indigo',\n }\"\n ></div>\n <component\n :is=\"iconComponent\"\n v-else\n :class=\"{\n 'text-yellow-500': color === 'yellow',\n 'text-orange-500': color === 'orange',\n 'text-cyan-500': color === 'cyan',\n 'text-rose-500': color === 'rose',\n 'text-green-500': color === 'green',\n 'text-brandBlue-500': color === 'brand-blue',\n 'text-brandGreen-500': color === 'brand-green',\n 'text-red-500': color === 'red',\n 'text-purple-500': color === 'purple',\n 'text-indigo-500': color === 'indigo',\n }\"\n />\n</template>\n"],"names":["elIconColors","props","__props","isColorDot","computed","isElIconColor","color","iconComponent","solidIcons","outlineIcons"],"mappings":"mTACO,MAAMA,EAAe,CAC1B,OACA,SACA,SACA,OACA,OACA,QACA,aACA,cACA,MACA,SACA,QACF,sGAiBA,MAAMC,EAAQC,EAQRC,EAAaC,EAAS,IAAMC,EAAcJ,EAAM,IAAI,CAAC,EAC3D,SAASI,EAAcC,EAAsC,CACpD,OAAAN,EAAa,SAASM,CAAqB,CACpD,CAEM,MAAAC,EAAgBH,EAAS,IAAM,CAC/B,GAAA,CAAAC,EAAcJ,EAAM,IAAI,EACrB,OAAAA,EAAM,MAAQO,EAAWP,EAAM,IAAI,EAAIQ,EAAaR,EAAM,IAAI,CAAA,CACtE"}
|
|
@@ -31,6 +31,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
31
31
|
title: string;
|
|
32
32
|
icon: Omit<{
|
|
33
33
|
readonly name: import('./ElIcon.vue').IconNames;
|
|
34
|
+
readonly color?: ("pink" | "yellow" | "orange" | "cyan" | "rose" | "green" | "brand-blue" | "brand-green" | "red" | "purple" | "indigo") | undefined;
|
|
34
35
|
readonly solid?: boolean | undefined;
|
|
35
36
|
readonly disabled?: boolean | undefined;
|
|
36
37
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -38,6 +39,9 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
38
39
|
type: import('vue').PropType<import('./ElIcon.vue').IconNames>;
|
|
39
40
|
required: true;
|
|
40
41
|
};
|
|
42
|
+
color: {
|
|
43
|
+
type: import('vue').PropType<"pink" | "yellow" | "orange" | "cyan" | "rose" | "green" | "brand-blue" | "brand-green" | "red" | "purple" | "indigo">;
|
|
44
|
+
};
|
|
41
45
|
solid: {
|
|
42
46
|
type: import('vue').PropType<boolean>;
|
|
43
47
|
};
|
package/dist/ElItem.vue.d.ts
CHANGED
|
@@ -40,8 +40,8 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
40
40
|
}>>>, {
|
|
41
41
|
text: string;
|
|
42
42
|
avatar: AvatarParameters;
|
|
43
|
-
disabled: boolean;
|
|
44
43
|
color: "primary" | "secondary";
|
|
44
|
+
disabled: boolean;
|
|
45
45
|
leadingIcon: ElIconProps;
|
|
46
46
|
focused: boolean;
|
|
47
47
|
semiboldText: string;
|
package/dist/ElModal.vue.d.ts
CHANGED
|
@@ -46,6 +46,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
46
46
|
headerIcon: {
|
|
47
47
|
type: import('vue').PropType<Partial<{}> & Omit<{
|
|
48
48
|
readonly name: import('./ElIcon.vue').IconNames;
|
|
49
|
+
readonly color?: ("pink" | "yellow" | "orange" | "cyan" | "rose" | "green" | "brand-blue" | "brand-green" | "red" | "purple" | "indigo") | undefined;
|
|
49
50
|
readonly solid?: boolean | undefined;
|
|
50
51
|
readonly disabled?: boolean | undefined;
|
|
51
52
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -53,6 +54,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
53
54
|
type: import('vue').PropType<import('./ElIcon.vue').IconNames>;
|
|
54
55
|
required: true;
|
|
55
56
|
};
|
|
57
|
+
color: {
|
|
58
|
+
type: import('vue').PropType<"pink" | "yellow" | "orange" | "cyan" | "rose" | "green" | "brand-blue" | "brand-green" | "red" | "purple" | "indigo">;
|
|
59
|
+
};
|
|
56
60
|
solid: {
|
|
57
61
|
type: import('vue').PropType<boolean>;
|
|
58
62
|
};
|
|
@@ -323,6 +327,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
323
327
|
headerIcon: {
|
|
324
328
|
type: import('vue').PropType<Partial<{}> & Omit<{
|
|
325
329
|
readonly name: import('./ElIcon.vue').IconNames;
|
|
330
|
+
readonly color?: ("pink" | "yellow" | "orange" | "cyan" | "rose" | "green" | "brand-blue" | "brand-green" | "red" | "purple" | "indigo") | undefined;
|
|
326
331
|
readonly solid?: boolean | undefined;
|
|
327
332
|
readonly disabled?: boolean | undefined;
|
|
328
333
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -330,6 +335,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
330
335
|
type: import('vue').PropType<import('./ElIcon.vue').IconNames>;
|
|
331
336
|
required: true;
|
|
332
337
|
};
|
|
338
|
+
color: {
|
|
339
|
+
type: import('vue').PropType<"pink" | "yellow" | "orange" | "cyan" | "rose" | "green" | "brand-blue" | "brand-green" | "red" | "purple" | "indigo">;
|
|
340
|
+
};
|
|
333
341
|
solid: {
|
|
334
342
|
type: import('vue').PropType<boolean>;
|
|
335
343
|
};
|
|
@@ -197,10 +197,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
197
197
|
}, {
|
|
198
198
|
name: string;
|
|
199
199
|
label: string;
|
|
200
|
+
color: "primary" | "secondary" | "error";
|
|
200
201
|
disabled: boolean;
|
|
201
202
|
id: string;
|
|
202
203
|
placeholder: string;
|
|
203
|
-
color: "primary" | "secondary" | "error";
|
|
204
204
|
modelValue: TextualValueType;
|
|
205
205
|
errorMessage: string | boolean;
|
|
206
206
|
hiddenErrorMessage: boolean;
|
|
@@ -164,10 +164,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
164
164
|
name: string;
|
|
165
165
|
size: "xxs" | "xs";
|
|
166
166
|
label: string;
|
|
167
|
+
color: "pink" | "yellow" | "orange" | "cyan" | "rose" | "green" | "brand-blue" | "brand-green" | "red" | "purple" | "indigo" | "primary" | "secondary" | "gray";
|
|
167
168
|
disabled: boolean;
|
|
168
169
|
id: string;
|
|
169
170
|
placeholder: string;
|
|
170
|
-
color: "pink" | "yellow" | "orange" | "cyan" | "rose" | "green" | "brand-blue" | "brand-green" | "red" | "purple" | "indigo" | "primary" | "secondary" | "gray";
|
|
171
171
|
step: number;
|
|
172
172
|
modelValue: boolean | "indeterminate";
|
|
173
173
|
min: number;
|
|
@@ -149,10 +149,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
149
149
|
name: string;
|
|
150
150
|
type: "time" | "date" | "datetime-local";
|
|
151
151
|
label: string;
|
|
152
|
+
color: "primary" | "secondary" | "error";
|
|
152
153
|
disabled: boolean;
|
|
153
154
|
id: string;
|
|
154
155
|
placeholder: string;
|
|
155
|
-
color: "primary" | "secondary" | "error";
|
|
156
156
|
step: number;
|
|
157
157
|
min: number;
|
|
158
158
|
max: number;
|
|
@@ -125,9 +125,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
125
125
|
}, {
|
|
126
126
|
name: string;
|
|
127
127
|
label: string;
|
|
128
|
+
color: "primary" | "secondary" | "error";
|
|
128
129
|
disabled: boolean;
|
|
129
130
|
id: string;
|
|
130
|
-
color: "primary" | "secondary" | "error";
|
|
131
131
|
content: string;
|
|
132
132
|
errorMessage: string | boolean;
|
|
133
133
|
hiddenErrorMessage: boolean;
|
|
@@ -171,10 +171,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
171
171
|
}, {
|
|
172
172
|
name: string;
|
|
173
173
|
label: string;
|
|
174
|
+
color: "primary" | "secondary" | "error";
|
|
174
175
|
disabled: boolean;
|
|
175
176
|
id: string;
|
|
176
177
|
placeholder: string;
|
|
177
|
-
color: "primary" | "secondary" | "error";
|
|
178
178
|
step: number;
|
|
179
179
|
min: number;
|
|
180
180
|
max: number;
|
|
@@ -155,10 +155,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
155
155
|
}, {
|
|
156
156
|
name: string;
|
|
157
157
|
label: string;
|
|
158
|
+
color: "primary" | "secondary" | "error";
|
|
158
159
|
disabled: boolean;
|
|
159
160
|
id: string;
|
|
160
161
|
placeholder: string;
|
|
161
|
-
color: "primary" | "secondary" | "error";
|
|
162
162
|
step: number;
|
|
163
163
|
min: number;
|
|
164
164
|
max: number;
|
|
@@ -107,10 +107,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
107
107
|
}, {
|
|
108
108
|
name: string;
|
|
109
109
|
label: string;
|
|
110
|
+
color: "primary" | "secondary" | "error";
|
|
110
111
|
disabled: boolean;
|
|
111
112
|
id: string;
|
|
112
113
|
placeholder: string;
|
|
113
|
-
color: "primary" | "secondary" | "error";
|
|
114
114
|
modelValue: TextualValueType;
|
|
115
115
|
errorMessage: string | boolean;
|
|
116
116
|
hiddenErrorMessage: boolean;
|
|
@@ -97,9 +97,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
97
97
|
}, {
|
|
98
98
|
size: "xxs" | "xs";
|
|
99
99
|
label: string;
|
|
100
|
+
color: "primary" | "secondary" | "inactive";
|
|
100
101
|
disabled: boolean;
|
|
101
102
|
id: string;
|
|
102
|
-
color: "primary" | "secondary" | "inactive";
|
|
103
103
|
validation: import('./validation-rules').InputValidation;
|
|
104
104
|
}, {}>;
|
|
105
105
|
export default _default;
|
|
@@ -191,10 +191,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
191
191
|
button: InstanceType<typeof ElButton>["$props"];
|
|
192
192
|
};
|
|
193
193
|
text: string;
|
|
194
|
+
color: "primary" | "secondary";
|
|
194
195
|
disabled: boolean;
|
|
195
196
|
id: string;
|
|
196
197
|
placeholder: string;
|
|
197
|
-
color: "primary" | "secondary";
|
|
198
198
|
results: (Partial<{}> & Omit<{
|
|
199
199
|
readonly primaryRow: string;
|
|
200
200
|
readonly time?: string | undefined;
|
|
@@ -202,6 +202,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
202
202
|
readonly color?: import('../ElVerticalTab.vue').ElVerticalTabColors | undefined;
|
|
203
203
|
readonly icon?: Omit<{
|
|
204
204
|
readonly name: import('../ElIcon.vue').IconNames;
|
|
205
|
+
readonly color?: ("pink" | "yellow" | "orange" | "cyan" | "rose" | "green" | "brand-blue" | "brand-green" | "red" | "purple" | "indigo") | undefined;
|
|
205
206
|
readonly solid?: boolean | undefined;
|
|
206
207
|
readonly disabled?: boolean | undefined;
|
|
207
208
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -209,6 +210,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
209
210
|
type: PropType<import('../ElIcon.vue').IconNames>;
|
|
210
211
|
required: true;
|
|
211
212
|
};
|
|
213
|
+
color: {
|
|
214
|
+
type: PropType<"pink" | "yellow" | "orange" | "cyan" | "rose" | "green" | "brand-blue" | "brand-green" | "red" | "purple" | "indigo">;
|
|
215
|
+
};
|
|
212
216
|
solid: {
|
|
213
217
|
type: PropType<boolean>;
|
|
214
218
|
};
|
|
@@ -236,6 +240,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
236
240
|
icon: {
|
|
237
241
|
type: PropType<Partial<{}> & Omit<{
|
|
238
242
|
readonly name: import('../ElIcon.vue').IconNames;
|
|
243
|
+
readonly color?: ("pink" | "yellow" | "orange" | "cyan" | "rose" | "green" | "brand-blue" | "brand-green" | "red" | "purple" | "indigo") | undefined;
|
|
239
244
|
readonly solid?: boolean | undefined;
|
|
240
245
|
readonly disabled?: boolean | undefined;
|
|
241
246
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -243,6 +248,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
243
248
|
type: PropType<import('../ElIcon.vue').IconNames>;
|
|
244
249
|
required: true;
|
|
245
250
|
};
|
|
251
|
+
color: {
|
|
252
|
+
type: PropType<"pink" | "yellow" | "orange" | "cyan" | "rose" | "green" | "brand-blue" | "brand-green" | "red" | "purple" | "indigo">;
|
|
253
|
+
};
|
|
246
254
|
solid: {
|
|
247
255
|
type: PropType<boolean>;
|
|
248
256
|
};
|
|
@@ -149,10 +149,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
149
149
|
}, {
|
|
150
150
|
name: string;
|
|
151
151
|
label: string;
|
|
152
|
+
color: "primary" | "secondary" | "error";
|
|
152
153
|
disabled: boolean;
|
|
153
154
|
id: string;
|
|
154
155
|
placeholder: string;
|
|
155
|
-
color: "primary" | "secondary" | "error";
|
|
156
156
|
modelValue: OptionValueType;
|
|
157
157
|
errorMessage: string | boolean;
|
|
158
158
|
hiddenErrorMessage: boolean;
|
|
@@ -156,10 +156,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
156
156
|
name: string;
|
|
157
157
|
type: "text" | "password";
|
|
158
158
|
label: string;
|
|
159
|
+
color: "primary" | "secondary" | "error";
|
|
159
160
|
disabled: boolean;
|
|
160
161
|
id: string;
|
|
161
162
|
placeholder: string;
|
|
162
|
-
color: "primary" | "secondary" | "error";
|
|
163
163
|
leadingIcon: ElIconProps;
|
|
164
164
|
trailingIcon: ElIconProps;
|
|
165
165
|
modelValue: TextualValueType;
|
|
@@ -139,10 +139,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
139
139
|
}, {
|
|
140
140
|
name: string;
|
|
141
141
|
label: string;
|
|
142
|
+
color: "primary" | "secondary" | "error";
|
|
142
143
|
disabled: boolean;
|
|
143
144
|
id: string;
|
|
144
145
|
placeholder: string;
|
|
145
|
-
color: "primary" | "secondary" | "error";
|
|
146
146
|
modelValue: TextualValueType;
|
|
147
147
|
errorMessage: string | boolean;
|
|
148
148
|
hiddenErrorMessage: boolean;
|