@geckou/ui-vue 0.3.1 → 0.4.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 (145) hide show
  1. package/README.md +8 -1
  2. package/dist/components/ArticleList/Card/Artistic.vue.d.ts +10 -0
  3. package/dist/components/ArticleList/Card/Entertainment.vue.d.ts +10 -0
  4. package/dist/components/ArticleList/Card/Gallery.vue.d.ts +10 -0
  5. package/dist/components/ArticleList/Card/Grid.vue.d.ts +11 -0
  6. package/dist/components/ArticleList/Card/News.vue.d.ts +9 -0
  7. package/dist/components/ArticleList/Card/Rounded.vue.d.ts +10 -0
  8. package/dist/components/ArticleList/Card/Row.vue.d.ts +9 -0
  9. package/dist/components/ArticleList/Card/Simple.vue.d.ts +10 -0
  10. package/dist/components/ArticleList/Card/Standard.vue.d.ts +10 -0
  11. package/dist/components/ArticleList/Card/Tile.vue.d.ts +10 -0
  12. package/dist/components/ArticleList/GenericArticleList.vue.d.ts +11 -0
  13. package/dist/components/ArticleList/List/Artistic.vue.d.ts +8 -0
  14. package/dist/components/ArticleList/List/Entertainment.vue.d.ts +8 -0
  15. package/dist/components/ArticleList/List/Gallery.vue.d.ts +8 -0
  16. package/dist/components/ArticleList/List/Grid.vue.d.ts +11 -0
  17. package/dist/components/ArticleList/List/News.vue.d.ts +8 -0
  18. package/dist/components/ArticleList/List/Rounded.vue.d.ts +8 -0
  19. package/dist/components/ArticleList/List/Row.vue.d.ts +8 -0
  20. package/dist/components/ArticleList/List/Simple.vue.d.ts +8 -0
  21. package/dist/components/ArticleList/List/Standard.vue.d.ts +8 -0
  22. package/dist/components/ArticleList/List/Tile.vue.d.ts +8 -0
  23. package/dist/components/ArticleList/Parts/AuthorInfo.vue.d.ts +31 -0
  24. package/dist/components/ArticleList/Parts/CardContainer.vue.d.ts +20 -0
  25. package/dist/components/ArticleList/Parts/CardHeading.vue.d.ts +12 -0
  26. package/dist/components/ArticleList/Parts/CategoryList.vue.d.ts +19 -0
  27. package/dist/components/ArticleList/Parts/ExcerptText.vue.d.ts +12 -0
  28. package/dist/components/ArticleList/Parts/MetadataList.vue.d.ts +32 -0
  29. package/dist/components/ArticleList/Parts/NoImage.vue.d.ts +2 -0
  30. package/dist/components/ArticleList/Parts/PostedDate.vue.d.ts +14 -0
  31. package/dist/components/ArticleList/Parts/TagList.vue.d.ts +18 -0
  32. package/dist/components/ArticleList/Parts/ThumbnailImage.vue.d.ts +17 -0
  33. package/dist/components/BasicButton.vue.d.ts +26 -0
  34. package/dist/components/CheckBox.vue.d.ts +34 -0
  35. package/dist/components/CheckBoxes.vue.d.ts +18 -0
  36. package/dist/components/CheckButton.vue.d.ts +31 -0
  37. package/dist/components/DatePicker.vue.d.ts +27 -0
  38. package/dist/components/DateRangePicker.vue.d.ts +31 -0
  39. package/dist/components/DateSelector.vue.d.ts +17 -0
  40. package/dist/components/DropdownUi.vue.d.ts +37 -0
  41. package/dist/components/ErrorMessage.vue.d.ts +9 -0
  42. package/dist/components/Icon/CalendarIcon.vue.d.ts +2 -0
  43. package/dist/components/Icon/CheckIcon.vue.d.ts +2 -0
  44. package/dist/components/Icon/CloseIcon.vue.d.ts +2 -0
  45. package/dist/components/Icon/Folder.vue.d.ts +2 -0
  46. package/dist/components/Icon/Image.vue.d.ts +2 -0
  47. package/dist/components/Icon/KeyboardArrowDownIcon.vue.d.ts +2 -0
  48. package/dist/components/Icon/Tag.vue.d.ts +2 -0
  49. package/dist/components/InputBox.vue.d.ts +27 -0
  50. package/dist/components/InputGroup.vue.d.ts +17 -0
  51. package/dist/components/LabeledCheckbox.vue.d.ts +20 -0
  52. package/dist/components/LabeledFieldset.vue.d.ts +21 -0
  53. package/dist/components/LoadingSpinner.vue.d.ts +2 -0
  54. package/dist/components/ModalBox.vue.d.ts +27 -0
  55. package/dist/components/PopupBox.vue.d.ts +30 -0
  56. package/dist/components/RadioButtons.vue.d.ts +20 -0
  57. package/dist/components/SelectBox.vue.d.ts +37 -0
  58. package/dist/components/SlideDownUi.vue.d.ts +37 -0
  59. package/dist/components/TabUI.vue.d.ts +54 -0
  60. package/dist/components/TextArea.vue.d.ts +33 -0
  61. package/dist/components/TextBox.vue.d.ts +44 -0
  62. package/dist/components/TextButton.vue.d.ts +10 -0
  63. package/dist/components/ToggleButton.vue.d.ts +23 -0
  64. package/dist/const/index.d.ts +1 -0
  65. package/dist/const/list-theme.d.ts +62 -0
  66. package/dist/index.d.ts +43 -0
  67. package/dist/index.js +3519 -0
  68. package/dist/scripts/form-validation-manager.d.ts +30 -0
  69. package/dist/scripts/unique-id.d.ts +1 -0
  70. package/dist/scripts/use-click-outside.d.ts +13 -0
  71. package/dist/scripts/utils.d.ts +15 -0
  72. package/dist/style.css +1 -0
  73. package/dist/types/index.d.ts +48 -77
  74. package/package.json +16 -8
  75. package/dist/assets/scss/functions.scss +0 -6
  76. package/dist/assets/scss/mixin.scss +0 -33
  77. package/dist/components/ArticleList/Card/Artistic.vue +0 -311
  78. package/dist/components/ArticleList/Card/Entertainment.vue +0 -245
  79. package/dist/components/ArticleList/Card/Gallery.vue +0 -255
  80. package/dist/components/ArticleList/Card/Grid.vue +0 -248
  81. package/dist/components/ArticleList/Card/News.vue +0 -151
  82. package/dist/components/ArticleList/Card/Rounded.vue +0 -155
  83. package/dist/components/ArticleList/Card/Row.vue +0 -168
  84. package/dist/components/ArticleList/Card/Simple.vue +0 -233
  85. package/dist/components/ArticleList/Card/Standard.vue +0 -188
  86. package/dist/components/ArticleList/Card/Tile.vue +0 -172
  87. package/dist/components/ArticleList/GenericArticleList.vue +0 -143
  88. package/dist/components/ArticleList/List/Artistic.vue +0 -24
  89. package/dist/components/ArticleList/List/Entertainment.vue +0 -24
  90. package/dist/components/ArticleList/List/Gallery.vue +0 -24
  91. package/dist/components/ArticleList/List/Grid.vue +0 -216
  92. package/dist/components/ArticleList/List/News.vue +0 -24
  93. package/dist/components/ArticleList/List/Rounded.vue +0 -24
  94. package/dist/components/ArticleList/List/Row.vue +0 -24
  95. package/dist/components/ArticleList/List/Simple.vue +0 -24
  96. package/dist/components/ArticleList/List/Standard.vue +0 -24
  97. package/dist/components/ArticleList/List/Tile.vue +0 -24
  98. package/dist/components/ArticleList/Parts/AuthorInfo.vue +0 -100
  99. package/dist/components/ArticleList/Parts/CardContainer.vue +0 -23
  100. package/dist/components/ArticleList/Parts/CardHeading.vue +0 -43
  101. package/dist/components/ArticleList/Parts/CategoryList.vue +0 -41
  102. package/dist/components/ArticleList/Parts/ExcerptText.vue +0 -43
  103. package/dist/components/ArticleList/Parts/MetadataList.vue +0 -120
  104. package/dist/components/ArticleList/Parts/NoImage.vue +0 -36
  105. package/dist/components/ArticleList/Parts/PostedDate.vue +0 -41
  106. package/dist/components/ArticleList/Parts/TagList.vue +0 -41
  107. package/dist/components/ArticleList/Parts/ThumbnailImage.vue +0 -85
  108. package/dist/components/BasicButton.vue +0 -143
  109. package/dist/components/CheckBox.vue +0 -140
  110. package/dist/components/CheckBoxes.vue +0 -101
  111. package/dist/components/CheckButton.vue +0 -127
  112. package/dist/components/DatePicker.vue +0 -234
  113. package/dist/components/DateRangePicker.vue +0 -85
  114. package/dist/components/DateSelector.vue +0 -273
  115. package/dist/components/DropdownUi.vue +0 -118
  116. package/dist/components/ErrorMessage.vue +0 -61
  117. package/dist/components/Icon/CalendarIcon.vue +0 -8
  118. package/dist/components/Icon/CheckIcon.vue +0 -8
  119. package/dist/components/Icon/CloseIcon.vue +0 -8
  120. package/dist/components/Icon/Folder.vue +0 -8
  121. package/dist/components/Icon/Image.vue +0 -14
  122. package/dist/components/Icon/KeyboardArrowDownIcon.vue +0 -8
  123. package/dist/components/Icon/Tag.vue +0 -8
  124. package/dist/components/InputBox.vue +0 -134
  125. package/dist/components/InputGroup.vue +0 -41
  126. package/dist/components/LabeledCheckbox.vue +0 -82
  127. package/dist/components/LabeledFieldset.vue +0 -41
  128. package/dist/components/LoadingSpinner.vue +0 -56
  129. package/dist/components/ModalBox.vue +0 -192
  130. package/dist/components/PopupBox.vue +0 -93
  131. package/dist/components/RadioButtons.vue +0 -163
  132. package/dist/components/SelectBox.vue +0 -166
  133. package/dist/components/SlideDownUi.vue +0 -123
  134. package/dist/components/TabUI.vue +0 -123
  135. package/dist/components/TextArea.vue +0 -115
  136. package/dist/components/TextBox.vue +0 -111
  137. package/dist/components/TextButton.vue +0 -47
  138. package/dist/components/ToggleButton.vue +0 -179
  139. package/dist/const/index.ts +0 -2
  140. package/dist/const/list-theme.ts +0 -62
  141. package/dist/index.ts +0 -126
  142. package/dist/scripts/form-validation-manager.ts +0 -63
  143. package/dist/scripts/utils.ts +0 -44
  144. package/dist/types/custom.d.ts +0 -1
  145. package/dist/types/vue-shim.d.ts +0 -5
package/README.md CHANGED
@@ -21,11 +21,16 @@ Vue 本体は同梱していません。プロジェクト側の Vue 3.0 以上
21
21
  ```ts
22
22
  import { createApp } from 'vue'
23
23
  import GeckouUi from '@geckou/ui-vue'
24
+ import '@geckou/ui-vue/style.css'
24
25
  import App from './App.vue'
25
26
 
26
27
  createApp(App).use(GeckouUi).mount('#app')
27
28
  ```
28
29
 
30
+ **スタイルの読み込みが必要です。** コンポーネントの `<style module>` はビルド時に
31
+ `dist/style.css` へまとめて出しているため、`@geckou/ui-vue/style.css` を 1 度読み込んでください
32
+ (ソース配布だった 0.3.1 以前は不要でした)。
33
+
29
34
  ```ts
30
35
  // 個別インポート
31
36
  import { TextBox, StandardList } from '@geckou/ui-vue'
@@ -78,7 +83,9 @@ const period = ref({ start: '', end: '' })
78
83
  |-----------|-----------|-----------|
79
84
  | `DatePicker` | `string`(`YYYY-MM-DD` / `type="month"` なら `YYYY-MM`) | `name` / `isRequired` / `isDisabled` / `minDate` / `maxDate` / `size` / `type` / `formValidationManager` |
80
85
  | `DateRangePicker` | `{ start: string; end: string }` | `DatePicker` と同じ(開始日と終了日の min / max が自動連動) |
81
- | `DateSelector` | `string`(`YYYY-MM-DD`) | `name` / `isRequired` / `type` / `formValidationManager` |
86
+ | `DateSelector` | `string`(`YYYY-MM-DD` / `type="month"` なら `YYYY-MM`) | `name` / `isRequired` / `type` / `formValidationManager` |
87
+
88
+ React 版(`@geckou/ui-react`)も同じ props 構成です(`v-model` が `value` + `onChange` になります)。
82
89
 
83
90
  ### Article List
84
91
 
@@ -0,0 +1,10 @@
1
+ import { Article, Category, PostConfig } from '../../../types';
2
+ type __VLS_Props = {
3
+ article: Article;
4
+ path: string;
5
+ isPickUpItem: boolean;
6
+ postConfig: PostConfig;
7
+ categories: Category[];
8
+ };
9
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ import { Article, Category, PostConfig } from '../../../types';
2
+ type __VLS_Props = {
3
+ article: Article;
4
+ path: string;
5
+ isPickUpItem: boolean;
6
+ postConfig: PostConfig;
7
+ categories: Category[];
8
+ };
9
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ import { Article, Category, PostConfig } from '../../../types';
2
+ type __VLS_Props = {
3
+ article: Article;
4
+ path: string;
5
+ isPickUpItem: boolean;
6
+ postConfig: PostConfig;
7
+ categories: Category[];
8
+ };
9
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
10
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import { Article, Category, PostConfig } from '../../../types';
2
+ type __VLS_Props = {
3
+ article: Article;
4
+ path: string;
5
+ isPickUpItem: boolean;
6
+ postConfig: PostConfig;
7
+ categories: Category[];
8
+ direction: 'horizontal' | 'vertical';
9
+ };
10
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
11
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import { Article, Category, PostConfig } from '../../../types';
2
+ type __VLS_Props = {
3
+ article: Article;
4
+ path: string;
5
+ postConfig: PostConfig;
6
+ categories: Category[];
7
+ };
8
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
9
+ export default _default;
@@ -0,0 +1,10 @@
1
+ import { Article, Category, PostConfig } from '../../../types';
2
+ type __VLS_Props = {
3
+ article: Article;
4
+ path: string;
5
+ isPickUpItem: boolean;
6
+ postConfig: PostConfig;
7
+ categories: Category[];
8
+ };
9
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
10
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import { Article, Category, PostConfig } from '../../../types';
2
+ type __VLS_Props = {
3
+ article: Article;
4
+ path: string;
5
+ postConfig: PostConfig;
6
+ categories: Category[];
7
+ };
8
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
9
+ export default _default;
@@ -0,0 +1,10 @@
1
+ import { Article, Category, PostConfig } from '../../../types';
2
+ type __VLS_Props = {
3
+ article: Article;
4
+ path: string;
5
+ isPickUpItem: boolean;
6
+ postConfig: PostConfig;
7
+ categories: Category[];
8
+ };
9
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ import { Article, Category, PostConfig } from '../../../types';
2
+ type __VLS_Props = {
3
+ article: Article;
4
+ path: string;
5
+ isPickUpItem: boolean;
6
+ postConfig: PostConfig;
7
+ categories: Category[];
8
+ };
9
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
10
+ export default _default;
@@ -0,0 +1,10 @@
1
+ import { Article, Category, PostConfig } from '../../../types';
2
+ type __VLS_Props = {
3
+ article: Article;
4
+ path: string;
5
+ isPickUpItem: boolean;
6
+ postConfig: PostConfig;
7
+ categories: Category[];
8
+ };
9
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
10
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import { Article, Category, ListSettings } from '../../types';
2
+ import { LIST_THEME } from '../../const/list-theme';
3
+ type __VLS_Props = {
4
+ articles: Article[];
5
+ theme: keyof typeof LIST_THEME;
6
+ categories: Category[];
7
+ columnNumber: number;
8
+ settings: ListSettings;
9
+ };
10
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLUListElement>;
11
+ export default _default;
@@ -0,0 +1,8 @@
1
+ import { Article, Category, ListSettings } from '../../../types';
2
+ type __VLS_Props = {
3
+ articles: Article[];
4
+ categories: Category[];
5
+ settings: ListSettings;
6
+ };
7
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLUListElement>;
8
+ export default _default;
@@ -0,0 +1,8 @@
1
+ import { Article, Category, ListSettings } from '../../../types';
2
+ type __VLS_Props = {
3
+ articles: Article[];
4
+ categories: Category[];
5
+ settings: ListSettings;
6
+ };
7
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLUListElement>;
8
+ export default _default;
@@ -0,0 +1,8 @@
1
+ import { Article, Category, ListSettings } from '../../../types';
2
+ type __VLS_Props = {
3
+ articles: Article[];
4
+ categories: Category[];
5
+ settings: ListSettings;
6
+ };
7
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLUListElement>;
8
+ export default _default;
@@ -0,0 +1,11 @@
1
+ import { Article, Category, ListSettings } from '../../../types';
2
+ type __VLS_Props = {
3
+ articles: Article[];
4
+ categories: Category[];
5
+ columnNumber: number;
6
+ settings: ListSettings;
7
+ };
8
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
9
+ listElement: HTMLUListElement;
10
+ }, HTMLUListElement>;
11
+ export default _default;
@@ -0,0 +1,8 @@
1
+ import { Article, Category, ListSettings } from '../../../types';
2
+ type __VLS_Props = {
3
+ articles: Article[];
4
+ categories: Category[];
5
+ settings: ListSettings;
6
+ };
7
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLUListElement>;
8
+ export default _default;
@@ -0,0 +1,8 @@
1
+ import { Article, Category, ListSettings } from '../../../types';
2
+ type __VLS_Props = {
3
+ articles: Article[];
4
+ categories: Category[];
5
+ settings: ListSettings;
6
+ };
7
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLUListElement>;
8
+ export default _default;
@@ -0,0 +1,8 @@
1
+ import { Article, Category, ListSettings } from '../../../types';
2
+ type __VLS_Props = {
3
+ articles: Article[];
4
+ categories: Category[];
5
+ settings: ListSettings;
6
+ };
7
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLUListElement>;
8
+ export default _default;
@@ -0,0 +1,8 @@
1
+ import { Article, Category, ListSettings } from '../../../types';
2
+ type __VLS_Props = {
3
+ articles: Article[];
4
+ categories: Category[];
5
+ settings: ListSettings;
6
+ };
7
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLUListElement>;
8
+ export default _default;
@@ -0,0 +1,8 @@
1
+ import { Article, Category, ListSettings } from '../../../types';
2
+ type __VLS_Props = {
3
+ articles: Article[];
4
+ categories: Category[];
5
+ settings: ListSettings;
6
+ };
7
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLUListElement>;
8
+ export default _default;
@@ -0,0 +1,8 @@
1
+ import { Article, Category, ListSettings } from '../../../types';
2
+ type __VLS_Props = {
3
+ articles: Article[];
4
+ categories: Category[];
5
+ settings: ListSettings;
6
+ };
7
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLUListElement>;
8
+ export default _default;
@@ -0,0 +1,31 @@
1
+ type __VLS_Props = {
2
+ avatarUrls?: Record<string, string> | null;
3
+ name?: string;
4
+ direction?: 'row' | 'row-reverse';
5
+ thumbnail?: {
6
+ size?: 'small' | 'medium' | 'large';
7
+ shape?: 'square' | 'circle';
8
+ };
9
+ text?: {
10
+ color?: string;
11
+ fontSize?: string;
12
+ fontWeight?: string;
13
+ preposition?: string;
14
+ };
15
+ };
16
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
17
+ text: {
18
+ color?: string;
19
+ fontSize?: string;
20
+ fontWeight?: string;
21
+ preposition?: string;
22
+ };
23
+ name: string;
24
+ thumbnail: {
25
+ size?: "small" | "medium" | "large";
26
+ shape?: "square" | "circle";
27
+ };
28
+ avatarUrls: Record<string, string> | null;
29
+ direction: "row" | "row-reverse";
30
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
31
+ export default _default;
@@ -0,0 +1,20 @@
1
+ type __VLS_Props = {
2
+ path: string;
3
+ };
4
+ declare function __VLS_template(): {
5
+ attrs: Partial<{}>;
6
+ slots: {
7
+ default?(_: {}): any;
8
+ };
9
+ refs: {};
10
+ rootEl: HTMLAnchorElement;
11
+ };
12
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
13
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLAnchorElement>;
14
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
15
+ export default _default;
16
+ type __VLS_WithTemplateSlots<T, S> = T & {
17
+ new (): {
18
+ $slots: S;
19
+ };
20
+ };
@@ -0,0 +1,12 @@
1
+ type __VLS_Props = {
2
+ heading: string;
3
+ color?: string;
4
+ fontSize?: string;
5
+ fontWeight?: string;
6
+ };
7
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
8
+ color: string;
9
+ fontSize: string;
10
+ fontWeight: string;
11
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
12
+ export default _default;
@@ -0,0 +1,19 @@
1
+ import { Category } from '../../../types';
2
+ type __VLS_Props = {
3
+ categoryIds: string[];
4
+ categoryData: Category[];
5
+ icon?: {
6
+ color?: string;
7
+ size?: 'small' | 'medium';
8
+ };
9
+ label?: {
10
+ backgroundColor?: string;
11
+ color?: string;
12
+ fontSize?: string;
13
+ fontWeight?: string;
14
+ shape?: 'square' | 'rounded';
15
+ };
16
+ delimiter?: string;
17
+ };
18
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
19
+ export default _default;
@@ -0,0 +1,12 @@
1
+ type __VLS_Props = {
2
+ excerpt: string;
3
+ color?: string;
4
+ fontSize?: string;
5
+ row?: number;
6
+ };
7
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
8
+ color: string;
9
+ row: number;
10
+ fontSize: string;
11
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
12
+ export default _default;
@@ -0,0 +1,32 @@
1
+ type __VLS_Props = {
2
+ metadata: string[];
3
+ icon?: {
4
+ name?: 'FolderIcon' | 'TagIcon' | null;
5
+ color?: string;
6
+ size?: 'small' | 'medium';
7
+ };
8
+ label?: {
9
+ backgroundColor?: string;
10
+ color?: string;
11
+ fontSize?: string;
12
+ fontWeight?: string;
13
+ shape?: 'square' | 'rounded';
14
+ };
15
+ delimiter?: string;
16
+ };
17
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
18
+ label: {
19
+ backgroundColor?: string;
20
+ color?: string;
21
+ fontSize?: string;
22
+ fontWeight?: string;
23
+ shape?: "square" | "rounded";
24
+ };
25
+ icon: {
26
+ name?: "FolderIcon" | "TagIcon" | null;
27
+ color?: string;
28
+ size?: "small" | "medium";
29
+ };
30
+ delimiter: string;
31
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
32
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
2
+ export default _default;
@@ -0,0 +1,14 @@
1
+ type __VLS_Props = {
2
+ date: string;
3
+ formatString?: string;
4
+ color?: string;
5
+ fontSize?: string;
6
+ fontWeight?: string;
7
+ };
8
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
9
+ color: string;
10
+ fontSize: string;
11
+ fontWeight: string;
12
+ formatString: string;
13
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLTimeElement>;
14
+ export default _default;
@@ -0,0 +1,18 @@
1
+ import { Article } from '../../../types';
2
+ type __VLS_Props = {
3
+ article: Article;
4
+ icon?: {
5
+ color?: string;
6
+ size?: 'small' | 'medium';
7
+ };
8
+ label?: {
9
+ backgroundColor?: string;
10
+ color?: string;
11
+ fontSize?: string;
12
+ fontWeight?: string;
13
+ shape?: 'square' | 'rounded';
14
+ };
15
+ delimiter?: string;
16
+ };
17
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
18
+ export default _default;
@@ -0,0 +1,17 @@
1
+ import { Article } from '../../../types';
2
+ type __VLS_Props = {
3
+ article: Article;
4
+ aspectRatio?: {
5
+ desktop?: string;
6
+ tablet?: string;
7
+ mobile?: string;
8
+ };
9
+ };
10
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
11
+ aspectRatio: {
12
+ desktop?: string;
13
+ tablet?: string;
14
+ mobile?: string;
15
+ };
16
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
17
+ export default _default;
@@ -0,0 +1,26 @@
1
+ import { ButtonStyleForEachStatus } from '../types';
2
+ type __VLS_Props = {
3
+ cssStyle?: ButtonStyleForEachStatus;
4
+ duration?: number;
5
+ isLoading?: boolean;
6
+ isDisabled?: boolean;
7
+ buttonType?: 'button' | 'submit' | 'reset';
8
+ };
9
+ declare function __VLS_template(): {
10
+ attrs: Partial<{}>;
11
+ slots: {
12
+ loading?(_: {}): any;
13
+ default?(_: {}): any;
14
+ };
15
+ refs: {};
16
+ rootEl: HTMLButtonElement;
17
+ };
18
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
19
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
20
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
21
+ export default _default;
22
+ type __VLS_WithTemplateSlots<T, S> = T & {
23
+ new (): {
24
+ $slots: S;
25
+ };
26
+ };
@@ -0,0 +1,34 @@
1
+ import { CheckBoxStyleForEachStatus } from '../types';
2
+ type __VLS_Props = {
3
+ name: string;
4
+ /** ネイティブ送信で使う値。同じ name のグループで区別するために渡す */
5
+ value?: string | number;
6
+ modelValue?: boolean;
7
+ isDisabled?: boolean;
8
+ cssStyle?: CheckBoxStyleForEachStatus;
9
+ isDisableAnimation?: boolean;
10
+ };
11
+ declare function __VLS_template(): {
12
+ attrs: Partial<{}>;
13
+ slots: {
14
+ check?(_: {}): any;
15
+ };
16
+ refs: {};
17
+ rootEl: HTMLButtonElement;
18
+ };
19
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
20
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
21
+ "update:modelValue": (newValue: boolean) => any;
22
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
23
+ "onUpdate:modelValue"?: ((newValue: boolean) => any) | undefined;
24
+ }>, {
25
+ cssStyle: CheckBoxStyleForEachStatus;
26
+ value: string | number;
27
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
28
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
29
+ export default _default;
30
+ type __VLS_WithTemplateSlots<T, S> = T & {
31
+ new (): {
32
+ $slots: S;
33
+ };
34
+ };
@@ -0,0 +1,18 @@
1
+ import { Option, SelectValue, CheckBoxStyleForEachStatus } from '../types';
2
+ type __VLS_Props = {
3
+ name: string;
4
+ options: Array<Option>;
5
+ modelValue?: SelectValue[];
6
+ isDisabled?: boolean;
7
+ isRequired?: boolean;
8
+ cssStyle?: CheckBoxStyleForEachStatus;
9
+ };
10
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
11
+ "update:modelValue": (newValue: SelectValue[]) => any;
12
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
13
+ "onUpdate:modelValue"?: ((newValue: SelectValue[]) => any) | undefined;
14
+ }>, {
15
+ cssStyle: CheckBoxStyleForEachStatus;
16
+ modelValue: SelectValue[];
17
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
18
+ export default _default;
@@ -0,0 +1,31 @@
1
+ import { CheckBoxStyleForEachStatus } from '../types';
2
+ type __VLS_Props = {
3
+ name: string;
4
+ modelValue?: boolean;
5
+ isDisabled?: boolean;
6
+ cssStyle?: CheckBoxStyleForEachStatus;
7
+ isDisableAnimation?: boolean;
8
+ };
9
+ declare function __VLS_template(): {
10
+ attrs: Partial<{}>;
11
+ slots: {
12
+ check?(_: {}): any;
13
+ };
14
+ refs: {};
15
+ rootEl: HTMLLabelElement;
16
+ };
17
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
18
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
19
+ "update:modelValue": (newValue: boolean) => any;
20
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
21
+ "onUpdate:modelValue"?: ((newValue: boolean) => any) | undefined;
22
+ }>, {
23
+ cssStyle: CheckBoxStyleForEachStatus;
24
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLLabelElement>;
25
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
26
+ export default _default;
27
+ type __VLS_WithTemplateSlots<T, S> = T & {
28
+ new (): {
29
+ $slots: S;
30
+ };
31
+ };
@@ -0,0 +1,27 @@
1
+ import { FormValidationManager } from '../scripts/form-validation-manager';
2
+ type __VLS_Props = {
3
+ name: string;
4
+ modelValue: string;
5
+ isDisabled?: boolean;
6
+ isRequired?: boolean;
7
+ formValidationManager?: FormValidationManager | null;
8
+ minDate?: string;
9
+ maxDate?: string;
10
+ size?: 'small' | 'medium';
11
+ type?: 'date' | 'month';
12
+ };
13
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
14
+ "update:modelValue": (newValue: string | null) => any;
15
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
16
+ "onUpdate:modelValue"?: ((newValue: string | null) => any) | undefined;
17
+ }>, {
18
+ isDisabled: boolean;
19
+ type: "date" | "month";
20
+ size: "small" | "medium";
21
+ formValidationManager: FormValidationManager | null;
22
+ minDate: string;
23
+ maxDate: string;
24
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
25
+ datePicker: HTMLInputElement;
26
+ }, HTMLDivElement>;
27
+ export default _default;
@@ -0,0 +1,31 @@
1
+ import { FormValidationManager } from '../scripts/form-validation-manager';
2
+ type DateRange = {
3
+ start: string;
4
+ end: string;
5
+ };
6
+ type __VLS_Props = {
7
+ name: string;
8
+ modelValue?: DateRange;
9
+ isDisabled?: boolean;
10
+ isRequired?: boolean;
11
+ formValidationManager?: FormValidationManager | null;
12
+ minDate?: string;
13
+ maxDate?: string;
14
+ size?: 'small' | 'medium';
15
+ type?: 'date' | 'month';
16
+ };
17
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
18
+ "update:modelValue": (newValue: DateRange) => any;
19
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
20
+ "onUpdate:modelValue"?: ((newValue: DateRange) => any) | undefined;
21
+ }>, {
22
+ isDisabled: boolean;
23
+ modelValue: DateRange;
24
+ isRequired: boolean;
25
+ type: "date" | "month";
26
+ size: "small" | "medium";
27
+ formValidationManager: FormValidationManager | null;
28
+ minDate: string;
29
+ maxDate: string;
30
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
31
+ export default _default;