@smurfox/proxy-ui 0.1.0 → 0.1.1

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/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "proxy-ui",
3
3
  "configKey": "proxyUI",
4
- "version": "0.1.0",
4
+ "version": "0.1.1",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
@@ -1,16 +1,16 @@
1
1
  <template>
2
- <div
2
+ <div
3
3
  :class="[
4
4
  !hasBg ? 'bg-white dark:bg-white/5' : '',
5
5
  !hasPadding ? 'p-4' : '',
6
- !hasShadow ? 'shadow-(--shadow-ios)' : '',
6
+ !hasShadow ? 'pu-shadow-ios' : '',
7
7
  !hasRounded ? 'rounded-2xl' : '',
8
8
  customClass,
9
9
  isBordered ? 'border border-gray-200 dark:border-white/5' : ''
10
- ]"
11
- >
12
- <slot />
13
- </div>
10
+ ]"
11
+ >
12
+ <slot />
13
+ </div>
14
14
  </template>
15
15
 
16
16
  <script setup>
@@ -33,3 +33,7 @@ const hasRounded = computed(
33
33
  () => props.customClass?.split(" ").some((c) => c.startsWith("rounded-"))
34
34
  );
35
35
  </script>
36
+
37
+ <style scoped>
38
+ .pu-shadow-ios{box-shadow:0 10px 30px rgba(0,0,0,.05)}
39
+ </style>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smurfox/proxy-ui",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A UI component library built for Nuxt 4",
5
5
  "repository": {
6
6
  "type": "git",