@wizleap-inc/wiz-ui-next 2.3.0 → 2.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/dist/components/base/accordion/accordion.vue.d.ts +1 -0
- package/dist/components/base/avatar/avatar.vue.d.ts +8 -0
- package/dist/components/base/buttons/icon/icon.vue.d.ts +8 -0
- package/dist/components/base/dialog/dialog.vue.d.ts +47 -0
- package/dist/components/base/full-modal-view/full-modal-view.vue.d.ts +1258 -0
- package/dist/components/base/full-modal-view/index.d.ts +1 -0
- package/dist/components/base/header/header.vue.d.ts +47 -0
- package/dist/components/base/index.d.ts +1 -0
- package/dist/components/base/information-panel/information-panel.vue.d.ts +47 -0
- package/dist/components/base/inputs/date-picker/date-picker.vue.d.ts +23 -0
- package/dist/components/base/inputs/date-range-picker/date-range-picker.vue.d.ts +25 -2
- package/dist/components/base/inputs/password/password.vue.d.ts +23 -0
- package/dist/components/base/inputs/search-selector/search-selector.vue.d.ts +39 -0
- package/dist/components/base/inputs/selectbox/selectbox.vue.d.ts +53 -42
- package/dist/components/base/inputs/toggle-switch/toggle-switch.vue.d.ts +2 -2
- package/dist/components/base/snackbar/snackbar-controller.vue.d.ts +39 -0
- package/dist/components/base/snackbar/snackbar.vue.d.ts +39 -0
- package/dist/components/custom/chat/card/chat-card.vue.d.ts +139 -42
- package/dist/components/custom/chat/form/chat-form.vue.d.ts +47 -0
- package/dist/components/manager/provider.vue.d.ts +39 -0
- package/dist/style.css +1 -1
- package/dist/wiz-ui.es.js +2882 -2707
- package/dist/wiz-ui.umd.js +17 -17
- package/package.json +3 -3
|
@@ -41,6 +41,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
41
41
|
readonly accordionSummaryStyle: string;
|
|
42
42
|
readonly accordionExpandIconStyle: string;
|
|
43
43
|
readonly accordionRotateIconStyle: string;
|
|
44
|
+
readonly accordionSummaryTextStyle: string;
|
|
44
45
|
readonly backgroundStyle: Record<ColorKeys, string>;
|
|
45
46
|
readonly colorStyle: Record<ColorKeys, string>;
|
|
46
47
|
readonly WizHStack: import("vue").DefineComponent<{
|
|
@@ -5,6 +5,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
5
5
|
type: StringConstructor;
|
|
6
6
|
required: true;
|
|
7
7
|
};
|
|
8
|
+
ariaLabel: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
required: true;
|
|
11
|
+
};
|
|
8
12
|
size: {
|
|
9
13
|
type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
|
|
10
14
|
required: false;
|
|
@@ -50,6 +54,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
50
54
|
type: StringConstructor;
|
|
51
55
|
required: true;
|
|
52
56
|
};
|
|
57
|
+
ariaLabel: {
|
|
58
|
+
type: StringConstructor;
|
|
59
|
+
required: true;
|
|
60
|
+
};
|
|
53
61
|
size: {
|
|
54
62
|
type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
|
|
55
63
|
required: false;
|
|
@@ -5,6 +5,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
5
5
|
type: PropType<TIcon>;
|
|
6
6
|
required: true;
|
|
7
7
|
};
|
|
8
|
+
ariaLabel: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
required: true;
|
|
11
|
+
};
|
|
8
12
|
variant: {
|
|
9
13
|
type: PropType<"transparent" | "link" | "sub" | "primary">;
|
|
10
14
|
required: false;
|
|
@@ -34,6 +38,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
34
38
|
type: PropType<TIcon>;
|
|
35
39
|
required: true;
|
|
36
40
|
};
|
|
41
|
+
ariaLabel: {
|
|
42
|
+
type: StringConstructor;
|
|
43
|
+
required: true;
|
|
44
|
+
};
|
|
37
45
|
variant: {
|
|
38
46
|
type: PropType<"transparent" | "link" | "sub" | "primary">;
|
|
39
47
|
required: false;
|
|
@@ -29,6 +29,45 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
29
29
|
close: () => boolean;
|
|
30
30
|
currentZIndex: import("vue").ComputedRef<number>;
|
|
31
31
|
scrollY: number;
|
|
32
|
+
readonly ARIA_LABELS: {
|
|
33
|
+
readonly PASSWORD_VISIBLE_TOGGLE: "パスワードの表示切り替え";
|
|
34
|
+
readonly YEAR_SELECTOR_PREV: "前の年へ";
|
|
35
|
+
readonly YEAR_SELECTOR_NEXT: "次の年へ";
|
|
36
|
+
readonly MONTH_SELECTOR_PREV: "前の月へ";
|
|
37
|
+
readonly MONTH_SELECTOR_NEXT: "次の月へ";
|
|
38
|
+
readonly TIME_PICKER_CANCEL: "時間の選択を解除";
|
|
39
|
+
readonly DATE_PICKER_INPUT: "日付を選択";
|
|
40
|
+
readonly DATE_PICKER_CANCEL: "日付の選択を解除";
|
|
41
|
+
readonly RANGE_DATE_PICKER_INPUT: "日付の範囲を選択";
|
|
42
|
+
readonly RANGE_DATE_PICKER_SELECT_BOX_INPUT: "日付の種類を選択";
|
|
43
|
+
readonly DIALOG: {
|
|
44
|
+
readonly CLOSE: "ダイアログを閉じる";
|
|
45
|
+
};
|
|
46
|
+
readonly MENU: "メニュー";
|
|
47
|
+
readonly SEARCH_SELECTOR: {
|
|
48
|
+
readonly UNSELECT: "選択を解除する";
|
|
49
|
+
readonly EXPAND: "開閉する";
|
|
50
|
+
};
|
|
51
|
+
readonly SNACKBAR: {
|
|
52
|
+
readonly CLOSE: "通知を閉じる";
|
|
53
|
+
};
|
|
54
|
+
readonly CHAT_CARD: {
|
|
55
|
+
readonly EXPAND: "チャット画面を開閉する";
|
|
56
|
+
};
|
|
57
|
+
readonly CHAT_FORM: {
|
|
58
|
+
readonly SEND: "送信する";
|
|
59
|
+
};
|
|
60
|
+
readonly RANGE_DATE_PICKER_CANCEL: "日付の範囲の選択を解除";
|
|
61
|
+
readonly PAGINATION: "ページネーション";
|
|
62
|
+
readonly PAGINATION_PREV: "前のページへ";
|
|
63
|
+
readonly PAGINATION_NEXT: "次のページへ";
|
|
64
|
+
readonly INFORMATION_PANEL: {
|
|
65
|
+
readonly CLOSE: "パネルを閉じる";
|
|
66
|
+
};
|
|
67
|
+
readonly FULL_MODAL_VIEW: {
|
|
68
|
+
readonly CLOSE: "モーダルを閉じる";
|
|
69
|
+
};
|
|
70
|
+
};
|
|
32
71
|
readonly dialogStyle: string;
|
|
33
72
|
readonly dialogVisibleStyle: string;
|
|
34
73
|
readonly dialogMaskStyle: string;
|
|
@@ -37,6 +76,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
37
76
|
type: PropType<import('../../../components/icons').TIcon>;
|
|
38
77
|
required: true;
|
|
39
78
|
};
|
|
79
|
+
ariaLabel: {
|
|
80
|
+
type: StringConstructor;
|
|
81
|
+
required: true;
|
|
82
|
+
};
|
|
40
83
|
variant: {
|
|
41
84
|
type: PropType<"transparent" | "link" | "sub" | "primary">;
|
|
42
85
|
required: false;
|
|
@@ -66,6 +109,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
66
109
|
type: PropType<import('../../../components/icons').TIcon>;
|
|
67
110
|
required: true;
|
|
68
111
|
};
|
|
112
|
+
ariaLabel: {
|
|
113
|
+
type: StringConstructor;
|
|
114
|
+
required: true;
|
|
115
|
+
};
|
|
69
116
|
variant: {
|
|
70
117
|
type: PropType<"transparent" | "link" | "sub" | "primary">;
|
|
71
118
|
required: false;
|