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.
- package/dist/components/Alert/Alert.svelte +1 -1
- package/dist/components/Autocomplete/Autocomplete.svelte +1 -1
- package/dist/components/Backtop/Backtop.svelte +1 -1
- package/dist/components/Breadcrumb/Breadcrumb.svelte +1 -1
- package/dist/components/Calendar/Calendar.svelte +1 -1
- package/dist/components/Carousel/Carousel.svelte +1 -1
- package/dist/components/Cascader/Cascader.svelte +1 -1
- package/dist/components/Checkbox/Checkbox.svelte +1 -1
- package/dist/components/Collapse/CollapseItem.svelte +1 -1
- package/dist/components/ColorPicker/ColorPicker.svelte +1 -1
- package/dist/components/DatePicker/DatePicker.svelte +1 -1
- package/dist/components/DateTimePicker/DateTimePicker.svelte +1 -1
- package/dist/components/Dialog/Dialog.svelte +1 -1
- package/dist/components/Drawer/Drawer.svelte +1 -1
- package/dist/components/Image/Image.svelte +1 -1
- package/dist/components/InputNumber/InputNumber.svelte +1 -1
- package/dist/components/Loading/Loading.svelte +1 -1
- package/dist/components/Message/MessageBox.svelte +1 -1
- package/dist/components/MessageBox/MessageBox.svelte +1 -1
- package/dist/components/Notification/Notification.svelte +1 -1
- package/dist/components/Popconfirm/Popconfirm.svelte +1 -1
- package/dist/components/Result/Result.svelte +1 -1
- package/dist/components/Select/Select.svelte +1 -1
- package/dist/components/Steps/Step.svelte +1 -1
- package/dist/components/Switch/Switch.svelte +1 -1
- package/dist/components/Tabs/Tabs.svelte +1 -1
- package/dist/components/Tag/Tag.svelte +1 -1
- package/dist/components/Textarea/Textarea.svelte +1 -1
- package/dist/components/TimePicker/TimePicker.svelte +1 -1
- package/dist/components/Transfer/Transfer.svelte +1 -1
- package/dist/components/Tree/TreeNode.svelte +1 -1
- package/dist/components/TreeSelect/TreeSelect.svelte +1 -1
- package/dist/components/Upload/Upload.svelte +1 -1
- 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
|
|
5
|
+
import Icon from '../../Icon/src/Icon.svelte'
|
|
6
6
|
|
|
7
7
|
interface AlertProps {
|
|
8
8
|
type?: 'info' | 'success' | 'warning' | 'danger'
|
|
@@ -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
|
|
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
|
|
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
|
|
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
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,7 +1,7 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
import type { Snippet } from 'svelte'
|
|
3
3
|
import type { ImageFit } from './types'
|
|
4
|
-
import
|
|
4
|
+
import Icon from '../../Icon/src/Icon.svelte'
|
|
5
5
|
import { X, ChevronLeft, ChevronRight } from 'lucide'
|
|
6
6
|
|
|
7
7
|
interface ImageProps {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
|
-
import
|
|
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
|
|
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
|
|
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'
|
|
@@ -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
|
|
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
|
|
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
|
|
6
|
+
import Icon from '../../Icon/src/Icon.svelte'
|
|
7
7
|
import { Check, X } from 'lucide'
|
|
8
8
|
|
|
9
9
|
interface StepProps {
|
|
@@ -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
|
|
5
|
+
import Icon from '../../Icon/src/Icon.svelte'
|
|
6
6
|
import { ChevronLeft, ChevronRight, X, Plus } from 'lucide'
|
|
7
7
|
|
|
8
8
|
interface TabsProps {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
import { createDropdownTransition } from '../../utils'
|
|
3
3
|
import { onMount, tick } from 'svelte'
|
|
4
|
-
import
|
|
4
|
+
import Icon from '../../Icon/src/Icon.svelte'
|
|
5
5
|
import { Clock, X, ChevronDown } from 'lucide'
|
|
6
6
|
|
|
7
7
|
interface Props {
|
|
@@ -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
|
|
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
|
|
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
|
|
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 {
|