@wizleap-inc/wiz-ui-next 1.0.3 → 1.1.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 +5 -5
- package/dist/components/base/anchor/anchor.vue.d.ts +6 -6
- package/dist/components/base/box/box.vue.d.ts +2 -2
- package/dist/components/base/buttons/text/text.vue.d.ts +5 -5
- package/dist/components/base/buttons/tiny/tiny.vue.d.ts +5 -5
- package/dist/components/base/buttons/toggle/toggle.vue.d.ts +5 -5
- package/dist/components/base/calendar/types.d.ts +1 -1
- package/dist/components/base/card/card.vue.d.ts +5 -5
- package/dist/components/base/dialog/dialog.vue.d.ts +5 -5
- package/dist/components/base/dropdown/dropdown-item.vue.d.ts +5 -5
- package/dist/components/base/dropdown/dropdown.vue.d.ts +12 -9
- package/dist/components/base/graphs/compare/bar.vue.d.ts +75 -0
- package/dist/components/base/graphs/compare/compare.vue.d.ts +189 -0
- package/dist/components/base/graphs/compare/container.vue.d.ts +34 -0
- package/dist/components/base/graphs/compare/index.d.ts +1 -0
- package/dist/components/base/graphs/compare/types.d.ts +10 -0
- package/dist/components/base/graphs/index.d.ts +1 -0
- package/dist/components/base/graphs/transition/container.vue.d.ts +1 -1
- package/dist/components/base/graphs/transition/transition.vue.d.ts +1 -1
- package/dist/components/base/header/header.vue.d.ts +5 -5
- package/dist/components/base/heading/heading.vue.d.ts +1 -1
- package/dist/components/base/inputs/checkbox/checkbox.vue.d.ts +3 -3
- package/dist/components/base/inputs/date-picker/date-picker.vue.d.ts +12 -9
- package/dist/components/base/inputs/date-range-picker/date-range-picker.vue.d.ts +13 -10
- package/dist/components/base/inputs/radio/radio.vue.d.ts +3 -3
- package/dist/components/base/inputs/search/search-popup.vue.d.ts +5 -5
- package/dist/components/base/inputs/search/search.vue.d.ts +28 -16
- package/dist/components/base/inputs/search-selector/search-selector.vue.d.ts +88 -36
- package/dist/components/base/inputs/selectbox/selectbox.vue.d.ts +17 -14
- package/dist/components/base/inputs/timepicker/time-picker.vue.d.ts +17 -14
- package/dist/components/base/inputs/upload/upload-display.vue.d.ts +10 -10
- package/dist/components/base/inputs/upload/upload.vue.d.ts +15 -15
- package/dist/components/base/menu/menu-item.vue.d.ts +5 -5
- package/dist/components/base/navigation/item.vue.d.ts +1103 -6
- package/dist/components/base/popup/popup.vue.d.ts +9 -6
- package/dist/components/base/popup-button-group/popup-button-group.vue.d.ts +36 -12
- package/dist/components/base/popup-button-group/types.d.ts +2 -1
- package/dist/components/base/progress-bar/progress-bar.vue.d.ts +19 -5
- package/dist/components/base/progress-bar/progress-point.vue.d.ts +1 -1
- package/dist/components/base/progress-bar/types.d.ts +1 -1
- package/dist/components/base/skeleton/skeleton-text.vue.d.ts +5 -5
- package/dist/components/base/stack/h-stack.vue.d.ts +5 -5
- package/dist/components/base/stack/stack.vue.d.ts +3 -3
- package/dist/components/base/stack/v-stack.vue.d.ts +5 -5
- package/dist/components/base/tab/tab.vue.d.ts +5 -5
- package/dist/components/base/tag/tag.vue.d.ts +4 -4
- package/dist/components/base/tooltip/tooltip.vue.d.ts +18 -4
- package/dist/components/custom/chat/card/chat-card.vue.d.ts +95 -77
- package/dist/components/custom/chat/form/chat-form.vue.d.ts +5 -5
- package/dist/components/custom/chat/item/chat-item.vue.d.ts +39 -25
- package/dist/components/custom/form/control.vue.d.ts +17 -16
- package/dist/components/custom/form/group.vue.d.ts +5 -5
- package/dist/components/custom/notification/list/list.vue.d.ts +19 -19
- package/dist/components/custom/notification/notification.vue.d.ts +26 -26
- package/dist/components/custom/notification/panel/panel.vue.d.ts +12 -12
- package/dist/components/custom/notification/panel/types.d.ts +1 -1
- package/dist/components/custom/notification/types.d.ts +1 -1
- package/dist/components/icons/calendar.vue.d.ts +2 -2
- package/dist/components/icons/index.d.ts +3 -3
- package/dist/style.css +1 -1
- package/dist/wiz-ui.es.js +3240 -2873
- package/dist/wiz-ui.umd.js +10 -10
- package/package.json +20 -38
- /package/dist/components/icons/{autorenew.vue.d.ts → auto-renew.vue.d.ts} +0 -0
|
@@ -141,7 +141,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
141
141
|
required: false;
|
|
142
142
|
};
|
|
143
143
|
position: {
|
|
144
|
-
type: PropType<"
|
|
144
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
145
145
|
required: false;
|
|
146
146
|
};
|
|
147
147
|
}, {
|
|
@@ -254,7 +254,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
254
254
|
required: false;
|
|
255
255
|
};
|
|
256
256
|
position: {
|
|
257
|
-
type: PropType<"
|
|
257
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
258
258
|
required: false;
|
|
259
259
|
};
|
|
260
260
|
}, {
|
|
@@ -265,7 +265,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
265
265
|
readonly stackJustifyStyle: Record<"center" | "end" | "start" | "between" | "around" | "evenly", string>;
|
|
266
266
|
readonly stackAlignStyle: Record<"stretch" | "center" | "end" | "start", string>;
|
|
267
267
|
readonly stackWrapStyle: string;
|
|
268
|
-
readonly stackPositionStyle: Record<"
|
|
268
|
+
readonly stackPositionStyle: Record<"fixed" | "absolute" | "relative" | "sticky" | "static", string>;
|
|
269
269
|
readonly gapStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
270
270
|
readonly gapXStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
271
271
|
readonly gapYStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
@@ -392,7 +392,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
392
392
|
required: false;
|
|
393
393
|
};
|
|
394
394
|
position: {
|
|
395
|
-
type: PropType<"
|
|
395
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
396
396
|
required: false;
|
|
397
397
|
};
|
|
398
398
|
}>>, {
|
|
@@ -503,7 +503,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
503
503
|
required: false;
|
|
504
504
|
};
|
|
505
505
|
position: {
|
|
506
|
-
type: PropType<"
|
|
506
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
507
507
|
required: false;
|
|
508
508
|
};
|
|
509
509
|
}>>, {
|
|
@@ -3,7 +3,7 @@ import { PropType } from "vue";
|
|
|
3
3
|
import { TIcon } from '../../../components';
|
|
4
4
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
5
5
|
to: {
|
|
6
|
-
type: PropType<
|
|
6
|
+
type: PropType<import("vue-router").RouteLocationRaw>;
|
|
7
7
|
required: true;
|
|
8
8
|
};
|
|
9
9
|
color: {
|
|
@@ -17,7 +17,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
17
17
|
default: string;
|
|
18
18
|
};
|
|
19
19
|
fontWeight: {
|
|
20
|
-
type: PropType<"thin" | "extralight" | "light" | "normal" | "medium" | "semibold"
|
|
20
|
+
type: PropType<"bold" | "thin" | "extralight" | "light" | "normal" | "medium" | "semibold">;
|
|
21
21
|
required: false;
|
|
22
22
|
default: string;
|
|
23
23
|
};
|
|
@@ -48,7 +48,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
48
48
|
readonly anchorNoWrapStyle: string;
|
|
49
49
|
readonly colorStyle: Record<ColorKeys, string>;
|
|
50
50
|
readonly fontSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
|
|
51
|
-
readonly fontWeightStyle: Record<"thin" | "extralight" | "light" | "normal" | "medium" | "semibold"
|
|
51
|
+
readonly fontWeightStyle: Record<"bold" | "thin" | "extralight" | "light" | "normal" | "medium" | "semibold", string>;
|
|
52
52
|
readonly WizIcon: import("vue").DefineComponent<{
|
|
53
53
|
icon: {
|
|
54
54
|
type: PropType<TIcon>;
|
|
@@ -91,7 +91,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
91
91
|
}>;
|
|
92
92
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
93
93
|
to: {
|
|
94
|
-
type: PropType<
|
|
94
|
+
type: PropType<import("vue-router").RouteLocationRaw>;
|
|
95
95
|
required: true;
|
|
96
96
|
};
|
|
97
97
|
color: {
|
|
@@ -105,7 +105,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
105
105
|
default: string;
|
|
106
106
|
};
|
|
107
107
|
fontWeight: {
|
|
108
|
-
type: PropType<"thin" | "extralight" | "light" | "normal" | "medium" | "semibold"
|
|
108
|
+
type: PropType<"bold" | "thin" | "extralight" | "light" | "normal" | "medium" | "semibold">;
|
|
109
109
|
required: false;
|
|
110
110
|
default: string;
|
|
111
111
|
};
|
|
@@ -131,7 +131,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
131
131
|
}>>, {
|
|
132
132
|
color: ColorKeys;
|
|
133
133
|
fontSize: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
|
|
134
|
-
fontWeight: "thin" | "extralight" | "light" | "normal" | "medium" | "semibold"
|
|
134
|
+
fontWeight: "bold" | "thin" | "extralight" | "light" | "normal" | "medium" | "semibold";
|
|
135
135
|
iconPosition: "left" | "right";
|
|
136
136
|
openInNewTab: boolean;
|
|
137
137
|
nowrap: boolean;
|
|
@@ -2,7 +2,7 @@ import { ColorKeys } from "@wizleap-inc/wiz-ui-constants";
|
|
|
2
2
|
import { PropType } from "vue";
|
|
3
3
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
4
4
|
position: {
|
|
5
|
-
type: PropType<"
|
|
5
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
6
6
|
required: false;
|
|
7
7
|
};
|
|
8
8
|
top: {
|
|
@@ -126,7 +126,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
126
126
|
computedStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
|
|
127
127
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
128
128
|
position: {
|
|
129
|
-
type: PropType<"
|
|
129
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
130
130
|
required: false;
|
|
131
131
|
};
|
|
132
132
|
top: {
|
|
@@ -144,7 +144,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
144
144
|
required: false;
|
|
145
145
|
};
|
|
146
146
|
position: {
|
|
147
|
-
type: PropType<"
|
|
147
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
148
148
|
required: false;
|
|
149
149
|
};
|
|
150
150
|
}, {
|
|
@@ -257,7 +257,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
257
257
|
required: false;
|
|
258
258
|
};
|
|
259
259
|
position: {
|
|
260
|
-
type: PropType<"
|
|
260
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
261
261
|
required: false;
|
|
262
262
|
};
|
|
263
263
|
}, {
|
|
@@ -268,7 +268,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
268
268
|
readonly stackJustifyStyle: Record<"center" | "end" | "start" | "between" | "around" | "evenly", string>;
|
|
269
269
|
readonly stackAlignStyle: Record<"stretch" | "center" | "end" | "start", string>;
|
|
270
270
|
readonly stackWrapStyle: string;
|
|
271
|
-
readonly stackPositionStyle: Record<"
|
|
271
|
+
readonly stackPositionStyle: Record<"fixed" | "absolute" | "relative" | "sticky" | "static", string>;
|
|
272
272
|
readonly gapStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
273
273
|
readonly gapXStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
274
274
|
readonly gapYStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
@@ -395,7 +395,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
395
395
|
required: false;
|
|
396
396
|
};
|
|
397
397
|
position: {
|
|
398
|
-
type: PropType<"
|
|
398
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
399
399
|
required: false;
|
|
400
400
|
};
|
|
401
401
|
}>>, {
|
|
@@ -506,7 +506,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
506
506
|
required: false;
|
|
507
507
|
};
|
|
508
508
|
position: {
|
|
509
|
-
type: PropType<"
|
|
509
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
510
510
|
required: false;
|
|
511
511
|
};
|
|
512
512
|
}>>, {
|
|
@@ -148,7 +148,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
148
148
|
required: false;
|
|
149
149
|
};
|
|
150
150
|
position: {
|
|
151
|
-
type: PropType<"
|
|
151
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
152
152
|
required: false;
|
|
153
153
|
};
|
|
154
154
|
}, {
|
|
@@ -261,7 +261,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
261
261
|
required: false;
|
|
262
262
|
};
|
|
263
263
|
position: {
|
|
264
|
-
type: PropType<"
|
|
264
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
265
265
|
required: false;
|
|
266
266
|
};
|
|
267
267
|
}, {
|
|
@@ -272,7 +272,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
272
272
|
readonly stackJustifyStyle: Record<"center" | "end" | "start" | "between" | "around" | "evenly", string>;
|
|
273
273
|
readonly stackAlignStyle: Record<"stretch" | "center" | "end" | "start", string>;
|
|
274
274
|
readonly stackWrapStyle: string;
|
|
275
|
-
readonly stackPositionStyle: Record<"
|
|
275
|
+
readonly stackPositionStyle: Record<"fixed" | "absolute" | "relative" | "sticky" | "static", string>;
|
|
276
276
|
readonly gapStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
277
277
|
readonly gapXStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
278
278
|
readonly gapYStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
@@ -399,7 +399,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
399
399
|
required: false;
|
|
400
400
|
};
|
|
401
401
|
position: {
|
|
402
|
-
type: PropType<"
|
|
402
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
403
403
|
required: false;
|
|
404
404
|
};
|
|
405
405
|
}>>, {
|
|
@@ -510,7 +510,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
510
510
|
required: false;
|
|
511
511
|
};
|
|
512
512
|
position: {
|
|
513
|
-
type: PropType<"
|
|
513
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
514
514
|
required: false;
|
|
515
515
|
};
|
|
516
516
|
}>>, {
|
|
@@ -177,7 +177,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
177
177
|
required: false;
|
|
178
178
|
};
|
|
179
179
|
position: {
|
|
180
|
-
type: PropType<"
|
|
180
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
181
181
|
required: false;
|
|
182
182
|
};
|
|
183
183
|
}, {
|
|
@@ -290,7 +290,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
290
290
|
required: false;
|
|
291
291
|
};
|
|
292
292
|
position: {
|
|
293
|
-
type: PropType<"
|
|
293
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
294
294
|
required: false;
|
|
295
295
|
};
|
|
296
296
|
}, {
|
|
@@ -301,7 +301,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
301
301
|
readonly stackJustifyStyle: Record<"center" | "end" | "start" | "between" | "around" | "evenly", string>;
|
|
302
302
|
readonly stackAlignStyle: Record<"stretch" | "center" | "end" | "start", string>;
|
|
303
303
|
readonly stackWrapStyle: string;
|
|
304
|
-
readonly stackPositionStyle: Record<"
|
|
304
|
+
readonly stackPositionStyle: Record<"fixed" | "absolute" | "relative" | "sticky" | "static", string>;
|
|
305
305
|
readonly gapStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
306
306
|
readonly gapXStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
307
307
|
readonly gapYStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
@@ -428,7 +428,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
428
428
|
required: false;
|
|
429
429
|
};
|
|
430
430
|
position: {
|
|
431
|
-
type: PropType<"
|
|
431
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
432
432
|
required: false;
|
|
433
433
|
};
|
|
434
434
|
}>>, {
|
|
@@ -539,7 +539,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
539
539
|
required: false;
|
|
540
540
|
};
|
|
541
541
|
position: {
|
|
542
|
-
type: PropType<"
|
|
542
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
543
543
|
required: false;
|
|
544
544
|
};
|
|
545
545
|
}>>, {
|
|
@@ -162,7 +162,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
162
162
|
required: false;
|
|
163
163
|
};
|
|
164
164
|
position: {
|
|
165
|
-
type: PropType<"
|
|
165
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
166
166
|
required: false;
|
|
167
167
|
};
|
|
168
168
|
}, {
|
|
@@ -275,7 +275,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
275
275
|
required: false;
|
|
276
276
|
};
|
|
277
277
|
position: {
|
|
278
|
-
type: PropType<"
|
|
278
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
279
279
|
required: false;
|
|
280
280
|
};
|
|
281
281
|
}, {
|
|
@@ -286,7 +286,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
286
286
|
readonly stackJustifyStyle: Record<"center" | "end" | "start" | "between" | "around" | "evenly", string>;
|
|
287
287
|
readonly stackAlignStyle: Record<"stretch" | "center" | "end" | "start", string>;
|
|
288
288
|
readonly stackWrapStyle: string;
|
|
289
|
-
readonly stackPositionStyle: Record<"
|
|
289
|
+
readonly stackPositionStyle: Record<"fixed" | "absolute" | "relative" | "sticky" | "static", string>;
|
|
290
290
|
readonly gapStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
291
291
|
readonly gapXStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
292
292
|
readonly gapYStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
@@ -413,7 +413,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
413
413
|
required: false;
|
|
414
414
|
};
|
|
415
415
|
position: {
|
|
416
|
-
type: PropType<"
|
|
416
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
417
417
|
required: false;
|
|
418
418
|
};
|
|
419
419
|
}>>, {
|
|
@@ -524,7 +524,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
524
524
|
required: false;
|
|
525
525
|
};
|
|
526
526
|
position: {
|
|
527
|
-
type: PropType<"
|
|
527
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
528
528
|
required: false;
|
|
529
529
|
};
|
|
530
530
|
}>>, {
|
|
@@ -245,7 +245,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
245
245
|
required: false;
|
|
246
246
|
};
|
|
247
247
|
position: {
|
|
248
|
-
type: PropType<"
|
|
248
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
249
249
|
required: false;
|
|
250
250
|
};
|
|
251
251
|
}, {
|
|
@@ -358,7 +358,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
358
358
|
required: false;
|
|
359
359
|
};
|
|
360
360
|
position: {
|
|
361
|
-
type: PropType<"
|
|
361
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
362
362
|
required: false;
|
|
363
363
|
};
|
|
364
364
|
}, {
|
|
@@ -369,7 +369,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
369
369
|
readonly stackJustifyStyle: Record<"center" | "end" | "start" | "between" | "around" | "evenly", string>;
|
|
370
370
|
readonly stackAlignStyle: Record<"stretch" | "center" | "end" | "start", string>;
|
|
371
371
|
readonly stackWrapStyle: string;
|
|
372
|
-
readonly stackPositionStyle: Record<"
|
|
372
|
+
readonly stackPositionStyle: Record<"fixed" | "absolute" | "relative" | "sticky" | "static", string>;
|
|
373
373
|
readonly gapStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
374
374
|
readonly gapXStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
375
375
|
readonly gapYStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
@@ -496,7 +496,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
496
496
|
required: false;
|
|
497
497
|
};
|
|
498
498
|
position: {
|
|
499
|
-
type: PropType<"
|
|
499
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
500
500
|
required: false;
|
|
501
501
|
};
|
|
502
502
|
}>>, {
|
|
@@ -607,7 +607,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
607
607
|
required: false;
|
|
608
608
|
};
|
|
609
609
|
position: {
|
|
610
|
-
type: PropType<"
|
|
610
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
611
611
|
required: false;
|
|
612
612
|
};
|
|
613
613
|
}>>, {
|
|
@@ -154,7 +154,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
154
154
|
required: false;
|
|
155
155
|
};
|
|
156
156
|
position: {
|
|
157
|
-
type: PropType<"
|
|
157
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
158
158
|
required: false;
|
|
159
159
|
};
|
|
160
160
|
}, {
|
|
@@ -267,7 +267,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
267
267
|
required: false;
|
|
268
268
|
};
|
|
269
269
|
position: {
|
|
270
|
-
type: PropType<"
|
|
270
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
271
271
|
required: false;
|
|
272
272
|
};
|
|
273
273
|
}, {
|
|
@@ -278,7 +278,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
278
278
|
readonly stackJustifyStyle: Record<"center" | "end" | "start" | "between" | "around" | "evenly", string>;
|
|
279
279
|
readonly stackAlignStyle: Record<"stretch" | "center" | "end" | "start", string>;
|
|
280
280
|
readonly stackWrapStyle: string;
|
|
281
|
-
readonly stackPositionStyle: Record<"
|
|
281
|
+
readonly stackPositionStyle: Record<"fixed" | "absolute" | "relative" | "sticky" | "static", string>;
|
|
282
282
|
readonly gapStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
283
283
|
readonly gapXStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
284
284
|
readonly gapYStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
@@ -405,7 +405,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
405
405
|
required: false;
|
|
406
406
|
};
|
|
407
407
|
position: {
|
|
408
|
-
type: PropType<"
|
|
408
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
409
409
|
required: false;
|
|
410
410
|
};
|
|
411
411
|
}>>, {
|
|
@@ -516,7 +516,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
516
516
|
required: false;
|
|
517
517
|
};
|
|
518
518
|
position: {
|
|
519
|
-
type: PropType<"
|
|
519
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
520
520
|
required: false;
|
|
521
521
|
};
|
|
522
522
|
}>>, {
|
|
@@ -29,7 +29,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
29
29
|
default: boolean;
|
|
30
30
|
};
|
|
31
31
|
layer: {
|
|
32
|
-
type: PropType<"floating" | "popover">;
|
|
32
|
+
type: PropType<"base" | "floating" | "popover">;
|
|
33
33
|
required: false;
|
|
34
34
|
default: string;
|
|
35
35
|
};
|
|
@@ -58,6 +58,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
58
58
|
emit: {
|
|
59
59
|
(event: "onClose", isOpen: boolean): void;
|
|
60
60
|
(event: "onTurn", direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc"): void;
|
|
61
|
+
(event: "mouseLeave", e: MouseEvent): void;
|
|
61
62
|
};
|
|
62
63
|
isActuallyOpen: import("vue").Ref<boolean>;
|
|
63
64
|
popupRef: import("vue").Ref<HTMLElement | undefined>;
|
|
@@ -119,11 +120,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
119
120
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
120
121
|
inset: import("vue").ComputedRef<string>;
|
|
121
122
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
123
|
+
mouseLeave: (e: MouseEvent) => void;
|
|
122
124
|
readonly popupStyle: string;
|
|
123
125
|
readonly popupShadowStyle: string;
|
|
124
126
|
readonly popupHiddenStyle: string;
|
|
125
127
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
126
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClose" | "onTurn")[], "onClose" | "onTurn", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
128
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClose" | "onTurn" | "mouseLeave")[], "onClose" | "onTurn" | "mouseLeave", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
127
129
|
isOpen: {
|
|
128
130
|
type: BooleanConstructor;
|
|
129
131
|
required: true;
|
|
@@ -134,7 +136,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
134
136
|
default: boolean;
|
|
135
137
|
};
|
|
136
138
|
layer: {
|
|
137
|
-
type: PropType<"floating" | "popover">;
|
|
139
|
+
type: PropType<"base" | "floating" | "popover">;
|
|
138
140
|
required: false;
|
|
139
141
|
default: string;
|
|
140
142
|
};
|
|
@@ -161,13 +163,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
161
163
|
}>> & {
|
|
162
164
|
onOnClose?: ((...args: any[]) => any) | undefined;
|
|
163
165
|
onOnTurn?: ((...args: any[]) => any) | undefined;
|
|
166
|
+
onMouseLeave?: ((...args: any[]) => any) | undefined;
|
|
164
167
|
}, {
|
|
165
168
|
shadow: boolean;
|
|
166
169
|
direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc";
|
|
167
170
|
animation: boolean;
|
|
168
171
|
gap: "at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max";
|
|
169
172
|
closeOnBlur: boolean;
|
|
170
|
-
layer: "floating" | "popover";
|
|
173
|
+
layer: "base" | "floating" | "popover";
|
|
171
174
|
}>;
|
|
172
175
|
readonly WizPopupContainer: import("vue").DefineComponent<{
|
|
173
176
|
expand: {
|
|
@@ -303,7 +306,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
303
306
|
required: false;
|
|
304
307
|
};
|
|
305
308
|
position: {
|
|
306
|
-
type: PropType<"
|
|
309
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
307
310
|
required: false;
|
|
308
311
|
};
|
|
309
312
|
}, {
|
|
@@ -416,7 +419,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
416
419
|
required: false;
|
|
417
420
|
};
|
|
418
421
|
position: {
|
|
419
|
-
type: PropType<"
|
|
422
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
420
423
|
required: false;
|
|
421
424
|
};
|
|
422
425
|
}, {
|
|
@@ -427,7 +430,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
427
430
|
readonly stackJustifyStyle: Record<"center" | "end" | "start" | "between" | "around" | "evenly", string>;
|
|
428
431
|
readonly stackAlignStyle: Record<"stretch" | "center" | "end" | "start", string>;
|
|
429
432
|
readonly stackWrapStyle: string;
|
|
430
|
-
readonly stackPositionStyle: Record<"
|
|
433
|
+
readonly stackPositionStyle: Record<"fixed" | "absolute" | "relative" | "sticky" | "static", string>;
|
|
431
434
|
readonly gapStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
432
435
|
readonly gapXStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
433
436
|
readonly gapYStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
@@ -554,7 +557,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
554
557
|
required: false;
|
|
555
558
|
};
|
|
556
559
|
position: {
|
|
557
|
-
type: PropType<"
|
|
560
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
558
561
|
required: false;
|
|
559
562
|
};
|
|
560
563
|
}>>, {
|
|
@@ -665,7 +668,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
665
668
|
required: false;
|
|
666
669
|
};
|
|
667
670
|
position: {
|
|
668
|
-
type: PropType<"
|
|
671
|
+
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
669
672
|
required: false;
|
|
670
673
|
};
|
|
671
674
|
}>>, {
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { PropType } from "vue";
|
|
2
|
+
import { CompareGraphData } from "./types";
|
|
3
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
4
|
+
label: {
|
|
5
|
+
type: StringConstructor;
|
|
6
|
+
required: true;
|
|
7
|
+
};
|
|
8
|
+
data: {
|
|
9
|
+
type: PropType<CompareGraphData>;
|
|
10
|
+
required: true;
|
|
11
|
+
};
|
|
12
|
+
maxFrequency: {
|
|
13
|
+
type: NumberConstructor;
|
|
14
|
+
required: true;
|
|
15
|
+
};
|
|
16
|
+
/** バーの間隔に影響します。0~1の値を指定してください。 */
|
|
17
|
+
barGap: {
|
|
18
|
+
type: NumberConstructor;
|
|
19
|
+
required: false;
|
|
20
|
+
default: number;
|
|
21
|
+
};
|
|
22
|
+
/** バーの太さに影響します。0~1の値を指定してください。 */
|
|
23
|
+
barGroupWidth: {
|
|
24
|
+
type: NumberConstructor;
|
|
25
|
+
required: false;
|
|
26
|
+
default: number;
|
|
27
|
+
};
|
|
28
|
+
}, {
|
|
29
|
+
props: any;
|
|
30
|
+
barRefs: import("vue").Ref<HTMLElement[] | undefined>;
|
|
31
|
+
barFrequencyRefs: import("vue").Ref<HTMLElement[] | undefined>;
|
|
32
|
+
updateBarItemCurrentHeight: () => void;
|
|
33
|
+
barWidth: import("vue").ComputedRef<number>;
|
|
34
|
+
bars: import("vue").ComputedRef<{
|
|
35
|
+
id: string;
|
|
36
|
+
x: number;
|
|
37
|
+
y: number;
|
|
38
|
+
bgColorStyle: string;
|
|
39
|
+
numberColorStyle: string;
|
|
40
|
+
frequency: number;
|
|
41
|
+
}[]>;
|
|
42
|
+
readonly graphBarItemStyle: string;
|
|
43
|
+
readonly graphBarLabelStyle: string;
|
|
44
|
+
readonly graphBarStyle: string;
|
|
45
|
+
readonly graphBarNumberStyle: string;
|
|
46
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
47
|
+
label: {
|
|
48
|
+
type: StringConstructor;
|
|
49
|
+
required: true;
|
|
50
|
+
};
|
|
51
|
+
data: {
|
|
52
|
+
type: PropType<CompareGraphData>;
|
|
53
|
+
required: true;
|
|
54
|
+
};
|
|
55
|
+
maxFrequency: {
|
|
56
|
+
type: NumberConstructor;
|
|
57
|
+
required: true;
|
|
58
|
+
};
|
|
59
|
+
/** バーの間隔に影響します。0~1の値を指定してください。 */
|
|
60
|
+
barGap: {
|
|
61
|
+
type: NumberConstructor;
|
|
62
|
+
required: false;
|
|
63
|
+
default: number;
|
|
64
|
+
};
|
|
65
|
+
/** バーの太さに影響します。0~1の値を指定してください。 */
|
|
66
|
+
barGroupWidth: {
|
|
67
|
+
type: NumberConstructor;
|
|
68
|
+
required: false;
|
|
69
|
+
default: number;
|
|
70
|
+
};
|
|
71
|
+
}>>, {
|
|
72
|
+
barGap: number;
|
|
73
|
+
barGroupWidth: number;
|
|
74
|
+
}>;
|
|
75
|
+
export default _sfc_main;
|