rimelight-components 2.1.44 → 2.1.46

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.
Files changed (27) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/module.mjs +1 -1
  3. package/dist/runtime/components/FloatingToolsOverlay.vue +1 -1
  4. package/dist/runtime/components/app/Footer.vue +1 -1
  5. package/dist/runtime/components/app/Header.vue +1 -1
  6. package/dist/runtime/components/app/Image.vue +1 -1
  7. package/dist/runtime/components/app/Logo.vue +1 -1
  8. package/dist/runtime/components/app/NewsletterSignup.vue +1 -1
  9. package/dist/runtime/components/app/ScrollToTop.vue +1 -1
  10. package/dist/runtime/components/cards/TeamCard.vue +1 -1
  11. package/dist/runtime/components/content/Callout.vue +1 -1
  12. package/dist/runtime/components/content/Section.vue +1 -1
  13. package/dist/runtime/components/dashboard/NotificationsSlideover.vue +1 -1
  14. package/dist/runtime/components/dashboard/QuickActions.vue +1 -1
  15. package/dist/runtime/components/dashboard/floating-tools/FocusTimerTool.vue +1 -1
  16. package/dist/runtime/components/modals/ConfirmModal.vue +1 -1
  17. package/dist/runtime/components/nodes/LinkNode.vue +1 -1
  18. package/dist/runtime/components/nodes/TextNode.vue +1 -1
  19. package/dist/runtime/components/notes/NoteModal.vue +1 -1
  20. package/dist/runtime/components/page/PageMention.vue +1 -1
  21. package/dist/runtime/components/page/PageSurround.vue +1 -1
  22. package/dist/runtime/components/page/PageTOC.vue +1 -1
  23. package/dist/runtime/components/swatches/ColorSwatch.vue +1 -1
  24. package/dist/runtime/components/swatches/FontSwatch.vue +1 -1
  25. package/dist/runtime/components/swatches/ImageSwatch.vue +1 -1
  26. package/dist/runtime/components/utilities/Placeholder.vue +1 -1
  27. package/package.json +17 -14
package/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rimelight-components",
3
- "version": "2.1.44",
3
+ "version": "2.1.46",
4
4
  "docs": "https://rimelight.com/tools/rimelight-components",
5
5
  "configKey": "rimelightComponents",
6
6
  "compatibility": {
package/dist/module.mjs CHANGED
@@ -4,7 +4,7 @@ import { readdirSync } from 'node:fs';
4
4
  import { basename } from 'node:path';
5
5
 
6
6
  const name = "rimelight-components";
7
- const version = "2.1.44";
7
+ const version = "2.1.46";
8
8
  const homepage = "https://rimelight.com/tools/rimelight-components";
9
9
 
10
10
  const defaultOptions = {
@@ -1,5 +1,5 @@
1
1
  <script setup>
2
- import { useFloatingTools } from "~/src/runtime/composables";
2
+ import { useFloatingTools } from "../composables";
3
3
  const {
4
4
  activeToolIds,
5
5
  registeredTools,
@@ -1,6 +1,6 @@
1
1
  <script setup>
2
2
  import { tv } from "../../internal/tv";
3
- import { useRC } from "~/src/runtime/composables";
3
+ import { useRC } from "../../composables";
4
4
  const { contain = true, rc: rcProp } = defineProps({
5
5
  contain: { type: Boolean, required: false },
6
6
  rc: { type: Object, required: false }
@@ -1,6 +1,6 @@
1
1
  <script setup>
2
2
  import { tv } from "../../internal/tv";
3
- import { useRC } from "~/src/runtime/composables";
3
+ import { useRC } from "../../composables";
4
4
  const { contain = true, rc: rcProp } = defineProps({
5
5
  contain: { type: Boolean, required: false },
6
6
  rc: { type: Object, required: false }
@@ -1,7 +1,7 @@
1
1
  <script setup>
2
2
  import { ref, reactive, onMounted, useTemplateRef, watch, nextTick } from "vue";
3
3
  import { tv } from "../../internal/tv";
4
- import { useRC } from "~/src/runtime/composables";
4
+ import { useRC } from "../../composables";
5
5
  const {
6
6
  src,
7
7
  alt = "Image",
@@ -2,7 +2,7 @@
2
2
  import { useAppConfig } from "nuxt/app";
3
3
  import { computed } from "#imports";
4
4
  import { tv } from "../../internal/tv";
5
- import { useRC } from "~/src/runtime/composables";
5
+ import { useRC } from "../../composables";
6
6
  const { variant = "mark", rc: rcProp } = defineProps({
7
7
  variant: { type: String, required: false },
8
8
  rc: { type: Object, required: false }
@@ -1,6 +1,6 @@
1
1
  <script setup>
2
2
  import { tv } from "../../internal/tv";
3
- import { useRC } from "~/src/runtime/composables";
3
+ import { useRC } from "../../composables";
4
4
  const {
5
5
  fieldLabel = "Subscribe to our Newsletter",
6
6
  description = "Stay updated on new posts and updates. Unsubscribe at any time.",
@@ -1,7 +1,7 @@
1
1
  <script setup>
2
2
  import { computed, onMounted, onUnmounted, ref } from "vue";
3
3
  import { tv } from "../../internal/tv";
4
- import { useRC } from "~/src/runtime/composables";
4
+ import { useRC } from "../../composables";
5
5
  const {
6
6
  circleStrokeWidth = 4,
7
7
  duration = 0.1,
@@ -1,6 +1,6 @@
1
1
  <script setup>
2
2
  import { tv } from "../../internal/tv";
3
- import { useRC } from "~/src/runtime/composables";
3
+ import { useRC } from "../../composables";
4
4
  const { src, alt, name, role, description, rc: rcProp } = defineProps({
5
5
  src: { type: String, required: true },
6
6
  alt: { type: String, required: true },
@@ -3,7 +3,7 @@ import { useAppConfig } from "#imports";
3
3
  import { computed } from "#imports";
4
4
  import { useI18n } from "vue-i18n";
5
5
  import { tv } from "../../internal/tv";
6
- import { useRC } from "~/src/runtime/composables";
6
+ import { useRC } from "../../composables";
7
7
  const { variant, to, target, rc: rcProp } = defineProps({
8
8
  variant: { type: String, required: true },
9
9
  to: { type: String, required: false },
@@ -4,7 +4,7 @@ import { computed } from "vue";
4
4
  import { useClipboard } from "@vueuse/core";
5
5
  import { useToast } from "@nuxt/ui/composables";
6
6
  import { tv } from "../../internal/tv";
7
- import { useRC } from "~/src/runtime/composables";
7
+ import { useRC } from "../../composables";
8
8
  import { slugify } from "../../utils";
9
9
  defineOptions({
10
10
  name: "SectionComponent"
@@ -1,6 +1,6 @@
1
1
  <script setup>
2
2
  import { formatTimeAgo } from "@vueuse/core";
3
- import { useApi, useDashboard } from "~/src/runtime/composables";
3
+ import { useApi, useDashboard } from "../../composables";
4
4
  const { isNotificationsSlideoverOpen } = useDashboard();
5
5
  const { data: notifications } = await useApi("/api/notifications");
6
6
  </script>
@@ -1,5 +1,5 @@
1
1
  <script setup>
2
- import { useQuickActions } from "~/src/runtime/composables";
2
+ import { useQuickActions } from "../../composables";
3
3
  import { computed } from "vue";
4
4
  const { registeredActions } = useQuickActions();
5
5
  const menuItems = computed(() => {
@@ -1,5 +1,5 @@
1
1
  <script setup>
2
- import { useFocusTimer } from "~/src/runtime/composables";
2
+ import { useFocusTimer } from "../../../composables";
3
3
  const focusTimer = useFocusTimer();
4
4
  </script>
5
5
 
@@ -1,5 +1,5 @@
1
1
  <script setup>
2
- import { useConfirm } from "~/src/runtime/composables";
2
+ import { useConfirm } from "../../composables";
3
3
  import { computed } from "vue";
4
4
  const { state, handleConfirm, handleCancel } = useConfirm();
5
5
  const isOpen = computed({
@@ -1,7 +1,7 @@
1
1
  <script setup>
2
2
  import { computed } from "vue";
3
3
  import { tv } from "../../internal/tv";
4
- import { useRC } from "~/src/runtime/composables";
4
+ import { useRC } from "../../composables";
5
5
  const { href, target, content, rc: rcProp } = defineProps({
6
6
  href: { type: String, required: true },
7
7
  target: { type: String, required: false },
@@ -1,6 +1,6 @@
1
1
  <script setup>
2
2
  import { tv } from "../../internal/tv";
3
- import { useRC } from "~/src/runtime/composables";
3
+ import { useRC } from "../../composables";
4
4
  const { content, rc: rcProp } = defineProps({
5
5
  content: { type: String, required: true },
6
6
  rc: { type: Object, required: false }
@@ -1,7 +1,7 @@
1
1
  <script setup>
2
2
  import { useDebounceFn } from "@vueuse/core";
3
3
  import { computed, reactive, ref, watch } from "vue";
4
- import { useApi, $api } from "~/src/runtime/composables";
4
+ import { useApi, $api } from "../../composables";
5
5
  const open = defineModel("open", { type: Boolean, ...{ default: false } });
6
6
  const { note } = defineProps({
7
7
  note: { type: [Object, null], required: false }
@@ -5,7 +5,7 @@ import { useI18n } from "vue-i18n";
5
5
  import {} from "../../types";
6
6
  import { useAsyncData } from "#imports";
7
7
  import { tv } from "../../internal/tv";
8
- import { useRC } from "~/src/runtime/composables";
8
+ import { useRC } from "../../composables";
9
9
  const { pageId, rc: rcProp } = defineProps({
10
10
  pageId: { type: String, required: true },
11
11
  rc: { type: Object, required: false }
@@ -1,6 +1,6 @@
1
1
  <script setup>
2
2
  import { tv } from "../../internal/tv";
3
- import { useRC } from "~/src/runtime/composables";
3
+ import { useRC } from "../../composables";
4
4
  import { useI18n } from "vue-i18n";
5
5
  const {
6
6
  pageType,
@@ -3,7 +3,7 @@ import { computed, ref, onMounted, watch } from "vue";
3
3
  import { useI18n } from "vue-i18n";
4
4
  import { useIntersectionObserver } from "@vueuse/core";
5
5
  import { tv } from "../../internal/tv";
6
- import { useRC } from "~/src/runtime/composables";
6
+ import { useRC } from "../../composables";
7
7
  import { slugify } from "../../utils";
8
8
  const props = defineProps({
9
9
  pageBlocks: { type: [Array, null], required: true },
@@ -3,7 +3,7 @@ import { computed } from "vue";
3
3
  import { useClipboard } from "@vueuse/core";
4
4
  import { useToast } from "@nuxt/ui/composables";
5
5
  import { tv } from "../../internal/tv";
6
- import { useRC } from "~/src/runtime/composables";
6
+ import { useRC } from "../../composables";
7
7
  const { name, hex, rgb, hsl, oklch, cmyk, rc: rcProp } = defineProps({
8
8
  name: { type: String, required: false },
9
9
  hex: { type: String, required: false },
@@ -1,7 +1,7 @@
1
1
  <script setup>
2
2
  import { computed } from "vue";
3
3
  import { tv } from "../../internal/tv";
4
- import { useRC } from "~/src/runtime/composables";
4
+ import { useRC } from "../../composables";
5
5
  const { name, jpg, png, webp, svg, rc: rcProp } = defineProps({
6
6
  name: { type: String, required: false },
7
7
  jpg: { type: String, required: false },
@@ -1,7 +1,7 @@
1
1
  <script setup>
2
2
  import { computed } from "vue";
3
3
  import { tv } from "../../internal/tv";
4
- import { useRC } from "~/src/runtime/composables";
4
+ import { useRC } from "../../composables";
5
5
  const { name, jpg, png, webp, svg, rc: rcProp } = defineProps({
6
6
  name: { type: String, required: false },
7
7
  jpg: { type: String, required: false },
@@ -1,6 +1,6 @@
1
1
  <script setup>
2
2
  import { tv } from "../../internal/tv";
3
- import { useRC } from "~/src/runtime/composables";
3
+ import { useRC } from "../../composables";
4
4
  const { rc: rcProp } = defineProps({
5
5
  rc: { type: Object, required: false }
6
6
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rimelight-components",
3
- "version": "2.1.44",
3
+ "version": "2.1.46",
4
4
  "description": "A component library by Rimelight Entertainment.",
5
5
  "keywords": [
6
6
  "nuxt",
@@ -78,18 +78,16 @@
78
78
  "rimelight-components": "workspace:*"
79
79
  },
80
80
  "dependencies": {
81
- "@nuxt/kit": "^4.3.0",
82
- "@tauri-apps/plugin-http": "^2.5.6",
83
- "@vueuse/core": "^14.1.0",
84
81
  "date-fns": "^4.1.0",
85
82
  "defu": "^6.1.4",
86
83
  "tailwind-variants": "^3.2.2",
87
- "uuid": "^13.0.0",
88
- "vue": "^3.5.27",
89
- "zod": "^4.3.6"
84
+ "zod": "^4.3.6",
85
+ "uuid": "^13.0.0"
90
86
  },
91
87
  "devDependencies": {
92
- "@iconify-json/lucide": "^1.2.86",
88
+ "vue": "^3.5.27",
89
+ "@nuxt/kit": "^4.3.0",
90
+ "@iconify-json/lucide": "^1.2.87",
93
91
  "@nuxt/devtools": "^3.1.1",
94
92
  "@nuxt/image": "^2.0.0",
95
93
  "@nuxt/module-builder": "^1.0.2",
@@ -98,26 +96,31 @@
98
96
  "@nuxt/ui": "^4.4.0",
99
97
  "@nuxtjs/i18n": "^10.2.1",
100
98
  "@types/node": "latest",
101
- "@vueuse/nuxt": "^14.1.0",
99
+ "@vueuse/core": "^14.2.0",
100
+ "@vueuse/nuxt": "^14.2.0",
102
101
  "changelogen": "^0.6.2",
103
102
  "drizzle-orm": "^0.45.1",
104
103
  "nuxt": "^4.3.0",
105
104
  "oxfmt": "^0.18.0",
106
- "oxlint": "^1.41.0",
105
+ "oxlint": "^1.43.0",
107
106
  "release-it": "^19.2.4",
108
107
  "tailwind-merge": "^3.4.0",
109
108
  "typescript": "^5.9.3",
110
109
  "vitest": "^4.0.18",
111
- "vue-tsc": "^3.2.3",
110
+ "vue-tsc": "^3.2.4",
112
111
  "better-auth": "^1.4.18"
113
112
  },
114
113
  "peerDependencies": {
114
+ "better-auth": "^1.4.18",
115
+ "@tauri-apps/plugin-http": "^2.5.6",
115
116
  "@nuxt/image": "^2.0.0",
116
- "@nuxt/ui": "^4.2.0",
117
+ "@nuxt/ui": "^4.4.0",
117
118
  "@nuxtjs/i18n": "^10.2.1",
118
- "@vueuse/nuxt": "^14.1.0",
119
+ "drizzle-orm": "^0.45.1",
120
+ "@vueuse/core": "^14.2.0",
121
+ "@vueuse/nuxt": "^14.2.0",
119
122
  "nuxt": "^4.3.0",
120
- "better-auth": "^1.4.18"
123
+ "vue": "^3.5.27"
121
124
  },
122
125
  "trustedDependencies": [
123
126
  "@parcel/watcher",