@dynect/base 0.3.0 → 0.4.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/package.json +1 -1
- package/src/runtime/components/base/event-calendar/composables/useResilientErrorHandling.ts +3 -0
- package/src/runtime/components/dynect/SwitchColor.vue +1 -0
- package/src/runtime/components/dynect/SwitchLanguage.vue +1 -0
- package/src/runtime/components/dynect/Telephone.vue +1 -0
- package/src/runtime/components/ui/sidebar/SidebarProvider.vue +1 -0
package/package.json
CHANGED
|
@@ -109,6 +109,7 @@
|
|
|
109
109
|
<script setup lang="ts">
|
|
110
110
|
import { parsePhoneNumberFromString, type CountryCode, type NumberFormat } from 'libphonenumber-js/max';
|
|
111
111
|
import { cva } from 'class-variance-authority';
|
|
112
|
+
import { useState, useId } from 'nuxt/app';
|
|
112
113
|
import { cn, inputSizeClasses } from '@/lib/utils';
|
|
113
114
|
|
|
114
115
|
type InputSize = 'sm' | 'base' | 'lg' | 'xl';
|
|
@@ -3,6 +3,7 @@ import type { HTMLAttributes, Ref } from 'vue';
|
|
|
3
3
|
import { useEventListener, useMediaQuery, useVModel } from '@vueuse/core';
|
|
4
4
|
import { TooltipProvider } from 'reka-ui';
|
|
5
5
|
import { computed, ref } from 'vue';
|
|
6
|
+
import { useCookie } from 'nuxt/app';
|
|
6
7
|
import { cn } from '@/lib/utils';
|
|
7
8
|
import { provideSidebarContext, SIDEBAR_COOKIE_MAX_AGE, SIDEBAR_COOKIE_NAME, SIDEBAR_KEYBOARD_SHORTCUT, SIDEBAR_WIDTH, SIDEBAR_WIDTH_ICON } from './utils';
|
|
8
9
|
|