@reshape-biotech/design-system 2.7.6 → 2.7.9
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/README.md +0 -3
- package/dist/components/activity/Activity.stories.svelte +1 -1
- package/dist/components/banner/Banner.stories.svelte +1 -1
- package/dist/components/checkbox/Checkbox.svelte +1 -1
- package/dist/components/collapsible/components/collapsible-trigger.svelte +1 -1
- package/dist/components/combobox/Combobox.stories.svelte +1 -1
- package/dist/components/combobox/components/combobox-add.svelte +1 -1
- package/dist/components/combobox/components/combobox-content.svelte +1 -1
- package/dist/components/combobox/components/combobox-indicator.svelte +1 -1
- package/dist/components/datepicker/DatePicker.stories.svelte +1 -1
- package/dist/components/datepicker/DatePicker.svelte +1 -1
- package/dist/components/drawer/components/drawer-content.svelte +1 -1
- package/dist/components/empty-content/EmptyContent.stories.svelte +1 -1
- package/dist/components/graphs/index.d.ts +4 -0
- package/dist/components/graphs/index.js +1 -0
- package/dist/components/icons/index.d.ts +2 -0
- package/dist/components/icons/index.js +2 -0
- package/dist/components/input/Input.svelte +1 -1
- package/dist/components/legend/Legend.stories.svelte +1 -1
- package/dist/components/list/List.stories.svelte +1 -1
- package/dist/components/modal/Modal.stories.svelte +1 -1
- package/dist/components/modal/components/modal-content.svelte +1 -1
- package/dist/components/notification-popup/NotificationPopup.stories.svelte +1 -1
- package/dist/components/notification-popup/NotificationPopup.svelte +1 -1
- package/dist/components/pill/Pill.svelte +1 -1
- package/dist/components/required-status-indicator/RequiredStatusIndicator.svelte +1 -1
- package/dist/components/segmented-control-buttons/SegmentedControlButtons.stories.svelte +1 -1
- package/dist/components/select/components/SelectContent.svelte +1 -1
- package/dist/components/select/components/SelectItem.svelte +1 -1
- package/dist/components/select/components/SelectTrigger.svelte +1 -1
- package/dist/components/slider/Slider.svelte +1 -1
- package/dist/components/stat-card/StatCard.svelte +1 -1
- package/dist/components/status-badge/StatusBadge.stories.svelte +1 -1
- package/dist/components/stepper/components/stepper-step.svelte +1 -1
- package/dist/components/table/Table.stories.svelte +1 -1
- package/dist/components/tag/Tag.stories.svelte +1 -1
- package/dist/components/toggle-icon-button/ToggleIconButton.stories.svelte +1 -1
- package/dist/index.d.ts +53 -53
- package/dist/index.js +53 -53
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,19 +22,16 @@ This package contains the core design system for Reshape Biotech frontend projec
|
|
|
22
22
|
### Contents
|
|
23
23
|
|
|
24
24
|
1. **Component Library**
|
|
25
|
-
|
|
26
25
|
- A collection of shared, reusable Svelte components
|
|
27
26
|
- Standardized UI elements following Reshape Biotech's design guidelines
|
|
28
27
|
- Fully typed components with TypeScript support
|
|
29
28
|
|
|
30
29
|
2. **Tailwind Configuration**
|
|
31
|
-
|
|
32
30
|
- Pre-configured Tailwind CSS setup
|
|
33
31
|
- Custom theme extensions
|
|
34
32
|
- Shared utility classes
|
|
35
33
|
|
|
36
34
|
3. **DaisyUI**
|
|
37
|
-
|
|
38
35
|
- Pre-configured DaisyUI setup
|
|
39
36
|
- Custom theme extensions
|
|
40
37
|
- Shared utility classes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script module lang="ts">
|
|
2
2
|
import Eye from 'phosphor-svelte/lib/Eye';
|
|
3
|
-
import { Icon } from '
|
|
3
|
+
import { Icon } from '../icons/index.js';
|
|
4
4
|
import Button from '../button/Button.svelte';
|
|
5
5
|
import Activity from './Activity.svelte';
|
|
6
6
|
import * as Collapsible from '../collapsible/index';
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import CheckCircle from 'phosphor-svelte/lib/CheckCircle';
|
|
5
5
|
import Circle from 'phosphor-svelte/lib/Circle';
|
|
6
6
|
import WarningCircle from 'phosphor-svelte/lib/WarningCircle';
|
|
7
|
-
import { Icon } from '
|
|
7
|
+
import { Icon } from '../icons/index.js';
|
|
8
8
|
import Banner from './Banner.svelte';
|
|
9
9
|
import Button from '../button/Button.svelte';
|
|
10
10
|
import { defineMeta } from '@storybook/addon-svelte-csf';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
import Check from 'phosphor-svelte/lib/Check';
|
|
3
3
|
import Minus from 'phosphor-svelte/lib/Minus';
|
|
4
|
-
import { Icon } from '
|
|
4
|
+
import { Icon } from '../icons/index.js';
|
|
5
5
|
import { Checkbox, type CheckboxRootProps } from 'bits-ui';
|
|
6
6
|
|
|
7
7
|
export type CheckboxProps = CheckboxRootProps;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script module lang="ts">
|
|
2
2
|
import Plus from 'phosphor-svelte/lib/Plus';
|
|
3
3
|
import List from 'phosphor-svelte/lib/List';
|
|
4
|
-
import { Icon } from '
|
|
4
|
+
import { Icon } from '../icons/index.js';
|
|
5
5
|
import { defineMeta } from '@storybook/addon-svelte-csf';
|
|
6
6
|
import { userEvent, within } from '@storybook/test';
|
|
7
7
|
import { Root as ComboboxRootForMeta } from './index';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
import CaretUp from 'phosphor-svelte/lib/CaretUp';
|
|
3
3
|
import CaretDown from 'phosphor-svelte/lib/CaretDown';
|
|
4
|
-
import { Icon } from '
|
|
4
|
+
import { Icon } from '../../icons/index.js';
|
|
5
5
|
import { Combobox } from 'bits-ui';
|
|
6
6
|
import type { ComboboxContentProps } from '../types';
|
|
7
7
|
import { fade } from 'svelte/transition';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script module lang="ts">
|
|
2
2
|
import CalendarBlank from 'phosphor-svelte/lib/CalendarBlank';
|
|
3
|
-
import { Icon } from '
|
|
3
|
+
import { Icon } from '../icons/index.js';
|
|
4
4
|
import { defineMeta } from '@storybook/addon-svelte-csf';
|
|
5
5
|
import { userEvent, within } from '@storybook/test';
|
|
6
6
|
import { DateTime } from 'luxon';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
import CaretLeft from 'phosphor-svelte/lib/CaretLeft';
|
|
3
3
|
import CaretRight from 'phosphor-svelte/lib/CaretRight';
|
|
4
|
-
import { Icon } from '
|
|
4
|
+
import { Icon } from '../icons/index.js';
|
|
5
5
|
import { run } from 'svelte/legacy';
|
|
6
6
|
|
|
7
7
|
import { DateTime, type MonthNumbers } from 'luxon';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
import X from 'phosphor-svelte/lib/X';
|
|
3
|
-
import { Icon } from '
|
|
3
|
+
import { Icon } from '../../icons/index.js';
|
|
4
4
|
import { Dialog } from 'bits-ui';
|
|
5
5
|
import { fly } from 'svelte/transition';
|
|
6
6
|
import type { DrawerContentProps } from '../types';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script module>
|
|
2
2
|
import ClockCountdown from 'phosphor-svelte/lib/ClockCountdown';
|
|
3
3
|
import MagnifyingGlass from 'phosphor-svelte/lib/MagnifyingGlass';
|
|
4
|
-
import { Icon } from '
|
|
4
|
+
import { Icon } from '../icons/index.js';
|
|
5
5
|
import { defineMeta } from '@storybook/addon-svelte-csf';
|
|
6
6
|
import EmptyContent from './EmptyContent.svelte';
|
|
7
7
|
|
|
@@ -5,3 +5,7 @@ export { default as MultiLineChart } from './multiline/MultiLineChart.svelte';
|
|
|
5
5
|
export { default as Matrix } from './matrix/Matrix.svelte';
|
|
6
6
|
export { default as BarChart } from './bar-chart/BarChart.svelte';
|
|
7
7
|
export { default as StackedBarChart } from './bar-chart/StackedBarChart.svelte';
|
|
8
|
+
export { createTooltipFormatter } from './utils/tooltipFormatter.js';
|
|
9
|
+
export type { DataPoint, ScatterPlotEchartsEvent } from './scatterplot/Scatterplot.svelte';
|
|
10
|
+
export type { Cell } from './matrix/Matrix.svelte';
|
|
11
|
+
export type { GenericChartProps } from './chart/Chart.svelte';
|
|
@@ -5,3 +5,4 @@ export { default as MultiLineChart } from './multiline/MultiLineChart.svelte';
|
|
|
5
5
|
export { default as Matrix } from './matrix/Matrix.svelte';
|
|
6
6
|
export { default as BarChart } from './bar-chart/BarChart.svelte';
|
|
7
7
|
export { default as StackedBarChart } from './bar-chart/StackedBarChart.svelte';
|
|
8
|
+
export { createTooltipFormatter } from './utils/tooltipFormatter.js';
|
|
@@ -5,6 +5,8 @@ export type IconColor = keyof typeof textColor;
|
|
|
5
5
|
export type SupportedAnalysisModelIcons = 'pipeline_halos' | 'pipeline_large_colonies' | 'pipeline_microbial_colonies' | 'pipeline_small_colonies' | 'sgs_enteros' | 'general_germination_rate_with_tracking' | 'general_germination_rate_without_tracking' | 'pipeline_insects' | 'pipeline_colony_formation' | 'pipeline_radial_growth' | 'syngenta_health_score_crw' | 'pipeline_seed_germination' | 'syngenta_health_score_faw' | 'syngenta_health_score_sbl' | 'unilever_cfu_count_lowres';
|
|
6
6
|
export type SupportedPrincipalIcons = 'user' | 'group' | 'organization';
|
|
7
7
|
export { default as Icon } from './Icon.svelte';
|
|
8
|
+
export { default as AnalysisIcon } from './AnalysisIcon.svelte';
|
|
9
|
+
export { default as PrincipalIcon } from './PrincipalIcon.svelte';
|
|
8
10
|
export type IconProps = {
|
|
9
11
|
color?: IconColor | 'inherit';
|
|
10
12
|
weight?: 'fill' | 'light' | 'regular' | 'thin' | 'bold' | 'duotone';
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import {} from 'phosphor-svelte';
|
|
2
2
|
import { backgroundColor, textColor } from '../../tokens';
|
|
3
3
|
export { default as Icon } from './Icon.svelte';
|
|
4
|
+
export { default as AnalysisIcon } from './AnalysisIcon.svelte';
|
|
5
|
+
export { default as PrincipalIcon } from './PrincipalIcon.svelte';
|
|
4
6
|
// Custom Icons
|
|
5
7
|
export * from './custom';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
import X from 'phosphor-svelte/lib/X';
|
|
3
|
-
import { Icon } from '
|
|
3
|
+
import { Icon } from '../icons/index.js';
|
|
4
4
|
import type { Snippet } from 'svelte';
|
|
5
5
|
import { IconButton } from '../icon-button';
|
|
6
6
|
import type { HTMLInputAttributes } from 'svelte/elements';
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { Tooltip } from '../tooltip';
|
|
6
6
|
import Hash from 'phosphor-svelte/lib/Hash';
|
|
7
7
|
import CraneTower from 'phosphor-svelte/lib/CraneTower';
|
|
8
|
-
import { Icon } from '
|
|
8
|
+
import { Icon } from '../icons/index.js';
|
|
9
9
|
import Tag from '../tag/Tag.svelte';
|
|
10
10
|
|
|
11
11
|
const { Story } = defineMeta({
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script module lang="ts">
|
|
2
2
|
import ArrowUpRight from 'phosphor-svelte/lib/ArrowUpRight';
|
|
3
|
-
import { Icon } from '
|
|
3
|
+
import { Icon } from '../icons/index.js';
|
|
4
4
|
import List from './List.svelte';
|
|
5
5
|
import Tag from '../tag/Tag.svelte';
|
|
6
6
|
import { defineMeta } from '@storybook/addon-svelte-csf';
|
|
@@ -200,7 +200,7 @@
|
|
|
200
200
|
<div class="space-y-2">
|
|
201
201
|
<h4 class="font-medium">Simple Usage:</h4>
|
|
202
202
|
<pre class="overflow-x-auto rounded bg-surface p-2 text-xs">
|
|
203
|
-
{`import { Modal } from '
|
|
203
|
+
{`import { Modal } from '../icons/index.js';
|
|
204
204
|
|
|
205
205
|
<Modal.Root>
|
|
206
206
|
<Modal.Trigger>Open</Modal.Trigger>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
import X from 'phosphor-svelte/lib/X';
|
|
3
|
-
import { Icon } from '
|
|
3
|
+
import { Icon } from '../../icons/index.js';
|
|
4
4
|
import { Dialog } from 'bits-ui';
|
|
5
5
|
import { scale } from 'svelte/transition';
|
|
6
6
|
import { twMerge } from 'tailwind-merge';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script module>
|
|
2
2
|
import Sparkle from 'phosphor-svelte/lib/Sparkle';
|
|
3
|
-
import { Icon } from '
|
|
3
|
+
import { Icon } from '../icons/index.js';
|
|
4
4
|
import NotificationPopup from './NotificationPopup.svelte';
|
|
5
5
|
import { defineMeta } from '@storybook/addon-svelte-csf';
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
import X from 'phosphor-svelte/lib/X';
|
|
3
|
-
import { Icon } from '
|
|
3
|
+
import { Icon } from '../icons/index.js';
|
|
4
4
|
import { IconButton } from '../icon-button/';
|
|
5
5
|
import { fade, fly } from 'svelte/transition';
|
|
6
6
|
import type { Snippet } from 'svelte';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script module lang="ts">
|
|
2
2
|
import Star from 'phosphor-svelte/lib/Star';
|
|
3
|
-
import { Icon } from '
|
|
3
|
+
import { Icon } from '../icons/index.js';
|
|
4
4
|
import SegmentedControlButtons from './SegmentedControlButtons.svelte';
|
|
5
5
|
import { defineMeta } from '@storybook/addon-svelte-csf';
|
|
6
6
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
import CaretUp from 'phosphor-svelte/lib/CaretUp';
|
|
3
3
|
import CaretDown from 'phosphor-svelte/lib/CaretDown';
|
|
4
|
-
import { Icon } from '
|
|
4
|
+
import { Icon } from '../../icons/index.js';
|
|
5
5
|
import { Select as SelectPrimitive } from 'bits-ui';
|
|
6
6
|
import type { ContentProps } from '../types';
|
|
7
7
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
import Check from 'phosphor-svelte/lib/Check';
|
|
3
|
-
import { Icon } from '
|
|
3
|
+
import { Icon } from '../../icons/index.js';
|
|
4
4
|
import { Select as SelectPrimitive } from 'bits-ui';
|
|
5
5
|
import type { ItemProps, ItemSlotProps } from '../types';
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
import CaretDown from 'phosphor-svelte/lib/CaretDown';
|
|
3
|
-
import { Icon } from '
|
|
3
|
+
import { Icon } from '../../icons/index.js';
|
|
4
4
|
import { Select as SelectPrimitive } from 'bits-ui';
|
|
5
5
|
import type { TriggerProps, IconSnippet } from '../types';
|
|
6
6
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
import Info from 'phosphor-svelte/lib/Info';
|
|
3
3
|
import PencilSimple from 'phosphor-svelte/lib/PencilSimple';
|
|
4
|
-
import { Icon } from '
|
|
4
|
+
import { Icon } from '../icons/index.js';
|
|
5
5
|
import IconButton from '../icon-button/IconButton.svelte';
|
|
6
6
|
import Spinner from '../spinner/Spinner.svelte';
|
|
7
7
|
import Tooltip from '../tooltip/Tooltip.svelte';
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import StopCircle from 'phosphor-svelte/lib/StopCircle';
|
|
6
6
|
import WifiSlash from 'phosphor-svelte/lib/WifiSlash';
|
|
7
7
|
import WarningCircle from 'phosphor-svelte/lib/WarningCircle';
|
|
8
|
-
import { Icon } from '
|
|
8
|
+
import { Icon } from '../icons/index.js';
|
|
9
9
|
import StatusBadge from '../status-badge/StatusBadge.svelte';
|
|
10
10
|
import Tooltip from '../tooltip/Tooltip.svelte';
|
|
11
11
|
import ProgressCircle from '../progress-circle/ProgressCircle.svelte';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
import Check from 'phosphor-svelte/lib/Check';
|
|
3
|
-
import { Icon } from '
|
|
3
|
+
import { Icon } from '../../icons/index.js';
|
|
4
4
|
import type { Snippet } from 'svelte';
|
|
5
5
|
import { getContext } from 'svelte';
|
|
6
6
|
import type { StepState } from '../';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script module lang="ts">
|
|
2
2
|
import DownloadSimple from 'phosphor-svelte/lib/DownloadSimple';
|
|
3
|
-
import { Icon } from '
|
|
3
|
+
import { Icon } from '../icons/index.js';
|
|
4
4
|
import { defineMeta } from '@storybook/addon-svelte-csf';
|
|
5
5
|
import ToggleIconButton from './ToggleIconButton.svelte';
|
|
6
6
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,54 +1,54 @@
|
|
|
1
|
-
export * from './components/activity/';
|
|
2
|
-
export * from './components/avatar/';
|
|
3
|
-
export * from './components/card/';
|
|
4
|
-
export * from './components/banner/';
|
|
5
|
-
export * from './components/button/';
|
|
6
|
-
export * as Collapsible from './components/collapsible/';
|
|
7
|
-
export * as Combobox from './components/combobox/';
|
|
8
|
-
export * from './components/graphs';
|
|
9
|
-
export * from './components/datepicker/';
|
|
10
|
-
export * from './components/divider/';
|
|
11
|
-
export * as Drawer from './components/drawer/';
|
|
12
|
-
export * from './components/dropdown/';
|
|
13
|
-
export * from './components/empty-content/';
|
|
14
|
-
export * from './components/icons/';
|
|
15
|
-
export * from './components/icons/custom/';
|
|
16
|
-
export * from './components/icon-button/';
|
|
17
|
-
export * from './components/image';
|
|
18
|
-
export * from './components/input/';
|
|
19
|
-
export * from './components/list/';
|
|
20
|
-
export * as Legend from './components/legend/';
|
|
21
|
-
export * from './components/logo/';
|
|
22
|
-
export * from './components/markdown/';
|
|
23
|
-
export * as Modal from './components/modal/';
|
|
24
|
-
export * from './components/manual-cfu-counter/';
|
|
25
|
-
export * from './components/multi-cfu-counter/';
|
|
26
|
-
export * from './components/notification-popup/';
|
|
27
|
-
export * from './components/notifications/';
|
|
28
|
-
export * from './components/pill/';
|
|
29
|
-
export * from './components/progress-circle/';
|
|
30
|
-
export * from './components/required-status-indicator/';
|
|
31
|
-
export * from './components/segmented-control-buttons/';
|
|
32
|
-
export * as Select from './components/select/';
|
|
33
|
-
export * from './components/skeleton-loader/';
|
|
34
|
-
export * from './components/slider/';
|
|
35
|
-
export * from './components/spinner/';
|
|
36
|
-
export * from './components/stat-card/';
|
|
37
|
-
export * from './components/status-badge/';
|
|
38
|
-
export * from './components/stepper/';
|
|
39
|
-
export * from './components/table/';
|
|
40
|
-
export * from './components/tabs/';
|
|
41
|
-
export * from './components/tag/';
|
|
42
|
-
export * from './components/toast/';
|
|
43
|
-
export * from './components/toggle-icon-button/';
|
|
44
|
-
export * from './components/textarea/index';
|
|
45
|
-
export * from './components/tooltip/';
|
|
46
|
-
export * from './components/toggle/';
|
|
47
|
-
export * from './components/checkbox/';
|
|
48
|
-
export { tokens } from './tokens';
|
|
49
|
-
export { notifications } from './notifications';
|
|
50
|
-
export { colors, borderColor, textColor, backgroundColor, boxShadow, outlineColor } from './tokens';
|
|
51
|
-
export * as TokensColors from './tokens/colors';
|
|
52
|
-
export * as TokensTypography from './tokens/typography';
|
|
53
|
-
export { default as echarts, init } from './echarts-config';
|
|
1
|
+
export * from './components/activity/index.js';
|
|
2
|
+
export * from './components/avatar/index.js';
|
|
3
|
+
export * from './components/card/index.js';
|
|
4
|
+
export * from './components/banner/index.js';
|
|
5
|
+
export * from './components/button/index.js';
|
|
6
|
+
export * as Collapsible from './components/collapsible/index.js';
|
|
7
|
+
export * as Combobox from './components/combobox/index.js';
|
|
8
|
+
export * from './components/graphs/index.js';
|
|
9
|
+
export * from './components/datepicker/index.js';
|
|
10
|
+
export * from './components/divider/index.js';
|
|
11
|
+
export * as Drawer from './components/drawer/index.js';
|
|
12
|
+
export * from './components/dropdown/index.js';
|
|
13
|
+
export * from './components/empty-content/index.js';
|
|
14
|
+
export * from './components/icons/index.js';
|
|
15
|
+
export * from './components/icons/custom/index.js';
|
|
16
|
+
export * from './components/icon-button/index.js';
|
|
17
|
+
export * from './components/image/index.js';
|
|
18
|
+
export * from './components/input/index.js';
|
|
19
|
+
export * from './components/list/index.js';
|
|
20
|
+
export * as Legend from './components/legend/index.js';
|
|
21
|
+
export * from './components/logo/index.js';
|
|
22
|
+
export * from './components/markdown/index.js';
|
|
23
|
+
export * as Modal from './components/modal/index.js';
|
|
24
|
+
export * from './components/manual-cfu-counter/index.js';
|
|
25
|
+
export * from './components/multi-cfu-counter/index.js';
|
|
26
|
+
export * from './components/notification-popup/index.js';
|
|
27
|
+
export * from './components/notifications/index.js';
|
|
28
|
+
export * from './components/pill/index.js';
|
|
29
|
+
export * from './components/progress-circle/index.js';
|
|
30
|
+
export * from './components/required-status-indicator/index.js';
|
|
31
|
+
export * from './components/segmented-control-buttons/index.js';
|
|
32
|
+
export * as Select from './components/select/index.js';
|
|
33
|
+
export * from './components/skeleton-loader/index.js';
|
|
34
|
+
export * from './components/slider/index.js';
|
|
35
|
+
export * from './components/spinner/index.js';
|
|
36
|
+
export * from './components/stat-card/index.js';
|
|
37
|
+
export * from './components/status-badge/index.js';
|
|
38
|
+
export * from './components/stepper/index.js';
|
|
39
|
+
export * from './components/table/index.js';
|
|
40
|
+
export * from './components/tabs/index.js';
|
|
41
|
+
export * from './components/tag/index.js';
|
|
42
|
+
export * from './components/toast/index.js';
|
|
43
|
+
export * from './components/toggle-icon-button/index.js';
|
|
44
|
+
export * from './components/textarea/index.js';
|
|
45
|
+
export * from './components/tooltip/index.js';
|
|
46
|
+
export * from './components/toggle/index.js';
|
|
47
|
+
export * from './components/checkbox/index.js';
|
|
48
|
+
export { tokens } from './tokens.js';
|
|
49
|
+
export { notifications } from './notifications.js';
|
|
50
|
+
export { colors, borderColor, textColor, backgroundColor, boxShadow, outlineColor, } from './tokens.js';
|
|
51
|
+
export * as TokensColors from './tokens/colors.js';
|
|
52
|
+
export * as TokensTypography from './tokens/typography.js';
|
|
53
|
+
export { default as echarts, init } from './echarts-config.js';
|
|
54
54
|
export type { ECharts, EChartsOption, SeriesOption, LineSeriesOption, BarSeriesOption, ECElementEvent, CallbackDataParams, YAXisOption, } from './echarts-config';
|
package/dist/index.js
CHANGED
|
@@ -1,57 +1,57 @@
|
|
|
1
1
|
// Components
|
|
2
|
-
export * from './components/activity/';
|
|
3
|
-
export * from './components/avatar/';
|
|
4
|
-
export * from './components/card/';
|
|
5
|
-
export * from './components/banner/';
|
|
6
|
-
export * from './components/button/';
|
|
7
|
-
export * as Collapsible from './components/collapsible/';
|
|
8
|
-
export * as Combobox from './components/combobox/';
|
|
9
|
-
export * from './components/graphs';
|
|
10
|
-
export * from './components/datepicker/';
|
|
11
|
-
export * from './components/divider/';
|
|
12
|
-
export * as Drawer from './components/drawer/';
|
|
13
|
-
export * from './components/dropdown/';
|
|
14
|
-
export * from './components/empty-content/';
|
|
15
|
-
export * from './components/icons/';
|
|
16
|
-
export * from './components/icons/custom/';
|
|
17
|
-
export * from './components/icon-button/';
|
|
18
|
-
export * from './components/image';
|
|
19
|
-
export * from './components/input/';
|
|
20
|
-
export * from './components/list/';
|
|
21
|
-
export * as Legend from './components/legend/';
|
|
22
|
-
export * from './components/logo/';
|
|
23
|
-
export * from './components/markdown/';
|
|
24
|
-
export * as Modal from './components/modal/';
|
|
25
|
-
export * from './components/manual-cfu-counter/';
|
|
26
|
-
export * from './components/multi-cfu-counter/';
|
|
27
|
-
export * from './components/notification-popup/';
|
|
28
|
-
export * from './components/notifications/';
|
|
29
|
-
export * from './components/pill/';
|
|
30
|
-
export * from './components/progress-circle/';
|
|
31
|
-
export * from './components/required-status-indicator/';
|
|
32
|
-
export * from './components/segmented-control-buttons/';
|
|
33
|
-
export * as Select from './components/select/';
|
|
34
|
-
export * from './components/skeleton-loader/';
|
|
35
|
-
export * from './components/slider/';
|
|
36
|
-
export * from './components/spinner/';
|
|
37
|
-
export * from './components/stat-card/';
|
|
38
|
-
export * from './components/status-badge/';
|
|
39
|
-
export * from './components/stepper/';
|
|
40
|
-
export * from './components/table/';
|
|
41
|
-
export * from './components/tabs/';
|
|
42
|
-
export * from './components/tag/';
|
|
43
|
-
export * from './components/toast/';
|
|
44
|
-
export * from './components/toggle-icon-button/';
|
|
45
|
-
export * from './components/textarea/index';
|
|
46
|
-
export * from './components/tooltip/';
|
|
47
|
-
export * from './components/toggle/';
|
|
48
|
-
export * from './components/checkbox/';
|
|
2
|
+
export * from './components/activity/index.js';
|
|
3
|
+
export * from './components/avatar/index.js';
|
|
4
|
+
export * from './components/card/index.js';
|
|
5
|
+
export * from './components/banner/index.js';
|
|
6
|
+
export * from './components/button/index.js';
|
|
7
|
+
export * as Collapsible from './components/collapsible/index.js';
|
|
8
|
+
export * as Combobox from './components/combobox/index.js';
|
|
9
|
+
export * from './components/graphs/index.js';
|
|
10
|
+
export * from './components/datepicker/index.js';
|
|
11
|
+
export * from './components/divider/index.js';
|
|
12
|
+
export * as Drawer from './components/drawer/index.js';
|
|
13
|
+
export * from './components/dropdown/index.js';
|
|
14
|
+
export * from './components/empty-content/index.js';
|
|
15
|
+
export * from './components/icons/index.js';
|
|
16
|
+
export * from './components/icons/custom/index.js';
|
|
17
|
+
export * from './components/icon-button/index.js';
|
|
18
|
+
export * from './components/image/index.js';
|
|
19
|
+
export * from './components/input/index.js';
|
|
20
|
+
export * from './components/list/index.js';
|
|
21
|
+
export * as Legend from './components/legend/index.js';
|
|
22
|
+
export * from './components/logo/index.js';
|
|
23
|
+
export * from './components/markdown/index.js';
|
|
24
|
+
export * as Modal from './components/modal/index.js';
|
|
25
|
+
export * from './components/manual-cfu-counter/index.js';
|
|
26
|
+
export * from './components/multi-cfu-counter/index.js';
|
|
27
|
+
export * from './components/notification-popup/index.js';
|
|
28
|
+
export * from './components/notifications/index.js';
|
|
29
|
+
export * from './components/pill/index.js';
|
|
30
|
+
export * from './components/progress-circle/index.js';
|
|
31
|
+
export * from './components/required-status-indicator/index.js';
|
|
32
|
+
export * from './components/segmented-control-buttons/index.js';
|
|
33
|
+
export * as Select from './components/select/index.js';
|
|
34
|
+
export * from './components/skeleton-loader/index.js';
|
|
35
|
+
export * from './components/slider/index.js';
|
|
36
|
+
export * from './components/spinner/index.js';
|
|
37
|
+
export * from './components/stat-card/index.js';
|
|
38
|
+
export * from './components/status-badge/index.js';
|
|
39
|
+
export * from './components/stepper/index.js';
|
|
40
|
+
export * from './components/table/index.js';
|
|
41
|
+
export * from './components/tabs/index.js';
|
|
42
|
+
export * from './components/tag/index.js';
|
|
43
|
+
export * from './components/toast/index.js';
|
|
44
|
+
export * from './components/toggle-icon-button/index.js';
|
|
45
|
+
export * from './components/textarea/index.js';
|
|
46
|
+
export * from './components/tooltip/index.js';
|
|
47
|
+
export * from './components/toggle/index.js';
|
|
48
|
+
export * from './components/checkbox/index.js';
|
|
49
49
|
// Styles and Tokens
|
|
50
|
-
export { tokens } from './tokens';
|
|
51
|
-
export { notifications } from './notifications';
|
|
52
|
-
export { colors, borderColor, textColor, backgroundColor, boxShadow, outlineColor } from './tokens';
|
|
50
|
+
export { tokens } from './tokens.js';
|
|
51
|
+
export { notifications } from './notifications.js';
|
|
52
|
+
export { colors, borderColor, textColor, backgroundColor, boxShadow, outlineColor, } from './tokens.js';
|
|
53
53
|
// Export tokens modules for granular imports
|
|
54
|
-
export * as TokensColors from './tokens/colors';
|
|
55
|
-
export * as TokensTypography from './tokens/typography';
|
|
54
|
+
export * as TokensColors from './tokens/colors.js';
|
|
55
|
+
export * as TokensTypography from './tokens/typography.js';
|
|
56
56
|
// Export echarts configuration
|
|
57
|
-
export { default as echarts, init } from './echarts-config';
|
|
57
|
+
export { default as echarts, init } from './echarts-config.js';
|