yuyeon 0.0.43 → 0.0.45

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 (95) hide show
  1. package/dist/style.css +1 -1
  2. package/dist/yuyeon.js +2850 -2771
  3. package/dist/yuyeon.umd.cjs +6 -6
  4. package/lib/components/badge/YBadge.mjs +66 -4
  5. package/lib/components/badge/YBadge.mjs.map +1 -1
  6. package/lib/components/badge/YBadge.scss +76 -0
  7. package/lib/components/button/YButton.mjs +2 -2
  8. package/lib/components/button/YButton.mjs.map +1 -1
  9. package/lib/components/card/YCard.mjs +5 -3
  10. package/lib/components/card/YCard.mjs.map +1 -1
  11. package/lib/components/card/YCard.scss +7 -0
  12. package/lib/components/card/YCardBody.mjs +2 -2
  13. package/lib/components/card/YCardBody.mjs.map +1 -1
  14. package/lib/components/card/YCardFooter.mjs +2 -2
  15. package/lib/components/card/YCardFooter.mjs.map +1 -1
  16. package/lib/components/card/YCardHeader.mjs +2 -2
  17. package/lib/components/card/YCardHeader.mjs.map +1 -1
  18. package/lib/components/card/index.mjs +4 -5
  19. package/lib/components/card/index.mjs.map +1 -1
  20. package/lib/components/checkbox/YCheckbox.mjs +1 -1
  21. package/lib/components/checkbox/YCheckbox.mjs.map +1 -1
  22. package/lib/components/checkbox/index.mjs +1 -2
  23. package/lib/components/checkbox/index.mjs.map +1 -1
  24. package/lib/components/chip/YChip.mjs +2 -2
  25. package/lib/components/chip/YChip.mjs.map +1 -1
  26. package/lib/components/chip/index.mjs +1 -2
  27. package/lib/components/chip/index.mjs.map +1 -1
  28. package/lib/components/dropdown/YDropdown.mjs.map +1 -1
  29. package/lib/components/form/YForm.mjs +2 -2
  30. package/lib/components/form/YForm.mjs.map +1 -1
  31. package/lib/components/form/index.mjs +1 -3
  32. package/lib/components/form/index.mjs.map +1 -1
  33. package/lib/components/index.mjs +1 -0
  34. package/lib/components/index.mjs.map +1 -1
  35. package/lib/components/loading/YSpinnerRing.mjs.map +1 -1
  36. package/lib/components/menu/YMenu.mjs +4 -4
  37. package/lib/components/menu/YMenu.mjs.map +1 -1
  38. package/lib/components/pagination/YPagination.mjs.map +1 -1
  39. package/lib/components/panel/YDividePanel.mjs.map +1 -1
  40. package/lib/components/progress-bar/YProgressBar.mjs +3 -2
  41. package/lib/components/progress-bar/YProgressBar.mjs.map +1 -1
  42. package/lib/components/progress-bar/YProgressBar.scss +6 -2
  43. package/lib/components/select/YSelect.mjs +10 -6
  44. package/lib/components/select/YSelect.mjs.map +1 -1
  45. package/lib/components/snackbar/YSnackbar.mjs.map +1 -1
  46. package/lib/components/switch/YSwitch.mjs.map +1 -1
  47. package/lib/components/tab/YTab.mjs.map +1 -1
  48. package/lib/components/table/YDataTableCell.mjs.map +1 -1
  49. package/lib/components/table/YDataTableHead.mjs.map +1 -1
  50. package/lib/components/table/YDataTableRow.mjs.map +1 -1
  51. package/lib/components/table/YTable.mjs.map +1 -1
  52. package/lib/components/table/types/index.mjs.map +1 -1
  53. package/lib/components/text-highlighter/YTextHighlighter.mjs +1 -1
  54. package/lib/components/text-highlighter/YTextHighlighter.mjs.map +1 -1
  55. package/lib/components/text-highlighter/index.mjs +1 -2
  56. package/lib/components/text-highlighter/index.mjs.map +1 -1
  57. package/lib/components/tooltip/YTooltip.mjs.map +1 -1
  58. package/lib/components/tree-view/YTreeView.mjs +6 -1
  59. package/lib/components/tree-view/YTreeView.mjs.map +1 -1
  60. package/lib/components/tree-view/YTreeViewNode.mjs +6 -5
  61. package/lib/components/tree-view/YTreeViewNode.mjs.map +1 -1
  62. package/lib/composables/i18n/index.mjs.map +1 -1
  63. package/lib/locales/en.mjs +2 -1
  64. package/lib/locales/en.mjs.map +1 -1
  65. package/lib/locales/ko.mjs +2 -1
  66. package/lib/locales/ko.mjs.map +1 -1
  67. package/package.json +1 -1
  68. package/types/components/badge/YBadge.d.ts +141 -0
  69. package/types/components/badge/index.d.ts +1 -0
  70. package/types/components/card/YCard.d.ts +2 -2
  71. package/types/components/card/YCardBody.d.ts +2 -2
  72. package/types/components/card/YCardFooter.d.ts +2 -2
  73. package/types/components/card/YCardHeader.d.ts +2 -2
  74. package/types/components/card/index.d.ts +4 -5
  75. package/types/components/checkbox/YCheckbox.d.ts +2 -2
  76. package/types/components/checkbox/index.d.ts +1 -2
  77. package/types/components/chip/YChip.d.ts +2 -2
  78. package/types/components/chip/index.d.ts +1 -2
  79. package/types/components/form/YForm.d.ts +2 -2
  80. package/types/components/form/index.d.ts +1 -3
  81. package/types/components/index.d.ts +1 -0
  82. package/types/components/loading/YSpinnerRing.d.ts +1 -0
  83. package/types/components/menu/YMenu.d.ts +15 -0
  84. package/types/components/pagination/YPagination.d.ts +1 -0
  85. package/types/components/panel/YDividePanel.d.ts +1 -0
  86. package/types/components/progress-bar/YProgressBar.d.ts +1 -0
  87. package/types/components/select/YSelect.d.ts +1 -0
  88. package/types/components/snackbar/YSnackbar.d.ts +1 -0
  89. package/types/components/switch/YSwitch.d.ts +1 -0
  90. package/types/components/tab/YTab.d.ts +1 -0
  91. package/types/components/table/YTable.d.ts +1 -0
  92. package/types/components/text-highlighter/YTextHighlighter.d.ts +2 -2
  93. package/types/components/tooltip/YTooltip.d.ts +1 -0
  94. package/types/locales/en.d.ts +1 -0
  95. package/types/shims.d.ts +2 -0
@@ -27,6 +27,9 @@ export declare const YMenuPropOptions: {
27
27
  default: string;
28
28
  };
29
29
  offset: {
30
+ /**
31
+ * # Component
32
+ */
30
33
  type: PropType<string | number | string[]>;
31
34
  };
32
35
  viewportMargin: {
@@ -134,6 +137,9 @@ export declare const YMenu: import("vue").DefineComponent<{
134
137
  default: string;
135
138
  };
136
139
  offset: {
140
+ /**
141
+ * # Component
142
+ */
137
143
  type: PropType<string | number | string[]>;
138
144
  };
139
145
  viewportMargin: {
@@ -222,6 +228,9 @@ export declare const YMenu: import("vue").DefineComponent<{
222
228
  default: string;
223
229
  };
224
230
  offset: {
231
+ /**
232
+ * # Component
233
+ */
225
234
  type: PropType<string | number | string[]>;
226
235
  };
227
236
  viewportMargin: {
@@ -1888,6 +1897,9 @@ export declare const YMenu: import("vue").DefineComponent<{
1888
1897
  default: string;
1889
1898
  };
1890
1899
  offset: {
1900
+ /**
1901
+ * # Component
1902
+ */
1891
1903
  type: PropType<string | number | string[]>;
1892
1904
  };
1893
1905
  viewportMargin: {
@@ -2007,6 +2019,9 @@ export declare const YMenu: import("vue").DefineComponent<{
2007
2019
  default: string;
2008
2020
  };
2009
2021
  offset: {
2022
+ /**
2023
+ * # Component
2024
+ */
2010
2025
  type: PropType<string | number | string[]>;
2011
2026
  };
2012
2027
  viewportMargin: {
@@ -166,3 +166,4 @@ export declare const YPagination: import("vue").DefineComponent<{
166
166
  gap: string | number;
167
167
  showEndButton: boolean;
168
168
  }, {}>;
169
+ export type YPagination = InstanceType<typeof YPagination>;
@@ -1,3 +1,4 @@
1
1
  export declare const YDividePanel: import("vue").DefineComponent<{}, {
2
2
  activeSecondary: import("vue").Ref<boolean>;
3
3
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
4
+ export type YDividePanel = InstanceType<typeof YDividePanel>;
@@ -74,3 +74,4 @@ export declare const YProgressBar: import("vue").DefineComponent<{
74
74
  indeterminate: boolean;
75
75
  color: string;
76
76
  }, {}>;
77
+ export type YProgressBar = InstanceType<typeof YProgressBar>;
@@ -5882,3 +5882,4 @@ export declare const YSelect: import("vue").DefineComponent<{
5882
5882
  select: () => void;
5883
5883
  };
5884
5884
  }>>;
5885
+ export type YSelect = InstanceType<typeof YSelect>;
@@ -77,3 +77,4 @@ export declare const YSnackbar: import("vue").DefineComponent<{
77
77
  transition: any;
78
78
  duration: number;
79
79
  }, {}>;
80
+ export type YSnackbar = InstanceType<typeof YSnackbar>;
@@ -104,3 +104,4 @@ export declare const YSwitch: import("vue").DefineComponent<{
104
104
  labelOn: string;
105
105
  labelOff: string;
106
106
  }, {}>;
107
+ export type YSwitch = InstanceType<typeof YSwitch>;
@@ -280,3 +280,4 @@ export declare const YTab: import("vue").DefineComponent<{
280
280
  }, SlotsType<{
281
281
  default?: any;
282
282
  }>>;
283
+ export type YTab = InstanceType<typeof YTab>;
@@ -71,3 +71,4 @@ export declare const YTable: import("vue").DefineComponent<{
71
71
  }>>, {
72
72
  tag: string;
73
73
  }, {}>;
74
+ export type YTable = InstanceType<typeof YTable>;
@@ -1,5 +1,5 @@
1
1
  import { VNode } from 'vue';
2
- declare const _default: import("vue").DefineComponent<{
2
+ export declare const YTextHighlighter: import("vue").DefineComponent<{
3
3
  text: {
4
4
  type: StringConstructor;
5
5
  };
@@ -37,4 +37,4 @@ declare const _default: import("vue").DefineComponent<{
37
37
  }>>, {
38
38
  sensitive: boolean;
39
39
  }, {}>;
40
- export default _default;
40
+ export type YTextHighlighter = InstanceType<typeof YTextHighlighter>;
@@ -1987,3 +1987,4 @@ export declare const YTooltip: import("vue").DefineComponent<{
1987
1987
  });
1988
1988
  preventClip: boolean;
1989
1989
  }, {}>;
1990
+ export type YTooltip = InstanceType<typeof YTooltip>;
@@ -1,4 +1,5 @@
1
1
  declare const _default: {
2
2
  search: string;
3
+ noItems: string;
3
4
  };
4
5
  export default _default;
package/types/shims.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  import {
2
2
  YAlert,
3
3
  YApp,
4
+ YBadge,
4
5
  YButton,
5
6
  YCard,
6
7
  YCardBody,
@@ -88,5 +89,6 @@ declare module '@vue/runtime-core' {
88
89
  YIcon: typeof YIcon;
89
90
  YDatePicker: typeof YDatePicker;
90
91
  YMonthPicker: typeof YMonthPicker;
92
+ YBadge: typeof YBadge;
91
93
  }
92
94
  }