lumen-plus 0.0.2 → 0.0.3

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 (34) hide show
  1. package/dist/components/Alert/Alert.svelte +1 -1
  2. package/dist/components/Autocomplete/Autocomplete.svelte +1 -1
  3. package/dist/components/Backtop/Backtop.svelte +1 -1
  4. package/dist/components/Breadcrumb/Breadcrumb.svelte +1 -1
  5. package/dist/components/Calendar/Calendar.svelte +1 -1
  6. package/dist/components/Carousel/Carousel.svelte +1 -1
  7. package/dist/components/Cascader/Cascader.svelte +1 -1
  8. package/dist/components/Checkbox/Checkbox.svelte +1 -1
  9. package/dist/components/Collapse/CollapseItem.svelte +1 -1
  10. package/dist/components/ColorPicker/ColorPicker.svelte +1 -1
  11. package/dist/components/DatePicker/DatePicker.svelte +1 -1
  12. package/dist/components/DateTimePicker/DateTimePicker.svelte +1 -1
  13. package/dist/components/Dialog/Dialog.svelte +1 -1
  14. package/dist/components/Drawer/Drawer.svelte +1 -1
  15. package/dist/components/Image/Image.svelte +1 -1
  16. package/dist/components/InputNumber/InputNumber.svelte +1 -1
  17. package/dist/components/Loading/Loading.svelte +1 -1
  18. package/dist/components/Message/MessageBox.svelte +1 -1
  19. package/dist/components/MessageBox/MessageBox.svelte +1 -1
  20. package/dist/components/Notification/Notification.svelte +1 -1
  21. package/dist/components/Popconfirm/Popconfirm.svelte +1 -1
  22. package/dist/components/Result/Result.svelte +1 -1
  23. package/dist/components/Select/Select.svelte +1 -1
  24. package/dist/components/Steps/Step.svelte +1 -1
  25. package/dist/components/Switch/Switch.svelte +1 -1
  26. package/dist/components/Tabs/Tabs.svelte +1 -1
  27. package/dist/components/Tag/Tag.svelte +1 -1
  28. package/dist/components/Textarea/Textarea.svelte +1 -1
  29. package/dist/components/TimePicker/TimePicker.svelte +1 -1
  30. package/dist/components/Transfer/Transfer.svelte +1 -1
  31. package/dist/components/Tree/TreeNode.svelte +1 -1
  32. package/dist/components/TreeSelect/TreeSelect.svelte +1 -1
  33. package/dist/components/Upload/Upload.svelte +1 -1
  34. package/package.json +1 -1
@@ -2,7 +2,7 @@
2
2
  import type { Snippet } from 'svelte'
3
3
  import type { IconNode } from 'lucide'
4
4
  import { CheckCircle, AlertTriangle, AlertCircle, Info, X } from 'lucide'
5
- import { Icon } from 'lumen-plus'
5
+ import Icon from '../../Icon/src/Icon.svelte'
6
6
 
7
7
  interface AlertProps {
8
8
  type?: 'info' | 'success' | 'warning' | 'danger'
@@ -1,5 +1,5 @@
1
1
  <script lang="ts">
2
- import { Icon } from 'lumen-plus'
2
+ import Icon from '../../Icon/src/Icon.svelte'
3
3
  import { X, Loader2, ChevronDown } from 'lucide'
4
4
 
5
5
  interface SuggestionItem {
@@ -1,7 +1,7 @@
1
1
  <script lang="ts">
2
2
  import type { Snippet } from 'svelte'
3
3
  import { onMount, onDestroy } from 'svelte'
4
- import { Icon } from 'lumen-plus'
4
+ import Icon from '../../Icon/src/Icon.svelte'
5
5
  import { ArrowUp } from 'lucide'
6
6
 
7
7
  interface BacktopProps {
@@ -1,5 +1,5 @@
1
1
  <script lang="ts">
2
- import { Icon } from 'lumen-plus'
2
+ import Icon from '../../Icon/src/Icon.svelte'
3
3
  import type { BreadcrumbProps } from './types'
4
4
 
5
5
  interface Props extends BreadcrumbProps {}
@@ -1,5 +1,5 @@
1
1
  <script lang="ts">
2
- import { Icon } from 'lumen-plus'
2
+ import Icon from '../../Icon/src/Icon.svelte'
3
3
  import { ChevronLeft, ChevronRight, ChevronsLeft, ChevronsRight } from 'lucide'
4
4
 
5
5
  interface Props {
@@ -3,7 +3,7 @@
3
3
  import type { CarouselDirection, CarouselIndicatorTrigger, CarouselIndicatorPosition } from './types'
4
4
  import { setContext, onMount, onDestroy } from 'svelte'
5
5
  import { CAROUSEL_CONTEXT_KEY, type CarouselContext } from './CarouselContext'
6
- import { Icon } from 'lumen-plus'
6
+ import Icon from '../../Icon/src/Icon.svelte'
7
7
  import { ChevronLeft, ChevronRight, ChevronUp, ChevronDown } from 'lucide'
8
8
 
9
9
  interface CarouselProps {
@@ -1,7 +1,7 @@
1
1
  <script lang="ts">
2
2
  import { onMount } from 'svelte'
3
3
  import { createDropdownTransition } from '../../utils'
4
- import { Icon } from 'lumen-plus'
4
+ import Icon from '../../Icon/src/Icon.svelte'
5
5
  import { ChevronRight, ChevronDown, X, Check } from 'lucide'
6
6
  import type { CascaderOption, CascaderProps as Props } from './types'
7
7
 
@@ -1,5 +1,5 @@
1
1
  <script lang="ts">
2
- import { Icon } from 'lumen-plus'
2
+ import Icon from '../../Icon/src/Icon.svelte'
3
3
  import { Check, Minus } from 'lucide'
4
4
  import type { Snippet } from 'svelte'
5
5
 
@@ -2,7 +2,7 @@
2
2
  import type { Snippet } from 'svelte'
3
3
  import { getContext, onMount } from 'svelte'
4
4
  import { COLLAPSE_CONTEXT_KEY, type CollapseContext } from './CollapseContext'
5
- import { Icon } from 'lumen-plus'
5
+ import Icon from '../../Icon/src/Icon.svelte'
6
6
  import { ChevronRight } from 'lucide'
7
7
 
8
8
  interface CollapseItemProps {
@@ -1,6 +1,6 @@
1
1
  <script lang="ts">
2
2
  import type { ColorPickerSize } from './types'
3
- import { Icon } from 'lumen-plus'
3
+ import Icon from '../../Icon/src/Icon.svelte'
4
4
  import { ChevronDown } from 'lucide'
5
5
  import { onMount, onDestroy } from 'svelte'
6
6
  import { createDropdownTransition } from '../../utils'
@@ -2,7 +2,7 @@
2
2
  import type { DatePickerType, DatePickerSize } from './types'
3
3
  import { onMount, onDestroy } from 'svelte'
4
4
  import { createCenteredDropdownTransition } from '../../utils'
5
- import { Icon } from 'lumen-plus'
5
+ import Icon from '../../Icon/src/Icon.svelte'
6
6
  import { Calendar, ChevronLeft, ChevronRight, ChevronsLeft, ChevronsRight, X } from 'lucide'
7
7
 
8
8
  interface DatePickerProps {
@@ -1,7 +1,7 @@
1
1
  <script lang="ts">
2
2
  import { createDropdownTransition } from '../../utils'
3
3
  import { onDestroy, onMount } from 'svelte'
4
- import { Icon } from 'lumen-plus'
4
+ import Icon from '../../Icon/src/Icon.svelte'
5
5
  import { Calendar, ChevronLeft, ChevronRight, X, ChevronDown, ChevronsLeft, ChevronsRight } from 'lucide'
6
6
 
7
7
  import type { DateTimePickerProps } from './types'
@@ -1,6 +1,6 @@
1
1
  <script lang="ts">
2
2
  import type { Snippet } from 'svelte'
3
- import { Icon } from 'lumen-plus'
3
+ import Icon from '../../Icon/src/Icon.svelte'
4
4
  import { X } from 'lucide'
5
5
 
6
6
  interface DialogProps {
@@ -1,7 +1,7 @@
1
1
  <script lang="ts">
2
2
  import type { Snippet } from 'svelte'
3
3
  import type { DrawerDirection } from './types'
4
- import { Icon } from 'lumen-plus'
4
+ import Icon from '../../Icon/src/Icon.svelte'
5
5
  import { X } from 'lucide'
6
6
 
7
7
  interface DrawerProps {
@@ -1,7 +1,7 @@
1
1
  <script lang="ts">
2
2
  import type { Snippet } from 'svelte'
3
3
  import type { ImageFit } from './types'
4
- import { Icon } from 'lumen-plus'
4
+ import Icon from '../../Icon/src/Icon.svelte'
5
5
  import { X, ChevronLeft, ChevronRight } from 'lucide'
6
6
 
7
7
  interface ImageProps {
@@ -1,6 +1,6 @@
1
1
  <script lang="ts">
2
2
  import type { InputNumberSize } from './types'
3
- import { Icon } from 'lumen-plus'
3
+ import Icon from '../../Icon/src/Icon.svelte'
4
4
  import { Minus, Plus, ChevronUp, ChevronDown } from 'lucide'
5
5
 
6
6
  interface InputNumberProps {
@@ -1,6 +1,6 @@
1
1
  <script lang="ts">
2
2
  import type { Snippet } from 'svelte'
3
- import { Icon } from 'lumen-plus'
3
+ import Icon from '../../Icon/src/Icon.svelte'
4
4
  import { Loader2 } from 'lucide'
5
5
 
6
6
  interface LoadingProps {
@@ -1,5 +1,5 @@
1
1
  <script lang="ts">
2
- import { Icon } from 'lumen-plus'
2
+ import Icon from '../../Icon/src/Icon.svelte'
3
3
  import { CheckCircle, AlertTriangle, XCircle, Info, X } from 'lucide'
4
4
  import type { IconNode } from 'lucide'
5
5
  import type { MessageItem, MessageType, CloseMessageFn } from './types'
@@ -1,6 +1,6 @@
1
1
  <script lang="ts">
2
2
  import Dialog from '../../Dialog/src'
3
- import { Icon } from 'lumen-plus'
3
+ import Icon from '../../Icon/src/Icon.svelte'
4
4
  import { CheckCircle, AlertTriangle, XCircle, Info, X } from 'lucide'
5
5
  import type { IconNode } from 'lucide'
6
6
  import type { MessageBoxOptions, MessageBoxType } from './types'
@@ -1,5 +1,5 @@
1
1
  <script lang="ts">
2
- import { Icon } from 'lumen-plus'
2
+ import Icon from '../../Icon/src/Icon.svelte'
3
3
  import { CheckCircle, AlertTriangle, XCircle, Info, X } from 'lucide'
4
4
  import type { IconNode } from 'lucide'
5
5
  import type { NotificationItem, NotificationOptions, NotificationType, NotificationPlacement } from './types'
@@ -4,7 +4,7 @@
4
4
 
5
5
  <script lang="ts">
6
6
  import type { Snippet } from 'svelte'
7
- import { Icon } from 'lumen-plus'
7
+ import Icon from '../../Icon/src/Icon.svelte'
8
8
  import Button from '../../Button/src'
9
9
  import { CircleHelp, CircleAlert, Info, CircleCheck } from 'lucide'
10
10
 
@@ -2,7 +2,7 @@
2
2
  import type { Snippet } from 'svelte'
3
3
  import type { ResultStatus } from './types'
4
4
  import type { IconNode } from 'lucide'
5
- import { Icon } from 'lumen-plus'
5
+ import Icon from '../../Icon/src/Icon.svelte'
6
6
  import { CheckCircle, AlertTriangle, XCircle, Info } from 'lucide'
7
7
 
8
8
  interface ResultProps {
@@ -2,7 +2,7 @@
2
2
  import type { SelectOption, SelectProps } from './types'
3
3
  import { onMount, onDestroy, tick } from 'svelte'
4
4
  import { createDropdownTransition } from '../../utils'
5
- import { Icon } from 'lumen-plus'
5
+ import Icon from '../../Icon/src/Icon.svelte'
6
6
  import { ChevronDown, X } from 'lucide'
7
7
 
8
8
  let {
@@ -3,7 +3,7 @@
3
3
  import type { StepStatus } from './types'
4
4
  import { getContext } from 'svelte'
5
5
  import { STEPS_CONTEXT_KEY, type StepsContext } from './StepsContext'
6
- import { Icon } from 'lumen-plus'
6
+ import Icon from '../../Icon/src/Icon.svelte'
7
7
  import { Check, X } from 'lucide'
8
8
 
9
9
  interface StepProps {
@@ -1,5 +1,5 @@
1
1
  <script lang="ts">
2
- import { Icon } from 'lumen-plus'
2
+ import Icon from '../../Icon/src/Icon.svelte'
3
3
  import { Loader } from 'lucide'
4
4
  import type { IconNode } from 'lucide'
5
5
  import type { Snippet } from 'svelte'
@@ -2,7 +2,7 @@
2
2
  import type { Snippet } from 'svelte'
3
3
  import { setContext } from 'svelte'
4
4
  import { TABS_CONTEXT_KEY } from './TabsContext'
5
- import { Icon } from 'lumen-plus'
5
+ import Icon from '../../Icon/src/Icon.svelte'
6
6
  import { ChevronLeft, ChevronRight, X, Plus } from 'lucide'
7
7
 
8
8
  interface TabsProps {
@@ -1,6 +1,6 @@
1
1
  <script lang="ts">
2
2
  import type { Snippet } from 'svelte'
3
- import { Icon } from 'lumen-plus'
3
+ import Icon from '../../Icon/src/Icon.svelte'
4
4
  import { X } from 'lucide'
5
5
 
6
6
  interface TagProps {
@@ -1,5 +1,5 @@
1
1
  <script lang="ts">
2
- import { Icon } from 'lumen-plus'
2
+ import Icon from '../../Icon/src/Icon.svelte'
3
3
  import { X } from 'lucide'
4
4
 
5
5
  interface TextareaProps {
@@ -1,7 +1,7 @@
1
1
  <script lang="ts">
2
2
  import { createDropdownTransition } from '../../utils'
3
3
  import { onMount, tick } from 'svelte'
4
- import { Icon } from 'lumen-plus'
4
+ import Icon from '../../Icon/src/Icon.svelte'
5
5
  import { Clock, X, ChevronDown } from 'lucide'
6
6
 
7
7
  interface Props {
@@ -1,6 +1,6 @@
1
1
  <script lang="ts">
2
2
  import type { TransferItem, TransferDirection } from './types'
3
- import { Icon } from 'lumen-plus'
3
+ import Icon from '../../Icon/src/Icon.svelte'
4
4
  import { ChevronLeft, ChevronRight } from 'lucide'
5
5
  import Checkbox from '../../Checkbox/src'
6
6
 
@@ -1,7 +1,7 @@
1
1
  <script lang="ts">
2
2
  import type { TreeNode as TreeNodeType } from './types'
3
3
  import { slide } from 'svelte/transition'
4
- import { Icon } from 'lumen-plus'
4
+ import Icon from '../../Icon/src/Icon.svelte'
5
5
  import { ChevronRight } from 'lucide'
6
6
  import Checkbox from '../../Checkbox/src'
7
7
  import TreeNode from './TreeNode.svelte'
@@ -2,7 +2,7 @@
2
2
  import { onMount, onDestroy, tick } from 'svelte'
3
3
  import { slide } from 'svelte/transition'
4
4
  import { createDropdownTransition } from '../../utils'
5
- import { Icon } from 'lumen-plus'
5
+ import Icon from '../../Icon/src/Icon.svelte'
6
6
  import Checkbox from '../../Checkbox/src'
7
7
  import Tag from '../../Tag/src'
8
8
  import { ChevronDown, ChevronRight, X, Check, Loader2 } from 'lucide'
@@ -1,7 +1,7 @@
1
1
  <script lang="ts">
2
2
  import type { Snippet } from 'svelte'
3
3
  import type { UploadFile } from './types'
4
- import { Icon } from 'lumen-plus'
4
+ import Icon from '../../Icon/src/Icon.svelte'
5
5
  import { Upload as UploadIcon, X, File, Check, AlertCircle, Plus, Eye, Image as ImageIcon } from 'lucide'
6
6
 
7
7
  interface UploadProps {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lumen-plus",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Lumen Plus - Complete Svelte 5 UI Component Library",
5
5
  "type": "module",
6
6
  "svelte": "./dist/index.js",