lumen-plus 0.0.4 → 0.0.6

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.
@@ -1,6 +1,6 @@
1
1
  <script lang="ts">
2
2
  import { onMount } from 'svelte'
3
- import { createDropdownTransition } from '../utils/index.js'
3
+ import { createDropdownTransition } from '../../utils'
4
4
  import Icon from '../Icon/Icon.svelte'
5
5
  import { ChevronRight, ChevronDown, X, Check } from 'lucide'
6
6
  import type { CascaderOption, CascaderProps as Props } from './types'
@@ -3,7 +3,7 @@
3
3
  import Icon from '../Icon/Icon.svelte'
4
4
  import { ChevronDown } from 'lucide'
5
5
  import { onMount, onDestroy } from 'svelte'
6
- import { createDropdownTransition } from '../utils/index.js'
6
+ import { createDropdownTransition } from '../../utils'
7
7
 
8
8
  interface ColorPickerProps {
9
9
  modelValue?: string
@@ -1,7 +1,7 @@
1
1
  <script lang="ts">
2
2
  import type { DatePickerType, DatePickerSize } from './types'
3
3
  import { onMount, onDestroy } from 'svelte'
4
- import { createCenteredDropdownTransition } from '../utils/index.js'
4
+ import { createCenteredDropdownTransition } from '../../utils'
5
5
  import Icon from '../Icon/Icon.svelte'
6
6
  import { Calendar, ChevronLeft, ChevronRight, ChevronsLeft, ChevronsRight, X } from 'lucide'
7
7
 
@@ -1,5 +1,5 @@
1
1
  <script lang="ts">
2
- import { createDropdownTransition } from '../utils/index.js'
2
+ import { createDropdownTransition } from '../../utils'
3
3
  import { onDestroy, onMount } from 'svelte'
4
4
  import Icon from '../Icon/Icon.svelte'
5
5
  import { Calendar, ChevronLeft, ChevronRight, X, ChevronDown, ChevronsLeft, ChevronsRight } from 'lucide'
@@ -4,7 +4,7 @@
4
4
  import { onDestroy } from 'svelte'
5
5
  import { scale } from 'svelte/transition'
6
6
  import { ChevronDown } from 'lucide'
7
- import Icon from '../Icon/index.js'
7
+ import Icon from '../Icon'
8
8
 
9
9
  type DropdownExclusiveOpenDetail = {
10
10
  group: string
@@ -1,5 +1,5 @@
1
1
  <script lang="ts">
2
- import Tag from '../Tag/index.js'
2
+ import Tag from '../Tag'
3
3
 
4
4
  import type { InputTagProps } from './types'
5
5
 
@@ -1,5 +1,5 @@
1
1
  <script lang="ts">
2
- import Dialog from '../Dialog/index.js'
2
+ import Dialog from '../Dialog'
3
3
  import Icon from '../Icon/Icon.svelte'
4
4
  import { CheckCircle, AlertTriangle, XCircle, Info, X } from 'lucide'
5
5
  import type { IconNode } from 'lucide'
@@ -5,7 +5,7 @@
5
5
  <script lang="ts">
6
6
  import type { Snippet } from 'svelte'
7
7
  import Icon from '../Icon/Icon.svelte'
8
- import Button from '../Button/index.js'
8
+ import Button from '../Button'
9
9
  import { CircleHelp, CircleAlert, Info, CircleCheck } from 'lucide'
10
10
 
11
11
  interface PopconfirmProps {
@@ -1,7 +1,7 @@
1
1
  <script lang="ts">
2
2
  import type { SelectOption, SelectProps } from './types'
3
3
  import { onMount, onDestroy, tick } from 'svelte'
4
- import { createDropdownTransition } from '../utils/index.js'
4
+ import { createDropdownTransition } from '../../utils'
5
5
  import Icon from '../Icon/Icon.svelte'
6
6
  import { ChevronDown, X } from 'lucide'
7
7
 
@@ -1,5 +1,5 @@
1
1
  <script lang="ts">
2
- import { Tooltip } from '../Tooltip/index.js'
2
+ import { Tooltip } from '../Tooltip'
3
3
  import type { Snippet } from 'svelte'
4
4
 
5
5
  interface SliderProps {
@@ -1,11 +1,11 @@
1
1
  <script lang="ts">
2
2
  import type { Snippet } from 'svelte'
3
3
  import type { TableProps, TableColumn, SortOrder, SortChangeEvent, RowClickEvent, CellClickEvent, SelectionChangeEvent, TableActionButton } from './types'
4
- import Checkbox from '../Checkbox/index.js'
5
- import Loading from '../Loading/index.js'
6
- import Icon from '../Icon/index.js'
7
- import Button from '../Button/index.js'
8
- import Space from '../Space/index.js'
4
+ import Checkbox from '../Checkbox'
5
+ import Loading from '../Loading'
6
+ import Icon from '../Icon'
7
+ import Button from '../Button'
8
+ import Space from '../Space'
9
9
  import { ChevronDown, ChevronUp } from 'lucide'
10
10
 
11
11
  // Props
@@ -1,5 +1,5 @@
1
1
  <script lang="ts">
2
- import { createDropdownTransition } from '../utils/index.js'
2
+ import { createDropdownTransition } from '../../utils'
3
3
  import { onMount, tick } from 'svelte'
4
4
  import Icon from '../Icon/Icon.svelte'
5
5
  import { Clock, X, ChevronDown } from 'lucide'
@@ -2,7 +2,7 @@
2
2
  import type { TransferItem, TransferDirection } from './types'
3
3
  import Icon from '../Icon/Icon.svelte'
4
4
  import { ChevronLeft, ChevronRight } from 'lucide'
5
- import Checkbox from '../Checkbox/index.js'
5
+ import Checkbox from '../Checkbox'
6
6
 
7
7
  interface TransferProps {
8
8
  data?: TransferItem[]
@@ -3,7 +3,7 @@
3
3
  import { slide } from 'svelte/transition'
4
4
  import Icon from '../Icon/Icon.svelte'
5
5
  import { ChevronRight } from 'lucide'
6
- import Checkbox from '../Checkbox/index.js'
6
+ import Checkbox from '../Checkbox'
7
7
  import TreeNode from './TreeNode.svelte'
8
8
 
9
9
  interface TreeNodeProps {
@@ -1,10 +1,10 @@
1
1
  <script lang="ts">
2
2
  import { onMount, onDestroy, tick } from 'svelte'
3
3
  import { slide } from 'svelte/transition'
4
- import { createDropdownTransition } from '../utils/index.js'
4
+ import { createDropdownTransition } from '../../utils'
5
5
  import Icon from '../Icon/Icon.svelte'
6
- import Checkbox from '../Checkbox/index.js'
7
- import Tag from '../Tag/index.js'
6
+ import Checkbox from '../Checkbox'
7
+ import Tag from '../Tag'
8
8
  import { ChevronDown, ChevronRight, X, Check, Loader2 } from 'lucide'
9
9
  import type { TreeSelectNode, TreeSelectProps } from './types'
10
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lumen-plus",
3
- "version": "0.0.4",
3
+ "version": "0.0.6",
4
4
  "description": "Lumen Plus - Complete Svelte 5 UI Component Library",
5
5
  "type": "module",
6
6
  "svelte": "./dist/index.js",