yc-design-vue 2.1.9 → 2.2.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.
Files changed (130) hide show
  1. package/dist/index.umd.js +1 -1
  2. package/dist/style.css +1 -1
  3. package/es/Avatar/Avatar.vue.d.ts +1 -1
  4. package/es/Avatar/index.d.ts +3 -3
  5. package/es/Badge/index.d.ts +3 -3
  6. package/es/Badge/index.vue.d.ts +1 -1
  7. package/es/Button/Button.vue.d.ts +2 -2
  8. package/es/Button/ButtonGroup.vue.d.ts +1 -1
  9. package/es/Button/index.d.ts +9 -9
  10. package/es/Card/Card.vue.d.ts +1 -1
  11. package/es/Card/index.d.ts +3 -3
  12. package/es/Cascader/Cascader.vue.d.ts +12 -44
  13. package/es/Cascader/index.d.ts +6 -22
  14. package/es/Dropdown/DropdownButton.vue.d.ts +1 -1
  15. package/es/Dropdown/index.d.ts +3 -3
  16. package/es/Image/ImagePreviewToolbar.vue.js +6 -6
  17. package/es/Input/Input.vue.d.ts +2 -8
  18. package/es/Input/Input.vue.js +24 -46
  19. package/es/Input/InputPassword.vue.d.ts +309 -0
  20. package/es/Input/InputPassword.vue.js +122 -0
  21. package/es/Input/InputPassword.vue2.js +4 -0
  22. package/es/Input/InputSearch.vue.d.ts +310 -0
  23. package/es/Input/InputSearch.vue.js +133 -0
  24. package/es/Input/InputSearch.vue2.js +4 -0
  25. package/es/Input/hooks/useLimitedInput.d.ts +2 -0
  26. package/es/Input/hooks/useLimitedInput.js +2 -0
  27. package/es/Input/index.css +1 -1
  28. package/es/Input/index.d.ts +420 -23
  29. package/es/Input/index.js +11 -3
  30. package/es/Input/type.d.ts +24 -6
  31. package/es/InputNumber/InputNumber.vue.d.ts +12 -44
  32. package/es/InputNumber/index.d.ts +6 -22
  33. package/es/Link/index.d.ts +3 -3
  34. package/es/Link/index.vue.d.ts +1 -1
  35. package/es/Statistic/Statistic.vue.d.ts +1 -1
  36. package/es/Statistic/index.d.ts +3 -3
  37. package/es/Steps/Step.vue.d.ts +1 -1
  38. package/es/Steps/Steps.vue.d.ts +1 -1
  39. package/es/Steps/index.d.ts +6 -6
  40. package/es/Transfer/TransferPanel.vue.js +1 -1
  41. package/es/Typography/TypographyBase.vue.d.ts +12 -44
  42. package/es/Upload/UploadPictureCard.vue2.js +1 -1
  43. package/es/_shared/icons/IconEyeClose.vue.js +32 -1
  44. package/es/_shared/icons/IconEyeClose.vue2.js +1 -32
  45. package/es/_shared/icons/IconEyeOpen.vue.js +29 -1
  46. package/es/_shared/icons/IconEyeOpen.vue2.js +1 -29
  47. package/es/_shared/icons/IconFullScreen.vue.js +1 -28
  48. package/es/_shared/icons/IconFullScreen.vue2.js +28 -1
  49. package/es/_shared/icons/IconOriginSize.vue.js +1 -34
  50. package/es/_shared/icons/IconOriginSize.vue2.js +34 -1
  51. package/es/_shared/icons/IconRotateLeft.vue.js +1 -28
  52. package/es/_shared/icons/IconRotateLeft.vue2.js +28 -1
  53. package/es/_shared/icons/IconRotateRight.vue.js +1 -28
  54. package/es/_shared/icons/IconRotateRight.vue2.js +28 -1
  55. package/es/_shared/icons/IconSearch.vue.js +28 -1
  56. package/es/_shared/icons/IconSearch.vue2.js +1 -28
  57. package/es/_shared/icons/IconZoomIn.vue.js +1 -28
  58. package/es/_shared/icons/IconZoomIn.vue2.js +28 -1
  59. package/es/_shared/icons/IconZoomOut.vue.js +1 -28
  60. package/es/_shared/icons/IconZoomOut.vue2.js +28 -1
  61. package/es/index.d.ts +9 -9
  62. package/es/index.js +4 -0
  63. package/es/style.css +1 -1
  64. package/lib/Avatar/Avatar.vue.d.ts +1 -1
  65. package/lib/Avatar/index.d.ts +3 -3
  66. package/lib/Badge/index.d.ts +3 -3
  67. package/lib/Badge/index.vue.d.ts +1 -1
  68. package/lib/Button/Button.vue.d.ts +2 -2
  69. package/lib/Button/ButtonGroup.vue.d.ts +1 -1
  70. package/lib/Button/index.d.ts +9 -9
  71. package/lib/Card/Card.vue.d.ts +1 -1
  72. package/lib/Card/index.d.ts +3 -3
  73. package/lib/Cascader/Cascader.vue.d.ts +12 -44
  74. package/lib/Cascader/index.d.ts +6 -22
  75. package/lib/Dropdown/DropdownButton.vue.d.ts +1 -1
  76. package/lib/Dropdown/index.d.ts +3 -3
  77. package/lib/Image/ImagePreviewToolbar.vue.js +1 -1
  78. package/lib/Input/Input.vue.d.ts +2 -8
  79. package/lib/Input/Input.vue.js +1 -1
  80. package/lib/Input/InputPassword.vue.d.ts +309 -0
  81. package/lib/Input/InputPassword.vue.js +1 -0
  82. package/lib/Input/{InputSuffix.vue3.js → InputPassword.vue2.js} +1 -1
  83. package/lib/Input/InputSearch.vue.d.ts +310 -0
  84. package/lib/Input/InputSearch.vue.js +1 -0
  85. package/lib/Input/InputSearch.vue2.js +1 -0
  86. package/lib/Input/hooks/useLimitedInput.d.ts +2 -0
  87. package/lib/Input/hooks/useLimitedInput.js +1 -1
  88. package/lib/Input/index.css +1 -1
  89. package/lib/Input/index.d.ts +420 -23
  90. package/lib/Input/index.js +1 -1
  91. package/lib/Input/type.d.ts +24 -6
  92. package/lib/InputNumber/InputNumber.vue.d.ts +12 -44
  93. package/lib/InputNumber/index.d.ts +6 -22
  94. package/lib/Link/index.d.ts +3 -3
  95. package/lib/Link/index.vue.d.ts +1 -1
  96. package/lib/Statistic/Statistic.vue.d.ts +1 -1
  97. package/lib/Statistic/index.d.ts +3 -3
  98. package/lib/Steps/Step.vue.d.ts +1 -1
  99. package/lib/Steps/Steps.vue.d.ts +1 -1
  100. package/lib/Steps/index.d.ts +6 -6
  101. package/lib/Transfer/TransferPanel.vue.js +1 -1
  102. package/lib/Typography/TypographyBase.vue.d.ts +12 -44
  103. package/lib/Upload/UploadPictureCard.vue2.js +1 -1
  104. package/lib/_shared/icons/IconEyeClose.vue.js +1 -1
  105. package/lib/_shared/icons/IconEyeClose.vue2.js +1 -1
  106. package/lib/_shared/icons/IconEyeOpen.vue.js +1 -1
  107. package/lib/_shared/icons/IconEyeOpen.vue2.js +1 -1
  108. package/lib/_shared/icons/IconFullScreen.vue.js +1 -1
  109. package/lib/_shared/icons/IconFullScreen.vue2.js +1 -1
  110. package/lib/_shared/icons/IconOriginSize.vue.js +1 -1
  111. package/lib/_shared/icons/IconOriginSize.vue2.js +1 -1
  112. package/lib/_shared/icons/IconRotateLeft.vue.js +1 -1
  113. package/lib/_shared/icons/IconRotateLeft.vue2.js +1 -1
  114. package/lib/_shared/icons/IconRotateRight.vue.js +1 -1
  115. package/lib/_shared/icons/IconRotateRight.vue2.js +1 -1
  116. package/lib/_shared/icons/IconSearch.vue.js +1 -1
  117. package/lib/_shared/icons/IconSearch.vue2.js +1 -1
  118. package/lib/_shared/icons/IconZoomIn.vue.js +1 -1
  119. package/lib/_shared/icons/IconZoomIn.vue2.js +1 -1
  120. package/lib/_shared/icons/IconZoomOut.vue.js +1 -1
  121. package/lib/_shared/icons/IconZoomOut.vue2.js +1 -1
  122. package/lib/index.d.ts +9 -9
  123. package/lib/index.js +1 -1
  124. package/lib/style.css +1 -1
  125. package/package.json +1 -1
  126. package/es/Input/InputSuffix.vue.d.ts +0 -31
  127. package/es/Input/InputSuffix.vue.js +0 -58
  128. package/es/Input/InputSuffix.vue3.js +0 -5
  129. package/lib/Input/InputSuffix.vue.d.ts +0 -31
  130. package/lib/Input/InputSuffix.vue.js +0 -1
@@ -1,4 +1,31 @@
1
- import _sfc_main from "./IconSearch.vue2.js";
1
+ import { defineComponent, createBlock, openBlock, unref, normalizeProps, guardReactiveProps, withCtx, createElementVNode } from "vue";
2
+ import "../../node_modules/b-tween/dist/b-tween.es.js";
3
+ import "../../node_modules/dayjs/dayjs.min.js";
4
+ import "../../node_modules/tinycolor2/esm/tinycolor.js";
5
+ import "../../node_modules/dayjs/plugin/duration.js";
6
+ import "../../node_modules/dayjs/plugin/toObject.js";
7
+ import "../../node_modules/dayjs/plugin/isSameOrAfter.js";
8
+ import "../../node_modules/dayjs/plugin/isSameOrBefore.js";
9
+ import "../utils/dom.js";
10
+ import "../utils/locale.js";
11
+ import "../utils/time.js";
12
+ /* empty css */
13
+ /* empty css */
14
+ import _sfc_main$1 from "../components/Icon/index.vue3.js";
15
+ /* empty css */
16
+ const _sfc_main = /* @__PURE__ */ defineComponent({
17
+ __name: "IconSearch",
18
+ setup(__props) {
19
+ return (_ctx, _cache) => {
20
+ return openBlock(), createBlock(unref(_sfc_main$1), normalizeProps(guardReactiveProps(_ctx.$attrs)), {
21
+ default: withCtx(() => [..._cache[0] || (_cache[0] = [
22
+ createElementVNode("path", { d: "M33.072 33.071c6.248-6.248 6.248-16.379 0-22.627-6.249-6.249-16.38-6.249-22.628 0-6.248 6.248-6.248 16.379 0 22.627 6.248 6.248 16.38 6.248 22.628 0Zm0 0 8.485 8.485" }, null, -1)
23
+ ])]),
24
+ _: 1
25
+ }, 16);
26
+ };
27
+ }
28
+ });
2
29
  export {
3
30
  _sfc_main as default
4
31
  };
@@ -1,31 +1,4 @@
1
- import { defineComponent, createBlock, openBlock, unref, normalizeProps, guardReactiveProps, withCtx, createElementVNode } from "vue";
2
- import "../../node_modules/b-tween/dist/b-tween.es.js";
3
- import "../../node_modules/dayjs/dayjs.min.js";
4
- import "../../node_modules/tinycolor2/esm/tinycolor.js";
5
- import "../../node_modules/dayjs/plugin/duration.js";
6
- import "../../node_modules/dayjs/plugin/toObject.js";
7
- import "../../node_modules/dayjs/plugin/isSameOrAfter.js";
8
- import "../../node_modules/dayjs/plugin/isSameOrBefore.js";
9
- import "../utils/dom.js";
10
- import "../utils/locale.js";
11
- import "../utils/time.js";
12
- /* empty css */
13
- /* empty css */
14
- import _sfc_main$1 from "../components/Icon/index.vue3.js";
15
- /* empty css */
16
- const _sfc_main = /* @__PURE__ */ defineComponent({
17
- __name: "IconSearch",
18
- setup(__props) {
19
- return (_ctx, _cache) => {
20
- return openBlock(), createBlock(unref(_sfc_main$1), normalizeProps(guardReactiveProps(_ctx.$attrs)), {
21
- default: withCtx(() => [..._cache[0] || (_cache[0] = [
22
- createElementVNode("path", { d: "M33.072 33.071c6.248-6.248 6.248-16.379 0-22.627-6.249-6.249-16.38-6.249-22.628 0-6.248 6.248-6.248 16.379 0 22.627 6.248 6.248 16.38 6.248 22.628 0Zm0 0 8.485 8.485" }, null, -1)
23
- ])]),
24
- _: 1
25
- }, 16);
26
- };
27
- }
28
- });
1
+ import _sfc_main from "./IconSearch.vue.js";
29
2
  export {
30
3
  _sfc_main as default
31
4
  };
@@ -1,31 +1,4 @@
1
- import { defineComponent, createBlock, openBlock, unref, normalizeProps, guardReactiveProps, withCtx, createElementVNode } from "vue";
2
- import "../../node_modules/b-tween/dist/b-tween.es.js";
3
- import "../../node_modules/dayjs/dayjs.min.js";
4
- import "../../node_modules/tinycolor2/esm/tinycolor.js";
5
- import "../../node_modules/dayjs/plugin/duration.js";
6
- import "../../node_modules/dayjs/plugin/toObject.js";
7
- import "../../node_modules/dayjs/plugin/isSameOrAfter.js";
8
- import "../../node_modules/dayjs/plugin/isSameOrBefore.js";
9
- import "../utils/dom.js";
10
- import "../utils/locale.js";
11
- import "../utils/time.js";
12
- /* empty css */
13
- /* empty css */
14
- import _sfc_main$1 from "../components/Icon/index.vue3.js";
15
- /* empty css */
16
- const _sfc_main = /* @__PURE__ */ defineComponent({
17
- __name: "IconZoomIn",
18
- setup(__props) {
19
- return (_ctx, _cache) => {
20
- return openBlock(), createBlock(unref(_sfc_main$1), normalizeProps(guardReactiveProps(_ctx.$attrs)), {
21
- default: withCtx(() => [..._cache[0] || (_cache[0] = [
22
- createElementVNode("path", { d: "M32.607 32.607A14.953 14.953 0 0 0 37 22c0-8.284-6.716-15-15-15-8.284 0-15 6.716-15 15 0 8.284 6.716 15 15 15 4.142 0 7.892-1.679 10.607-4.393Zm0 0L41.5 41.5M29 22H15m7 7V15" }, null, -1)
23
- ])]),
24
- _: 1
25
- }, 16);
26
- };
27
- }
28
- });
1
+ import _sfc_main from "./IconZoomIn.vue2.js";
29
2
  export {
30
3
  _sfc_main as default
31
4
  };
@@ -1,4 +1,31 @@
1
- import _sfc_main from "./IconZoomIn.vue.js";
1
+ import { defineComponent, createBlock, openBlock, unref, normalizeProps, guardReactiveProps, withCtx, createElementVNode } from "vue";
2
+ import "../../node_modules/b-tween/dist/b-tween.es.js";
3
+ import "../../node_modules/dayjs/dayjs.min.js";
4
+ import "../../node_modules/tinycolor2/esm/tinycolor.js";
5
+ import "../../node_modules/dayjs/plugin/duration.js";
6
+ import "../../node_modules/dayjs/plugin/toObject.js";
7
+ import "../../node_modules/dayjs/plugin/isSameOrAfter.js";
8
+ import "../../node_modules/dayjs/plugin/isSameOrBefore.js";
9
+ import "../utils/dom.js";
10
+ import "../utils/locale.js";
11
+ import "../utils/time.js";
12
+ /* empty css */
13
+ /* empty css */
14
+ import _sfc_main$1 from "../components/Icon/index.vue3.js";
15
+ /* empty css */
16
+ const _sfc_main = /* @__PURE__ */ defineComponent({
17
+ __name: "IconZoomIn",
18
+ setup(__props) {
19
+ return (_ctx, _cache) => {
20
+ return openBlock(), createBlock(unref(_sfc_main$1), normalizeProps(guardReactiveProps(_ctx.$attrs)), {
21
+ default: withCtx(() => [..._cache[0] || (_cache[0] = [
22
+ createElementVNode("path", { d: "M32.607 32.607A14.953 14.953 0 0 0 37 22c0-8.284-6.716-15-15-15-8.284 0-15 6.716-15 15 0 8.284 6.716 15 15 15 4.142 0 7.892-1.679 10.607-4.393Zm0 0L41.5 41.5M29 22H15m7 7V15" }, null, -1)
23
+ ])]),
24
+ _: 1
25
+ }, 16);
26
+ };
27
+ }
28
+ });
2
29
  export {
3
30
  _sfc_main as default
4
31
  };
@@ -1,31 +1,4 @@
1
- import { defineComponent, createBlock, openBlock, unref, normalizeProps, guardReactiveProps, withCtx, createElementVNode } from "vue";
2
- import "../../node_modules/b-tween/dist/b-tween.es.js";
3
- import "../../node_modules/dayjs/dayjs.min.js";
4
- import "../../node_modules/tinycolor2/esm/tinycolor.js";
5
- import "../../node_modules/dayjs/plugin/duration.js";
6
- import "../../node_modules/dayjs/plugin/toObject.js";
7
- import "../../node_modules/dayjs/plugin/isSameOrAfter.js";
8
- import "../../node_modules/dayjs/plugin/isSameOrBefore.js";
9
- import "../utils/dom.js";
10
- import "../utils/locale.js";
11
- import "../utils/time.js";
12
- /* empty css */
13
- /* empty css */
14
- import _sfc_main$1 from "../components/Icon/index.vue3.js";
15
- /* empty css */
16
- const _sfc_main = /* @__PURE__ */ defineComponent({
17
- __name: "IconZoomOut",
18
- setup(__props) {
19
- return (_ctx, _cache) => {
20
- return openBlock(), createBlock(unref(_sfc_main$1), normalizeProps(guardReactiveProps(_ctx.$attrs)), {
21
- default: withCtx(() => [..._cache[0] || (_cache[0] = [
22
- createElementVNode("path", { d: "M32.607 32.607A14.953 14.953 0 0 0 37 22c0-8.284-6.716-15-15-15-8.284 0-15 6.716-15 15 0 8.284 6.716 15 15 15 4.142 0 7.892-1.679 10.607-4.393Zm0 0L41.5 41.5M29 22H15" }, null, -1)
23
- ])]),
24
- _: 1
25
- }, 16);
26
- };
27
- }
28
- });
1
+ import _sfc_main from "./IconZoomOut.vue2.js";
29
2
  export {
30
3
  _sfc_main as default
31
4
  };
@@ -1,4 +1,31 @@
1
- import _sfc_main from "./IconZoomOut.vue.js";
1
+ import { defineComponent, createBlock, openBlock, unref, normalizeProps, guardReactiveProps, withCtx, createElementVNode } from "vue";
2
+ import "../../node_modules/b-tween/dist/b-tween.es.js";
3
+ import "../../node_modules/dayjs/dayjs.min.js";
4
+ import "../../node_modules/tinycolor2/esm/tinycolor.js";
5
+ import "../../node_modules/dayjs/plugin/duration.js";
6
+ import "../../node_modules/dayjs/plugin/toObject.js";
7
+ import "../../node_modules/dayjs/plugin/isSameOrAfter.js";
8
+ import "../../node_modules/dayjs/plugin/isSameOrBefore.js";
9
+ import "../utils/dom.js";
10
+ import "../utils/locale.js";
11
+ import "../utils/time.js";
12
+ /* empty css */
13
+ /* empty css */
14
+ import _sfc_main$1 from "../components/Icon/index.vue3.js";
15
+ /* empty css */
16
+ const _sfc_main = /* @__PURE__ */ defineComponent({
17
+ __name: "IconZoomOut",
18
+ setup(__props) {
19
+ return (_ctx, _cache) => {
20
+ return openBlock(), createBlock(unref(_sfc_main$1), normalizeProps(guardReactiveProps(_ctx.$attrs)), {
21
+ default: withCtx(() => [..._cache[0] || (_cache[0] = [
22
+ createElementVNode("path", { d: "M32.607 32.607A14.953 14.953 0 0 0 37 22c0-8.284-6.716-15-15-15-8.284 0-15 6.716-15 15 0 8.284 6.716 15 15 15 4.142 0 7.892-1.679 10.607-4.393Zm0 0L41.5 41.5M29 22H15" }, null, -1)
23
+ ])]),
24
+ _: 1
25
+ }, 16);
26
+ };
27
+ }
28
+ });
2
29
  export {
3
30
  _sfc_main as default
4
31
  };
package/es/index.d.ts CHANGED
@@ -209,8 +209,8 @@ declare const YcDesignVue: {
209
209
  size: import('./_shared/type').Size;
210
210
  disabled: boolean;
211
211
  type: import('./Button').ButtonType;
212
- shape: import('./_shared/type').Shape;
213
212
  status: import('./_shared/type').Status;
213
+ shape: import('./_shared/type').Shape;
214
214
  }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
215
215
  P: {};
216
216
  B: {};
@@ -222,8 +222,8 @@ declare const YcDesignVue: {
222
222
  size: import('./_shared/type').Size;
223
223
  disabled: boolean;
224
224
  type: import('./Button').ButtonType;
225
- shape: import('./_shared/type').Shape;
226
225
  status: import('./_shared/type').Status;
226
+ shape: import('./_shared/type').Shape;
227
227
  }>;
228
228
  __isFragment?: never;
229
229
  __isTeleport?: never;
@@ -232,8 +232,8 @@ declare const YcDesignVue: {
232
232
  size: import('./_shared/type').Size;
233
233
  disabled: boolean;
234
234
  type: import('./Button').ButtonType;
235
- shape: import('./_shared/type').Shape;
236
235
  status: import('./_shared/type').Status;
236
+ shape: import('./_shared/type').Shape;
237
237
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
238
238
  $slots: Readonly<import('./Button').ButtonGroupSlots> & import('./Button').ButtonGroupSlots;
239
239
  });
@@ -505,8 +505,8 @@ declare const YcDesignVue: {
505
505
  position: Extract<import('./_shared/type').PopupPosition, "top" | "tr" | "tl" | "bottom" | "br" | "bl">;
506
506
  popupContainer: import('./_shared/type').PopupContainer;
507
507
  type: import('./Button').ButtonType;
508
- hideOnSelect: boolean;
509
508
  buttonProps: import('./Button').ButtonProps;
509
+ hideOnSelect: boolean;
510
510
  }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
511
511
  P: {};
512
512
  B: {};
@@ -527,8 +527,8 @@ declare const YcDesignVue: {
527
527
  position: Extract<import('./_shared/type').PopupPosition, "top" | "tr" | "tl" | "bottom" | "br" | "bl">;
528
528
  popupContainer: import('./_shared/type').PopupContainer;
529
529
  type: import('./Button').ButtonType;
530
- hideOnSelect: boolean;
531
530
  buttonProps: import('./Button').ButtonProps;
531
+ hideOnSelect: boolean;
532
532
  }>;
533
533
  __isFragment?: never;
534
534
  __isTeleport?: never;
@@ -550,8 +550,8 @@ declare const YcDesignVue: {
550
550
  position: Extract<import('./_shared/type').PopupPosition, "top" | "tr" | "tl" | "bottom" | "br" | "bl">;
551
551
  popupContainer: import('./_shared/type').PopupContainer;
552
552
  type: import('./Button').ButtonType;
553
- hideOnSelect: boolean;
554
553
  buttonProps: import('./Button').ButtonProps;
554
+ hideOnSelect: boolean;
555
555
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
556
556
  $slots: Readonly<import('./Dropdown').DropdownButtonSlots> & import('./Dropdown').DropdownButtonSlots;
557
557
  });
@@ -1577,8 +1577,8 @@ declare const YcDesignVue: {
1577
1577
  new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./Steps').StepProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
1578
1578
  disabled: boolean;
1579
1579
  title: string;
1580
- description: string;
1581
1580
  status: import('./Steps').StepStatus;
1581
+ description: string;
1582
1582
  }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
1583
1583
  P: {};
1584
1584
  B: {};
@@ -1589,8 +1589,8 @@ declare const YcDesignVue: {
1589
1589
  }, Readonly<import('./Steps').StepProps> & Readonly<{}>, {}, {}, {}, {}, {
1590
1590
  disabled: boolean;
1591
1591
  title: string;
1592
- description: string;
1593
1592
  status: import('./Steps').StepStatus;
1593
+ description: string;
1594
1594
  }>;
1595
1595
  __isFragment?: never;
1596
1596
  __isTeleport?: never;
@@ -1598,8 +1598,8 @@ declare const YcDesignVue: {
1598
1598
  } & import('vue').ComponentOptionsBase<Readonly<import('./Steps').StepProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
1599
1599
  disabled: boolean;
1600
1600
  title: string;
1601
- description: string;
1602
1601
  status: import('./Steps').StepStatus;
1602
+ description: string;
1603
1603
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
1604
1604
  $slots: any;
1605
1605
  });
package/es/index.js CHANGED
@@ -144,6 +144,8 @@ import _sfc_main$E from "./Anchor/AnchorLink.vue.js";
144
144
  /* empty css */
145
145
  import { default as default2 } from "./Input/InputGroup.vue.js";
146
146
  /* empty css */
147
+ import { default as default3 } from "./Input/InputPassword.vue.js";
148
+ import { default as default4 } from "./Input/InputSearch.vue.js";
147
149
  const components = {
148
150
  Affix,
149
151
  Alert,
@@ -313,6 +315,8 @@ export {
313
315
  Input,
314
316
  default2 as InputGroup,
315
317
  InputNumber,
318
+ default3 as InputPassword,
319
+ default4 as InputSearch,
316
320
  InputTag,
317
321
  Layout,
318
322
  _sfc_main$j as LayoutContent,