@capillarytech/blaze-ui 4.33.6 → 4.33.8
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/CapCollapsibleNavbar/index.js +5 -0
- package/dist/CapCollapsibleNavbar/index.js.map +1 -1
- package/dist/CapCondition/index.js +6 -1
- package/dist/CapCondition/index.js.map +1 -1
- package/dist/CapDatePicker/index.js +6 -1
- package/dist/CapDatePicker/index.js.map +1 -1
- package/dist/CapDateTimePicker/index.js +5 -0
- package/dist/CapDateTimePicker/index.js.map +1 -1
- package/dist/CapDateTimeRangePicker/index.js +5 -0
- package/dist/CapDateTimeRangePicker/index.js.map +1 -1
- package/dist/CapEventCalendar/index.js +5 -0
- package/dist/CapEventCalendar/index.js.map +1 -1
- package/dist/CapLanguageProvider/index.js +5 -0
- package/dist/CapLanguageProvider/index.js.map +1 -1
- package/dist/CapNotificationDropdown/index.js +5 -0
- package/dist/CapNotificationDropdown/index.js.map +1 -1
- package/dist/CapTimePicker/index.js +5 -0
- package/dist/CapTimePicker/index.js.map +1 -1
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/dist/utils/dayjs.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -8284,6 +8284,11 @@ _dayjs.default.extend(_utc.default);
|
|
|
8284
8284
|
_dayjs.default.extend(_dayjsTimezoneIanaPlugin.default);
|
|
8285
8285
|
_dayjs.default.extend(_dayjsAbbrTimezone.default);
|
|
8286
8286
|
|
|
8287
|
+
// Verify timezone plugin was properly extended
|
|
8288
|
+
// This helps catch bundling issues early
|
|
8289
|
+
if (false) // removed by dead control flow
|
|
8290
|
+
{}
|
|
8291
|
+
|
|
8287
8292
|
// Core functionality plugins
|
|
8288
8293
|
_dayjs.default.extend(_relativeTime.default);
|
|
8289
8294
|
_dayjs.default.extend(_customParseFormat.default);
|
|
@@ -31534,7 +31539,7 @@ const CapDatePicker = _ref => {
|
|
|
31534
31539
|
// Render timezone footer if showTimezone is true and timezone is provided
|
|
31535
31540
|
const renderTimezoneFooter = () => {
|
|
31536
31541
|
if (!showTimezone || !timezone) return null;
|
|
31537
|
-
const timezoneOffset = _dayjs.default.tz(timezone).format(_dayjs.FORMAT_TOKENS.TIMEZONE_OFFSET);
|
|
31542
|
+
const timezoneOffset = _dayjs.default.tz((0, _dayjs.default)(), timezone).format(_dayjs.FORMAT_TOKENS.TIMEZONE_OFFSET);
|
|
31538
31543
|
return /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
31539
31544
|
className: _styles.default[clsPrefix + "__timezone-footer"],
|
|
31540
31545
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_CapIcon.default, {
|