@nexxtmove/ui 0.1.25 → 0.1.26
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/index.d.ts +1 -1
- package/dist/index.js +4 -0
- package/package.json +1 -1
- package/src/components/AnimatedNumber/AnimatedNumber.vue +4 -0
- package/src/components/TimelineEvent/TimelineEvent.vue +4 -0
- package/src/components/TimelinePhaseblock/TimelinePhaseblock.vue +4 -0
- package/src/components/Tooltip/Tooltip.vue +4 -0
package/dist/index.d.ts
CHANGED
|
@@ -15,8 +15,8 @@ declare const __VLS_component_3: DefineComponent<__VLS_PublicProps, {}, {}, {},
|
|
|
15
15
|
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
16
16
|
"onUpdate:modelValue"?: ((value: Date | null) => any) | undefined;
|
|
17
17
|
}>, {
|
|
18
|
-
placeholder: string;
|
|
19
18
|
anchor: CalendarAnchor;
|
|
19
|
+
placeholder: string;
|
|
20
20
|
autoClose: boolean;
|
|
21
21
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
22
22
|
wrapperRef: HTMLDivElement;
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { defineComponent as D, ref as M, computed as Q, watch as vA, createBlock as V, openBlock as E, TransitionGroup as oe, withCtx as X, createElementBlock as I, Fragment as S, renderList as b, createVNode as z, Transition as $, toDisplayString as v, normalizeClass as c, createCommentVNode as x, renderSlot as R, createElementVNode as g, normalizeProps as gA, guardReactiveProps as sA, onMounted as iA, unref as N, nextTick as cA, mergeModels as uA, useModel as WA, mergeProps as TA, createTextVNode as J, onUnmounted as me, watchEffect as Ee, normalizeStyle as Ie, withKeys as aA, withModifiers as zA, createStaticVNode as FA, resolveDynamicComponent as de, createSlots as ge } from "vue";
|
|
2
2
|
import { TooltipProvider as se, TooltipRoot as ce, TooltipTrigger as ue, TooltipPortal as ze, TooltipContent as Qe } from "reka-ui";
|
|
3
3
|
const Be = /* @__PURE__ */ D({
|
|
4
|
+
name: "NexxtAnimatedNumber",
|
|
4
5
|
__name: "AnimatedNumber",
|
|
5
6
|
props: {
|
|
6
7
|
value: {},
|
|
@@ -3359,6 +3360,7 @@ const Ni = { render: Pi }, hi = { class: "flex items-center justify-end self-str
|
|
|
3359
3360
|
key: 1,
|
|
3360
3361
|
class: "mt-1 text-sm text-gray-500"
|
|
3361
3362
|
}, Ri = /* @__PURE__ */ D({
|
|
3363
|
+
name: "NexxtTimelineEvent",
|
|
3362
3364
|
__name: "TimelineEvent",
|
|
3363
3365
|
props: {
|
|
3364
3366
|
event: {},
|
|
@@ -3429,6 +3431,7 @@ const Ni = { render: Pi }, hi = { class: "flex items-center justify-end self-str
|
|
|
3429
3431
|
], 10, Hi));
|
|
3430
3432
|
}
|
|
3431
3433
|
}), KA = /* @__PURE__ */ D({
|
|
3434
|
+
name: "NexxtTooltip",
|
|
3432
3435
|
__name: "Tooltip",
|
|
3433
3436
|
props: {
|
|
3434
3437
|
delay: { default: 0 },
|
|
@@ -3481,6 +3484,7 @@ const Ni = { render: Pi }, hi = { class: "flex items-center justify-end self-str
|
|
|
3481
3484
|
key: 1,
|
|
3482
3485
|
class: "h-1"
|
|
3483
3486
|
}, rn = /* @__PURE__ */ D({
|
|
3487
|
+
name: "NexxtTimelinePhaseblock",
|
|
3484
3488
|
__name: "TimelinePhaseblock",
|
|
3485
3489
|
props: {
|
|
3486
3490
|
phase: {},
|
package/package.json
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
<script lang="ts" setup>
|
|
2
2
|
import NexxtIcon from '../Icon/Icon.vue'
|
|
3
3
|
import { computed } from 'vue'
|
|
4
|
+
|
|
5
|
+
defineOptions({
|
|
6
|
+
name: 'NexxtTimelineEvent',
|
|
7
|
+
})
|
|
4
8
|
import { EVENT_CONFIG_MAP, type TimelineEvent as Event } from './TimelineTypes'
|
|
5
9
|
|
|
6
10
|
interface EventConfig {
|
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
import NexxtIcon from '../Icon/Icon.vue'
|
|
3
3
|
import NexxtTooltip from '../Tooltip/Tooltip.vue'
|
|
4
4
|
import { computed } from 'vue'
|
|
5
|
+
|
|
6
|
+
defineOptions({
|
|
7
|
+
name: 'NexxtTimelinePhaseblock',
|
|
8
|
+
})
|
|
5
9
|
import NexxtTimelineEvent from '../TimelineEvent/TimelineEvent.vue'
|
|
6
10
|
import { PHASE_MAP, type TimelinePhase } from '../TimelineEvent/TimelineTypes'
|
|
7
11
|
|