@box/blueprint-web 6.43.0 → 6.44.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.
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { Separator } from '@ariakit/react';
|
|
3
|
+
import styles from './divider.module.js';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Based on Ariakit [Separator](https://ariakit.org/components/separator)
|
|
7
|
+
*/
|
|
8
|
+
const Divider = () => {
|
|
9
|
+
return jsx(Separator, {
|
|
10
|
+
className: styles.divider,
|
|
11
|
+
orientation: "horizontal"
|
|
12
|
+
});
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export { Divider };
|
package/lib-esm/index.css
CHANGED
|
@@ -1261,6 +1261,14 @@
|
|
|
1261
1261
|
transform:translateY(0);
|
|
1262
1262
|
}
|
|
1263
1263
|
}
|
|
1264
|
+
|
|
1265
|
+
.bp_divider_module_divider--1736e{
|
|
1266
|
+
background-color:var(--border-divider-border);
|
|
1267
|
+
border:none;
|
|
1268
|
+
flex-shrink:0;
|
|
1269
|
+
height:var(--border-1);
|
|
1270
|
+
margin-block:var(--space-2);
|
|
1271
|
+
}
|
|
1264
1272
|
.bp_base_grid_list_item_module_smallList--950e4{
|
|
1265
1273
|
box-sizing:border-box;
|
|
1266
1274
|
display:flex;
|
package/lib-esm/index.d.ts
CHANGED
package/lib-esm/index.js
CHANGED
|
@@ -4,6 +4,7 @@ export { Avatar } from './avatar/avatar.js';
|
|
|
4
4
|
export { Button } from './button/button.js';
|
|
5
5
|
export { CollapsibleSection } from './collapsible/collapsible-section.js';
|
|
6
6
|
export { DatePicker } from './date-picker/date-picker.js';
|
|
7
|
+
export { Divider } from './divider/divider.js';
|
|
7
8
|
export { GridList } from './grid-list-item/index.js';
|
|
8
9
|
export { LargeList } from './large-list-item/index.js';
|
|
9
10
|
export { NavigationMenu } from './navigation-menu/index.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@box/blueprint-web",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.44.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@box/storybook-utils": "^0.1.0"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "d9355c0f3e921196378d32e7e46dd9acc0e1d770",
|
|
61
61
|
"module": "lib-esm/index.js",
|
|
62
62
|
"main": "lib-esm/index.js",
|
|
63
63
|
"exports": {
|