@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.
- package/README.md +8 -1
- package/dist/components/ArticleList/Card/Artistic.vue.d.ts +10 -0
- package/dist/components/ArticleList/Card/Entertainment.vue.d.ts +10 -0
- package/dist/components/ArticleList/Card/Gallery.vue.d.ts +10 -0
- package/dist/components/ArticleList/Card/Grid.vue.d.ts +11 -0
- package/dist/components/ArticleList/Card/News.vue.d.ts +9 -0
- package/dist/components/ArticleList/Card/Rounded.vue.d.ts +10 -0
- package/dist/components/ArticleList/Card/Row.vue.d.ts +9 -0
- package/dist/components/ArticleList/Card/Simple.vue.d.ts +10 -0
- package/dist/components/ArticleList/Card/Standard.vue.d.ts +10 -0
- package/dist/components/ArticleList/Card/Tile.vue.d.ts +10 -0
- package/dist/components/ArticleList/GenericArticleList.vue.d.ts +11 -0
- package/dist/components/ArticleList/List/Artistic.vue.d.ts +8 -0
- package/dist/components/ArticleList/List/Entertainment.vue.d.ts +8 -0
- package/dist/components/ArticleList/List/Gallery.vue.d.ts +8 -0
- package/dist/components/ArticleList/List/Grid.vue.d.ts +11 -0
- package/dist/components/ArticleList/List/News.vue.d.ts +8 -0
- package/dist/components/ArticleList/List/Rounded.vue.d.ts +8 -0
- package/dist/components/ArticleList/List/Row.vue.d.ts +8 -0
- package/dist/components/ArticleList/List/Simple.vue.d.ts +8 -0
- package/dist/components/ArticleList/List/Standard.vue.d.ts +8 -0
- package/dist/components/ArticleList/List/Tile.vue.d.ts +8 -0
- package/dist/components/ArticleList/Parts/AuthorInfo.vue.d.ts +31 -0
- package/dist/components/ArticleList/Parts/CardContainer.vue.d.ts +20 -0
- package/dist/components/ArticleList/Parts/CardHeading.vue.d.ts +12 -0
- package/dist/components/ArticleList/Parts/CategoryList.vue.d.ts +19 -0
- package/dist/components/ArticleList/Parts/ExcerptText.vue.d.ts +12 -0
- package/dist/components/ArticleList/Parts/MetadataList.vue.d.ts +32 -0
- package/dist/components/ArticleList/Parts/NoImage.vue.d.ts +2 -0
- package/dist/components/ArticleList/Parts/PostedDate.vue.d.ts +14 -0
- package/dist/components/ArticleList/Parts/TagList.vue.d.ts +18 -0
- package/dist/components/ArticleList/Parts/ThumbnailImage.vue.d.ts +17 -0
- package/dist/components/BasicButton.vue.d.ts +26 -0
- package/dist/components/CheckBox.vue.d.ts +34 -0
- package/dist/components/CheckBoxes.vue.d.ts +18 -0
- package/dist/components/CheckButton.vue.d.ts +31 -0
- package/dist/components/DatePicker.vue.d.ts +27 -0
- package/dist/components/DateRangePicker.vue.d.ts +31 -0
- package/dist/components/DateSelector.vue.d.ts +17 -0
- package/dist/components/DropdownUi.vue.d.ts +37 -0
- package/dist/components/ErrorMessage.vue.d.ts +9 -0
- package/dist/components/Icon/CalendarIcon.vue.d.ts +2 -0
- package/dist/components/Icon/CheckIcon.vue.d.ts +2 -0
- package/dist/components/Icon/CloseIcon.vue.d.ts +2 -0
- package/dist/components/Icon/Folder.vue.d.ts +2 -0
- package/dist/components/Icon/Image.vue.d.ts +2 -0
- package/dist/components/Icon/KeyboardArrowDownIcon.vue.d.ts +2 -0
- package/dist/components/Icon/Tag.vue.d.ts +2 -0
- package/dist/components/InputBox.vue.d.ts +27 -0
- package/dist/components/InputGroup.vue.d.ts +17 -0
- package/dist/components/LabeledCheckbox.vue.d.ts +20 -0
- package/dist/components/LabeledFieldset.vue.d.ts +21 -0
- package/dist/components/LoadingSpinner.vue.d.ts +2 -0
- package/dist/components/ModalBox.vue.d.ts +27 -0
- package/dist/components/PopupBox.vue.d.ts +30 -0
- package/dist/components/RadioButtons.vue.d.ts +20 -0
- package/dist/components/SelectBox.vue.d.ts +37 -0
- package/dist/components/SlideDownUi.vue.d.ts +37 -0
- package/dist/components/TabUI.vue.d.ts +54 -0
- package/dist/components/TextArea.vue.d.ts +33 -0
- package/dist/components/TextBox.vue.d.ts +44 -0
- package/dist/components/TextButton.vue.d.ts +10 -0
- package/dist/components/ToggleButton.vue.d.ts +23 -0
- package/dist/const/index.d.ts +1 -0
- package/dist/const/list-theme.d.ts +62 -0
- package/dist/index.d.ts +43 -0
- package/dist/index.js +3519 -0
- package/dist/scripts/form-validation-manager.d.ts +30 -0
- package/dist/scripts/unique-id.d.ts +1 -0
- package/dist/scripts/use-click-outside.d.ts +13 -0
- package/dist/scripts/utils.d.ts +15 -0
- package/dist/style.css +1 -0
- package/dist/types/index.d.ts +48 -77
- package/package.json +16 -8
- package/dist/assets/scss/functions.scss +0 -6
- package/dist/assets/scss/mixin.scss +0 -33
- package/dist/components/ArticleList/Card/Artistic.vue +0 -311
- package/dist/components/ArticleList/Card/Entertainment.vue +0 -245
- package/dist/components/ArticleList/Card/Gallery.vue +0 -255
- package/dist/components/ArticleList/Card/Grid.vue +0 -248
- package/dist/components/ArticleList/Card/News.vue +0 -151
- package/dist/components/ArticleList/Card/Rounded.vue +0 -155
- package/dist/components/ArticleList/Card/Row.vue +0 -168
- package/dist/components/ArticleList/Card/Simple.vue +0 -233
- package/dist/components/ArticleList/Card/Standard.vue +0 -188
- package/dist/components/ArticleList/Card/Tile.vue +0 -172
- package/dist/components/ArticleList/GenericArticleList.vue +0 -143
- package/dist/components/ArticleList/List/Artistic.vue +0 -24
- package/dist/components/ArticleList/List/Entertainment.vue +0 -24
- package/dist/components/ArticleList/List/Gallery.vue +0 -24
- package/dist/components/ArticleList/List/Grid.vue +0 -216
- package/dist/components/ArticleList/List/News.vue +0 -24
- package/dist/components/ArticleList/List/Rounded.vue +0 -24
- package/dist/components/ArticleList/List/Row.vue +0 -24
- package/dist/components/ArticleList/List/Simple.vue +0 -24
- package/dist/components/ArticleList/List/Standard.vue +0 -24
- package/dist/components/ArticleList/List/Tile.vue +0 -24
- package/dist/components/ArticleList/Parts/AuthorInfo.vue +0 -100
- package/dist/components/ArticleList/Parts/CardContainer.vue +0 -23
- package/dist/components/ArticleList/Parts/CardHeading.vue +0 -43
- package/dist/components/ArticleList/Parts/CategoryList.vue +0 -41
- package/dist/components/ArticleList/Parts/ExcerptText.vue +0 -43
- package/dist/components/ArticleList/Parts/MetadataList.vue +0 -120
- package/dist/components/ArticleList/Parts/NoImage.vue +0 -36
- package/dist/components/ArticleList/Parts/PostedDate.vue +0 -41
- package/dist/components/ArticleList/Parts/TagList.vue +0 -41
- package/dist/components/ArticleList/Parts/ThumbnailImage.vue +0 -85
- package/dist/components/BasicButton.vue +0 -143
- package/dist/components/CheckBox.vue +0 -140
- package/dist/components/CheckBoxes.vue +0 -101
- package/dist/components/CheckButton.vue +0 -127
- package/dist/components/DatePicker.vue +0 -234
- package/dist/components/DateRangePicker.vue +0 -85
- package/dist/components/DateSelector.vue +0 -273
- package/dist/components/DropdownUi.vue +0 -118
- package/dist/components/ErrorMessage.vue +0 -61
- package/dist/components/Icon/CalendarIcon.vue +0 -8
- package/dist/components/Icon/CheckIcon.vue +0 -8
- package/dist/components/Icon/CloseIcon.vue +0 -8
- package/dist/components/Icon/Folder.vue +0 -8
- package/dist/components/Icon/Image.vue +0 -14
- package/dist/components/Icon/KeyboardArrowDownIcon.vue +0 -8
- package/dist/components/Icon/Tag.vue +0 -8
- package/dist/components/InputBox.vue +0 -134
- package/dist/components/InputGroup.vue +0 -41
- package/dist/components/LabeledCheckbox.vue +0 -82
- package/dist/components/LabeledFieldset.vue +0 -41
- package/dist/components/LoadingSpinner.vue +0 -56
- package/dist/components/ModalBox.vue +0 -192
- package/dist/components/PopupBox.vue +0 -93
- package/dist/components/RadioButtons.vue +0 -163
- package/dist/components/SelectBox.vue +0 -166
- package/dist/components/SlideDownUi.vue +0 -123
- package/dist/components/TabUI.vue +0 -123
- package/dist/components/TextArea.vue +0 -115
- package/dist/components/TextBox.vue +0 -111
- package/dist/components/TextButton.vue +0 -47
- package/dist/components/ToggleButton.vue +0 -179
- package/dist/const/index.ts +0 -2
- package/dist/const/list-theme.ts +0 -62
- package/dist/index.ts +0 -126
- package/dist/scripts/form-validation-manager.ts +0 -63
- package/dist/scripts/utils.ts +0 -44
- package/dist/types/custom.d.ts +0 -1
- package/dist/types/vue-shim.d.ts +0 -5
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { FormValidationManager } from '../scripts/form-validation-manager';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
name: string;
|
|
4
|
+
modelValue: string;
|
|
5
|
+
isRequired?: boolean;
|
|
6
|
+
formValidationManager?: FormValidationManager | null;
|
|
7
|
+
type?: 'date' | 'month';
|
|
8
|
+
};
|
|
9
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
10
|
+
"update:modelValue": (newValue: string) => any;
|
|
11
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
12
|
+
"onUpdate:modelValue"?: ((newValue: string) => any) | undefined;
|
|
13
|
+
}>, {
|
|
14
|
+
type: "date" | "month";
|
|
15
|
+
formValidationManager: FormValidationManager | null;
|
|
16
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
17
|
+
export default _default;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
isHiddenArrow?: boolean;
|
|
3
|
+
contentAlignment?: 'left' | 'center' | 'right';
|
|
4
|
+
isDisabled?: boolean;
|
|
5
|
+
contentsWidth?: string;
|
|
6
|
+
};
|
|
7
|
+
declare function __VLS_template(): {
|
|
8
|
+
attrs: Partial<{}>;
|
|
9
|
+
slots: {
|
|
10
|
+
trigger?(_: {}): any;
|
|
11
|
+
contents?(_: {}): any;
|
|
12
|
+
};
|
|
13
|
+
refs: {
|
|
14
|
+
root: HTMLDivElement;
|
|
15
|
+
contents: HTMLDivElement;
|
|
16
|
+
};
|
|
17
|
+
rootEl: HTMLDivElement;
|
|
18
|
+
};
|
|
19
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
20
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
21
|
+
isContentsOpened: import('vue').Ref<boolean, boolean>;
|
|
22
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
23
|
+
isDisabled: boolean;
|
|
24
|
+
isHiddenArrow: boolean;
|
|
25
|
+
contentAlignment: "left" | "center" | "right";
|
|
26
|
+
contentsWidth: string;
|
|
27
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
28
|
+
root: HTMLDivElement;
|
|
29
|
+
contents: HTMLDivElement;
|
|
30
|
+
}, HTMLDivElement>;
|
|
31
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
32
|
+
export default _default;
|
|
33
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
34
|
+
new (): {
|
|
35
|
+
$slots: S;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
cssStyle?: {
|
|
3
|
+
textColor: string | undefined;
|
|
4
|
+
backgroundColor: string | undefined;
|
|
5
|
+
};
|
|
6
|
+
errorMessages?: Array<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<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
9
|
+
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, {}, SVGSVGElement>;
|
|
2
|
+
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, {}, SVGSVGElement>;
|
|
2
|
+
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, {}, SVGSVGElement>;
|
|
2
|
+
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, {}, SVGSVGElement>;
|
|
2
|
+
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, {}, SVGSVGElement>;
|
|
2
|
+
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, {}, SVGSVGElement>;
|
|
2
|
+
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, {}, SVGSVGElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { InputBoxStyleForEachStatus } from '../types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
cssStyle?: InputBoxStyleForEachStatus;
|
|
4
|
+
isErrored?: boolean;
|
|
5
|
+
isDisabled?: boolean;
|
|
6
|
+
};
|
|
7
|
+
declare function __VLS_template(): {
|
|
8
|
+
attrs: Partial<{}>;
|
|
9
|
+
slots: {
|
|
10
|
+
default?(_: {}): any;
|
|
11
|
+
};
|
|
12
|
+
refs: {
|
|
13
|
+
inputBox: HTMLDivElement;
|
|
14
|
+
};
|
|
15
|
+
rootEl: HTMLDivElement;
|
|
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, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
19
|
+
inputBox: HTMLDivElement;
|
|
20
|
+
}, HTMLDivElement>;
|
|
21
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
22
|
+
export default _default;
|
|
23
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
24
|
+
new (): {
|
|
25
|
+
$slots: S;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
3
|
+
slots: {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
refs: {};
|
|
7
|
+
rootEl: HTMLDivElement;
|
|
8
|
+
};
|
|
9
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
11
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
12
|
+
export default _default;
|
|
13
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
14
|
+
new (): {
|
|
15
|
+
$slots: S;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { CheckBoxStyleForEachStatus } from '../types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
name: string;
|
|
4
|
+
label: string;
|
|
5
|
+
/** ネイティブ送信で使う値(CheckBox へそのまま渡す) */
|
|
6
|
+
value?: string | number;
|
|
7
|
+
modelValue?: boolean;
|
|
8
|
+
isDisabled?: boolean;
|
|
9
|
+
cssStyle?: CheckBoxStyleForEachStatus;
|
|
10
|
+
isDisableAnimation?: boolean;
|
|
11
|
+
};
|
|
12
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
13
|
+
"update:modelValue": (newValue: boolean) => any;
|
|
14
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
15
|
+
"onUpdate:modelValue"?: ((newValue: boolean) => any) | undefined;
|
|
16
|
+
}>, {
|
|
17
|
+
cssStyle: CheckBoxStyleForEachStatus;
|
|
18
|
+
value: string | number;
|
|
19
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLLabelElement>;
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
isDisabled?: boolean;
|
|
3
|
+
};
|
|
4
|
+
declare function __VLS_template(): {
|
|
5
|
+
attrs: Partial<{}>;
|
|
6
|
+
slots: {
|
|
7
|
+
label?(_: {}): any;
|
|
8
|
+
default?(_: {}): any;
|
|
9
|
+
};
|
|
10
|
+
refs: {};
|
|
11
|
+
rootEl: HTMLDivElement;
|
|
12
|
+
};
|
|
13
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
14
|
+
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, {}, HTMLDivElement>;
|
|
15
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
16
|
+
export default _default;
|
|
17
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
18
|
+
new (): {
|
|
19
|
+
$slots: S;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
@@ -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, {}, SVGSVGElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
2
|
+
isShown: boolean;
|
|
3
|
+
size?: "small" | "medium" | "large";
|
|
4
|
+
/** header スロットを使わない場合のダイアログ名 */
|
|
5
|
+
ariaLabel?: string;
|
|
6
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
7
|
+
closeModal: (state: boolean) => any;
|
|
8
|
+
}, string, import('vue').PublicProps, Readonly<{
|
|
9
|
+
isShown: boolean;
|
|
10
|
+
size?: "small" | "medium" | "large";
|
|
11
|
+
/** header スロットを使わない場合のダイアログ名 */
|
|
12
|
+
ariaLabel?: string;
|
|
13
|
+
}> & Readonly<{
|
|
14
|
+
onCloseModal?: ((state: boolean) => any) | undefined;
|
|
15
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
16
|
+
dialog: HTMLDivElement;
|
|
17
|
+
}, HTMLDivElement>, {
|
|
18
|
+
header?(_: {}): any;
|
|
19
|
+
default?(_: {}): any;
|
|
20
|
+
footer?(_: {}): any;
|
|
21
|
+
}>;
|
|
22
|
+
export default _default;
|
|
23
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
24
|
+
new (): {
|
|
25
|
+
$slots: S;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
position?: {
|
|
3
|
+
x: 'left' | 'right' | 'center';
|
|
4
|
+
y: 'top' | 'bottom' | 'center';
|
|
5
|
+
};
|
|
6
|
+
};
|
|
7
|
+
declare function __VLS_template(): {
|
|
8
|
+
attrs: Partial<{}>;
|
|
9
|
+
slots: {
|
|
10
|
+
default?(_: {}): any;
|
|
11
|
+
};
|
|
12
|
+
refs: {};
|
|
13
|
+
rootEl: any;
|
|
14
|
+
};
|
|
15
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
16
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
17
|
+
showPopup: () => void;
|
|
18
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
19
|
+
position: {
|
|
20
|
+
x: "left" | "right" | "center";
|
|
21
|
+
y: "top" | "bottom" | "center";
|
|
22
|
+
};
|
|
23
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
24
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
25
|
+
export default _default;
|
|
26
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
27
|
+
new (): {
|
|
28
|
+
$slots: S;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Option, RadioButtonStyleForEachStatus } from '../types';
|
|
2
|
+
type SelectValue = string | number;
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
modelValue: SelectValue;
|
|
5
|
+
options: Array<Option>;
|
|
6
|
+
name?: string;
|
|
7
|
+
isDisabled?: boolean;
|
|
8
|
+
isRequired?: boolean;
|
|
9
|
+
cssStyle?: RadioButtonStyleForEachStatus;
|
|
10
|
+
isDisableAnimation?: boolean;
|
|
11
|
+
};
|
|
12
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
13
|
+
"update:modelValue": (newValue: SelectValue) => any;
|
|
14
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
15
|
+
"onUpdate:modelValue"?: ((newValue: SelectValue) => any) | undefined;
|
|
16
|
+
}>, {
|
|
17
|
+
cssStyle: RadioButtonStyleForEachStatus;
|
|
18
|
+
name: string;
|
|
19
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { Option, InputBoxStyleForEachStatus } from '../types';
|
|
2
|
+
type SelectValue = string | number;
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
options: Array<Option | Record<string, Option[]>>;
|
|
5
|
+
name: string;
|
|
6
|
+
modelValue?: SelectValue;
|
|
7
|
+
cssStyle?: InputBoxStyleForEachStatus | undefined;
|
|
8
|
+
placeholder?: string;
|
|
9
|
+
canOmitSelect?: boolean;
|
|
10
|
+
isDisabled?: boolean;
|
|
11
|
+
isRequired?: boolean;
|
|
12
|
+
};
|
|
13
|
+
declare function __VLS_template(): {
|
|
14
|
+
attrs: Partial<{}>;
|
|
15
|
+
slots: {
|
|
16
|
+
arrow?(_: {}): any;
|
|
17
|
+
};
|
|
18
|
+
refs: {};
|
|
19
|
+
rootEl: HTMLDivElement;
|
|
20
|
+
};
|
|
21
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
22
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
23
|
+
"update:modelValue": (newValue: SelectValue) => any;
|
|
24
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
25
|
+
"onUpdate:modelValue"?: ((newValue: SelectValue) => any) | undefined;
|
|
26
|
+
}>, {
|
|
27
|
+
cssStyle: InputBoxStyleForEachStatus;
|
|
28
|
+
modelValue: SelectValue;
|
|
29
|
+
placeholder: string;
|
|
30
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
31
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
32
|
+
export default _default;
|
|
33
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
34
|
+
new (): {
|
|
35
|
+
$slots: S;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { Ref } from 'vue';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
isOpened?: boolean | null;
|
|
4
|
+
isHiddenArrow?: boolean;
|
|
5
|
+
isDisabled?: boolean;
|
|
6
|
+
isDisableClickOutside?: boolean;
|
|
7
|
+
duration?: number;
|
|
8
|
+
};
|
|
9
|
+
declare function __VLS_template(): {
|
|
10
|
+
attrs: Partial<{}>;
|
|
11
|
+
slots: {
|
|
12
|
+
trigger?(_: {}): any;
|
|
13
|
+
default?(_: {}): any;
|
|
14
|
+
};
|
|
15
|
+
refs: {
|
|
16
|
+
root: HTMLDivElement;
|
|
17
|
+
contents: HTMLDivElement;
|
|
18
|
+
};
|
|
19
|
+
rootEl: HTMLDivElement;
|
|
20
|
+
};
|
|
21
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
22
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
23
|
+
isOpenedContents: Ref<boolean, boolean>;
|
|
24
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
25
|
+
duration: number;
|
|
26
|
+
isOpened: boolean | null;
|
|
27
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
28
|
+
root: HTMLDivElement;
|
|
29
|
+
contents: HTMLDivElement;
|
|
30
|
+
}, HTMLDivElement>;
|
|
31
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
32
|
+
export default _default;
|
|
33
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
34
|
+
new (): {
|
|
35
|
+
$slots: S;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
tabs: {
|
|
3
|
+
key: string;
|
|
4
|
+
label: string;
|
|
5
|
+
}[];
|
|
6
|
+
color?: {
|
|
7
|
+
active: string;
|
|
8
|
+
background: string;
|
|
9
|
+
text: string;
|
|
10
|
+
};
|
|
11
|
+
cssStyle?: {
|
|
12
|
+
textColor: string;
|
|
13
|
+
backgroundColor: string;
|
|
14
|
+
border: {
|
|
15
|
+
color: string;
|
|
16
|
+
size: string;
|
|
17
|
+
radius: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
type?: 'tab' | 'button' | 'border';
|
|
21
|
+
initialIndex?: number;
|
|
22
|
+
};
|
|
23
|
+
declare function __VLS_template(): {
|
|
24
|
+
attrs: Partial<{}>;
|
|
25
|
+
slots: Partial<Record<string, (_: {}) => any>> & Partial<Record<`${string}Contents`, (_: {}) => any>>;
|
|
26
|
+
refs: {};
|
|
27
|
+
rootEl: HTMLDivElement;
|
|
28
|
+
};
|
|
29
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
30
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
31
|
+
cssStyle: {
|
|
32
|
+
textColor: string;
|
|
33
|
+
backgroundColor: string;
|
|
34
|
+
border: {
|
|
35
|
+
color: string;
|
|
36
|
+
size: string;
|
|
37
|
+
radius: string;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
color: {
|
|
41
|
+
active: string;
|
|
42
|
+
background: string;
|
|
43
|
+
text: string;
|
|
44
|
+
};
|
|
45
|
+
type: "tab" | "button" | "border";
|
|
46
|
+
initialIndex: number;
|
|
47
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
48
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
49
|
+
export default _default;
|
|
50
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
51
|
+
new (): {
|
|
52
|
+
$slots: S;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { Validates, InputBoxStyleForEachStatus } from '../types';
|
|
2
|
+
type InputValue = string | null;
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
name: string;
|
|
5
|
+
modelValue?: InputValue;
|
|
6
|
+
cssStyle?: InputBoxStyleForEachStatus | undefined;
|
|
7
|
+
placeholder?: string;
|
|
8
|
+
isDisabled?: boolean;
|
|
9
|
+
isRequired?: boolean;
|
|
10
|
+
rows?: number;
|
|
11
|
+
maxLength?: number;
|
|
12
|
+
autocomplete?: string;
|
|
13
|
+
validates?: Validates;
|
|
14
|
+
autoAdjustHeight?: boolean;
|
|
15
|
+
};
|
|
16
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
17
|
+
"update:modelValue": (newValue: InputValue) => any;
|
|
18
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
19
|
+
"onUpdate:modelValue"?: ((newValue: InputValue) => any) | undefined;
|
|
20
|
+
}>, {
|
|
21
|
+
cssStyle: InputBoxStyleForEachStatus;
|
|
22
|
+
isDisabled: boolean;
|
|
23
|
+
modelValue: InputValue;
|
|
24
|
+
placeholder: string;
|
|
25
|
+
isRequired: boolean;
|
|
26
|
+
maxLength: number;
|
|
27
|
+
autocomplete: string;
|
|
28
|
+
validates: Validates;
|
|
29
|
+
rows: number;
|
|
30
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
31
|
+
textareaRef: HTMLTextAreaElement;
|
|
32
|
+
}, HTMLDivElement>;
|
|
33
|
+
export default _default;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { Validates, InputBoxStyleForEachStatus } from '../types';
|
|
2
|
+
type InputValue = string | number;
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
name: string;
|
|
5
|
+
modelValue?: InputValue;
|
|
6
|
+
cssStyle?: InputBoxStyleForEachStatus | undefined;
|
|
7
|
+
inputType?: string;
|
|
8
|
+
placeholder?: string;
|
|
9
|
+
isDisabled?: boolean;
|
|
10
|
+
isRequired?: boolean;
|
|
11
|
+
maxLength?: number;
|
|
12
|
+
autocomplete?: string;
|
|
13
|
+
validates?: Validates;
|
|
14
|
+
};
|
|
15
|
+
declare function __VLS_template(): {
|
|
16
|
+
attrs: Partial<{}>;
|
|
17
|
+
slots: {
|
|
18
|
+
before?(_: {}): any;
|
|
19
|
+
after?(_: {}): any;
|
|
20
|
+
};
|
|
21
|
+
refs: {};
|
|
22
|
+
rootEl: HTMLDivElement;
|
|
23
|
+
};
|
|
24
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
25
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
26
|
+
"update:modelValue": (newValue: InputValue) => any;
|
|
27
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
28
|
+
"onUpdate:modelValue"?: ((newValue: InputValue) => any) | undefined;
|
|
29
|
+
}>, {
|
|
30
|
+
cssStyle: InputBoxStyleForEachStatus;
|
|
31
|
+
modelValue: InputValue;
|
|
32
|
+
inputType: string;
|
|
33
|
+
placeholder: string;
|
|
34
|
+
maxLength: number;
|
|
35
|
+
autocomplete: string;
|
|
36
|
+
validates: Validates;
|
|
37
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
38
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
39
|
+
export default _default;
|
|
40
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
41
|
+
new (): {
|
|
42
|
+
$slots: S;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
text: string;
|
|
3
|
+
variant?: 'default' | 'caution';
|
|
4
|
+
isDisabled?: boolean;
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
7
|
+
isDisabled: boolean;
|
|
8
|
+
variant: "default" | "caution";
|
|
9
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
10
|
+
export default _default;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { StateVariation, BaseStyle } from '../types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
name: string;
|
|
4
|
+
label?: Record<'on' | 'off', string>;
|
|
5
|
+
modelValue?: boolean;
|
|
6
|
+
isDisabled?: boolean;
|
|
7
|
+
cssStyle?: Record<StateVariation, {
|
|
8
|
+
on: BaseStyle;
|
|
9
|
+
off: BaseStyle;
|
|
10
|
+
}>;
|
|
11
|
+
};
|
|
12
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
13
|
+
"update:modelValue": (newValue: boolean) => any;
|
|
14
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
15
|
+
"onUpdate:modelValue"?: ((newValue: boolean) => any) | undefined;
|
|
16
|
+
}>, {
|
|
17
|
+
cssStyle: Record<StateVariation, {
|
|
18
|
+
on: BaseStyle;
|
|
19
|
+
off: BaseStyle;
|
|
20
|
+
}>;
|
|
21
|
+
label: Record<"on" | "off", string>;
|
|
22
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
23
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { COLOR, BORDER, MESSAGES, INPUT_BOX_DEFAULT_STYLES, } from '@geckou/ui-core';
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
export declare const LIST_THEME: {
|
|
2
|
+
standard: {
|
|
3
|
+
jaName: string;
|
|
4
|
+
enName: string;
|
|
5
|
+
columnNumber: number;
|
|
6
|
+
name: string;
|
|
7
|
+
};
|
|
8
|
+
rounded: {
|
|
9
|
+
jaName: string;
|
|
10
|
+
enName: string;
|
|
11
|
+
columnNumber: number;
|
|
12
|
+
name: string;
|
|
13
|
+
};
|
|
14
|
+
artistic: {
|
|
15
|
+
jaName: string;
|
|
16
|
+
enName: string;
|
|
17
|
+
columnNumber: number;
|
|
18
|
+
name: string;
|
|
19
|
+
};
|
|
20
|
+
tile: {
|
|
21
|
+
jaName: string;
|
|
22
|
+
enName: string;
|
|
23
|
+
columnNumber: number;
|
|
24
|
+
name: string;
|
|
25
|
+
};
|
|
26
|
+
simple: {
|
|
27
|
+
jaName: string;
|
|
28
|
+
enName: string;
|
|
29
|
+
columnNumber: number;
|
|
30
|
+
name: string;
|
|
31
|
+
};
|
|
32
|
+
row: {
|
|
33
|
+
jaName: string;
|
|
34
|
+
enName: string;
|
|
35
|
+
columnNumber: number;
|
|
36
|
+
name: string;
|
|
37
|
+
};
|
|
38
|
+
news: {
|
|
39
|
+
jaName: string;
|
|
40
|
+
enName: string;
|
|
41
|
+
columnNumber: number;
|
|
42
|
+
name: string;
|
|
43
|
+
};
|
|
44
|
+
grid: {
|
|
45
|
+
jaName: string;
|
|
46
|
+
enName: string;
|
|
47
|
+
columnNumber: number;
|
|
48
|
+
name: string;
|
|
49
|
+
};
|
|
50
|
+
gallery: {
|
|
51
|
+
jaName: string;
|
|
52
|
+
enName: string;
|
|
53
|
+
columnNumber: number;
|
|
54
|
+
name: string;
|
|
55
|
+
};
|
|
56
|
+
entertainment: {
|
|
57
|
+
jaName: string;
|
|
58
|
+
enName: string;
|
|
59
|
+
columnNumber: number;
|
|
60
|
+
name: string;
|
|
61
|
+
};
|
|
62
|
+
};
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { App } from 'vue';
|
|
2
|
+
import { default as TextBox } from './components/TextBox.vue';
|
|
3
|
+
import { default as TextArea } from './components/TextArea.vue';
|
|
4
|
+
import { default as BasicButton } from './components/BasicButton.vue';
|
|
5
|
+
import { default as SelectBox } from './components/SelectBox.vue';
|
|
6
|
+
import { default as CheckBox } from './components/CheckBox.vue';
|
|
7
|
+
import { default as CheckBoxes } from './components/CheckBoxes.vue';
|
|
8
|
+
import { default as CheckButton } from './components/CheckButton.vue';
|
|
9
|
+
import { default as LabeledCheckbox } from './components/LabeledCheckbox.vue';
|
|
10
|
+
import { default as LabeledFieldset } from './components/LabeledFieldset.vue';
|
|
11
|
+
import { default as RadioButtons } from './components/RadioButtons.vue';
|
|
12
|
+
import { default as ToggleButton } from './components/ToggleButton.vue';
|
|
13
|
+
import { default as InputBox } from './components/InputBox.vue';
|
|
14
|
+
import { default as InputGroup } from './components/InputGroup.vue';
|
|
15
|
+
import { default as TextButton } from './components/TextButton.vue';
|
|
16
|
+
import { default as DatePicker } from './components/DatePicker.vue';
|
|
17
|
+
import { default as DateRangePicker } from './components/DateRangePicker.vue';
|
|
18
|
+
import { default as DateSelector } from './components/DateSelector.vue';
|
|
19
|
+
import { default as DropdownUi } from './components/DropdownUi.vue';
|
|
20
|
+
import { default as ModalBox } from './components/ModalBox.vue';
|
|
21
|
+
import { default as PopupBox } from './components/PopupBox.vue';
|
|
22
|
+
import { default as SlideDownUi } from './components/SlideDownUi.vue';
|
|
23
|
+
import { default as TabUI } from './components/TabUI.vue';
|
|
24
|
+
import { default as LoadingSpinner } from './components/LoadingSpinner.vue';
|
|
25
|
+
import { default as ErrorMessage } from './components/ErrorMessage.vue';
|
|
26
|
+
import { default as StandardList } from './components/ArticleList/List/Standard.vue';
|
|
27
|
+
import { default as RoundedList } from './components/ArticleList/List/Rounded.vue';
|
|
28
|
+
import { default as ArtisticList } from './components/ArticleList/List/Artistic.vue';
|
|
29
|
+
import { default as TileList } from './components/ArticleList/List/Tile.vue';
|
|
30
|
+
import { default as SimpleList } from './components/ArticleList/List/Simple.vue';
|
|
31
|
+
import { default as RowList } from './components/ArticleList/List/Row.vue';
|
|
32
|
+
import { default as NewsList } from './components/ArticleList/List/News.vue';
|
|
33
|
+
import { default as EntertainmentList } from './components/ArticleList/List/Entertainment.vue';
|
|
34
|
+
import { default as GalleryList } from './components/ArticleList/List/Gallery.vue';
|
|
35
|
+
import { default as GridList } from './components/ArticleList/List/Grid.vue';
|
|
36
|
+
declare const _default: {
|
|
37
|
+
install(app: App): void;
|
|
38
|
+
};
|
|
39
|
+
export default _default;
|
|
40
|
+
export { TextBox, TextArea, BasicButton, SelectBox, CheckBox, CheckBoxes, CheckButton, LabeledCheckbox, LabeledFieldset, RadioButtons, ToggleButton, InputBox, InputGroup, TextButton, DatePicker, DateRangePicker, DateSelector, DropdownUi, ModalBox, PopupBox, SlideDownUi, TabUI, LoadingSpinner, ErrorMessage, StandardList, RoundedList, ArtisticList, TileList, SimpleList, RowList, NewsList, EntertainmentList, GalleryList, GridList, };
|
|
41
|
+
export { LIST_THEME } from './const/list-theme';
|
|
42
|
+
export { FormValidationManager } from './scripts/form-validation-manager';
|
|
43
|
+
export type { StateVariation, BorderStyle, BaseStyle, StyleForEachStatus, InputBoxStyle, InputBoxStyleForEachStatus, ButtonStyle, ButtonStyleForEachStatus, CheckBoxStyle, CheckBoxStyleForEachStatus, RadioButtonStyle, RadioButtonStyleForEachStatus, SelectValue, Option, Validate, Validates, InputValue, DateObject, DateType, ValidationResult, Category, PostConfig, ListSettings, RenderedField, WpTerm, WpAuthor, WpMedia, Article, } from './types';
|