@onereach/ui-components 25.1.2-beta.5768.0 → 25.1.2
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/esm/{OrAutocomplete-BYPOrjCw.mjs → OrAutocomplete-C1ToaRkp.mjs} +69 -69
- package/dist/esm/OrAutocomplete-C1ToaRkp.mjs.map +1 -0
- package/dist/esm/{OrDataGrid-B6fMQzTu.mjs → OrDataGrid-COx5W-ik.mjs} +3 -3
- package/dist/esm/{OrDataGrid-B6fMQzTu.mjs.map → OrDataGrid-COx5W-ik.mjs.map} +1 -1
- package/dist/esm/{OrSelect-ozo6QAOf.mjs → OrSelect-DU7MIxsd.mjs} +221 -231
- package/dist/esm/OrSelect-DU7MIxsd.mjs.map +1 -0
- package/dist/esm/{OrTag-Bixe0EQq.mjs → OrTag-BqSIqSCt.mjs} +14 -14
- package/dist/esm/OrTag-BqSIqSCt.mjs.map +1 -0
- package/dist/esm/{OrTagInput-iFJhEZwO.mjs → OrTagInput-Bxt-g2Hx.mjs} +123 -123
- package/dist/esm/OrTagInput-Bxt-g2Hx.mjs.map +1 -0
- package/dist/esm/{OrTags-CS0bcLtx.mjs → OrTags-DxQDW443.mjs} +2 -2
- package/dist/esm/{OrTags-CS0bcLtx.mjs.map → OrTags-DxQDW443.mjs.map} +1 -1
- package/dist/esm/components/index.mjs +6 -6
- package/dist/esm/components/or-autocomplete-v3/index.mjs +1 -1
- package/dist/esm/components/or-data-grid-v3/index.mjs +1 -1
- package/dist/esm/components/or-select-v3/index.mjs +1 -1
- package/dist/esm/components/or-tag-input-v3/index.mjs +1 -1
- package/dist/esm/components/or-tag-v3/index.mjs +1 -1
- package/dist/esm/components/or-tags-v3/index.mjs +1 -1
- package/dist/esm/index.mjs +6 -6
- package/dist/types/components/or-autocomplete-v3/OrAutocomplete.vue.d.ts +44 -44
- package/dist/types/components/or-button-v3/OrButton.vue.d.ts +1 -1
- package/dist/types/components/or-confirm-v3/OrConfirm.vue.d.ts +8 -8
- package/dist/types/components/or-data-grid-v3/OrDataGrid.vue.d.ts +9 -9
- package/dist/types/components/or-date-time-picker-v3/partials/or-date-time-picker-month-select/OrDateTimePickerMonthSelect.vue.d.ts +4 -4
- package/dist/types/components/or-date-time-picker-v3/partials/or-date-time-picker-time-select/OrDateTimePickerTimeSelect.vue.d.ts +4 -4
- package/dist/types/components/or-editor-tabs-v3/OrEditorTabs.vue.d.ts +1 -1
- package/dist/types/components/or-inline-input-v3/OrInlineInput.vue.d.ts +2 -2
- package/dist/types/components/or-inline-textarea-v3/OrInlineTextarea.vue.d.ts +2 -2
- package/dist/types/components/or-input-v3/OrInput.vue.d.ts +3 -3
- package/dist/types/components/or-pagination-v3/OrPagination.vue.d.ts +4 -4
- package/dist/types/components/or-search-v3/OrSearch.vue.d.ts +6 -6
- package/dist/types/components/or-select-v3/OrSelect.vue.d.ts +15 -15
- package/dist/types/components/or-select-v3/partials/or-select-multiple-control/OrSelectMultipleControl.vue.d.ts +6 -6
- package/dist/types/components/or-sorting-v3/OrSorting.vue.d.ts +1 -1
- package/dist/types/components/or-switch-v3/OrSwitch.vue.d.ts +1 -1
- package/dist/types/components/or-tag-input-v3/OrTagInput.vue.d.ts +10 -9
- package/dist/types/components/or-tags-v3/OrTags.vue.d.ts +2 -2
- package/dist/types/components/or-textarea-v3/OrTextarea.vue.d.ts +1 -1
- package/dist/types/components/or-toast-v3/OrToast.vue.d.ts +3 -3
- package/package.json +5 -4
- package/dist/esm/OrAutocomplete-BYPOrjCw.mjs.map +0 -1
- package/dist/esm/OrSelect-ozo6QAOf.mjs.map +0 -1
- package/dist/esm/OrTag-Bixe0EQq.mjs.map +0 -1
- package/dist/esm/OrTagInput-iFJhEZwO.mjs.map +0 -1
|
@@ -36,8 +36,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
36
36
|
type?: "button" | "reset" | "submit" | undefined;
|
|
37
37
|
variant?: "outlined" | "link" | "text" | "contained" | undefined;
|
|
38
38
|
color?: "inherit" | "primary" | "danger" | undefined;
|
|
39
|
-
activated?: boolean | undefined;
|
|
40
39
|
loading?: boolean | undefined;
|
|
40
|
+
activated?: boolean | undefined;
|
|
41
41
|
loadingText?: string | undefined;
|
|
42
42
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
43
43
|
key?: string | number | symbol | undefined;
|
|
@@ -147,8 +147,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
147
147
|
type: "button" | "reset" | "submit";
|
|
148
148
|
variant: "outlined" | "link" | "text" | "contained";
|
|
149
149
|
color: "inherit" | "primary" | "danger";
|
|
150
|
-
activated: boolean;
|
|
151
150
|
loading: boolean;
|
|
151
|
+
activated: boolean;
|
|
152
152
|
loadingText: string;
|
|
153
153
|
}, {}, string, {}> & {
|
|
154
154
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -996,8 +996,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
996
996
|
type?: "button" | "reset" | "submit" | undefined;
|
|
997
997
|
variant?: "outlined" | "link" | "text" | "contained" | undefined;
|
|
998
998
|
color?: "inherit" | "primary" | "danger" | undefined;
|
|
999
|
-
activated?: boolean | undefined;
|
|
1000
999
|
loading?: boolean | undefined;
|
|
1000
|
+
activated?: boolean | undefined;
|
|
1001
1001
|
loadingText?: string | undefined;
|
|
1002
1002
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
1003
1003
|
key?: string | number | symbol | undefined;
|
|
@@ -1107,8 +1107,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1107
1107
|
type: "button" | "reset" | "submit";
|
|
1108
1108
|
variant: "outlined" | "link" | "text" | "contained";
|
|
1109
1109
|
color: "inherit" | "primary" | "danger";
|
|
1110
|
-
activated: boolean;
|
|
1111
1110
|
loading: boolean;
|
|
1111
|
+
activated: boolean;
|
|
1112
1112
|
loadingText: string;
|
|
1113
1113
|
}, {}, string, {}> & {
|
|
1114
1114
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -51,8 +51,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
51
51
|
type?: "button" | "reset" | "submit" | undefined;
|
|
52
52
|
variant?: "outlined" | "link" | "text" | "contained" | undefined;
|
|
53
53
|
color?: "inherit" | "primary" | "danger" | undefined;
|
|
54
|
-
activated?: boolean | undefined;
|
|
55
54
|
loading?: boolean | undefined;
|
|
55
|
+
activated?: boolean | undefined;
|
|
56
56
|
loadingText?: string | undefined;
|
|
57
57
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
58
58
|
key?: string | number | symbol | undefined;
|
|
@@ -162,8 +162,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
162
162
|
type: "button" | "reset" | "submit";
|
|
163
163
|
variant: "outlined" | "link" | "text" | "contained";
|
|
164
164
|
color: "inherit" | "primary" | "danger";
|
|
165
|
-
activated: boolean;
|
|
166
165
|
loading: boolean;
|
|
166
|
+
activated: boolean;
|
|
167
167
|
loadingText: string;
|
|
168
168
|
}, {}, string, {}> & {
|
|
169
169
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -236,8 +236,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
236
236
|
type?: "button" | "reset" | "submit" | undefined;
|
|
237
237
|
variant?: "outlined" | "link" | "text" | "contained" | undefined;
|
|
238
238
|
color?: "inherit" | "primary" | "danger" | undefined;
|
|
239
|
-
activated?: boolean | undefined;
|
|
240
239
|
loading?: boolean | undefined;
|
|
240
|
+
activated?: boolean | undefined;
|
|
241
241
|
loadingText?: string | undefined;
|
|
242
242
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
243
243
|
key?: string | number | symbol | undefined;
|
|
@@ -347,8 +347,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
347
347
|
type: "button" | "reset" | "submit";
|
|
348
348
|
variant: "outlined" | "link" | "text" | "contained";
|
|
349
349
|
color: "inherit" | "primary" | "danger";
|
|
350
|
-
activated: boolean;
|
|
351
350
|
loading: boolean;
|
|
351
|
+
activated: boolean;
|
|
352
352
|
loadingText: string;
|
|
353
353
|
}, {}, string, {}> & {
|
|
354
354
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -194,8 +194,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
194
194
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
195
195
|
}, {
|
|
196
196
|
overflow: "wrap" | "scroll";
|
|
197
|
-
closeButton: boolean;
|
|
198
197
|
modelValue: EditorTabsModelValue;
|
|
198
|
+
closeButton: boolean;
|
|
199
199
|
addButton: boolean;
|
|
200
200
|
}, {}>;
|
|
201
201
|
export default _default;
|
|
@@ -66,7 +66,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
66
66
|
focus: () => void;
|
|
67
67
|
blur: () => void;
|
|
68
68
|
activate: (forceFocus?: boolean) => void;
|
|
69
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("apply" | "focus" | "blur" | "input" | "
|
|
69
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("apply" | "focus" | "blur" | "input" | "update:modelValue" | "keydown" | "keyup" | "reset")[], "apply" | "focus" | "blur" | "input" | "update:modelValue" | "keydown" | "keyup" | "reset", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
70
70
|
modelValue: {
|
|
71
71
|
type: PropType<InlineInputModelValue>;
|
|
72
72
|
default: undefined;
|
|
@@ -102,11 +102,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
102
102
|
}>> & {
|
|
103
103
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
104
104
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
105
|
-
onReset?: ((...args: any[]) => any) | undefined;
|
|
106
105
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
107
106
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
108
107
|
onKeydown?: ((...args: any[]) => any) | undefined;
|
|
109
108
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
109
|
+
onReset?: ((...args: any[]) => any) | undefined;
|
|
110
110
|
onApply?: ((...args: any[]) => any) | undefined;
|
|
111
111
|
}, {
|
|
112
112
|
type: "number" | "text";
|
|
@@ -51,7 +51,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
51
51
|
reset: () => void;
|
|
52
52
|
focus: () => void;
|
|
53
53
|
blur: () => void;
|
|
54
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("apply" | "focus" | "blur" | "input" | "
|
|
54
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("apply" | "focus" | "blur" | "input" | "update:modelValue" | "keydown" | "keyup" | "reset")[], "apply" | "focus" | "blur" | "input" | "update:modelValue" | "keydown" | "keyup" | "reset", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
55
55
|
modelValue: {
|
|
56
56
|
type: PropType<InlineTextareaModelValue>;
|
|
57
57
|
default: undefined;
|
|
@@ -75,11 +75,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
75
75
|
}>> & {
|
|
76
76
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
77
77
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
78
|
-
onReset?: ((...args: any[]) => any) | undefined;
|
|
79
78
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
80
79
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
81
80
|
onKeydown?: ((...args: any[]) => any) | undefined;
|
|
82
81
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
82
|
+
onReset?: ((...args: any[]) => any) | undefined;
|
|
83
83
|
onApply?: ((...args: any[]) => any) | undefined;
|
|
84
84
|
}, {
|
|
85
85
|
modelValue: InlineTextareaModelValue;
|
|
@@ -163,13 +163,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
163
163
|
size: "m" | "s";
|
|
164
164
|
required: boolean;
|
|
165
165
|
readonly: boolean;
|
|
166
|
-
loading: boolean;
|
|
167
166
|
modelValue: InputModelValue;
|
|
167
|
+
autocomplete: string;
|
|
168
|
+
inputmode: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
168
169
|
label: string;
|
|
169
170
|
placeholder: string;
|
|
170
171
|
hint: string;
|
|
171
172
|
error: string | boolean;
|
|
172
|
-
|
|
173
|
-
inputmode: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
173
|
+
loading: boolean;
|
|
174
174
|
}, {}>;
|
|
175
175
|
export default _default;
|
|
@@ -28,8 +28,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
28
28
|
type?: "button" | "reset" | "submit" | undefined;
|
|
29
29
|
variant?: "outlined" | "link" | "text" | "contained" | undefined;
|
|
30
30
|
color?: "inherit" | "primary" | "danger" | undefined;
|
|
31
|
-
activated?: boolean | undefined;
|
|
32
31
|
loading?: boolean | undefined;
|
|
32
|
+
activated?: boolean | undefined;
|
|
33
33
|
loadingText?: string | undefined;
|
|
34
34
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
35
35
|
key?: string | number | symbol | undefined;
|
|
@@ -139,8 +139,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
139
139
|
type: "button" | "reset" | "submit";
|
|
140
140
|
variant: "outlined" | "link" | "text" | "contained";
|
|
141
141
|
color: "inherit" | "primary" | "danger";
|
|
142
|
-
activated: boolean;
|
|
143
142
|
loading: boolean;
|
|
143
|
+
activated: boolean;
|
|
144
144
|
loadingText: string;
|
|
145
145
|
}, {}, string, {}> & {
|
|
146
146
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -381,8 +381,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
381
381
|
type?: "button" | "reset" | "submit" | undefined;
|
|
382
382
|
variant?: "outlined" | "link" | "text" | "contained" | undefined;
|
|
383
383
|
color?: "inherit" | "primary" | "danger" | undefined;
|
|
384
|
-
activated?: boolean | undefined;
|
|
385
384
|
loading?: boolean | undefined;
|
|
385
|
+
activated?: boolean | undefined;
|
|
386
386
|
loadingText?: string | undefined;
|
|
387
387
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
388
388
|
key?: string | number | symbol | undefined;
|
|
@@ -492,8 +492,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
492
492
|
type: "button" | "reset" | "submit";
|
|
493
493
|
variant: "outlined" | "link" | "text" | "contained";
|
|
494
494
|
color: "inherit" | "primary" | "danger";
|
|
495
|
-
activated: boolean;
|
|
496
495
|
loading: boolean;
|
|
496
|
+
activated: boolean;
|
|
497
497
|
loadingText: string;
|
|
498
498
|
}, {}, string, {}> & {
|
|
499
499
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -46,14 +46,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
46
46
|
size?: "m" | "s" | undefined;
|
|
47
47
|
required?: boolean | undefined;
|
|
48
48
|
readonly?: boolean | undefined;
|
|
49
|
-
loading?: boolean | undefined;
|
|
50
49
|
modelValue?: import("@onereach/ui-components.or-input-v3").InputModelValue;
|
|
50
|
+
autocomplete?: string | undefined;
|
|
51
|
+
inputmode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
51
52
|
label?: string | undefined;
|
|
52
53
|
placeholder?: string | undefined;
|
|
53
54
|
hint?: string | undefined;
|
|
54
55
|
error?: string | boolean | undefined;
|
|
55
|
-
|
|
56
|
-
inputmode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
56
|
+
loading?: boolean | undefined;
|
|
57
57
|
key?: string | number | symbol | undefined;
|
|
58
58
|
ref?: import("vue").VNodeRef | undefined;
|
|
59
59
|
ref_for?: boolean | undefined;
|
|
@@ -220,14 +220,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
220
220
|
size: "m" | "s";
|
|
221
221
|
required: boolean;
|
|
222
222
|
readonly: boolean;
|
|
223
|
-
loading: boolean;
|
|
224
223
|
modelValue: import("@onereach/ui-components.or-input-v3").InputModelValue;
|
|
224
|
+
autocomplete: string;
|
|
225
|
+
inputmode: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
225
226
|
label: string;
|
|
226
227
|
placeholder: string;
|
|
227
228
|
hint: string;
|
|
228
229
|
error: string | boolean;
|
|
229
|
-
|
|
230
|
-
inputmode: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
230
|
+
loading: boolean;
|
|
231
231
|
}, {}, string, {}> & {
|
|
232
232
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
233
233
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -307,8 +307,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
307
307
|
}>) => void)[] | undefined;
|
|
308
308
|
class?: unknown;
|
|
309
309
|
style?: unknown;
|
|
310
|
-
onReset?: ((...args: any[]) => any) | undefined;
|
|
311
310
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
311
|
+
onReset?: ((...args: any[]) => any) | undefined;
|
|
312
312
|
};
|
|
313
313
|
$attrs: {
|
|
314
314
|
[x: string]: unknown;
|
|
@@ -321,7 +321,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
321
321
|
}>;
|
|
322
322
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
323
323
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
324
|
-
$emit: (event: "
|
|
324
|
+
$emit: (event: "update:modelValue" | "reset", ...args: any[]) => void;
|
|
325
325
|
$el: any;
|
|
326
326
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
327
327
|
modelValue: {
|
|
@@ -361,8 +361,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
361
361
|
default: boolean;
|
|
362
362
|
};
|
|
363
363
|
}>> & {
|
|
364
|
-
onReset?: ((...args: any[]) => any) | undefined;
|
|
365
364
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
365
|
+
onReset?: ((...args: any[]) => any) | undefined;
|
|
366
366
|
}, {
|
|
367
367
|
root: import("vue").Ref<HTMLDivElement | undefined>;
|
|
368
368
|
tags: import("vue").Ref<({
|
|
@@ -573,8 +573,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
573
573
|
type?: "button" | "reset" | "submit" | undefined;
|
|
574
574
|
variant?: "outlined" | "link" | "text" | "contained" | undefined;
|
|
575
575
|
color?: "inherit" | "primary" | "danger" | undefined;
|
|
576
|
-
activated?: boolean | undefined;
|
|
577
576
|
loading?: boolean | undefined;
|
|
577
|
+
activated?: boolean | undefined;
|
|
578
578
|
loadingText?: string | undefined;
|
|
579
579
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
580
580
|
key?: string | number | symbol | undefined;
|
|
@@ -684,8 +684,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
684
684
|
type: "button" | "reset" | "submit";
|
|
685
685
|
variant: "outlined" | "link" | "text" | "contained";
|
|
686
686
|
color: "inherit" | "primary" | "danger";
|
|
687
|
-
activated: boolean;
|
|
688
687
|
loading: boolean;
|
|
688
|
+
activated: boolean;
|
|
689
689
|
loadingText: string;
|
|
690
690
|
}, {}, string, {}> & {
|
|
691
691
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -1720,8 +1720,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1720
1720
|
type?: "button" | "reset" | "submit" | undefined;
|
|
1721
1721
|
variant?: "outlined" | "link" | "text" | "contained" | undefined;
|
|
1722
1722
|
color?: "inherit" | "primary" | "danger" | undefined;
|
|
1723
|
-
activated?: boolean | undefined;
|
|
1724
1723
|
loading?: boolean | undefined;
|
|
1724
|
+
activated?: boolean | undefined;
|
|
1725
1725
|
loadingText?: string | undefined;
|
|
1726
1726
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
1727
1727
|
key?: string | number | symbol | undefined;
|
|
@@ -1831,8 +1831,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1831
1831
|
type: "button" | "reset" | "submit";
|
|
1832
1832
|
variant: "outlined" | "link" | "text" | "contained";
|
|
1833
1833
|
color: "inherit" | "primary" | "danger";
|
|
1834
|
-
activated: boolean;
|
|
1835
1834
|
loading: boolean;
|
|
1835
|
+
activated: boolean;
|
|
1836
1836
|
loadingText: string;
|
|
1837
1837
|
}, {}, string, {}> & {
|
|
1838
1838
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -2861,7 +2861,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2861
2861
|
value: import("vue").ComputedRef<(string | number | object)[]>;
|
|
2862
2862
|
focus: () => void;
|
|
2863
2863
|
focused: import("vue").ComputedRef<boolean | undefined>;
|
|
2864
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
2864
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "reset")[], string, {
|
|
2865
2865
|
disabled: boolean;
|
|
2866
2866
|
overflow: "hidden" | "wrap" | "scroll";
|
|
2867
2867
|
isOpen: boolean;
|
|
@@ -2929,8 +2929,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2929
2929
|
default: boolean;
|
|
2930
2930
|
};
|
|
2931
2931
|
}>> & {
|
|
2932
|
-
onReset?: ((...args: any[]) => any) | undefined;
|
|
2933
2932
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2933
|
+
onReset?: ((...args: any[]) => any) | undefined;
|
|
2934
2934
|
} & import("vue").ShallowUnwrapRef<{
|
|
2935
2935
|
root: import("vue").Ref<HTMLDivElement | undefined>;
|
|
2936
2936
|
tags: import("vue").Ref<({
|
|
@@ -3141,8 +3141,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3141
3141
|
type?: "button" | "reset" | "submit" | undefined;
|
|
3142
3142
|
variant?: "outlined" | "link" | "text" | "contained" | undefined;
|
|
3143
3143
|
color?: "inherit" | "primary" | "danger" | undefined;
|
|
3144
|
-
activated?: boolean | undefined;
|
|
3145
3144
|
loading?: boolean | undefined;
|
|
3145
|
+
activated?: boolean | undefined;
|
|
3146
3146
|
loadingText?: string | undefined;
|
|
3147
3147
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
3148
3148
|
key?: string | number | symbol | undefined;
|
|
@@ -3252,8 +3252,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3252
3252
|
type: "button" | "reset" | "submit";
|
|
3253
3253
|
variant: "outlined" | "link" | "text" | "contained";
|
|
3254
3254
|
color: "inherit" | "primary" | "danger";
|
|
3255
|
-
activated: boolean;
|
|
3256
3255
|
loading: boolean;
|
|
3256
|
+
activated: boolean;
|
|
3257
3257
|
loadingText: string;
|
|
3258
3258
|
}, {}, string, {}> & {
|
|
3259
3259
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -4288,8 +4288,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4288
4288
|
type?: "button" | "reset" | "submit" | undefined;
|
|
4289
4289
|
variant?: "outlined" | "link" | "text" | "contained" | undefined;
|
|
4290
4290
|
color?: "inherit" | "primary" | "danger" | undefined;
|
|
4291
|
-
activated?: boolean | undefined;
|
|
4292
4291
|
loading?: boolean | undefined;
|
|
4292
|
+
activated?: boolean | undefined;
|
|
4293
4293
|
loadingText?: string | undefined;
|
|
4294
4294
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
4295
4295
|
key?: string | number | symbol | undefined;
|
|
@@ -4399,8 +4399,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4399
4399
|
type: "button" | "reset" | "submit";
|
|
4400
4400
|
variant: "outlined" | "link" | "text" | "contained";
|
|
4401
4401
|
color: "inherit" | "primary" | "danger";
|
|
4402
|
-
activated: boolean;
|
|
4403
4402
|
loading: boolean;
|
|
4403
|
+
activated: boolean;
|
|
4404
4404
|
loadingText: string;
|
|
4405
4405
|
}, {}, string, {}> & {
|
|
4406
4406
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -7243,13 +7243,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7243
7243
|
options: SelectItem[];
|
|
7244
7244
|
externalControl: boolean;
|
|
7245
7245
|
anchor: ReferenceElement;
|
|
7246
|
-
loading: boolean;
|
|
7247
|
-
loadingText: string;
|
|
7248
7246
|
modelValue: SelectModelValue;
|
|
7249
7247
|
label: string;
|
|
7250
7248
|
placeholder: string;
|
|
7251
7249
|
hint: string;
|
|
7252
7250
|
error: string | boolean;
|
|
7251
|
+
loading: boolean;
|
|
7252
|
+
loadingText: string;
|
|
7253
7253
|
enableClear: boolean;
|
|
7254
7254
|
multiple: boolean;
|
|
7255
7255
|
searchFunction: SearchFunction<SelectItem>;
|
|
@@ -248,8 +248,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
248
248
|
type?: "button" | "reset" | "submit" | undefined;
|
|
249
249
|
variant?: "outlined" | "link" | "text" | "contained" | undefined;
|
|
250
250
|
color?: "inherit" | "primary" | "danger" | undefined;
|
|
251
|
-
activated?: boolean | undefined;
|
|
252
251
|
loading?: boolean | undefined;
|
|
252
|
+
activated?: boolean | undefined;
|
|
253
253
|
loadingText?: string | undefined;
|
|
254
254
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
255
255
|
key?: string | number | symbol | undefined;
|
|
@@ -359,8 +359,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
359
359
|
type: "button" | "reset" | "submit";
|
|
360
360
|
variant: "outlined" | "link" | "text" | "contained";
|
|
361
361
|
color: "inherit" | "primary" | "danger";
|
|
362
|
-
activated: boolean;
|
|
363
362
|
loading: boolean;
|
|
363
|
+
activated: boolean;
|
|
364
364
|
loadingText: string;
|
|
365
365
|
}, {}, string, {}> & {
|
|
366
366
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -1395,8 +1395,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1395
1395
|
type?: "button" | "reset" | "submit" | undefined;
|
|
1396
1396
|
variant?: "outlined" | "link" | "text" | "contained" | undefined;
|
|
1397
1397
|
color?: "inherit" | "primary" | "danger" | undefined;
|
|
1398
|
-
activated?: boolean | undefined;
|
|
1399
1398
|
loading?: boolean | undefined;
|
|
1399
|
+
activated?: boolean | undefined;
|
|
1400
1400
|
loadingText?: string | undefined;
|
|
1401
1401
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
1402
1402
|
key?: string | number | symbol | undefined;
|
|
@@ -1506,8 +1506,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1506
1506
|
type: "button" | "reset" | "submit";
|
|
1507
1507
|
variant: "outlined" | "link" | "text" | "contained";
|
|
1508
1508
|
color: "inherit" | "primary" | "danger";
|
|
1509
|
-
activated: boolean;
|
|
1510
1509
|
loading: boolean;
|
|
1510
|
+
activated: boolean;
|
|
1511
1511
|
loadingText: string;
|
|
1512
1512
|
}, {}, string, {}> & {
|
|
1513
1513
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -2536,7 +2536,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2536
2536
|
value: import("vue").ComputedRef<(string | number | object)[]>;
|
|
2537
2537
|
focus: () => void;
|
|
2538
2538
|
focused: import("vue").ComputedRef<boolean | undefined>;
|
|
2539
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
2539
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "reset")[], "update:modelValue" | "reset", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2540
2540
|
modelValue: {
|
|
2541
2541
|
type: StringConstructor;
|
|
2542
2542
|
default: string;
|
|
@@ -2574,8 +2574,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2574
2574
|
default: boolean;
|
|
2575
2575
|
};
|
|
2576
2576
|
}>> & {
|
|
2577
|
-
onReset?: ((...args: any[]) => any) | undefined;
|
|
2578
2577
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2578
|
+
onReset?: ((...args: any[]) => any) | undefined;
|
|
2579
2579
|
}, {
|
|
2580
2580
|
disabled: boolean;
|
|
2581
2581
|
overflow: "hidden" | "wrap" | "scroll";
|
|
@@ -151,8 +151,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
151
151
|
type: "button" | "reset" | "submit";
|
|
152
152
|
variant: "outlined" | "link" | "text" | "contained";
|
|
153
153
|
color: "inherit" | "primary" | "danger";
|
|
154
|
-
activated: boolean;
|
|
155
154
|
loading: boolean;
|
|
155
|
+
activated: boolean;
|
|
156
156
|
loadingText: string;
|
|
157
157
|
}, {}> | undefined>;
|
|
158
158
|
sortLabel: import("vue").ComputedRef<string | undefined>;
|
|
@@ -85,9 +85,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
85
85
|
disabled: boolean;
|
|
86
86
|
required: boolean;
|
|
87
87
|
value: SwitchValue;
|
|
88
|
-
loading: boolean;
|
|
89
88
|
modelValue: SwitchModelValue;
|
|
90
89
|
label: string;
|
|
90
|
+
loading: boolean;
|
|
91
91
|
labelVariant: "toggle" | "input" | "group" | "menu-item";
|
|
92
92
|
}, {}>;
|
|
93
93
|
export default _default;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PropType, nextTick } from 'vue';
|
|
2
1
|
import { InputBoxVariant } from '@onereach/ui-components.or-input-box-v3';
|
|
2
|
+
import { TagVariant } from '@onereach/ui-components.or-tag-v3';
|
|
3
3
|
import { TagObject, TagsOverflow } from '@onereach/ui-components.or-tags-v3';
|
|
4
|
+
import { PropType, nextTick } from 'vue';
|
|
4
5
|
import { TagInputModelValue } from './types';
|
|
5
6
|
declare const _default: import("vue").DefineComponent<{
|
|
6
7
|
modelValue: {
|
|
@@ -427,8 +428,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
427
428
|
type?: "button" | "reset" | "submit" | undefined;
|
|
428
429
|
variant?: "outlined" | "link" | "text" | "contained" | undefined;
|
|
429
430
|
color?: "inherit" | "primary" | "danger" | undefined;
|
|
430
|
-
activated?: boolean | undefined;
|
|
431
431
|
loading?: boolean | undefined;
|
|
432
|
+
activated?: boolean | undefined;
|
|
432
433
|
loadingText?: string | undefined;
|
|
433
434
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
434
435
|
key?: string | number | symbol | undefined;
|
|
@@ -538,8 +539,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
538
539
|
type: "button" | "reset" | "submit";
|
|
539
540
|
variant: "outlined" | "link" | "text" | "contained";
|
|
540
541
|
color: "inherit" | "primary" | "danger";
|
|
541
|
-
activated: boolean;
|
|
542
542
|
loading: boolean;
|
|
543
|
+
activated: boolean;
|
|
543
544
|
loadingText: string;
|
|
544
545
|
}, {}, string, {}> & {
|
|
545
546
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -1574,8 +1575,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1574
1575
|
type?: "button" | "reset" | "submit" | undefined;
|
|
1575
1576
|
variant?: "outlined" | "link" | "text" | "contained" | undefined;
|
|
1576
1577
|
color?: "inherit" | "primary" | "danger" | undefined;
|
|
1577
|
-
activated?: boolean | undefined;
|
|
1578
1578
|
loading?: boolean | undefined;
|
|
1579
|
+
activated?: boolean | undefined;
|
|
1579
1580
|
loadingText?: string | undefined;
|
|
1580
1581
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
1581
1582
|
key?: string | number | symbol | undefined;
|
|
@@ -1685,8 +1686,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1685
1686
|
type: "button" | "reset" | "submit";
|
|
1686
1687
|
variant: "outlined" | "link" | "text" | "contained";
|
|
1687
1688
|
color: "inherit" | "primary" | "danger";
|
|
1688
|
-
activated: boolean;
|
|
1689
1689
|
loading: boolean;
|
|
1690
|
+
activated: boolean;
|
|
1690
1691
|
loadingText: string;
|
|
1691
1692
|
}, {}, string, {}> & {
|
|
1692
1693
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -2583,7 +2584,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2583
2584
|
draftModelValue: import("vue").Ref<string | undefined>;
|
|
2584
2585
|
tagsItems: import("vue").ComputedRef<TagObject[]>;
|
|
2585
2586
|
tagsProps: import("vue").ComputedRef<{
|
|
2586
|
-
variant:
|
|
2587
|
+
variant: TagVariant;
|
|
2587
2588
|
disabled: boolean;
|
|
2588
2589
|
}>;
|
|
2589
2590
|
currentLength: import("vue").ComputedRef<number>;
|
|
@@ -2599,7 +2600,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2599
2600
|
remove: (value: string) => void;
|
|
2600
2601
|
reset: () => void;
|
|
2601
2602
|
clear: () => void;
|
|
2602
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("focus" | "blur" | "input" | "
|
|
2603
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("focus" | "blur" | "input" | "update:modelValue" | "keydown" | "keyup" | "reset")[], "focus" | "blur" | "input" | "update:modelValue" | "keydown" | "keyup" | "reset", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2603
2604
|
modelValue: {
|
|
2604
2605
|
type: PropType<TagInputModelValue>;
|
|
2605
2606
|
default: () => never[];
|
|
@@ -2659,23 +2660,23 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2659
2660
|
}>> & {
|
|
2660
2661
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
2661
2662
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
2662
|
-
onReset?: ((...args: any[]) => any) | undefined;
|
|
2663
2663
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
2664
2664
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2665
2665
|
onKeydown?: ((...args: any[]) => any) | undefined;
|
|
2666
2666
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
2667
|
+
onReset?: ((...args: any[]) => any) | undefined;
|
|
2667
2668
|
}, {
|
|
2668
2669
|
disabled: boolean;
|
|
2669
2670
|
variant: "styled" | "unstyled" | "embedded";
|
|
2670
2671
|
required: boolean;
|
|
2671
2672
|
overflow: "hidden" | "wrap" | "scroll";
|
|
2672
2673
|
readonly: boolean;
|
|
2673
|
-
loading: boolean;
|
|
2674
2674
|
modelValue: TagInputModelValue;
|
|
2675
2675
|
label: string;
|
|
2676
2676
|
placeholder: string;
|
|
2677
2677
|
hint: string;
|
|
2678
2678
|
error: string | boolean;
|
|
2679
|
+
loading: boolean;
|
|
2679
2680
|
enableClear: boolean;
|
|
2680
2681
|
additionalInputBoxStyles: string[];
|
|
2681
2682
|
saveOnBlur: boolean;
|
|
@@ -82,8 +82,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
82
82
|
type?: "button" | "reset" | "submit" | undefined;
|
|
83
83
|
variant?: "outlined" | "link" | "text" | "contained" | undefined;
|
|
84
84
|
color?: "inherit" | "primary" | "danger" | undefined;
|
|
85
|
-
activated?: boolean | undefined;
|
|
86
85
|
loading?: boolean | undefined;
|
|
86
|
+
activated?: boolean | undefined;
|
|
87
87
|
loadingText?: string | undefined;
|
|
88
88
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
89
89
|
key?: string | number | symbol | undefined;
|
|
@@ -193,8 +193,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
193
193
|
type: "button" | "reset" | "submit";
|
|
194
194
|
variant: "outlined" | "link" | "text" | "contained";
|
|
195
195
|
color: "inherit" | "primary" | "danger";
|
|
196
|
-
activated: boolean;
|
|
197
196
|
loading: boolean;
|
|
197
|
+
activated: boolean;
|
|
198
198
|
loadingText: string;
|
|
199
199
|
}, {}, string, {}> & {
|
|
200
200
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -152,11 +152,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
152
152
|
required: boolean;
|
|
153
153
|
readonly: boolean;
|
|
154
154
|
modelValue: TextareaModelValue;
|
|
155
|
+
autocomplete: string;
|
|
155
156
|
label: string;
|
|
156
157
|
placeholder: string;
|
|
157
158
|
hint: string;
|
|
158
159
|
error: string | boolean;
|
|
159
|
-
autocomplete: string;
|
|
160
160
|
rows: TextareaRows;
|
|
161
161
|
}, {}>;
|
|
162
162
|
export default _default;
|
|
@@ -3,7 +3,7 @@ import { ToastType } from './props';
|
|
|
3
3
|
import { ToastLink } from './types';
|
|
4
4
|
declare const _default: import("vue").DefineComponent<{
|
|
5
5
|
toastType: {
|
|
6
|
-
type: PropType<"
|
|
6
|
+
type: PropType<"error" | "loading" | "success">;
|
|
7
7
|
default: () => ToastType;
|
|
8
8
|
};
|
|
9
9
|
link: {
|
|
@@ -30,7 +30,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
30
30
|
onLinkClick: (event: MouseEvent) => void;
|
|
31
31
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
32
32
|
toastType: {
|
|
33
|
-
type: PropType<"
|
|
33
|
+
type: PropType<"error" | "loading" | "success">;
|
|
34
34
|
default: () => ToastType;
|
|
35
35
|
};
|
|
36
36
|
link: {
|
|
@@ -49,7 +49,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
49
49
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
50
50
|
}, {
|
|
51
51
|
link: ToastLink;
|
|
52
|
-
toastType: "
|
|
52
|
+
toastType: "error" | "loading" | "success";
|
|
53
53
|
messageText: string;
|
|
54
54
|
dismissible: boolean;
|
|
55
55
|
}, {}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onereach/ui-components",
|
|
3
|
-
"version": "25.1.2
|
|
3
|
+
"version": "25.1.2",
|
|
4
4
|
"description": "Vue components library for v3",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"@codemirror/view": "^6",
|
|
47
47
|
"@floating-ui/dom": "1.5.3",
|
|
48
48
|
"@lezer/highlight": "*",
|
|
49
|
-
"@onereach/styles": "^25.1.2
|
|
50
|
-
"@onereach/ui-components-common": "^25.1.2
|
|
49
|
+
"@onereach/styles": "^25.1.2",
|
|
50
|
+
"@onereach/ui-components-common": "^25.1.2",
|
|
51
51
|
"@splidejs/splide": "4.0.6",
|
|
52
52
|
"@tiptap/core": "2.0.3",
|
|
53
53
|
"@tiptap/extension-blockquote": "2.0.3",
|
|
@@ -102,5 +102,6 @@
|
|
|
102
102
|
"publishConfig": {
|
|
103
103
|
"access": "public"
|
|
104
104
|
},
|
|
105
|
-
"npmUnpacked": "4.15.2"
|
|
105
|
+
"npmUnpacked": "4.15.2",
|
|
106
|
+
"gitHead": "a074a252a6ca80f6ba59853c2e072a1970c84ce7"
|
|
106
107
|
}
|