@number10/phaserjsx 4.4.0 → 4.5.0
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 +7 -2
- package/dist/colors/color-presets.d.ts +1 -1
- package/dist/colors/color-presets.d.ts.map +1 -1
- package/dist/colors/color-types.d.ts +20 -8
- package/dist/colors/color-types.d.ts.map +1 -1
- package/dist/colors/color-utils.d.ts +29 -27
- package/dist/colors/color-utils.d.ts.map +1 -1
- package/dist/colors/index.d.ts +3 -3
- package/dist/colors/index.d.ts.map +1 -1
- package/dist/colors/preset-manager.d.ts.map +1 -1
- package/dist/colors/use-colors.d.ts +0 -4
- package/dist/colors/use-colors.d.ts.map +1 -1
- package/dist/components/custom/ActivityIndicator.d.ts +43 -0
- package/dist/components/custom/ActivityIndicator.d.ts.map +1 -0
- package/dist/components/custom/BottomSheet.d.ts +86 -0
- package/dist/components/custom/BottomSheet.d.ts.map +1 -0
- package/dist/components/custom/Button.d.ts +2 -0
- package/dist/components/custom/Button.d.ts.map +1 -1
- package/dist/components/custom/ColorPicker.d.ts +72 -0
- package/dist/components/custom/ColorPicker.d.ts.map +1 -0
- package/dist/components/custom/Icon.d.ts.map +1 -1
- package/dist/components/custom/Icon.test.d.ts +2 -0
- package/dist/components/custom/Icon.test.d.ts.map +1 -0
- package/dist/components/custom/ListBox.d.ts +77 -0
- package/dist/components/custom/ListBox.d.ts.map +1 -0
- package/dist/components/custom/MenuButton.d.ts +40 -0
- package/dist/components/custom/MenuButton.d.ts.map +1 -0
- package/dist/components/custom/NumberInput.d.ts +143 -0
- package/dist/components/custom/NumberInput.d.ts.map +1 -0
- package/dist/components/custom/PalettePicker.d.ts +96 -0
- package/dist/components/custom/PalettePicker.d.ts.map +1 -0
- package/dist/components/custom/ProgressView.d.ts +47 -0
- package/dist/components/custom/ProgressView.d.ts.map +1 -0
- package/dist/components/custom/RatingBar.d.ts +48 -0
- package/dist/components/custom/RatingBar.d.ts.map +1 -0
- package/dist/components/custom/ScrollView.d.ts.map +1 -1
- package/dist/components/custom/SegmentedControl.d.ts +99 -0
- package/dist/components/custom/SegmentedControl.d.ts.map +1 -0
- package/dist/components/custom/Toast.d.ts +89 -0
- package/dist/components/custom/Toast.d.ts.map +1 -0
- package/dist/components/custom/Toolbar.d.ts +134 -0
- package/dist/components/custom/Toolbar.d.ts.map +1 -0
- package/dist/components/custom/WheelPicker.d.ts +63 -0
- package/dist/components/custom/WheelPicker.d.ts.map +1 -0
- package/dist/components/custom/index.cjs +39 -1
- package/dist/components/custom/index.d.ts +18 -5
- package/dist/components/custom/index.d.ts.map +1 -1
- package/dist/components/custom/index.js +2 -2
- package/dist/components/index.d.ts +16 -5
- package/dist/components/index.d.ts.map +1 -1
- package/dist/{custom-BPY0TbuS.js → custom-pRNJ0_kS.js} +16820 -28213
- package/dist/custom-pRNJ0_kS.js.map +1 -0
- package/dist/{custom-Bnit70lx.cjs → custom-rkdLsk0U.cjs} +10167 -21201
- package/dist/custom-rkdLsk0U.cjs.map +1 -0
- package/dist/design-tokens/component-size-presets.d.ts +52 -0
- package/dist/design-tokens/component-size-presets.d.ts.map +1 -0
- package/dist/design-tokens/index.d.ts +2 -0
- package/dist/design-tokens/index.d.ts.map +1 -1
- package/dist/dev-config.d.ts.map +1 -1
- package/dist/index.cjs +61 -256
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -244
- package/dist/index.js.map +1 -1
- package/dist/scripts/generate-icon-loaders.js +27 -1
- package/dist/scripts/generate-icons.d.ts.map +1 -1
- package/dist/scripts/generate-icons.js +27 -1
- package/dist/theme-custom.d.ts +238 -0
- package/dist/theme-custom.d.ts.map +1 -1
- package/dist/theme-defaults.d.ts.map +1 -1
- package/dist/theme.d.ts +9 -0
- package/dist/theme.d.ts.map +1 -1
- package/package.json +1 -3
- package/dist/custom-BPY0TbuS.js.map +0 -1
- package/dist/custom-Bnit70lx.cjs.map +0 -1
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
import { ViewProps } from '..';
|
|
2
|
+
import { PartialTheme, ViewTheme } from '../../theme-base';
|
|
3
|
+
import { ChildrenType } from '../../types';
|
|
4
|
+
import { VNodeLike } from '../../vdom';
|
|
5
|
+
import { ButtonProps } from '../index';
|
|
6
|
+
import { ButtonSize, ButtonVariant } from './Button';
|
|
7
|
+
import { ContextMenuItem } from './Popover';
|
|
8
|
+
export type ToolbarOrientation = 'horizontal' | 'vertical';
|
|
9
|
+
export type ToolbarDensity = 'compact' | 'normal';
|
|
10
|
+
export type ToolbarItemType = 'action' | 'toggle' | 'separator' | 'menu';
|
|
11
|
+
export interface ToolbarLabels {
|
|
12
|
+
overflow?: string;
|
|
13
|
+
menuIndicator?: string;
|
|
14
|
+
}
|
|
15
|
+
interface ToolbarBaseItem {
|
|
16
|
+
/** Unique item id. Required for action, toggle, and menu items. */
|
|
17
|
+
id?: string;
|
|
18
|
+
/** Item type. Omitted type defaults to action. */
|
|
19
|
+
type?: ToolbarItemType;
|
|
20
|
+
/** Visible or tooltip label. */
|
|
21
|
+
label?: string;
|
|
22
|
+
/** Optional icon/glyph content. */
|
|
23
|
+
icon?: ChildrenType;
|
|
24
|
+
/** Full custom button content. Takes precedence over icon and label. */
|
|
25
|
+
children?: ChildrenType;
|
|
26
|
+
/** Hide generated label text while keeping label available for tooltips. */
|
|
27
|
+
showLabel?: boolean;
|
|
28
|
+
/** Disabled item state. */
|
|
29
|
+
disabled?: boolean;
|
|
30
|
+
/** Tooltip text. Falls back to label when labels are hidden. */
|
|
31
|
+
tooltip?: string;
|
|
32
|
+
/** Item-specific button variant. */
|
|
33
|
+
buttonVariant?: ButtonVariant;
|
|
34
|
+
/** Item-specific button size. */
|
|
35
|
+
buttonSize?: ButtonSize;
|
|
36
|
+
/** Button prop overrides. */
|
|
37
|
+
buttonProps?: Omit<ButtonProps, 'children' | 'label' | 'onClick' | 'disabled'>;
|
|
38
|
+
/** Called before Toolbar onSelect. */
|
|
39
|
+
onSelect?: (id: string) => void;
|
|
40
|
+
}
|
|
41
|
+
export interface ToolbarActionItem extends ToolbarBaseItem {
|
|
42
|
+
type?: 'action';
|
|
43
|
+
id: string;
|
|
44
|
+
}
|
|
45
|
+
export interface ToolbarToggleItem extends ToolbarBaseItem {
|
|
46
|
+
type: 'toggle';
|
|
47
|
+
id: string;
|
|
48
|
+
/** Controlled pressed state for this toggle. */
|
|
49
|
+
pressed?: boolean;
|
|
50
|
+
/** Initial pressed state for uncontrolled toolbars. */
|
|
51
|
+
defaultPressed?: boolean;
|
|
52
|
+
/** Allow clicking an active toggle to clear it. */
|
|
53
|
+
allowDeselect?: boolean;
|
|
54
|
+
/** Called when the toggle pressed state changes. */
|
|
55
|
+
onToggle?: (pressed: boolean, id: string) => void;
|
|
56
|
+
}
|
|
57
|
+
export interface ToolbarMenuItem extends ToolbarBaseItem {
|
|
58
|
+
type: 'menu';
|
|
59
|
+
id: string;
|
|
60
|
+
/** Future-facing menu item payload; render with MenuButton when overlay behavior is needed. */
|
|
61
|
+
items?: ContextMenuItem[];
|
|
62
|
+
}
|
|
63
|
+
export interface ToolbarSeparatorItem {
|
|
64
|
+
type: 'separator';
|
|
65
|
+
id?: string;
|
|
66
|
+
length?: ViewProps['width'];
|
|
67
|
+
thickness?: number;
|
|
68
|
+
}
|
|
69
|
+
export type ToolbarItem = ToolbarActionItem | ToolbarToggleItem | ToolbarMenuItem | ToolbarSeparatorItem;
|
|
70
|
+
export interface ToolbarThemeSlot extends ViewTheme {
|
|
71
|
+
orientation?: ToolbarOrientation;
|
|
72
|
+
density?: ToolbarDensity;
|
|
73
|
+
itemWidth?: ViewTheme['width'];
|
|
74
|
+
itemHeight?: ViewTheme['height'];
|
|
75
|
+
compactItemWidth?: ViewTheme['width'];
|
|
76
|
+
compactItemHeight?: ViewTheme['height'];
|
|
77
|
+
itemGap?: number;
|
|
78
|
+
groupGap?: number;
|
|
79
|
+
buttonVariant?: ButtonVariant;
|
|
80
|
+
activeButtonVariant?: ButtonVariant;
|
|
81
|
+
menuButtonVariant?: ButtonVariant;
|
|
82
|
+
buttonSize?: ButtonSize;
|
|
83
|
+
compactButtonSize?: ButtonSize;
|
|
84
|
+
textStyle?: Phaser.Types.GameObjects.Text.TextStyle;
|
|
85
|
+
activeTextStyle?: Phaser.Types.GameObjects.Text.TextStyle;
|
|
86
|
+
disabledTextStyle?: Phaser.Types.GameObjects.Text.TextStyle;
|
|
87
|
+
menuIndicatorStyle?: Phaser.Types.GameObjects.Text.TextStyle;
|
|
88
|
+
iconSize?: number;
|
|
89
|
+
compactIconSize?: number;
|
|
90
|
+
separatorColor?: number;
|
|
91
|
+
separatorThickness?: number;
|
|
92
|
+
separatorLength?: ViewProps['width'];
|
|
93
|
+
disabledAlpha?: number;
|
|
94
|
+
labels?: ToolbarLabels;
|
|
95
|
+
}
|
|
96
|
+
export interface ToolbarProps extends Omit<ViewProps, 'children'> {
|
|
97
|
+
/** Toolbar items. */
|
|
98
|
+
items: ToolbarItem[];
|
|
99
|
+
/** Active tool id in controlled mode. */
|
|
100
|
+
activeId?: string;
|
|
101
|
+
/** Initial active tool id in uncontrolled mode. */
|
|
102
|
+
defaultActiveId?: string;
|
|
103
|
+
/** Called when an action, toggle, or menu trigger is selected. */
|
|
104
|
+
onSelect?: (id: string, item: Exclude<ToolbarItem, ToolbarSeparatorItem>) => void;
|
|
105
|
+
/** Called when a toggle item changes pressed state. */
|
|
106
|
+
onToggle?: (id: string, pressed: boolean, item: ToolbarToggleItem) => void;
|
|
107
|
+
/** Layout orientation. */
|
|
108
|
+
orientation?: ToolbarOrientation;
|
|
109
|
+
/** Density preset. */
|
|
110
|
+
density?: ToolbarDensity;
|
|
111
|
+
/** Hide generated labels for compact icon-only toolbars. */
|
|
112
|
+
showLabels?: boolean;
|
|
113
|
+
/** Disable the entire toolbar. */
|
|
114
|
+
disabled?: boolean;
|
|
115
|
+
/** Localized labels. */
|
|
116
|
+
labels?: ToolbarLabels;
|
|
117
|
+
/** Theme overrides. */
|
|
118
|
+
theme?: PartialTheme;
|
|
119
|
+
}
|
|
120
|
+
export declare function isToolbarSeparatorItem(item: ToolbarItem): item is ToolbarSeparatorItem;
|
|
121
|
+
export declare function isToolbarToggleItem(item: ToolbarItem): item is ToolbarToggleItem;
|
|
122
|
+
export declare function isToolbarMenuItem(item: ToolbarItem): item is ToolbarMenuItem;
|
|
123
|
+
export declare function getToolbarItemId(item: ToolbarItem, index: number): string;
|
|
124
|
+
export declare function resolveToolbarActiveId(items: ToolbarItem[], activeId?: string): string | undefined;
|
|
125
|
+
/**
|
|
126
|
+
* Toolbar component
|
|
127
|
+
*/
|
|
128
|
+
export declare function Toolbar(props: ToolbarProps): VNodeLike;
|
|
129
|
+
/**
|
|
130
|
+
* ToolButtonGroup is an alias for Toolbar when a button-group name fits the UI better.
|
|
131
|
+
*/
|
|
132
|
+
export declare function ToolButtonGroup(props: ToolbarProps): VNodeLike;
|
|
133
|
+
export {};
|
|
134
|
+
//# sourceMappingURL=Toolbar.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Toolbar.d.ts","sourceRoot":"","sources":["../../../src/components/custom/Toolbar.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { PartialTheme, ViewTheme } from '../../theme-base';
|
|
2
|
+
import { ChildrenType } from '../../types';
|
|
3
|
+
import { VNodeLike } from '../../vdom';
|
|
4
|
+
import { ViewProps } from '../index';
|
|
5
|
+
export interface WheelPickerLabels {
|
|
6
|
+
empty?: string;
|
|
7
|
+
}
|
|
8
|
+
export type WheelPickerSize = 'small' | 'medium' | 'large';
|
|
9
|
+
export interface WheelPickerItem {
|
|
10
|
+
value: string;
|
|
11
|
+
label: string;
|
|
12
|
+
disabled?: boolean;
|
|
13
|
+
}
|
|
14
|
+
export interface WheelPickerItemRenderProps {
|
|
15
|
+
item: WheelPickerItem;
|
|
16
|
+
selected: boolean;
|
|
17
|
+
disabled: boolean;
|
|
18
|
+
index: number;
|
|
19
|
+
distanceFromCenter: number;
|
|
20
|
+
textStyle?: Phaser.Types.GameObjects.Text.TextStyle;
|
|
21
|
+
}
|
|
22
|
+
export interface WheelPickerThemeSlot extends ViewTheme {
|
|
23
|
+
size?: WheelPickerSize;
|
|
24
|
+
itemHeight?: number;
|
|
25
|
+
visibleItems?: number;
|
|
26
|
+
itemPadding?: ViewTheme['padding'];
|
|
27
|
+
textColor?: string;
|
|
28
|
+
textStyle?: Phaser.Types.GameObjects.Text.TextStyle;
|
|
29
|
+
selectedTextStyle?: Phaser.Types.GameObjects.Text.TextStyle;
|
|
30
|
+
disabledTextStyle?: Phaser.Types.GameObjects.Text.TextStyle;
|
|
31
|
+
overlayAlpha?: number;
|
|
32
|
+
disabledAlpha?: number;
|
|
33
|
+
labels?: WheelPickerLabels;
|
|
34
|
+
}
|
|
35
|
+
export interface WheelPickerProps extends Omit<ViewProps, 'children'> {
|
|
36
|
+
/** Available items. */
|
|
37
|
+
items: WheelPickerItem[];
|
|
38
|
+
/** Selected value in controlled mode. */
|
|
39
|
+
value?: string;
|
|
40
|
+
/** Initial selected value in uncontrolled mode. */
|
|
41
|
+
defaultValue?: string;
|
|
42
|
+
/** Called when the snapped item changes. */
|
|
43
|
+
onChange?: (value: string) => void;
|
|
44
|
+
/** Number of items visible at once (odd numbers look best: 3, 5, 7). */
|
|
45
|
+
visibleItems?: number;
|
|
46
|
+
/** Size preset controlling item height and text sizing. */
|
|
47
|
+
size?: WheelPickerSize;
|
|
48
|
+
/** Loop items infinitely. */
|
|
49
|
+
loop?: boolean;
|
|
50
|
+
/** Render custom item content. */
|
|
51
|
+
renderItem?: (props: WheelPickerItemRenderProps) => ChildrenType;
|
|
52
|
+
/** Localized labels. */
|
|
53
|
+
labels?: WheelPickerLabels;
|
|
54
|
+
/** Disabled state. */
|
|
55
|
+
disabled?: boolean;
|
|
56
|
+
/** Theme overrides. */
|
|
57
|
+
theme?: PartialTheme;
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* WheelPicker — scrollable snap-to-center picker with fade edges.
|
|
61
|
+
*/
|
|
62
|
+
export declare function WheelPicker(props: WheelPickerProps): VNodeLike;
|
|
63
|
+
//# sourceMappingURL=WheelPicker.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"WheelPicker.d.ts","sourceRoot":"","sources":["../../../src/components/custom/WheelPicker.tsx"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAA;AAC/D,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AAC/C,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,YAAY,CAAA;AAC3C,OAAO,EAAc,KAAK,SAAS,EAAE,MAAM,UAAU,CAAA;AAKrD,MAAM,WAAW,iBAAiB;IAChC,KAAK,CAAC,EAAE,MAAM,CAAA;CACf;AAED,MAAM,MAAM,eAAe,GAAG,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAA;AAE1D,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB;AAED,MAAM,WAAW,0BAA0B;IACzC,IAAI,EAAE,eAAe,CAAA;IACrB,QAAQ,EAAE,OAAO,CAAA;IACjB,QAAQ,EAAE,OAAO,CAAA;IACjB,KAAK,EAAE,MAAM,CAAA;IACb,kBAAkB,EAAE,MAAM,CAAA;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,SAAS,CAAA;CACpD;AAED,MAAM,WAAW,oBAAqB,SAAQ,SAAS;IACrD,IAAI,CAAC,EAAE,eAAe,CAAA;IACtB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,WAAW,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAA;IAClC,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,SAAS,CAAA;IACnD,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,SAAS,CAAA;IAC3D,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,SAAS,CAAA;IAC3D,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,MAAM,CAAC,EAAE,iBAAiB,CAAA;CAC3B;AAED,MAAM,WAAW,gBAAiB,SAAQ,IAAI,CAAC,SAAS,EAAE,UAAU,CAAC;IACnE,uBAAuB;IACvB,KAAK,EAAE,eAAe,EAAE,CAAA;IACxB,yCAAyC;IACzC,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,mDAAmD;IACnD,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,4CAA4C;IAC5C,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAA;IAClC,wEAAwE;IACxE,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,2DAA2D;IAC3D,IAAI,CAAC,EAAE,eAAe,CAAA;IACtB,6BAA6B;IAC7B,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,kCAAkC;IAClC,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,0BAA0B,KAAK,YAAY,CAAA;IAChE,wBAAwB;IACxB,MAAM,CAAC,EAAE,iBAAiB,CAAA;IAC1B,sBAAsB;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,uBAAuB;IACvB,KAAK,CAAC,EAAE,YAAY,CAAA;CACrB;AAoCD;;GAEG;AACH,wBAAgB,WAAW,CAAC,KAAK,EAAE,gBAAgB,GAAG,SAAS,CAwN9D"}
|
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
-
const require_custom = require("../../custom-
|
|
2
|
+
const require_custom = require("../../custom-rkdLsk0U.cjs");
|
|
3
3
|
exports.Accordion = require_custom.Accordion;
|
|
4
|
+
exports.ActivityIndicator = require_custom.ActivityIndicator;
|
|
4
5
|
exports.AlertDialog = require_custom.AlertDialog;
|
|
5
6
|
exports.Badge = require_custom.Badge;
|
|
7
|
+
exports.BottomSheet = require_custom.BottomSheet;
|
|
8
|
+
exports.BottomSheetDepth = require_custom.BottomSheetDepth;
|
|
9
|
+
exports.BottomSheetHandle = require_custom.BottomSheetHandle;
|
|
6
10
|
exports.Button = require_custom.Button;
|
|
7
11
|
exports.CharText = require_custom.CharText;
|
|
8
12
|
exports.CharTextInput = require_custom.CharTextInput;
|
|
9
13
|
exports.Checkbox = require_custom.Checkbox;
|
|
14
|
+
exports.ColorPicker = require_custom.ColorPicker;
|
|
10
15
|
exports.ContextMenu = require_custom.ContextMenu;
|
|
11
16
|
exports.DebugPanel = require_custom.DebugPanel;
|
|
12
17
|
exports.Dialog = require_custom.Dialog;
|
|
@@ -15,35 +20,68 @@ exports.Dropdown = require_custom.Dropdown;
|
|
|
15
20
|
exports.Icon = require_custom.Icon;
|
|
16
21
|
exports.Image = require_custom.Image;
|
|
17
22
|
exports.Joystick = require_custom.Joystick;
|
|
23
|
+
exports.ListBox = require_custom.ListBox;
|
|
24
|
+
exports.MenuButton = require_custom.MenuButton;
|
|
18
25
|
exports.Modal = require_custom.Modal;
|
|
19
26
|
exports.NineSlice = require_custom.NineSlice;
|
|
20
27
|
exports.NineSliceButton = require_custom.NineSliceButton;
|
|
28
|
+
exports.NotificationStack = require_custom.NotificationStack;
|
|
29
|
+
exports.NumberInput = require_custom.NumberInput;
|
|
30
|
+
exports.NumberInputIndicator = require_custom.NumberInputIndicator;
|
|
31
|
+
exports.PalettePicker = require_custom.PalettePicker;
|
|
21
32
|
exports.Particles = require_custom.Particles;
|
|
22
33
|
exports.Popover = require_custom.Popover;
|
|
23
34
|
exports.Portal = require_custom.Portal;
|
|
24
35
|
exports.ProgressBar = require_custom.ProgressBar;
|
|
36
|
+
exports.ProgressView = require_custom.ProgressView;
|
|
25
37
|
exports.RadioButton = require_custom.RadioButton;
|
|
26
38
|
exports.RadioGroup = require_custom.RadioGroup;
|
|
27
39
|
exports.RangeSlider = require_custom.RangeSlider;
|
|
40
|
+
exports.RatingBar = require_custom.RatingBar;
|
|
28
41
|
exports.RefOriginView = require_custom.RefOriginView;
|
|
29
42
|
exports.ScrollSlider = require_custom.ScrollSlider;
|
|
30
43
|
exports.ScrollView = require_custom.ScrollView;
|
|
44
|
+
exports.SegmentedControl = require_custom.SegmentedControl;
|
|
31
45
|
exports.Sidebar = require_custom.Sidebar;
|
|
32
46
|
exports.Slider = require_custom.Slider;
|
|
33
47
|
exports.Tab = require_custom.Tab;
|
|
34
48
|
exports.TabPanel = require_custom.TabPanel;
|
|
35
49
|
exports.Tabs = require_custom.Tabs;
|
|
36
50
|
exports.Tag = require_custom.Tag;
|
|
51
|
+
exports.Toast = require_custom.Toast;
|
|
37
52
|
exports.Toggle = require_custom.Toggle;
|
|
53
|
+
exports.ToolButtonGroup = require_custom.ToolButtonGroup;
|
|
54
|
+
exports.Toolbar = require_custom.Toolbar;
|
|
38
55
|
exports.TransformOriginView = require_custom.TransformOriginView;
|
|
56
|
+
exports.WheelPicker = require_custom.WheelPicker;
|
|
39
57
|
exports.WrapText = require_custom.WrapText;
|
|
40
58
|
exports.calculateOverlayPosition = require_custom.calculateOverlayPosition;
|
|
41
59
|
exports.calculateSliderSize = require_custom.calculateSliderSize;
|
|
60
|
+
exports.chunkPalettePickerColors = require_custom.chunkPalettePickerColors;
|
|
42
61
|
exports.clampProgressValue = require_custom.clampProgressValue;
|
|
43
62
|
exports.createIconComponent = require_custom.createIconComponent;
|
|
63
|
+
exports.findListBoxItem = require_custom.findListBoxItem;
|
|
64
|
+
exports.findSegmentedControlOption = require_custom.findSegmentedControlOption;
|
|
44
65
|
exports.formatBadgeCount = require_custom.formatBadgeCount;
|
|
45
66
|
exports.getBadgeSizeConfig = require_custom.getBadgeSizeConfig;
|
|
46
67
|
exports.getBadgeText = require_custom.getBadgeText;
|
|
68
|
+
exports.getNextNumberInputValue = require_custom.getNextNumberInputValue;
|
|
69
|
+
exports.getNumberInputPrecision = require_custom.getNumberInputPrecision;
|
|
70
|
+
exports.getPalettePickerContrastColor = require_custom.getPalettePickerContrastColor;
|
|
47
71
|
exports.getProgressRatio = require_custom.getProgressRatio;
|
|
72
|
+
exports.getToastAutoDismissDuration = require_custom.getToastAutoDismissDuration;
|
|
73
|
+
exports.getToolbarItemId = require_custom.getToolbarItemId;
|
|
74
|
+
exports.isSegmentedControlOptionSelectable = require_custom.isSegmentedControlOptionSelectable;
|
|
75
|
+
exports.isToolbarMenuItem = require_custom.isToolbarMenuItem;
|
|
76
|
+
exports.isToolbarSeparatorItem = require_custom.isToolbarSeparatorItem;
|
|
77
|
+
exports.isToolbarToggleItem = require_custom.isToolbarToggleItem;
|
|
78
|
+
exports.normalizeNumberInputValue = require_custom.normalizeNumberInputValue;
|
|
79
|
+
exports.normalizePalettePickerColor = require_custom.normalizePalettePickerColor;
|
|
80
|
+
exports.normalizePalettePickerColors = require_custom.normalizePalettePickerColors;
|
|
48
81
|
exports.resolveBadgeTextStyle = require_custom.resolveBadgeTextStyle;
|
|
82
|
+
exports.resolveListBoxValue = require_custom.resolveListBoxValue;
|
|
83
|
+
exports.resolveNotificationStackAlignment = require_custom.resolveNotificationStackAlignment;
|
|
84
|
+
exports.resolvePalettePickerValue = require_custom.resolvePalettePickerValue;
|
|
85
|
+
exports.resolveSegmentedControlValue = require_custom.resolveSegmentedControlValue;
|
|
86
|
+
exports.resolveToolbarActiveId = require_custom.resolveToolbarActiveId;
|
|
49
87
|
exports.useIconPreload = require_custom.useIconPreload;
|
|
@@ -3,35 +3,48 @@
|
|
|
3
3
|
* Higher-level components built on top of built-in primitives
|
|
4
4
|
*/
|
|
5
5
|
export { Accordion, type AccordionProps } from './Accordion';
|
|
6
|
+
export { ActivityIndicator, type ActivityIndicatorLabels, type ActivityIndicatorProps, type ActivityIndicatorSize, type ActivityIndicatorThemeSlot, type ActivityIndicatorVariant, } from './ActivityIndicator';
|
|
6
7
|
export { AlertDialog, type AlertDialogProps } from './AlertDialog';
|
|
7
|
-
export { Badge,
|
|
8
|
+
export { Badge, formatBadgeCount, getBadgeSizeConfig, getBadgeText, resolveBadgeTextStyle, Tag, type BadgeFormatOptions, type BadgeProps, type BadgeSize, type BadgeSizeConfig, type BadgeTextStyleOptions, type BadgeTone, type BadgeToneColors, type BadgeVariant, type TagProps, } from './Badge';
|
|
9
|
+
export { BottomSheet, BottomSheetDepth, BottomSheetHandle, type BottomSheetLabels, type BottomSheetProps, type BottomSheetThemeSlot, type HandleRenderProps, } from './BottomSheet';
|
|
8
10
|
export { Button, type ButtonProps } from './Button';
|
|
9
11
|
export { CharText, type CharTextAPI, type CharTextProps } from './CharText';
|
|
10
12
|
export { CharTextInput, type CharTextInputProps } from './CharTextInput';
|
|
11
13
|
export { Checkbox, type CheckboxIndicatorRenderProps, type CheckboxLabelPosition, type CheckboxProps, type CheckboxState, } from './Checkbox';
|
|
14
|
+
export { ColorPicker, type ColorPickerLabels, type ColorPickerProps, type ColorPickerState, type ColorPickerTone, } from './ColorPicker';
|
|
12
15
|
export { DebugPanel, type DebugMetricKey, type DebugPanelPreset, type DebugPanelProps, } from './DebugPanel';
|
|
13
16
|
export { Dialog, type DialogProps } from './Dialog';
|
|
14
17
|
export { Divider, type DividerProps } from './Divider';
|
|
15
18
|
export { Dropdown, type DropdownOption, type DropdownProps } from './Dropdown';
|
|
16
|
-
export {
|
|
19
|
+
export { createIconComponent, Icon, useIconPreload, type IconLoaderFn, type IconProps, } from './Icon';
|
|
17
20
|
export { Image, type ImageProps } from './Image';
|
|
18
21
|
export { Joystick, type JoystickProps, type JoystickTheme } from './Joystick';
|
|
22
|
+
export { findListBoxItem, ListBox, resolveListBoxValue, type ListBoxItem, type ListBoxItemRenderProps, type ListBoxLabels, type ListBoxProps, type ListBoxThemeSlot, } from './ListBox';
|
|
23
|
+
export { MenuButton, type MenuButtonProps, type MenuButtonTriggerRenderProps } from './MenuButton';
|
|
19
24
|
export { Modal, type ModalProps } from './Modal';
|
|
20
25
|
export { NineSlice, type NineSliceProps } from './NineSlice';
|
|
21
26
|
export { NineSliceButton, type NineSliceButtonProps } from './NineSliceButton';
|
|
27
|
+
export { getNextNumberInputValue, getNumberInputPrecision, normalizeNumberInputValue, NumberInput, NumberInputIndicator, type NumberInputButtonAction, type NumberInputButtonDirection, type NumberInputButtonPlacement, type NumberInputButtonRenderProps, type NumberInputIndicatorDirection, type NumberInputIndicatorProps, type NumberInputIndicatorVariant, type NumberInputLabelPosition, type NumberInputLabels, type NumberInputProps, type NumberInputValueOptions, type NumberInputValueRenderProps, } from './NumberInput';
|
|
28
|
+
export { chunkPalettePickerColors, getPalettePickerContrastColor, normalizePalettePickerColor, normalizePalettePickerColors, PalettePicker, resolvePalettePickerValue, type NormalizedPalettePickerOption, type PalettePickerColor, type PalettePickerLabels, type PalettePickerOption, type PalettePickerProps, type PalettePickerSwatchRenderProps, type PalettePickerThemeSlot, } from './PalettePicker';
|
|
22
29
|
export { Particles, type ParticlesProps } from './Particles';
|
|
30
|
+
export { calculateOverlayPosition, ContextMenu, Popover, type ContextMenuItem, type ContextMenuProps, type OverlayAnchorRect, type OverlayContentSize, type OverlayPosition, type OverlayPositionOptions, type PopoverPlacement, type PopoverProps, } from './Popover';
|
|
23
31
|
export { Portal, type PortalProps } from './Portal';
|
|
24
|
-
export {
|
|
25
|
-
export {
|
|
32
|
+
export { clampProgressValue, getProgressRatio, ProgressBar, type ProgressBarFormatProps, type ProgressBarLabelPosition, type ProgressBarOrientation, type ProgressBarProps, } from './ProgressBar';
|
|
33
|
+
export { ProgressView, type ProgressViewLabels, type ProgressViewProps, type ProgressViewThemeSlot, } from './ProgressView';
|
|
26
34
|
export { RadioButton, type RadioButtonProps } from './RadioButton';
|
|
27
35
|
export { RadioGroup, type RadioGroupProps } from './RadioGroup';
|
|
36
|
+
export { RatingBar, type RatingBarIconRenderProps, type RatingBarLabels, type RatingBarProps, type RatingBarSize, type RatingBarThemeSlot, } from './RatingBar';
|
|
28
37
|
export { RefOriginView, type RefOriginViewProps } from './RefOriginView';
|
|
29
|
-
export {
|
|
38
|
+
export { calculateSliderSize, ScrollSlider, type ScrollSliderProps, type SliderSize, } from './ScrollSlider';
|
|
30
39
|
export { ScrollView, type ScrollInfo, type ScrollViewProps } from './ScrollView';
|
|
40
|
+
export { findSegmentedControlOption, isSegmentedControlOptionSelectable, resolveSegmentedControlValue, SegmentedControl, type SegmentedControlLabelPosition, type SegmentedControlLabels, type SegmentedControlOption, type SegmentedControlOptionRenderProps, type SegmentedControlOrientation, type SegmentedControlProps, type SegmentedControlSize, type SegmentedControlThemeSlot, type SegmentedControlVariant, } from './SegmentedControl';
|
|
31
41
|
export { Sidebar, type SidebarNavItem, type SidebarProps, type SidebarSection, type SidebarSize, type SidebarVariant, } from './Sidebar';
|
|
32
42
|
export { RangeSlider, Slider, type RangeSliderProps, type SliderMark, type SliderProps, } from './Slider';
|
|
33
43
|
export { Tab, TabPanel, Tabs, type TabPanelProps, type TabProps, type TabsProps } from './Tabs';
|
|
44
|
+
export { getToastAutoDismissDuration, NotificationStack, resolveNotificationStackAlignment, Toast, type NotificationStackAlignment, type NotificationStackPosition, type NotificationStackProps, type ToastItem, type ToastLabels, type ToastProps, type ToastThemeSlot, type ToastVariant, type ToastVariantTheme, } from './Toast';
|
|
34
45
|
export { Toggle, type ToggleProps } from './Toggle';
|
|
46
|
+
export { getToolbarItemId, isToolbarMenuItem, isToolbarSeparatorItem, isToolbarToggleItem, resolveToolbarActiveId, Toolbar, ToolButtonGroup, type ToolbarActionItem, type ToolbarDensity, type ToolbarItem, type ToolbarItemType, type ToolbarLabels, type ToolbarMenuItem, type ToolbarOrientation, type ToolbarProps, type ToolbarSeparatorItem, type ToolbarThemeSlot, type ToolbarToggleItem, } from './Toolbar';
|
|
35
47
|
export { TransformOriginView, type TransformOriginViewProps } from './TransformOriginView';
|
|
48
|
+
export { WheelPicker, type WheelPickerItem, type WheelPickerItemRenderProps, type WheelPickerLabels, type WheelPickerProps, type WheelPickerSize, type WheelPickerThemeSlot, } from './WheelPicker';
|
|
36
49
|
export { WrapText, type WrapTextProps } from './WrapText';
|
|
37
50
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/custom/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,SAAS,EAAE,KAAK,cAAc,EAAE,MAAM,aAAa,CAAA;AAC5D,OAAO,EAAE,WAAW,EAAE,KAAK,gBAAgB,EAAE,MAAM,eAAe,CAAA;AAClE,OAAO,EACL,KAAK,EACL,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/custom/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { $ as
|
|
2
|
-
export { Accordion, AlertDialog, Badge, Button, CharText, CharTextInput, Checkbox, ContextMenu, DebugPanel, Dialog, Divider, Dropdown, Icon, Image, Joystick, Modal, NineSlice, NineSliceButton, Particles, Popover, Portal, ProgressBar, RadioButton, RadioGroup, RangeSlider, RefOriginView, ScrollSlider, ScrollView, Sidebar, Slider, Tab, TabPanel, Tabs, Tag, Toggle, TransformOriginView, WrapText, calculateOverlayPosition, calculateSliderSize, clampProgressValue, createIconComponent, formatBadgeCount, getBadgeSizeConfig, getBadgeText, getProgressRatio, resolveBadgeTextStyle, useIconPreload };
|
|
1
|
+
import { $ as getToastAutoDismissDuration, At as Popover, Bt as DebugPanel, C as Modal, Ct as NumberInput, Dt as normalizeNumberInputValue, Et as getNumberInputPrecision, Fn as getBadgeSizeConfig, Ft as resolveListBoxValue, G as getToolbarItemId, Gt as RefOriginView, Ht as ColorPicker, In as getBadgeText, It as ScrollView, J as isToolbarToggleItem, K as isToolbarMenuItem, Ln as resolveBadgeTextStyle, Lt as ScrollSlider, Mn as Badge, Mt as Portal, Nn as Tag, Nt as ListBox, Ot as MenuButton, Pn as formatBadgeCount, Pt as findListBoxItem, Q as Toast, Rn as ActivityIndicator, Rt as calculateSliderSize, S as Dialog, St as resolvePalettePickerValue, Tt as getNextNumberInputValue, U as ToolButtonGroup, Ut as RangeSlider, W as Toolbar, Wt as Slider, X as Divider, Y as resolveToolbarActiveId, Z as NotificationStack, _ as CharText, _t as PalettePicker, a as Tabs, an as Button, at as SegmentedControl, b as BottomSheetHandle, bt as normalizePalettePickerColor, c as NineSlice, ct as resolveSegmentedControlValue, d as createIconComponent, dt as RadioButton, et as resolveNotificationStackAlignment, f as useIconPreload, ft as ProgressView, g as CharTextInput, gt as Particles, h as TransformOriginView, ht as getProgressRatio, i as TabPanel, in as Checkbox, jt as calculateOverlayPosition, kt as ContextMenu, l as Joystick, lt as RatingBar, m as Dropdown, mt as clampProgressValue, n as Toggle, o as Sidebar, ot as findSegmentedControlOption, p as Image, pt as ProgressBar, q as isToolbarSeparatorItem, r as Tab, s as NineSliceButton, st as isSegmentedControlOptionSelectable, t as WheelPicker, tt as WrapText, u as Icon, ut as RadioGroup, v as BottomSheet, vt as chunkPalettePickerColors, w as Accordion, wt as NumberInputIndicator, x as AlertDialog, xt as normalizePalettePickerColors, y as BottomSheetDepth, yt as getPalettePickerContrastColor } from "../../custom-pRNJ0_kS.js";
|
|
2
|
+
export { Accordion, ActivityIndicator, AlertDialog, Badge, BottomSheet, BottomSheetDepth, BottomSheetHandle, Button, CharText, CharTextInput, Checkbox, ColorPicker, ContextMenu, DebugPanel, Dialog, Divider, Dropdown, Icon, Image, Joystick, ListBox, MenuButton, Modal, NineSlice, NineSliceButton, NotificationStack, NumberInput, NumberInputIndicator, PalettePicker, Particles, Popover, Portal, ProgressBar, ProgressView, RadioButton, RadioGroup, RangeSlider, RatingBar, RefOriginView, ScrollSlider, ScrollView, SegmentedControl, Sidebar, Slider, Tab, TabPanel, Tabs, Tag, Toast, Toggle, ToolButtonGroup, Toolbar, TransformOriginView, WheelPicker, WrapText, calculateOverlayPosition, calculateSliderSize, chunkPalettePickerColors, clampProgressValue, createIconComponent, findListBoxItem, findSegmentedControlOption, formatBadgeCount, getBadgeSizeConfig, getBadgeText, getNextNumberInputValue, getNumberInputPrecision, getPalettePickerContrastColor, getProgressRatio, getToastAutoDismissDuration, getToolbarItemId, isSegmentedControlOptionSelectable, isToolbarMenuItem, isToolbarSeparatorItem, isToolbarToggleItem, normalizeNumberInputValue, normalizePalettePickerColor, normalizePalettePickerColors, resolveBadgeTextStyle, resolveListBoxValue, resolveNotificationStackAlignment, resolvePalettePickerValue, resolveSegmentedControlValue, resolveToolbarActiveId, useIconPreload };
|
|
@@ -9,25 +9,36 @@
|
|
|
9
9
|
*/
|
|
10
10
|
export declare function registerBuiltins(): void;
|
|
11
11
|
export { type LayoutSize } from './../layout/types';
|
|
12
|
-
export {
|
|
12
|
+
export { ActivityIndicator, type ActivityIndicatorLabels, type ActivityIndicatorProps, type ActivityIndicatorSize, type ActivityIndicatorThemeSlot, type ActivityIndicatorVariant, } from './custom/ActivityIndicator';
|
|
13
|
+
export { Badge, formatBadgeCount, getBadgeSizeConfig, getBadgeText, resolveBadgeTextStyle, Tag, type BadgeFormatOptions, type BadgeProps, type BadgeSize, type BadgeSizeConfig, type BadgeTextStyleOptions, type BadgeTone, type BadgeToneColors, type BadgeVariant, type TagProps, } from './custom/Badge';
|
|
13
14
|
export { Button, type ButtonProps } from './custom/Button';
|
|
14
15
|
export { Checkbox, type CheckboxIndicatorRenderProps, type CheckboxLabelPosition, type CheckboxProps, type CheckboxState, } from './custom/Checkbox';
|
|
16
|
+
export { ColorPicker, type ColorPickerLabels, type ColorPickerProps, type ColorPickerState, type ColorPickerTone, } from './custom/ColorPicker';
|
|
15
17
|
export { DebugPanel, type DebugMetricKey, type DebugPanelPreset, type DebugPanelProps, } from './custom/DebugPanel';
|
|
16
18
|
export { Graphics, type GraphicsProps } from './custom/Graphics';
|
|
19
|
+
export { findListBoxItem, ListBox, resolveListBoxValue, type ListBoxItem, type ListBoxItemRenderProps, type ListBoxLabels, type ListBoxProps, type ListBoxThemeSlot, } from './custom/ListBox';
|
|
20
|
+
export { MenuButton, type MenuButtonProps, type MenuButtonTriggerRenderProps, } from './custom/MenuButton';
|
|
21
|
+
export { getNextNumberInputValue, getNumberInputPrecision, normalizeNumberInputValue, NumberInput, NumberInputIndicator, type NumberInputButtonAction, type NumberInputButtonDirection, type NumberInputButtonPlacement, type NumberInputButtonRenderProps, type NumberInputIndicatorDirection, type NumberInputIndicatorProps, type NumberInputIndicatorVariant, type NumberInputLabelPosition, type NumberInputLabels, type NumberInputProps, type NumberInputValueOptions, type NumberInputValueRenderProps, } from './custom/NumberInput';
|
|
22
|
+
export { chunkPalettePickerColors, getPalettePickerContrastColor, normalizePalettePickerColor, normalizePalettePickerColors, PalettePicker, resolvePalettePickerValue, type NormalizedPalettePickerOption, type PalettePickerColor, type PalettePickerLabels, type PalettePickerOption, type PalettePickerProps, type PalettePickerSwatchRenderProps, type PalettePickerThemeSlot, } from './custom/PalettePicker';
|
|
23
|
+
export { Particles, type ParticlesProps } from './custom/Particles';
|
|
24
|
+
export { calculateOverlayPosition, ContextMenu, Popover, type ContextMenuItem, type ContextMenuProps, type OverlayAnchorRect, type OverlayContentSize, type OverlayPosition, type OverlayPositionOptions, type PopoverPlacement, type PopoverProps, } from './custom/Popover';
|
|
25
|
+
export { clampProgressValue, getProgressRatio, ProgressBar, type ProgressBarFormatProps, type ProgressBarLabelPosition, type ProgressBarOrientation, type ProgressBarProps, } from './custom/ProgressBar';
|
|
26
|
+
export { ProgressView, type ProgressViewLabels, type ProgressViewProps, type ProgressViewThemeSlot, } from './custom/ProgressView';
|
|
17
27
|
export { RadioButton, type RadioButtonProps } from './custom/RadioButton';
|
|
18
28
|
export { RadioGroup, type RadioGroupOption, type RadioGroupProps } from './custom/RadioGroup';
|
|
29
|
+
export { RatingBar, type RatingBarIconRenderProps, type RatingBarLabels, type RatingBarProps, type RatingBarSize, type RatingBarThemeSlot, } from './custom/RatingBar';
|
|
30
|
+
export { findSegmentedControlOption, isSegmentedControlOptionSelectable, resolveSegmentedControlValue, SegmentedControl, type SegmentedControlLabelPosition, type SegmentedControlLabels, type SegmentedControlOption, type SegmentedControlOptionRenderProps, type SegmentedControlOrientation, type SegmentedControlProps, type SegmentedControlSize, type SegmentedControlThemeSlot, type SegmentedControlVariant, } from './custom/SegmentedControl';
|
|
19
31
|
export { Sprite, type SpriteProps } from './custom/Sprite';
|
|
20
32
|
export { Text, type TextProps } from './custom/Text';
|
|
21
33
|
export { TileSprite, type TileSpriteProps } from './custom/TileSprite';
|
|
34
|
+
export { getToastAutoDismissDuration, NotificationStack, resolveNotificationStackAlignment, Toast, type NotificationStackAlignment, type NotificationStackPosition, type NotificationStackProps, type ToastItem, type ToastLabels, type ToastProps, type ToastThemeSlot, type ToastVariant, type ToastVariantTheme, } from './custom/Toast';
|
|
35
|
+
export { getToolbarItemId, isToolbarMenuItem, isToolbarSeparatorItem, isToolbarToggleItem, resolveToolbarActiveId, Toolbar, ToolButtonGroup, type ToolbarActionItem, type ToolbarDensity, type ToolbarItem, type ToolbarItemType, type ToolbarLabels, type ToolbarMenuItem, type ToolbarOrientation, type ToolbarProps, type ToolbarSeparatorItem, type ToolbarThemeSlot, type ToolbarToggleItem, } from './custom/Toolbar';
|
|
22
36
|
export { View, type ViewProps } from './custom/View';
|
|
23
|
-
export { Particles, type ParticlesProps } from './custom/Particles';
|
|
24
|
-
export { ContextMenu, Popover, calculateOverlayPosition, type ContextMenuItem, type ContextMenuProps, type OverlayAnchorRect, type OverlayContentSize, type OverlayPosition, type OverlayPositionOptions, type PopoverPlacement, type PopoverProps, } from './custom/Popover';
|
|
25
|
-
export { ProgressBar, clampProgressValue, getProgressRatio, type ProgressBarFormatProps, type ProgressBarLabelPosition, type ProgressBarOrientation, type ProgressBarProps, } from './custom/ProgressBar';
|
|
26
37
|
export { textCreator, textPatcher, type TextBaseProps } from './primitives/text';
|
|
27
38
|
export { viewCreator, viewPatcher, type ViewBaseProps } from './primitives/view';
|
|
28
39
|
export { nineSliceCreator, nineSlicePatcher, type NineSliceBaseProps, type NineSliceInnerBounds, type NineSlicePrimitiveProps, type NineSliceRef, } from './primitives/nineslice';
|
|
29
|
-
export { spriteCreator, spritePatcher, type SpriteBaseProps } from './primitives/sprite';
|
|
30
40
|
export { particlesCreator, particlesPatcher, type ParticlesBaseProps } from './primitives/particles';
|
|
41
|
+
export { spriteCreator, spritePatcher, type SpriteBaseProps } from './primitives/sprite';
|
|
31
42
|
export { imageCreator, imagePatcher, type ImageBaseProps, type ImagePrimitiveProps, } from './primitives/image';
|
|
32
43
|
export { graphicsCreator, graphicsPatcher, type GraphicsBaseProps } from './primitives/graphics';
|
|
33
44
|
export { tileSpriteCreator, tileSpritePatcher, type TileSpriteBaseProps, } from './primitives/tilesprite';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAcA;;;;GAIG;AAEH;;;GAGG;AACH,wBAAgB,gBAAgB,SAwB/B;AAGD,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,mBAAmB,CAAA;AAGnD,OAAO,EACL,KAAK,EACL,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"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"}
|