fluency-v8-components 1.6.7 → 1.6.9
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/fluency-v8-components.es.js +1 -1
- package/dist/fluency-v8-components.umd.js +2 -2
- package/dist/{index-C1Nl9fvu.mjs → index-BXQXxSSY.mjs} +7 -4
- package/dist/{index.es-CDoe-SLx.mjs → index.es-BYHYSIfp.mjs} +1 -1
- package/package.json +1 -1
- package/src/assets/main.css +2 -2
- package/src/components/common/DatePicker.vue +1 -1
- package/src/components/notifications/Notify.vue +1 -1
- package/src/components/notifications/NotifyList.vue +1 -1
|
@@ -15670,7 +15670,7 @@ const hX = { class: "flex" }, pX = { class: "flex-shrink-0" }, gX = { class: "ml
|
|
|
15670
15670
|
const p = window.document.querySelectorAll("#headlessui-portal-root");
|
|
15671
15671
|
o.value = p && p.length > 0 && p[0].childElementCount > 1, s.value = setTimeout(() => {
|
|
15672
15672
|
A();
|
|
15673
|
-
},
|
|
15673
|
+
}, 1e4);
|
|
15674
15674
|
}
|
|
15675
15675
|
function A() {
|
|
15676
15676
|
n.value = !1;
|
|
@@ -15824,7 +15824,7 @@ const hX = { class: "flex" }, pX = { class: "flex-shrink-0" }, gX = { class: "ml
|
|
|
15824
15824
|
const p = window.document.querySelectorAll("#headlessui-portal-root");
|
|
15825
15825
|
o.value = p && p.length > 0 && p[0].childElementCount > 1, s.value = setTimeout(() => {
|
|
15826
15826
|
A();
|
|
15827
|
-
},
|
|
15827
|
+
}, 1e4);
|
|
15828
15828
|
}
|
|
15829
15829
|
function A() {
|
|
15830
15830
|
n.value = !1;
|
|
@@ -23597,7 +23597,10 @@ const kre = { class: "flex justify-center" }, jEe = {
|
|
|
23597
23597
|
a[1] || (a[1] = (s) => n("setTime", r.value))
|
|
23598
23598
|
],
|
|
23599
23599
|
"no-input": "",
|
|
23600
|
-
"disable-date": (s) =>
|
|
23600
|
+
"disable-date": (s) => {
|
|
23601
|
+
const o = /* @__PURE__ */ new Date();
|
|
23602
|
+
return s > new Date(Date.UTC(o.getUTCFullYear(), o.getUTCMonth(), o.getUTCDate() + 1) - 1);
|
|
23603
|
+
},
|
|
23601
23604
|
"as-single": "",
|
|
23602
23605
|
"use-range": "",
|
|
23603
23606
|
shortcuts: !1
|
|
@@ -63420,7 +63423,7 @@ function(e) {
|
|
|
63420
63423
|
var A = l.getContext("2d");
|
|
63421
63424
|
A.fillStyle = "#fff", A.fillRect(0, 0, l.width, l.height);
|
|
63422
63425
|
var u = { ignoreMouse: !0, ignoreAnimation: !0, ignoreDimensions: !0 }, d = this;
|
|
63423
|
-
return (Bn.canvg ? Promise.resolve(Bn.canvg) : import("./index.es-
|
|
63426
|
+
return (Bn.canvg ? Promise.resolve(Bn.canvg) : import("./index.es-BYHYSIfp.mjs")).catch(function(f) {
|
|
63424
63427
|
return Promise.reject(new Error("Could not load canvg: " + f));
|
|
63425
63428
|
}).then(function(f) {
|
|
63426
63429
|
return f.default ? f.default : f;
|
package/package.json
CHANGED
package/src/assets/main.css
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
@custom-variant dark (&:where(.dark, .dark *));
|
|
5
5
|
@theme {
|
|
6
6
|
--color-vtd-primary-50: var(--color-sky-50);
|
|
7
|
-
--color-vtd-primary-100: var(--color-sky-
|
|
7
|
+
--color-vtd-primary-100: var(--color-sky-200);
|
|
8
8
|
--color-vtd-primary-200: var(--color-sky-200);
|
|
9
9
|
--color-vtd-primary-300: var(--color-sky-300);
|
|
10
10
|
--color-vtd-primary-400: var(--color-sky-400);
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
--color-vtd-primary-900: var(--color-sky-900);
|
|
16
16
|
|
|
17
17
|
--color-vtd-secondary-50: var(--color-gray-50);
|
|
18
|
-
--color-vtd-secondary-100: var(--color-gray-
|
|
18
|
+
--color-vtd-secondary-100: var(--color-gray-500);
|
|
19
19
|
--color-vtd-secondary-200: var(--color-gray-200);
|
|
20
20
|
--color-vtd-secondary-300: var(--color-gray-300);
|
|
21
21
|
--color-vtd-secondary-400: var(--color-gray-400);
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<vue-tailwind-datepicker
|
|
4
4
|
v-model="dateValue"
|
|
5
5
|
no-input
|
|
6
|
-
:disable-date="(date) => date > new Date()"
|
|
6
|
+
:disable-date="(date) => { const now = new Date(); return date > new Date(Date.UTC(now.getUTCFullYear(), now.getUTCMonth(), now.getUTCDate() + 1) - 1); }"
|
|
7
7
|
as-single
|
|
8
8
|
use-range
|
|
9
9
|
:shortcuts="false"
|