@nuxt/devtools-ui-kit-nightly 2.5.0-beta.2-29150288.5c8decd → 2.6.0-29186511.e07326b

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.
@@ -10,7 +10,7 @@ const checked = useVModel(props, "modelValue", emit, { passive: true });
10
10
 
11
11
  <template>
12
12
  <label
13
- class="n-checkbox hover:n-checkbox-hover select-none items-center n-disabled:n-disabled"
13
+ class="n-checkbox select-none items-center hover:n-checkbox-hover n-disabled:n-disabled"
14
14
  :checked="checked || null"
15
15
  :disabled="disabled || null"
16
16
  >
@@ -21,7 +21,7 @@ const checked = useVModel(props, "modelValue", emit, { passive: true });
21
21
  :disabled="disabled"
22
22
  @keypress.enter="checked = !checked"
23
23
  >
24
- <span class="n-checkbox-box n-checked:n-checkbox-box-checked peer-active:n-active-base peer-focus-visible:n-focus-base n-transition">
24
+ <span class="n-checkbox-box n-transition n-checked:n-checkbox-box-checked peer-active:n-active-base peer-focus-visible:n-focus-base">
25
25
  <NIcon class="n-checkbox-icon scale-0 transform op0 n-transition n-checked:scale-100 n-checked:op100" />
26
26
  </span>
27
27
  <span :class="checked ? '' : 'op50'" class="n-transition"><slot /></span>
@@ -42,7 +42,7 @@ export default {
42
42
  <Teleport v-if="shown" to="body">
43
43
  <div
44
44
  v-show="show"
45
- class="fixed inset-0 z-100 flex items-center justify-center n-transition n-glass-effect"
45
+ class="fixed inset-0 z-100 flex items-center justify-center n-glass-effect n-transition"
46
46
  role="dialog"
47
47
  aria-modal="true"
48
48
  :class="[
@@ -48,7 +48,7 @@ const transitionType = {
48
48
  :border="`${transition === 'right' ? 'l' : transition === 'bottom' ? 't' : 'b'} base`"
49
49
  flex="~ col gap-1"
50
50
  :class="{ 'right-0': transition === 'right' || transition === 'bottom' }"
51
- absolute bottom-0 z-10 z-20 of-auto text-sm n-glass-effect
51
+ absolute bottom-0 z-10 z-20 of-auto n-glass-effect text-sm
52
52
  :style="{
53
53
  top: transition === 'bottom' ? 'auto' : `${height}px`,
54
54
  left: transition === 'right' && !width ? 'auto' : `${width}px`
@@ -22,7 +22,7 @@ onClickOutside(el, () => {
22
22
  </slot>
23
23
 
24
24
  <div
25
- class="absolute z-10 border n-border-base rounded shadow n-transition n-bg-base"
25
+ class="absolute z-10 border n-border-base rounded n-bg-base shadow n-transition"
26
26
  :class="[enabled ? 'op-100' : 'op0 pointer-events-none -translate-y-1', direction === 'end' ? 'right-0' : 'left-0']"
27
27
  >
28
28
  <slot />
@@ -10,7 +10,7 @@ function update(event) {
10
10
  </script>
11
11
 
12
12
  <template>
13
- <div flex="~ col gap2 wrap" border="b base" flex-1 n-navbar-glass :class="[{ p4: !noPadding }]">
13
+ <div flex="~ col gap2 wrap" border="b base" n-navbar-glass flex-1 :class="[{ p4: !noPadding }]">
14
14
  <div flex="~ gap4 wrap" items-center>
15
15
  <slot name="search">
16
16
  <NTextInput
@@ -32,7 +32,7 @@ devtoolsUiProvideNotificationFn((data) => {
32
32
  <div
33
33
  border="~ base"
34
34
  flex="~ inline gap2"
35
- m-3 inline-block items-center rounded px-4 py-1 transition-all duration-300 bg-base
35
+ m-3 inline-block items-center rounded bg-base px-4 py-1 transition-all duration-300
36
36
  :style="show ? {} : { transform: `translateY(${position.startsWith('top') ? '-' : ''}300%)` }"
37
37
  :class="[show ? 'shadow' : 'shadow-none', classes]"
38
38
  >
@@ -12,7 +12,7 @@ const model = useVModel(props, "modelValue", emit, { passive: true });
12
12
 
13
13
  <template>
14
14
  <label
15
- class="n-radio inline-flex hover:n-radio-hover select-none items-center n-disabled:n-disabled"
15
+ class="n-radio inline-flex select-none items-center hover:n-radio-hover n-disabled:n-disabled"
16
16
  :checked="model === value || null"
17
17
  :disabled="disabled || null"
18
18
  >
@@ -25,8 +25,8 @@ const model = useVModel(props, "modelValue", emit, { passive: true });
25
25
  :value="value"
26
26
  @keypress.enter="model = value"
27
27
  >
28
- <span class="n-radio-box n-checked:n-radio-box-checked peer-active:n-active-base peer-focus-visible:n-focus-base n-transition">
29
- <div class="n-radio-inner n-checked:n-radio-inner-checked n-transition" />
28
+ <span class="n-radio-box n-transition n-checked:n-radio-box-checked peer-active:n-active-base peer-focus-visible:n-focus-base">
29
+ <div class="n-radio-inner n-transition n-checked:n-radio-inner-checked" />
30
30
  </span>
31
31
  <span><slot /></span>
32
32
  </label>
@@ -21,7 +21,7 @@ function onToggle(e) {
21
21
  <!-- @vue-ignore -->
22
22
  <details :open="open" @toggle="onToggle">
23
23
  <summary
24
- class="cursor-pointer select-none hover:bg-active p4"
24
+ class="cursor-pointer select-none p4 hover:bg-active"
25
25
  :class="collapse ? '' : 'pointer-events-none'"
26
26
  >
27
27
  <NIconTitle :icon="icon" :text="text" text-xl transition :class="[open ? 'op100' : 'op60', headerClass]">
@@ -12,7 +12,7 @@ const input = useVModel(props, "modelValue", emit, { passive: true });
12
12
 
13
13
  <template>
14
14
  <div
15
- class="n-select flex flex items-center border rounded px-2 py-1 focus-within:n-focus-base focus-within:border-context n-bg-base"
15
+ class="n-select flex flex items-center border rounded n-bg-base px-2 py-1 focus-within:border-context focus-within:n-focus-base"
16
16
  :class="disabled ? 'border-gray:10' : 'n-border-base'"
17
17
  >
18
18
  <slot name="icon">
@@ -17,7 +17,7 @@ const input = useVModel(props, "modelValue", emit, { passive: true });
17
17
  v-for="i, idx of options"
18
18
  :key="i.label"
19
19
  :disabled="disabled"
20
- class="relative n-border-base hover:n-bg-active px-0.5em py-0.1em"
20
+ class="relative n-border-base px-0.5em py-0.1em hover:n-bg-active"
21
21
  :class="[
22
22
  idx ? 'border-l n-border-base ml--1px' : '',
23
23
  i.value === input ? 'n-bg-active' : ''
@@ -21,8 +21,8 @@ const checked = defineModel("modelValue", {
21
21
  :disabled="disabled"
22
22
  @keypress.enter="checked = !checked"
23
23
  >
24
- <div class="n-switch-slider n-checked:n-switch-slider-checked peer-active:n-active-base peer-focus-visible:n-focus-base n-transition">
25
- <div class="n-checked:n-switch-thumb-checked n-switch-thumb n-transition" />
24
+ <div class="n-switch-slider n-transition n-checked:n-switch-slider-checked peer-active:n-active-base peer-focus-visible:n-focus-base">
25
+ <div class="n-switch-thumb n-transition n-checked:n-switch-thumb-checked" />
26
26
  </div>
27
27
  <slot />
28
28
  </label>
@@ -15,7 +15,7 @@ const input = useVModel(props, "modelValue", emit, { passive: true });
15
15
  </script>
16
16
 
17
17
  <template>
18
- <div class="n-text-input flex flex items-center border n-border-base rounded py-1 pl-1 pr-2 focus-within:n-focus-base focus-within:border-context n-bg-base">
18
+ <div class="n-text-input flex flex items-center border n-border-base rounded n-bg-base py-1 pl-1 pr-2 focus-within:border-context focus-within:n-focus-base">
19
19
  <slot name="icon">
20
20
  <NIcon v-if="icon" :icon="icon" class="ml-0.3em mr-0.1em text-1.1em op50" />
21
21
  </slot>
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nuxt/devtools-ui-kit",
3
3
  "configKey": "devtoolsUIKit",
4
- "version": "2.5.0-beta.2-29150288.5c8decd",
4
+ "version": "2.6.0-29186511.e07326b",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.1",
7
7
  "unbuild": "3.5.0"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nuxt/devtools-ui-kit-nightly",
3
3
  "type": "module",
4
- "version": "2.5.0-beta.2-29150288.5c8decd",
4
+ "version": "2.6.0-29186511.e07326b",
5
5
  "license": "MIT",
6
6
  "homepage": "https://devtools.nuxt.com/module/ui-kit",
7
7
  "repository": {
@@ -28,33 +28,33 @@
28
28
  "dist"
29
29
  ],
30
30
  "peerDependencies": {
31
- "@nuxt/devtools": "npm:@nuxt/devtools-nightly@2.5.0-beta.2-29150288.5c8decd"
31
+ "@nuxt/devtools": "npm:@nuxt/devtools-nightly@2.6.0-29186511.e07326b"
32
32
  },
33
33
  "dependencies": {
34
- "@iconify-json/carbon": "^1.2.8",
34
+ "@iconify-json/carbon": "^1.2.10",
35
35
  "@iconify-json/logos": "^1.2.4",
36
36
  "@iconify-json/ri": "^1.2.5",
37
- "@iconify-json/tabler": "^1.2.18",
38
- "@nuxt/devtools-kit": "npm:@nuxt/devtools-kit-nightly@2.5.0-beta.2-29150288.5c8decd",
39
- "@nuxt/kit": "^3.17.4",
40
- "@unocss/core": "^66.1.3",
41
- "@unocss/nuxt": "^66.1.3",
42
- "@unocss/preset-attributify": "^66.1.3",
43
- "@unocss/preset-icons": "^66.1.3",
44
- "@unocss/preset-mini": "^66.1.3",
45
- "@unocss/reset": "^66.1.3",
46
- "@vueuse/core": "^13.3.0",
47
- "@vueuse/integrations": "^13.3.0",
48
- "@vueuse/nuxt": "^13.3.0",
37
+ "@iconify-json/tabler": "^1.2.19",
38
+ "@nuxt/devtools-kit": "npm:@nuxt/devtools-kit-nightly@2.6.0-29186511.e07326b",
39
+ "@nuxt/kit": "^3.17.5",
40
+ "@unocss/core": "^66.3.2",
41
+ "@unocss/nuxt": "^66.3.2",
42
+ "@unocss/preset-attributify": "^66.3.2",
43
+ "@unocss/preset-icons": "^66.3.2",
44
+ "@unocss/preset-mini": "^66.3.2",
45
+ "@unocss/reset": "^66.3.2",
46
+ "@vueuse/core": "^13.4.0",
47
+ "@vueuse/integrations": "^13.4.0",
48
+ "@vueuse/nuxt": "^13.4.0",
49
49
  "defu": "^6.1.4",
50
50
  "focus-trap": "^7.6.5",
51
51
  "splitpanes": "^3.2.0",
52
- "unocss": "^66.1.3",
52
+ "unocss": "^66.3.2",
53
53
  "v-lazy-show": "^0.3.0"
54
54
  },
55
55
  "devDependencies": {
56
- "@nuxt/devtools": "npm:@nuxt/devtools-nightly@2.5.0-beta.2-29150288.5c8decd",
57
- "nuxt": "^3.17.4"
56
+ "@nuxt/devtools": "npm:@nuxt/devtools-nightly@2.6.0-29186511.e07326b",
57
+ "nuxt": "^3.17.5"
58
58
  },
59
59
  "publishConfig": {
60
60
  "access": "public"