@bridger-kr/react 0.1.3 → 0.1.5
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/product/ActionList.cjs +27 -0
- package/dist/components/product/ActionList.cjs.map +1 -0
- package/dist/components/product/ActionList.d.cts +19 -0
- package/dist/components/product/ActionList.d.ts +19 -0
- package/dist/components/product/ActionList.mjs +22 -0
- package/dist/components/product/ActionList.mjs.map +1 -0
- package/dist/index.cjs +16 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +13 -1
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +63 -13
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -36,6 +36,7 @@ export { CommandGroup, CommandItem, CommandPalette, CommandPaletteProps } from '
|
|
|
36
36
|
export { Menu, MenuItem, MenuProps } from './components/navigation/Menu.cjs';
|
|
37
37
|
export { Sidebar, SidebarItem, SidebarProps, SidebarSection } from './components/navigation/Sidebar.cjs';
|
|
38
38
|
export { Step, Stepper, StepperProps } from './components/navigation/Stepper.cjs';
|
|
39
|
+
export { ActionList, ActionListIndex, ActionListIndexProps, ActionListItemClassNameOptions, ActionListProps, actionListClassName, actionListItemClassName } from './components/product/ActionList.cjs';
|
|
39
40
|
export { BRAND_LOGO_LANGUAGE, BrandLogo, BrandLogoHandle, BrandLogoLanguage, BrandLogoProps, BrandLogoSize } from './components/product/BrandLogo.cjs';
|
|
40
41
|
export { PRODUCT_ACTION_PILL_SIZE, PRODUCT_ACTION_PILL_VARIANT, ProductActionPill, ProductActionPillProps, ProductActionPillSize, ProductActionPillVariant, productActionPillClassName } from './components/product/ProductActionPill.cjs';
|
|
41
42
|
export { PRODUCT_SHELL_TONE, ProductCinematicBackdrop, ProductCinematicBackdropProps, ProductMotionField, ProductMotionFieldProps, ProductShell, ProductShellProps, ProductShellTone, ProductSideRail, ProductSideRailItem, ProductSideRailProps } from './components/product/ProductCinematic.cjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -36,6 +36,7 @@ export { CommandGroup, CommandItem, CommandPalette, CommandPaletteProps } from '
|
|
|
36
36
|
export { Menu, MenuItem, MenuProps } from './components/navigation/Menu.js';
|
|
37
37
|
export { Sidebar, SidebarItem, SidebarProps, SidebarSection } from './components/navigation/Sidebar.js';
|
|
38
38
|
export { Step, Stepper, StepperProps } from './components/navigation/Stepper.js';
|
|
39
|
+
export { ActionList, ActionListIndex, ActionListIndexProps, ActionListItemClassNameOptions, ActionListProps, actionListClassName, actionListItemClassName } from './components/product/ActionList.js';
|
|
39
40
|
export { BRAND_LOGO_LANGUAGE, BrandLogo, BrandLogoHandle, BrandLogoLanguage, BrandLogoProps, BrandLogoSize } from './components/product/BrandLogo.js';
|
|
40
41
|
export { PRODUCT_ACTION_PILL_SIZE, PRODUCT_ACTION_PILL_VARIANT, ProductActionPill, ProductActionPillProps, ProductActionPillSize, ProductActionPillVariant, productActionPillClassName } from './components/product/ProductActionPill.js';
|
|
41
42
|
export { PRODUCT_SHELL_TONE, ProductCinematicBackdrop, ProductCinematicBackdropProps, ProductMotionField, ProductMotionFieldProps, ProductShell, ProductShellProps, ProductShellTone, ProductSideRail, ProductSideRailItem, ProductSideRailProps } from './components/product/ProductCinematic.js';
|
package/dist/index.mjs
CHANGED
|
@@ -2139,6 +2139,18 @@ function Stepper({ steps = [], current = 0, orientation = "horizontal", style, .
|
|
|
2139
2139
|
}
|
|
2140
2140
|
);
|
|
2141
2141
|
}
|
|
2142
|
+
function actionListClassName(className) {
|
|
2143
|
+
return cx("dt-action-list", className);
|
|
2144
|
+
}
|
|
2145
|
+
function actionListItemClassName({ interactive = false, className } = {}) {
|
|
2146
|
+
return cx("dt-action-list-item", interactive && "dt-action-list-item-interactive", className);
|
|
2147
|
+
}
|
|
2148
|
+
function ActionList({ children, className, ...rest }) {
|
|
2149
|
+
return /* @__PURE__ */ jsx("div", { ...rest, className: actionListClassName(className), children });
|
|
2150
|
+
}
|
|
2151
|
+
function ActionListIndex({ children, className, ...rest }) {
|
|
2152
|
+
return /* @__PURE__ */ jsx("span", { ...rest, className: cx("dt-action-list-index", className), children });
|
|
2153
|
+
}
|
|
2142
2154
|
var BRAND_LOGO_LANGUAGE = {
|
|
2143
2155
|
Korean: "ko",
|
|
2144
2156
|
English: "en"
|
|
@@ -2527,6 +2539,6 @@ function ToolCard({
|
|
|
2527
2539
|
);
|
|
2528
2540
|
}
|
|
2529
2541
|
|
|
2530
|
-
export { Alert, AlertMotion, AlertTone, Avatar, BRAND_LOGO_LANGUAGE, Badge, BrandLogo, Breadcrumb, Button, Card, CardTone, Checkbox, CodeBlock, Combobox, CommandPalette, Dialog, Drawer, EmptyState, FileUpload, FilterChip, Input, KeyValue, LogRow, Menu, MetricAccent, PRODUCT_ACTION_PILL_SIZE, PRODUCT_ACTION_PILL_VARIANT, PRODUCT_SHELL_TONE, Pagination, Panel, ProductActionPill, ProductCinematicBackdrop, ProductMotionField, ProductPageHeader, ProductShell, ProductSideRail, RadioGroup, SectionCard, SegmentedControl, Select, Sidebar, Skeleton, Slider, Spinner, StatTile, StatusPill, Stepper, SurfaceTone, Switch, Table, Tabs, Textarea, Toast, ToggleSwitch, ToolCard, Tooltip, UsageMeter, cx, metricAccentColor, productActionPillClassName };
|
|
2542
|
+
export { ActionList, ActionListIndex, Alert, AlertMotion, AlertTone, Avatar, BRAND_LOGO_LANGUAGE, Badge, BrandLogo, Breadcrumb, Button, Card, CardTone, Checkbox, CodeBlock, Combobox, CommandPalette, Dialog, Drawer, EmptyState, FileUpload, FilterChip, Input, KeyValue, LogRow, Menu, MetricAccent, PRODUCT_ACTION_PILL_SIZE, PRODUCT_ACTION_PILL_VARIANT, PRODUCT_SHELL_TONE, Pagination, Panel, ProductActionPill, ProductCinematicBackdrop, ProductMotionField, ProductPageHeader, ProductShell, ProductSideRail, RadioGroup, SectionCard, SegmentedControl, Select, Sidebar, Skeleton, Slider, Spinner, StatTile, StatusPill, Stepper, SurfaceTone, Switch, Table, Tabs, Textarea, Toast, ToggleSwitch, ToolCard, Tooltip, UsageMeter, actionListClassName, actionListItemClassName, cx, metricAccentColor, productActionPillClassName };
|
|
2531
2543
|
//# sourceMappingURL=index.mjs.map
|
|
2532
2544
|
//# sourceMappingURL=index.mjs.map
|