@ulu/frontend-vue 0.3.0 → 0.3.1
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.
|
@@ -14,10 +14,11 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
14
14
|
nonModal: boolean;
|
|
15
15
|
allowResize: boolean;
|
|
16
16
|
position: string;
|
|
17
|
+
fullscreen: boolean;
|
|
18
|
+
fullscreenMobile: boolean;
|
|
17
19
|
bodyFills: boolean;
|
|
18
20
|
noBackdrop: boolean;
|
|
19
21
|
noMinHeight: boolean;
|
|
20
|
-
fullscreenMobile: boolean;
|
|
21
22
|
labelledby?: string | undefined;
|
|
22
23
|
describedby?: string | undefined;
|
|
23
24
|
title?: string | undefined;
|
|
@@ -35,10 +36,11 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
35
36
|
readonly nonModal?: boolean | undefined;
|
|
36
37
|
readonly allowResize?: boolean | undefined;
|
|
37
38
|
readonly position?: string | undefined;
|
|
39
|
+
readonly fullscreen?: boolean | undefined;
|
|
40
|
+
readonly fullscreenMobile?: boolean | undefined;
|
|
38
41
|
readonly bodyFills?: boolean | undefined;
|
|
39
42
|
readonly noBackdrop?: boolean | undefined;
|
|
40
43
|
readonly noMinHeight?: boolean | undefined;
|
|
41
|
-
readonly fullscreenMobile?: boolean | undefined;
|
|
42
44
|
readonly labelledby?: string | undefined;
|
|
43
45
|
readonly describedby?: string | undefined;
|
|
44
46
|
readonly title?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UluModal.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/collapsible/UluModal.vue"],"names":[],"mappings":"AAoEA;
|
|
1
|
+
{"version":3,"file":"UluModal.vue.d.ts","sourceRoot":"","sources":["../../../lib/components/collapsible/UluModal.vue"],"names":[],"mappings":"AAoEA;wBA+1BqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAbjC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4OAUG"}
|
|
@@ -58,6 +58,14 @@ const ne = ["aria-labelledby", "aria-describedby"], ie = ["id"], re = { class: "
|
|
|
58
58
|
type: String,
|
|
59
59
|
default: "center"
|
|
60
60
|
},
|
|
61
|
+
/**
|
|
62
|
+
* Use fullscreen layout
|
|
63
|
+
*/
|
|
64
|
+
fullscreen: Boolean,
|
|
65
|
+
/**
|
|
66
|
+
* If true, modal is forced to fullscreen on mobile viewports
|
|
67
|
+
*/
|
|
68
|
+
fullscreenMobile: Boolean,
|
|
61
69
|
/**
|
|
62
70
|
* If `true`, the modal body will fill the available space.
|
|
63
71
|
*/
|
|
@@ -109,11 +117,7 @@ const ne = ["aria-labelledby", "aria-describedby"], ie = ["id"], re = { class: "
|
|
|
109
117
|
/**
|
|
110
118
|
* Modifiers (to add any modifier classes based on base class [ie. 'tertiary'])
|
|
111
119
|
*/
|
|
112
|
-
modifiers: [String, Array]
|
|
113
|
-
/**
|
|
114
|
-
* If true, modal is forced to fullscreen on mobile viewports
|
|
115
|
-
*/
|
|
116
|
-
fullscreenMobile: Boolean
|
|
120
|
+
modifiers: [String, Array]
|
|
117
121
|
},
|
|
118
122
|
emits: ["update:modelValue", "close", "open"],
|
|
119
123
|
setup(t, { emit: H }) {
|
|
@@ -132,6 +136,7 @@ const ne = ["aria-labelledby", "aria-describedby"], ie = ["id"], re = { class: "
|
|
|
132
136
|
"no-min-height": e.noMinHeight,
|
|
133
137
|
"non-modal": e.nonModal,
|
|
134
138
|
"resizer-active": f.value,
|
|
139
|
+
fullscreen: e.fullscreen,
|
|
135
140
|
"fullscreen-mobile": e.fullscreenMobile
|
|
136
141
|
})), { resolvedModifiers: F } = x({
|
|
137
142
|
props: e,
|
|
@@ -128,6 +128,14 @@
|
|
|
128
128
|
type: String,
|
|
129
129
|
default: "center"
|
|
130
130
|
},
|
|
131
|
+
/**
|
|
132
|
+
* Use fullscreen layout
|
|
133
|
+
*/
|
|
134
|
+
fullscreen: Boolean,
|
|
135
|
+
/**
|
|
136
|
+
* If true, modal is forced to fullscreen on mobile viewports
|
|
137
|
+
*/
|
|
138
|
+
fullscreenMobile: Boolean,
|
|
131
139
|
/**
|
|
132
140
|
* If `true`, the modal body will fill the available space.
|
|
133
141
|
*/
|
|
@@ -180,10 +188,6 @@
|
|
|
180
188
|
* Modifiers (to add any modifier classes based on base class [ie. 'tertiary'])
|
|
181
189
|
*/
|
|
182
190
|
modifiers: [String, Array],
|
|
183
|
-
/**
|
|
184
|
-
* If true, modal is forced to fullscreen on mobile viewports
|
|
185
|
-
*/
|
|
186
|
-
fullscreenMobile: Boolean
|
|
187
191
|
});
|
|
188
192
|
|
|
189
193
|
const slots = useSlots();
|
|
@@ -224,6 +228,7 @@
|
|
|
224
228
|
"no-min-height": props.noMinHeight,
|
|
225
229
|
"non-modal": props.nonModal,
|
|
226
230
|
"resizer-active": resizerEnabled.value,
|
|
231
|
+
"fullscreen": props.fullscreen,
|
|
227
232
|
"fullscreen-mobile": props.fullscreenMobile,
|
|
228
233
|
}));
|
|
229
234
|
|
package/package.json
CHANGED