@codeandfunction/callaloo 4.8.0 → 4.9.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/callaloo.global.js +1 -1
- package/dist/chunks/CLCalendar-XcUGsiWk.js +159 -0
- package/dist/chunks/floating-ui.vue-Fx4CxKut.js +1057 -0
- package/dist/components/Form/CLCalendar/CLCalendar.css +1 -0
- package/dist/components/Form/CLCalendar/CLCalendar.js +7 -0
- package/dist/components/Form/CLCalendar/CLCalendar.vue.d.ts +54 -0
- package/dist/components/Form/CLCalendar/index.d.ts +4 -0
- package/dist/components/Form/CLInput/CLInput.js +0 -1
- package/dist/components/Form/CLInputDatePicker/CLInputDatePicker.css +1 -0
- package/dist/components/Form/CLInputDatePicker/CLInputDatePicker.js +181 -0
- package/dist/components/Form/CLInputDatePicker/CLInputDatePicker.vue.d.ts +265 -0
- package/dist/components/Form/CLInputDatePicker/index.d.ts +4 -0
- package/dist/components/Form/index.d.ts +2 -0
- package/dist/components/Modals/CLModal/CLModal.css +1 -1
- package/dist/components/Modals/CLModalDatePicker/CLModalDatePicker.css +1 -1
- package/dist/components/Modals/CLModalDatePicker/CLModalDatePicker.js +124 -206
- package/dist/components/Modals/CLModalDatePicker/CLModalDatePicker.vue.d.ts +77 -10
- package/dist/components/Popups/CLDropdownMenu/CLDropdownMenu.js +101 -1149
- package/dist/components/Popups/CLDropdownMenu/CLDropdownMenu.vue.d.ts +1 -1
- package/dist/composables/useDateInputMask.d.ts +8 -0
- package/dist/composables/useDateInputMask.js +39 -0
- package/dist/composables/useDatePicker.d.ts +3 -2
- package/dist/composables/useDatePicker.js +66 -61
- package/dist/index.cdn.d.ts +4 -1
- package/dist/styles.css +1 -1
- package/package.json +9 -1
- /package/dist/components/Form/{CLInput → CLInputDatePicker}/CLInput.css +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.clll-calendar[data-v-d4bca6fb]{display:flex;flex-direction:column;background-color:#fff;box-sizing:border-box;max-width:300px}.clll-calendar__fluid[data-v-d4bca6fb]{width:100%;max-width:none}.clll-calendar__header[data-v-d4bca6fb]{display:flex;justify-content:space-between;align-items:center;margin-bottom:var(--clll-unit-4)}.clll-calendar__grid[data-v-d4bca6fb]{display:grid;grid-template-columns:repeat(7,1fr);gap:var(--clll-unit-1)}.clll-calendar__weekday[data-v-d4bca6fb]{text-align:center;padding-bottom:var(--clll-unit-1)}.clll-calendar__cell[data-v-d4bca6fb]{aspect-ratio:1;display:flex;justify-content:center;align-items:center}.clll-calendar__cell--outside[data-v-d4bca6fb]{opacity:.55}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { CLColors } from '../../../index.ts';
|
|
2
|
+
import { ISODate } from '../../../composables/useDatePicker';
|
|
3
|
+
export interface CLCalendarProps {
|
|
4
|
+
/** The color theme of the calendar selection. */
|
|
5
|
+
color?: CLColors;
|
|
6
|
+
/** Sets the disabled state. */
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
/** Sets the busy state. */
|
|
9
|
+
busy?: boolean;
|
|
10
|
+
/** Whether to allow range selection or single date selection. */
|
|
11
|
+
isRange?: boolean;
|
|
12
|
+
/** Whether to make the calendar fluid. */
|
|
13
|
+
fluid?: boolean;
|
|
14
|
+
/** Test ID for testing purposes. */
|
|
15
|
+
testId?: string;
|
|
16
|
+
}
|
|
17
|
+
declare const _default: import('vue').DefineComponent<{
|
|
18
|
+
modelValue?: {
|
|
19
|
+
end: ISODate | null;
|
|
20
|
+
start: ISODate | null;
|
|
21
|
+
} | null;
|
|
22
|
+
} & CLCalendarProps, {
|
|
23
|
+
apply: () => void;
|
|
24
|
+
cancel: () => void;
|
|
25
|
+
draftEnd: globalThis.Ref<string | null, string | null>;
|
|
26
|
+
draftStart: globalThis.Ref<string | null, string | null>;
|
|
27
|
+
initializeDraft: () => void;
|
|
28
|
+
reset: () => void;
|
|
29
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
30
|
+
"update:modelValue": (value: {
|
|
31
|
+
end: ISODate | null;
|
|
32
|
+
start: ISODate | null;
|
|
33
|
+
} | null) => any;
|
|
34
|
+
"date-select": (date: string) => any;
|
|
35
|
+
}, string, import('vue').PublicProps, Readonly<{
|
|
36
|
+
modelValue?: {
|
|
37
|
+
end: ISODate | null;
|
|
38
|
+
start: ISODate | null;
|
|
39
|
+
} | null;
|
|
40
|
+
} & CLCalendarProps> & Readonly<{
|
|
41
|
+
"onUpdate:modelValue"?: ((value: {
|
|
42
|
+
end: ISODate | null;
|
|
43
|
+
start: ISODate | null;
|
|
44
|
+
} | null) => any) | undefined;
|
|
45
|
+
"onDate-select"?: ((date: string) => any) | undefined;
|
|
46
|
+
}>, {
|
|
47
|
+
color: CLColors;
|
|
48
|
+
fluid: boolean;
|
|
49
|
+
testId: string;
|
|
50
|
+
busy: boolean;
|
|
51
|
+
disabled: boolean;
|
|
52
|
+
isRange: boolean;
|
|
53
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
54
|
+
export default _default;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import '../../../assets/core.css';
|
|
2
|
-
import './CLInput.css';
|
|
3
2
|
import '../../../assets/shared/form-utilities.css';
|
|
4
3
|
import { defineComponent as p, computed as z, createElementBlock as $, openBlock as u, normalizeClass as y, unref as a, createBlock as b, Fragment as M, createTextVNode as q, toDisplayString as N, createVNode as K, ref as A, watch as P, createCommentVNode as v, mergeModels as w, useTemplateRef as Q, useModel as W, withCtx as Y, createElementVNode as F, normalizeStyle as Z, withDirectives as _, vModelDynamic as ee, isRef as le } from "vue";
|
|
5
4
|
import { _ as ie, i as ae, a as te } from "../../../chunks/CLInputMessages.vue_vue_type_style_index_0_lang-DTWvAACK.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.clll-input-date-picker[data-v-5ad92cdc]{position:relative;display:inline-flex;width:auto}.clll-input-date-picker--fluid[data-v-5ad92cdc]{width:100%}.clll-input-date-picker__calendar-container[data-v-5ad92cdc]{width:320px;padding:var(--clll-unit-2);background-color:#fff}.clll-input-date-picker__popover[data-v-5ad92cdc]{display:flex;flex-direction:column}.clll-input-date-picker__footer[data-v-5ad92cdc]{display:flex;justify-content:space-between;align-items:center;padding-top:var(--clll-unit-2)}.clll-input-date-picker__footer-right[data-v-5ad92cdc]{display:flex;gap:var(--clll-unit-2)}
|
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
import '../../../assets/core.css';
|
|
2
|
+
import './CLInputDatePicker.css';
|
|
3
|
+
import { defineComponent as U, mergeModels as q, ref as r, useModel as N, watch as T, computed as h, onMounted as A, onBeforeUnmount as G, createElementBlock as R, openBlock as k, normalizeClass as g, createVNode as y, createCommentVNode as H, unref as u, isRef as j, normalizeStyle as J, withCtx as K, createElementVNode as Q } from "vue";
|
|
4
|
+
import { u as W, a as X, o as Z, f as _, s as ee } from "../../../chunks/floating-ui.vue-Fx4CxKut.js";
|
|
5
|
+
import { _ as ae } from "../../../chunks/CLCard.vue_vue_type_style_index_0_lang-Sre7UYZd.js";
|
|
6
|
+
import { CLInput as te } from "../CLInput/CLInput.js";
|
|
7
|
+
import { C as le } from "../../../chunks/CLCalendar-XcUGsiWk.js";
|
|
8
|
+
import { CLIconNames as ne, CLColorVariants as D, CLPlacement as oe, CLOrientation as ie, CLSizes as de, CLColors as ue } from "../../../index.js";
|
|
9
|
+
import { i as L } from "../../../chunks/helper-qUkciePY.js";
|
|
10
|
+
import { useEsc as re } from "../../../composables/useEsc.js";
|
|
11
|
+
import { useDateInputMask as se } from "../../../composables/useDateInputMask.js";
|
|
12
|
+
import { _ as fe } from "../../../chunks/_plugin-vue_export-helper-CHgC5LLL.js";
|
|
13
|
+
const ce = /* @__PURE__ */ U({
|
|
14
|
+
name: "CLInputDatePicker",
|
|
15
|
+
__name: "CLInputDatePicker",
|
|
16
|
+
props: /* @__PURE__ */ q({
|
|
17
|
+
ariaLabel: { default: void 0 },
|
|
18
|
+
borderRadius: { default: void 0 },
|
|
19
|
+
color: { default: ue.Primary },
|
|
20
|
+
size: { default: de.Small },
|
|
21
|
+
variant: { default: D.Outline },
|
|
22
|
+
busy: { type: Boolean, default: !1 },
|
|
23
|
+
disabled: { type: Boolean, default: !1 },
|
|
24
|
+
fluid: { type: Boolean, default: !1 },
|
|
25
|
+
form: { default: void 0 },
|
|
26
|
+
id: {},
|
|
27
|
+
isRange: { type: Boolean, default: !0 },
|
|
28
|
+
label: { default: void 0 },
|
|
29
|
+
messages: { default: () => [] },
|
|
30
|
+
messageType: { default: void 0 },
|
|
31
|
+
name: {},
|
|
32
|
+
onBlur: { type: Function, default: void 0 },
|
|
33
|
+
onChange: { type: Function, default: void 0 },
|
|
34
|
+
onFocus: { type: Function, default: void 0 },
|
|
35
|
+
orientation: { default: ie.Vertical },
|
|
36
|
+
placement: { default: oe.BottomStart },
|
|
37
|
+
placeholder: { default: void 0 },
|
|
38
|
+
required: { type: Boolean, default: !1 },
|
|
39
|
+
rounded: { type: Boolean, default: !0 },
|
|
40
|
+
testId: { default: "clll-input-date-picker" }
|
|
41
|
+
}, {
|
|
42
|
+
modelValue: {
|
|
43
|
+
default: () => ({ end: null, start: null })
|
|
44
|
+
},
|
|
45
|
+
modelModifiers: {}
|
|
46
|
+
}),
|
|
47
|
+
emits: ["update:modelValue"],
|
|
48
|
+
setup(e) {
|
|
49
|
+
const n = e, f = "clll-input-date-picker", o = r(!1), c = r(), s = r(), v = r(), i = N(e, "modelValue"), d = r(""), { handleDateInput: Y, isoToSlash: C, slashToISO: p, validateDate: B } = se();
|
|
50
|
+
T(i, () => {
|
|
51
|
+
const a = C(i.value?.start ?? null), t = C(i.value?.end ?? null);
|
|
52
|
+
if (!a) {
|
|
53
|
+
d.value = "";
|
|
54
|
+
return;
|
|
55
|
+
}
|
|
56
|
+
if (!n.isRange || !t) {
|
|
57
|
+
d.value = a;
|
|
58
|
+
return;
|
|
59
|
+
}
|
|
60
|
+
d.value = `${a} - ${t}`;
|
|
61
|
+
}, { immediate: !0, deep: !0 });
|
|
62
|
+
const E = h(() => c.value?.$el), { floatingStyles: M } = W(E, v, {
|
|
63
|
+
middleware: [Z(8), _(), ee()],
|
|
64
|
+
placement: r(n.placement),
|
|
65
|
+
whileElementsMounted: X,
|
|
66
|
+
open: o
|
|
67
|
+
}), x = () => {
|
|
68
|
+
n.disabled || n.busy || (o.value = !o.value, o.value ? (n.onFocus?.(new FocusEvent("focus")), s.value?.initializeDraft()) : n.onBlur?.(new FocusEvent("blur")));
|
|
69
|
+
}, S = h(() => {
|
|
70
|
+
const a = s.value?.draftStart, t = s.value?.draftEnd;
|
|
71
|
+
return n.isRange ? !!a && !!t : !!a;
|
|
72
|
+
}), b = () => {
|
|
73
|
+
o.value && (o.value = !1, n.onBlur?.(new FocusEvent("blur")));
|
|
74
|
+
};
|
|
75
|
+
re({ escHandler: b });
|
|
76
|
+
const V = (a) => {
|
|
77
|
+
const t = a.target, l = c.value?.$el, m = v.value;
|
|
78
|
+
o.value && l && m && !l.contains(t) && !m.contains(t) && b();
|
|
79
|
+
}, P = () => {
|
|
80
|
+
S.value && (s.value?.apply(), b(), n.onChange?.());
|
|
81
|
+
}, I = (a) => {
|
|
82
|
+
const t = B(a, n.isRange), l = c.value?.inputRef;
|
|
83
|
+
return l && (a && !t ? l.setCustomValidity("Invalid date format. Use YYYY/MM/DD") : l.setCustomValidity("")), t;
|
|
84
|
+
}, z = (a) => {
|
|
85
|
+
a && Y(a, d, n.isRange, () => {
|
|
86
|
+
I(d.value);
|
|
87
|
+
});
|
|
88
|
+
}, F = (a) => {
|
|
89
|
+
if (!a) return;
|
|
90
|
+
const l = a.target.value, m = I(l);
|
|
91
|
+
if (!l.trim()) {
|
|
92
|
+
i.value = { start: null, end: null }, n.onChange?.();
|
|
93
|
+
return;
|
|
94
|
+
}
|
|
95
|
+
if (m) {
|
|
96
|
+
if (n.isRange) {
|
|
97
|
+
const [w, $] = l.split("-").map((O) => O.trim());
|
|
98
|
+
i.value = { start: p(w), end: p($) };
|
|
99
|
+
} else
|
|
100
|
+
i.value = { start: p(l.trim()), end: null };
|
|
101
|
+
n.onChange?.();
|
|
102
|
+
}
|
|
103
|
+
};
|
|
104
|
+
return A(() => {
|
|
105
|
+
L && document.addEventListener("click", V);
|
|
106
|
+
}), G(() => {
|
|
107
|
+
L && document.removeEventListener("click", V);
|
|
108
|
+
}), (a, t) => (k(), R("div", {
|
|
109
|
+
class: g([f, e.fluid ? `${f}--fluid` : ""])
|
|
110
|
+
}, [
|
|
111
|
+
y(u(te), {
|
|
112
|
+
ref_key: "inputRef",
|
|
113
|
+
ref: c,
|
|
114
|
+
modelValue: u(d),
|
|
115
|
+
"onUpdate:modelValue": t[0] || (t[0] = (l) => j(d) ? d.value = l : null),
|
|
116
|
+
"aria-label": e.ariaLabel,
|
|
117
|
+
"border-radius": e.borderRadius,
|
|
118
|
+
busy: e.busy,
|
|
119
|
+
color: e.color,
|
|
120
|
+
disabled: e.disabled,
|
|
121
|
+
fluid: e.fluid,
|
|
122
|
+
form: e.form,
|
|
123
|
+
id: e.id,
|
|
124
|
+
label: e.label,
|
|
125
|
+
messages: e.messages,
|
|
126
|
+
"message-type": e.messageType,
|
|
127
|
+
name: e.name,
|
|
128
|
+
orientation: e.orientation,
|
|
129
|
+
placeholder: e.placeholder || (e.isRange ? "YYYY/MM/DD - YYYY/MM/DD" : "YYYY/MM/DD"),
|
|
130
|
+
required: e.required,
|
|
131
|
+
rounded: e.rounded,
|
|
132
|
+
size: e.size,
|
|
133
|
+
suffix: u(ne).Calendar,
|
|
134
|
+
"suffix-aria-label": e.ariaLabel || "Open calendar",
|
|
135
|
+
"test-id": e.testId,
|
|
136
|
+
variant: e.variant,
|
|
137
|
+
onInput: z,
|
|
138
|
+
onChange: F,
|
|
139
|
+
onSuffixClick: x
|
|
140
|
+
}, null, 8, ["modelValue", "aria-label", "border-radius", "busy", "color", "disabled", "fluid", "form", "id", "label", "messages", "message-type", "name", "orientation", "placeholder", "required", "rounded", "size", "suffix", "suffix-aria-label", "test-id", "variant"]),
|
|
141
|
+
u(o) ? (k(), R("div", {
|
|
142
|
+
key: 0,
|
|
143
|
+
ref_key: "popoverRef",
|
|
144
|
+
ref: v,
|
|
145
|
+
class: g(`${f}__popover`),
|
|
146
|
+
style: J({ ...u(M), zIndex: 100 })
|
|
147
|
+
}, [
|
|
148
|
+
y(u(ae), {
|
|
149
|
+
"border-radius": e.borderRadius,
|
|
150
|
+
variant: u(D).Ghost,
|
|
151
|
+
padded: !1,
|
|
152
|
+
rounded: e.rounded,
|
|
153
|
+
elevated: ""
|
|
154
|
+
}, {
|
|
155
|
+
default: K(() => [
|
|
156
|
+
Q("div", {
|
|
157
|
+
class: g(`${f}__calendar-container`)
|
|
158
|
+
}, [
|
|
159
|
+
y(u(le), {
|
|
160
|
+
ref_key: "calendarRef",
|
|
161
|
+
ref: s,
|
|
162
|
+
modelValue: i.value,
|
|
163
|
+
"onUpdate:modelValue": t[1] || (t[1] = (l) => i.value = l),
|
|
164
|
+
disabled: e.disabled,
|
|
165
|
+
busy: e.busy,
|
|
166
|
+
"is-range": e.isRange,
|
|
167
|
+
onDateSelect: P,
|
|
168
|
+
fluid: ""
|
|
169
|
+
}, null, 8, ["modelValue", "disabled", "busy", "is-range"])
|
|
170
|
+
], 2)
|
|
171
|
+
]),
|
|
172
|
+
_: 1
|
|
173
|
+
}, 8, ["border-radius", "variant", "rounded"])
|
|
174
|
+
], 6)) : H("", !0)
|
|
175
|
+
], 2));
|
|
176
|
+
}
|
|
177
|
+
}), ke = /* @__PURE__ */ fe(ce, [["__scopeId", "data-v-5ad92cdc"]]);
|
|
178
|
+
export {
|
|
179
|
+
ke as CLInputDatePicker,
|
|
180
|
+
ke as default
|
|
181
|
+
};
|
|
@@ -0,0 +1,265 @@
|
|
|
1
|
+
import { CLBorderRadius, CLColors, CLColorVariants, CLGenericFocusFunction, CLGenericFunction, CLIconNames, CLOrientation, CLPlacement, CLSizes } from '../../../index.ts';
|
|
2
|
+
export interface CLInputDatePickerProps {
|
|
3
|
+
/** Sets the aria-label on the trigger button. It should be used when there is no label present. */
|
|
4
|
+
ariaLabel?: string;
|
|
5
|
+
/** The border radius size. The property can be one of `CLBorderRadius`, e.g. `CLBorderRadius.Medium`. */
|
|
6
|
+
borderRadius?: CLBorderRadius;
|
|
7
|
+
/** Sets the color of the trigger button, selected dates, and apply button. The property can be one of `CLColors`, e.g. `CLColors.Primary`. */
|
|
8
|
+
color?: CLColors;
|
|
9
|
+
/** Sets the date picker size. The property can be one of `CLSizes`, e.g. `CLSizes.Medium`. */
|
|
10
|
+
size?: CLSizes;
|
|
11
|
+
/** Sets the color variant. The property can be one of `CLColorVariants.Outline | CLColorVariants.Ghost`, e.g `CLColorVariants.Outline`. */
|
|
12
|
+
variant?: CLColorVariants.Outline | CLColorVariants.Ghost;
|
|
13
|
+
/** A `boolean` value which dictates the busy state of the date picker. */
|
|
14
|
+
busy?: boolean;
|
|
15
|
+
/** Set the disabled state. */
|
|
16
|
+
disabled?: boolean;
|
|
17
|
+
/** When set to true, sets the width of the date picker to 100% of it's parent. */
|
|
18
|
+
fluid?: boolean;
|
|
19
|
+
/** The form whom the date picker belongs to. Useful for when a date picker is not within a `form` element. */
|
|
20
|
+
form?: string;
|
|
21
|
+
/** A unique identifier, this is required. */
|
|
22
|
+
id: string;
|
|
23
|
+
/** Whether to allow range selection or single date selection. */
|
|
24
|
+
isRange?: boolean;
|
|
25
|
+
/** The label text to be displayed which is associated to the date picker. */
|
|
26
|
+
label?: string;
|
|
27
|
+
/** An array of messages to be displayed. */
|
|
28
|
+
messages?: string[];
|
|
29
|
+
/** The message type. The property can be one of `CLColors`, e.g. `CLColors.Danger`. */
|
|
30
|
+
messageType?: CLColors;
|
|
31
|
+
/** A string representing name of the date picker. The name is submitted along with the date picker value when the form it belongs to is submitted. */
|
|
32
|
+
name: string;
|
|
33
|
+
/** A callback function which handles when the date picker loses focus. */
|
|
34
|
+
onBlur?: CLGenericFocusFunction;
|
|
35
|
+
/** A callback function which handles when the date picker value changes. */
|
|
36
|
+
onChange?: CLGenericFunction;
|
|
37
|
+
/** A callback function which handles when the date picker gains focus. */
|
|
38
|
+
onFocus?: CLGenericFocusFunction;
|
|
39
|
+
/** Sets the label position to be above or to the left of the form element. The property can be one of `CLOrientation` */
|
|
40
|
+
orientation?: CLOrientation;
|
|
41
|
+
/** Sets the placement of the dropdown content. The property can be one of `CLPlacement`, e.g. `CLPlacement.BottomStart`. */
|
|
42
|
+
placement?: CLPlacement;
|
|
43
|
+
/** The default text shown when there is no value. Useful for providing a hint of what is expected. */
|
|
44
|
+
placeholder?: string;
|
|
45
|
+
/** Set the required state. */
|
|
46
|
+
required?: boolean;
|
|
47
|
+
/** When set to `false` it will not render with rounded corners. */
|
|
48
|
+
rounded?: boolean;
|
|
49
|
+
/** Sets a custom ID used for unit tests. */
|
|
50
|
+
testId?: string;
|
|
51
|
+
}
|
|
52
|
+
declare const _default: import('vue').DefineComponent<{
|
|
53
|
+
modelValue?: {
|
|
54
|
+
end: string | null;
|
|
55
|
+
start: string | null;
|
|
56
|
+
} | null;
|
|
57
|
+
} & CLInputDatePickerProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
58
|
+
"update:modelValue": (value: {
|
|
59
|
+
end: string | null;
|
|
60
|
+
start: string | null;
|
|
61
|
+
} | null) => any;
|
|
62
|
+
}, string, import('vue').PublicProps, Readonly<{
|
|
63
|
+
modelValue?: {
|
|
64
|
+
end: string | null;
|
|
65
|
+
start: string | null;
|
|
66
|
+
} | null;
|
|
67
|
+
} & CLInputDatePickerProps> & Readonly<{
|
|
68
|
+
"onUpdate:modelValue"?: ((value: {
|
|
69
|
+
end: string | null;
|
|
70
|
+
start: string | null;
|
|
71
|
+
} | null) => any) | undefined;
|
|
72
|
+
}>, {
|
|
73
|
+
color: CLColors;
|
|
74
|
+
variant: CLColorVariants.Outline | CLColorVariants.Ghost;
|
|
75
|
+
fluid: boolean;
|
|
76
|
+
rounded: boolean;
|
|
77
|
+
testId: string;
|
|
78
|
+
form: string;
|
|
79
|
+
label: string;
|
|
80
|
+
onFocus: CLGenericFocusFunction;
|
|
81
|
+
onBlur: CLGenericFocusFunction;
|
|
82
|
+
onChange: CLGenericFunction;
|
|
83
|
+
size: CLSizes;
|
|
84
|
+
required: boolean;
|
|
85
|
+
ariaLabel: string;
|
|
86
|
+
borderRadius: CLBorderRadius;
|
|
87
|
+
busy: boolean;
|
|
88
|
+
disabled: boolean;
|
|
89
|
+
placeholder: string;
|
|
90
|
+
isRange: boolean;
|
|
91
|
+
orientation: CLOrientation;
|
|
92
|
+
messages: string[];
|
|
93
|
+
messageType: CLColors;
|
|
94
|
+
placement: CLPlacement;
|
|
95
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
96
|
+
inputRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
97
|
+
modelValue?: string | number;
|
|
98
|
+
} & import('../CLInput').CLInputProps> & Readonly<{
|
|
99
|
+
onReset?: ((...args: any[]) => any) | undefined;
|
|
100
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
101
|
+
}>, {
|
|
102
|
+
inputRef: Readonly<globalThis.ShallowRef<HTMLInputElement | null>>;
|
|
103
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
104
|
+
reset: (...args: any[]) => void;
|
|
105
|
+
"update:modelValue": (value: string | number) => void;
|
|
106
|
+
}, import('vue').PublicProps, {
|
|
107
|
+
color: CLColors;
|
|
108
|
+
variant: CLColorVariants.Outline | CLColorVariants.Ghost;
|
|
109
|
+
fluid: boolean;
|
|
110
|
+
rounded: boolean;
|
|
111
|
+
testId: string;
|
|
112
|
+
type: import('../../../index.ts').CLInputTypes;
|
|
113
|
+
form: string;
|
|
114
|
+
label: string;
|
|
115
|
+
pattern: string;
|
|
116
|
+
onFocus: CLGenericFocusFunction;
|
|
117
|
+
onBlur: CLGenericFocusFunction;
|
|
118
|
+
onChange: CLGenericFunction;
|
|
119
|
+
onInput: import('../../../index.ts').CLGenericInputFunction;
|
|
120
|
+
size: CLSizes;
|
|
121
|
+
required: boolean;
|
|
122
|
+
prefix: string | CLIconNames;
|
|
123
|
+
ariaLabel: string;
|
|
124
|
+
borderRadius: CLBorderRadius;
|
|
125
|
+
busy: boolean;
|
|
126
|
+
disabled: boolean;
|
|
127
|
+
pill: string;
|
|
128
|
+
placeholder: string;
|
|
129
|
+
orientation: CLOrientation;
|
|
130
|
+
messages: string[];
|
|
131
|
+
messageType: CLColors;
|
|
132
|
+
maxLength: number;
|
|
133
|
+
grouped: boolean;
|
|
134
|
+
suffix: string | CLIconNames;
|
|
135
|
+
autoComplete: boolean;
|
|
136
|
+
charCounter: boolean;
|
|
137
|
+
minLength: number;
|
|
138
|
+
onPrefixClick: (event?: MouseEvent) => void;
|
|
139
|
+
onSuffixClick: (event?: MouseEvent) => void;
|
|
140
|
+
prefixAriaLabel: string;
|
|
141
|
+
readonly: boolean;
|
|
142
|
+
spellCheck: boolean;
|
|
143
|
+
suffixAriaLabel: string;
|
|
144
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
145
|
+
'input-elem': HTMLInputElement;
|
|
146
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
147
|
+
P: {};
|
|
148
|
+
B: {};
|
|
149
|
+
D: {};
|
|
150
|
+
C: {};
|
|
151
|
+
M: {};
|
|
152
|
+
Defaults: {};
|
|
153
|
+
}, Readonly<{
|
|
154
|
+
modelValue?: string | number;
|
|
155
|
+
} & import('../CLInput').CLInputProps> & Readonly<{
|
|
156
|
+
onReset?: ((...args: any[]) => any) | undefined;
|
|
157
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
158
|
+
}>, {
|
|
159
|
+
inputRef: Readonly<globalThis.ShallowRef<HTMLInputElement | null>>;
|
|
160
|
+
}, {}, {}, {}, {
|
|
161
|
+
color: CLColors;
|
|
162
|
+
variant: CLColorVariants.Outline | CLColorVariants.Ghost;
|
|
163
|
+
fluid: boolean;
|
|
164
|
+
rounded: boolean;
|
|
165
|
+
testId: string;
|
|
166
|
+
type: import('../../../index.ts').CLInputTypes;
|
|
167
|
+
form: string;
|
|
168
|
+
label: string;
|
|
169
|
+
pattern: string;
|
|
170
|
+
onFocus: CLGenericFocusFunction;
|
|
171
|
+
onBlur: CLGenericFocusFunction;
|
|
172
|
+
onChange: CLGenericFunction;
|
|
173
|
+
onInput: import('../../../index.ts').CLGenericInputFunction;
|
|
174
|
+
size: CLSizes;
|
|
175
|
+
required: boolean;
|
|
176
|
+
prefix: string | CLIconNames;
|
|
177
|
+
ariaLabel: string;
|
|
178
|
+
borderRadius: CLBorderRadius;
|
|
179
|
+
busy: boolean;
|
|
180
|
+
disabled: boolean;
|
|
181
|
+
pill: string;
|
|
182
|
+
placeholder: string;
|
|
183
|
+
orientation: CLOrientation;
|
|
184
|
+
messages: string[];
|
|
185
|
+
messageType: CLColors;
|
|
186
|
+
maxLength: number;
|
|
187
|
+
grouped: boolean;
|
|
188
|
+
suffix: string | CLIconNames;
|
|
189
|
+
autoComplete: boolean;
|
|
190
|
+
charCounter: boolean;
|
|
191
|
+
minLength: number;
|
|
192
|
+
onPrefixClick: (event?: MouseEvent) => void;
|
|
193
|
+
onSuffixClick: (event?: MouseEvent) => void;
|
|
194
|
+
prefixAriaLabel: string;
|
|
195
|
+
readonly: boolean;
|
|
196
|
+
spellCheck: boolean;
|
|
197
|
+
suffixAriaLabel: string;
|
|
198
|
+
}> | null;
|
|
199
|
+
popoverRef: HTMLDivElement;
|
|
200
|
+
calendarRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
201
|
+
modelValue?: {
|
|
202
|
+
end: import('../../../composables/useDatePicker').ISODate | null;
|
|
203
|
+
start: import('../../../composables/useDatePicker').ISODate | null;
|
|
204
|
+
} | null;
|
|
205
|
+
} & import('../CLCalendar/CLCalendar.vue').CLCalendarProps> & Readonly<{
|
|
206
|
+
"onUpdate:modelValue"?: ((value: {
|
|
207
|
+
end: import('../../../composables/useDatePicker').ISODate | null;
|
|
208
|
+
start: import('../../../composables/useDatePicker').ISODate | null;
|
|
209
|
+
} | null) => any) | undefined;
|
|
210
|
+
"onDate-select"?: ((date: string) => any) | undefined;
|
|
211
|
+
}>, {
|
|
212
|
+
apply: () => void;
|
|
213
|
+
cancel: () => void;
|
|
214
|
+
draftEnd: globalThis.Ref<string | null, string | null>;
|
|
215
|
+
draftStart: globalThis.Ref<string | null, string | null>;
|
|
216
|
+
initializeDraft: () => void;
|
|
217
|
+
reset: () => void;
|
|
218
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
219
|
+
"update:modelValue": (value: {
|
|
220
|
+
end: import('../../../composables/useDatePicker').ISODate | null;
|
|
221
|
+
start: import('../../../composables/useDatePicker').ISODate | null;
|
|
222
|
+
} | null) => any;
|
|
223
|
+
"date-select": (date: string) => any;
|
|
224
|
+
}, import('vue').PublicProps, {
|
|
225
|
+
color: CLColors;
|
|
226
|
+
fluid: boolean;
|
|
227
|
+
testId: string;
|
|
228
|
+
busy: boolean;
|
|
229
|
+
disabled: boolean;
|
|
230
|
+
isRange: boolean;
|
|
231
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
232
|
+
P: {};
|
|
233
|
+
B: {};
|
|
234
|
+
D: {};
|
|
235
|
+
C: {};
|
|
236
|
+
M: {};
|
|
237
|
+
Defaults: {};
|
|
238
|
+
}, Readonly<{
|
|
239
|
+
modelValue?: {
|
|
240
|
+
end: import('../../../composables/useDatePicker').ISODate | null;
|
|
241
|
+
start: import('../../../composables/useDatePicker').ISODate | null;
|
|
242
|
+
} | null;
|
|
243
|
+
} & import('../CLCalendar/CLCalendar.vue').CLCalendarProps> & Readonly<{
|
|
244
|
+
"onUpdate:modelValue"?: ((value: {
|
|
245
|
+
end: import('../../../composables/useDatePicker').ISODate | null;
|
|
246
|
+
start: import('../../../composables/useDatePicker').ISODate | null;
|
|
247
|
+
} | null) => any) | undefined;
|
|
248
|
+
"onDate-select"?: ((date: string) => any) | undefined;
|
|
249
|
+
}>, {
|
|
250
|
+
apply: () => void;
|
|
251
|
+
cancel: () => void;
|
|
252
|
+
draftEnd: globalThis.Ref<string | null, string | null>;
|
|
253
|
+
draftStart: globalThis.Ref<string | null, string | null>;
|
|
254
|
+
initializeDraft: () => void;
|
|
255
|
+
reset: () => void;
|
|
256
|
+
}, {}, {}, {}, {
|
|
257
|
+
color: CLColors;
|
|
258
|
+
fluid: boolean;
|
|
259
|
+
testId: string;
|
|
260
|
+
busy: boolean;
|
|
261
|
+
disabled: boolean;
|
|
262
|
+
isRange: boolean;
|
|
263
|
+
}> | null;
|
|
264
|
+
}, HTMLDivElement>;
|
|
265
|
+
export default _default;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export { CLCheckbox } from './CLCheckbox';
|
|
2
|
+
export { CLCalendar } from './CLCalendar';
|
|
3
|
+
export { CLInputDatePicker } from './CLInputDatePicker';
|
|
2
4
|
export { CLInput } from './CLInput';
|
|
3
5
|
export { CLRadioButton } from './CLRadioButton';
|
|
4
6
|
export { CLSelect } from './CLSelect';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.clll-prevent-scroll{overflow:initial}.clll-modal{position:fixed;inset:0;height:100dvh}.clll-modal .clll-modal__window{position:relative;overflow-x:hidden;overflow-y:auto;height:100%;padding:0 var(--clll-px-md)}.clll-modal .clll-modal__window .clll-modal__close-button{position:absolute;top:var(--clll-unit-2);right:var(--clll-unit-2);z-index:1}.clll-modal .clll-modal__window .clll-modal__content{border-radius:0;display:flex;flex-direction:column;height:auto;position:relative;margin:var(--clll-unit-6) auto;background:var(--clll-modal-content-bg, white);box-shadow:0 0 var(--clll-unit-3) var(--clll-unit-0_5) #0000001f,0 0 var(--clll-unit-1) var(--clll-unit-0_5) #00000005}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-full,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-full .clll-{border-radius:var(--clll-rounded-full)}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-lg,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-lg .clll-{border-radius:var(--clll-rounded-lg)}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-md,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-md .clll-{border-radius:var(--clll-rounded-md)}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-sm,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-sm .clll-{border-radius:var(--clll-rounded-sm)}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-xs,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-xs .clll-{border-radius:var(--clll-rounded-xs)}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-xl,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-xl .clll-{border-radius:var(--clll-rounded-xl)}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-2xl,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-2xl .clll-{border-radius:var(--clll-rounded-2xl)}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-3xl,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-3xl .clll-{border-radius:var(--clll-rounded-3xl)}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-none,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-none .clll-{border-radius:0}.clll-modal .clll-modal__window .clll-modal__content:not([class*=clll-modal__content--rounded-]){border-radius:var(--clll-modal-theme-radius, 0)}@media(min-width:640px){.clll-modal .clll-modal__window .clll-modal__content{margin:var(--clll-unit-12) auto;max-width:var(--clll-modal-max-width)}}.clll-modal .clll-modal__window .clll-modal__content .clll-modal__content__header{padding:var(--clll-unit-6)}.clll-modal .clll-modal__window .clll-modal__content .clll-modal__content__header .clll-modal__content__title{align-items:start;display:flex;width:100%}.clll-modal .clll-modal__window .clll-modal__content .clll-modal__content__header .clll-modal__content__title .clll-modal__content__header__container{flex:1 1 0%}.clll-modal .clll-modal__window .clll-modal__content .clll-modal__content__scroller{display:flex;flex:1;flex-direction:column;overflow-y:auto}@media(min-width:640px){.clll-modal .clll-modal__window .clll-modal__content .clll-modal__content__scroller{overflow-y:hidden}}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-title .clll-modal__content__header .clll-modal__content__header__title,.clll-modal .clll-modal__window .clll-modal__content .clll-modal__content__body{flex:1}.clll-modal .clll-modal__window .clll-modal__content .clll-modal__content__body,.clll-modal .clll-modal__window .clll-modal__content .clll-modal__content__footer{padding:var(--clll-unit-6)}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-title .clll-modal__content__header .clll-modal__content__header__title{flex:1}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-no-title .clll-modal__content__header .clll-modal__content__title{justify-content:flex-end;padding-bottom:0}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-no-body .clll-modal__content__body,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-no-header .clll-modal__content__header,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-no-footer .clll-modal__content__footer{display:none;padding:0}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-close-button .clll-modal__content__body,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-close-button .clll-modal__content__footer{padding:var(--clll-unit-6)}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-no-title:not(.clll-modal__content--has-header) .clll-modal__content__body,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-no-title:not(.clll-modal__content--has-header) .clll-modal__content__footer,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-no-header .clll-modal__content__body,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-no-header .clll-modal__content__footer{padding:var(--clll-unit-6) var(--clll-unit-12) var(--clll-unit-6) var(--clll-unit-6)}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-no-title:not(.clll-modal__content--has-header).clll-modal__content--has-footer .clll-modal__content__body,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-no-header.clll-modal__content--has-footer .clll-modal__content__body{padding-bottom:0}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-title .clll-modal__content__body,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-header .clll-modal__content__body{padding-top:0}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-footer .clll-modal__content__body{padding-bottom:0}.clll-modal .clll-modal__window.clll-modal__window--fullscreen{padding:0}.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content{height:100%;margin:0;max-width:100%}@media(min-width:640px){.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content{border-radius:0}}.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content .clll-modal__close-button{top:var(--clll-unit-2);right:var(--clll-unit-2)}.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-title .clll-modal__close-button,.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-header .clll-modal__close-button{right:var(--clll-unit-6)}@media(min-width:1024px){.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content .clll-modal__content__header{padding:var(--clll-unit-6)}}.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content .clll-modal__content__body{flex:1}@media(min-width:640px){.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content .clll-modal__content__body{overflow-y:auto;max-height:100%}}.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content .clll-modal__content__body,.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content .clll-modal__content__footer{padding:var(--clll-unit-6)}.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-title:not(.clll-modal__content--has-header) .clll-modal__content__body,.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-title:not(.clll-modal__content--has-header) .clll-modal__content__footer,.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-header .clll-modal__content__body,.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-header .clll-modal__content__footer{padding:var(--clll-unit-6) var(--clll-unit-14) var(--clll-unit-6) var(--clll-unit-6)}.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-title:not(.clll-modal__content--has-header).clll-modal__content--has-footer .clll-modal__content__body,.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-header.clll-modal__content--has-footer .clll-modal__content__body{padding-bottom:0}.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-title .clll-modal__content__body,.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-header .clll-modal__content__body{padding-top:0}.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-footer .clll-modal__content__body{padding-bottom:0}.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-close-button .clll-modal__content__body,.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-close-button .clll-modal__content__footer{padding:var(--clll-unit-6)}@media(min-width:1024px){.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-close-button .clll-modal__content__body,.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-close-button .clll-modal__content__footer{padding:var(--clll-unit-8)}}.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-close-button.clll-modal__content--has-title .clll-modal__content__body,.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-close-button.clll-modal__content--has-header .clll-modal__content__body{padding-top:0}.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-close-button.clll-modal__content--has-footer .clll-modal__content__body{padding-bottom:0}.clll-modal .clll-modal__overlay{position:fixed;inset:0;opacity:.4;background-color:var(--clll-modal-overlay-bg, transparent)}
|
|
1
|
+
.clll-prevent-scroll{overflow:initial}.clll-modal{position:fixed;inset:0;height:100dvh}.clll-modal .clll-modal__window{position:relative;overflow-x:hidden;overflow-y:auto;height:100%;padding:0 var(--clll-px-md)}.clll-modal .clll-modal__window .clll-modal__close-button{position:absolute;top:var(--clll-unit-2);right:var(--clll-unit-2);z-index:1}.clll-modal .clll-modal__window .clll-modal__content{border-radius:0;display:flex;flex-direction:column;height:auto;position:relative;margin:var(--clll-unit-6) auto;background:var(--clll-modal-content-bg, white);box-shadow:0 0 var(--clll-unit-3) var(--clll-unit-0_5) #0000001f,0 0 var(--clll-unit-1) var(--clll-unit-0_5) #00000005}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-full,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-full .clll-{border-radius:var(--clll-rounded-full)}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-lg,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-lg .clll-{border-radius:var(--clll-rounded-lg)}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-md,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-md .clll-{border-radius:var(--clll-rounded-md)}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-sm,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-sm .clll-{border-radius:var(--clll-rounded-sm)}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-xs,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-xs .clll-{border-radius:var(--clll-rounded-xs)}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-xl,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-xl .clll-{border-radius:var(--clll-rounded-xl)}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-2xl,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-2xl .clll-{border-radius:var(--clll-rounded-2xl)}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-3xl,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-3xl .clll-{border-radius:var(--clll-rounded-3xl)}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-none,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--rounded-none .clll-{border-radius:0}.clll-modal .clll-modal__window .clll-modal__content:not([class*=clll-modal__content--rounded-]){border-radius:var(--clll-modal-theme-radius, 0)}@media(min-width:480px){.clll-modal .clll-modal__window .clll-modal__content{margin:var(--clll-unit-12) auto;max-width:var(--clll-modal-max-width)}}.clll-modal .clll-modal__window .clll-modal__content .clll-modal__content__header{padding:var(--clll-unit-6)}.clll-modal .clll-modal__window .clll-modal__content .clll-modal__content__header .clll-modal__content__title{align-items:start;display:flex;width:100%}.clll-modal .clll-modal__window .clll-modal__content .clll-modal__content__header .clll-modal__content__title .clll-modal__content__header__container{flex:1 1 0%}.clll-modal .clll-modal__window .clll-modal__content .clll-modal__content__scroller{display:flex;flex:1;flex-direction:column;overflow-y:auto}@media(min-width:480px){.clll-modal .clll-modal__window .clll-modal__content .clll-modal__content__scroller{overflow-y:hidden}}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-title .clll-modal__content__header .clll-modal__content__header__title,.clll-modal .clll-modal__window .clll-modal__content .clll-modal__content__body{flex:1}.clll-modal .clll-modal__window .clll-modal__content .clll-modal__content__body,.clll-modal .clll-modal__window .clll-modal__content .clll-modal__content__footer{padding:var(--clll-unit-6)}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-title .clll-modal__content__header .clll-modal__content__header__title{flex:1}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-no-title .clll-modal__content__header .clll-modal__content__title{justify-content:flex-end;padding-bottom:0}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-no-body .clll-modal__content__body,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-no-header .clll-modal__content__header,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-no-footer .clll-modal__content__footer{display:none;padding:0}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-close-button .clll-modal__content__body,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-close-button .clll-modal__content__footer{padding:var(--clll-unit-6)}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-no-title:not(.clll-modal__content--has-header) .clll-modal__content__body,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-no-title:not(.clll-modal__content--has-header) .clll-modal__content__footer,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-no-header .clll-modal__content__body,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-no-header .clll-modal__content__footer{padding:var(--clll-unit-6) var(--clll-unit-12) var(--clll-unit-6) var(--clll-unit-6)}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-no-title:not(.clll-modal__content--has-header).clll-modal__content--has-footer .clll-modal__content__body,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-no-header.clll-modal__content--has-footer .clll-modal__content__body{padding-bottom:0}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-title .clll-modal__content__body,.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-header .clll-modal__content__body{padding-top:0}.clll-modal .clll-modal__window .clll-modal__content.clll-modal__content--has-footer .clll-modal__content__body{padding-bottom:0}.clll-modal .clll-modal__window.clll-modal__window--fullscreen{padding:0}.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content{height:100%;margin:0;max-width:100%}@media(min-width:480px){.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content{border-radius:0}}.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content .clll-modal__close-button{top:var(--clll-unit-2);right:var(--clll-unit-2)}.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-title .clll-modal__close-button,.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-header .clll-modal__close-button{right:var(--clll-unit-6)}@media(min-width:1024px){.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content .clll-modal__content__header{padding:var(--clll-unit-6)}}.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content .clll-modal__content__body{flex:1}@media(min-width:480px){.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content .clll-modal__content__body{overflow-y:auto;max-height:100%}}.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content .clll-modal__content__body,.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content .clll-modal__content__footer{padding:var(--clll-unit-6)}.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-title:not(.clll-modal__content--has-header) .clll-modal__content__body,.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-title:not(.clll-modal__content--has-header) .clll-modal__content__footer,.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-header .clll-modal__content__body,.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-header .clll-modal__content__footer{padding:var(--clll-unit-6) var(--clll-unit-14) var(--clll-unit-6) var(--clll-unit-6)}.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-title:not(.clll-modal__content--has-header).clll-modal__content--has-footer .clll-modal__content__body,.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-header.clll-modal__content--has-footer .clll-modal__content__body{padding-bottom:0}.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-title .clll-modal__content__body,.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-header .clll-modal__content__body{padding-top:0}.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-footer .clll-modal__content__body{padding-bottom:0}.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-close-button .clll-modal__content__body,.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-close-button .clll-modal__content__footer{padding:var(--clll-unit-6)}@media(min-width:1024px){.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-close-button .clll-modal__content__body,.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-close-button .clll-modal__content__footer{padding:var(--clll-unit-8)}}.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-close-button.clll-modal__content--has-title .clll-modal__content__body,.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-close-button.clll-modal__content--has-header .clll-modal__content__body{padding-top:0}.clll-modal .clll-modal__window.clll-modal__window--fullscreen .clll-modal__content.clll-modal__content--has-no-close-button.clll-modal__content--has-footer .clll-modal__content__body{padding-bottom:0}.clll-modal .clll-modal__overlay{position:fixed;inset:0;opacity:.4;background-color:var(--clll-modal-overlay-bg, transparent)}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.clll-date-picker-modal[data-v-
|
|
1
|
+
.clll-date-picker-modal[data-v-14031572]{position:relative;display:inline-flex;flex-direction:column;flex-wrap:wrap;box-sizing:border-box}.clll-date-picker-modal--fluid[data-v-14031572]{width:100%}.clll-date-picker-modal__container[data-v-14031572]{display:inline-flex;flex-direction:column;flex-wrap:wrap}.clll-date-picker-modal__footer-actions[data-v-14031572]{display:flex;justify-content:space-between;align-items:center;width:100%}.clll-date-picker-modal__footer-right[data-v-14031572]{display:flex;gap:var(--clll-unit-2)}
|