@fluentui/react-divider 0.0.0-nightlyff78d1e27a20220217.1 → 0.0.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/CHANGELOG.json +366 -10
- package/CHANGELOG.md +210 -89
- package/MIGRATION.md +20 -48
- package/README.md +25 -9
- package/Spec.md +2 -2
- package/dist/{react-divider.d.ts → index.d.ts} +14 -10
- package/{lib → dist}/tsdoc-metadata.json +0 -0
- package/lib/components/Divider/Divider.js.map +1 -1
- package/lib/components/Divider/Divider.types.js.map +1 -1
- package/lib/components/Divider/renderDivider.js.map +1 -1
- package/lib/components/Divider/useDivider.js +1 -1
- package/lib/components/Divider/useDivider.js.map +1 -1
- package/lib/components/Divider/useDividerStyles.js +96 -84
- package/lib/components/Divider/useDividerStyles.js.map +1 -1
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/lib-commonjs/components/Divider/Divider.js.map +1 -1
- package/lib-commonjs/components/Divider/renderDivider.js.map +1 -1
- package/lib-commonjs/components/Divider/useDivider.js +1 -1
- package/lib-commonjs/components/Divider/useDivider.js.map +1 -1
- package/lib-commonjs/components/Divider/useDividerStyles.js +97 -85
- package/lib-commonjs/components/Divider/useDividerStyles.js.map +1 -1
- package/lib-commonjs/index.js +32 -2
- package/lib-commonjs/index.js.map +1 -1
- package/package.json +17 -21
- package/lib/Divider.d.ts +0 -1
- package/lib/components/Divider/Divider.d.ts +0 -6
- package/lib/components/Divider/Divider.types.d.ts +0 -36
- package/lib/components/Divider/index.d.ts +0 -5
- package/lib/components/Divider/renderDivider.d.ts +0 -5
- package/lib/components/Divider/useDivider.d.ts +0 -8
- package/lib/components/Divider/useDividerStyles.d.ts +0 -3
- package/lib/index.d.ts +0 -1
- package/lib-commonjs/Divider.d.ts +0 -1
- package/lib-commonjs/components/Divider/Divider.d.ts +0 -6
- package/lib-commonjs/components/Divider/Divider.types.d.ts +0 -36
- package/lib-commonjs/components/Divider/index.d.ts +0 -5
- package/lib-commonjs/components/Divider/renderDivider.d.ts +0 -5
- package/lib-commonjs/components/Divider/useDivider.d.ts +0 -8
- package/lib-commonjs/components/Divider/useDividerStyles.d.ts +0 -3
- package/lib-commonjs/index.d.ts +0 -1
package/MIGRATION.md
CHANGED
@@ -1,60 +1,32 @@
|
|
1
1
|
# Divider Migration
|
2
2
|
|
3
|
-
## STATUS: WIP 🚧
|
4
|
-
|
5
|
-
This Migration guide is a work in progress and is not yet ready for use.
|
6
|
-
|
7
3
|
## Migration from v8
|
8
4
|
|
9
|
-
The
|
5
|
+
The v8 `Separator` control supports a very similar set of props to the v9 `Divider` with a few differences that are outlined below:
|
10
6
|
|
11
|
-
|
12
|
-
|
13
|
-
Properties that are still available are the `alignContent` and `vertical` with the same acceptable values that are currently defined.
|
7
|
+
- `styles` => NOT SUPPORTED - use `makeStyles` to create styles and apply them with the `className` prop.
|
8
|
+
- `theme` => NOT SUPPORTED - use `FluentProvider`
|
14
9
|
|
15
10
|
## Migration from v0
|
16
11
|
|
17
|
-
The v0 Divider
|
18
|
-
|
19
|
-
Also, from design discussion, the converged component does not support the `size` component as it is redundant as it can be replicated through using the `borderSize` property and if needed, update the `fontSize` property to match desired style.
|
12
|
+
The v0 `Divider` control supports a very similar set of props to the v9 `Divider` with a few differences that are outlined below:
|
20
13
|
|
21
|
-
|
14
|
+
- `content` => `children` of the `Divider`
|
15
|
+
- `fitted` => NOT SUPPORTED - use style customizations via `className` instead
|
16
|
+
- `important` => NOT SUPPORTED
|
22
17
|
|
23
18
|
## Property mapping
|
24
19
|
|
25
|
-
| v8 `Separator` | v0 `Divider` |
|
26
|
-
| -------------- | ------------ |
|
27
|
-
| alignContent
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
| - |
|
32
|
-
| - |
|
33
|
-
| - |
|
34
|
-
| - |
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
| - | - | appearance |
|
39
|
-
|
40
|
-
## Examples
|
41
|
-
|
42
|
-
```
|
43
|
-
<Divider content="My Content">
|
44
|
-
<Divider>My Content</Divider>
|
45
|
-
```
|
46
|
-
|
47
|
-
_Note:_ The property theme from the separator control has been removed
|
48
|
-
|
49
|
-
```
|
50
|
-
<Separator theme={myTheme}>
|
51
|
-
<Divider /> /* Handled by the theme provider */
|
52
|
-
```
|
53
|
-
|
54
|
-
_Note:_ The property styles from the separator control has been removed and now uses the inherent react style mechanics
|
55
|
-
|
56
|
-
```
|
57
|
-
<Separator styles={myStyles}>
|
58
|
-
<Divider style={{ direction:ltr }}/>
|
59
|
-
/* Handled by the theme provider / Tokens */
|
60
|
-
```
|
20
|
+
| v8 `Separator` | v0 `Divider` | v9 `Divider` |
|
21
|
+
| -------------- | ------------ | -------------- |
|
22
|
+
| `alignContent` | - | `alignContent` |
|
23
|
+
| - | - | `appearance` |
|
24
|
+
| - | `color` | |
|
25
|
+
| `children` | `content` | `children` |
|
26
|
+
| - | `fitted` | |
|
27
|
+
| - | `important` | |
|
28
|
+
| - | - | `inset` |
|
29
|
+
| - | `size` | |
|
30
|
+
| `styles` | - | |
|
31
|
+
| `theme` | - | |
|
32
|
+
| `vertical` | `vertical` | `vertical` |
|
package/README.md
CHANGED
@@ -1,23 +1,39 @@
|
|
1
1
|
# @fluentui/react-divider
|
2
2
|
|
3
|
-
**
|
3
|
+
**Divider components for [Fluent UI](https://aka.ms/fluentui-storybook)**
|
4
4
|
|
5
5
|
The Divider component represents a visual separator, that may contain content. A Divider can be vertical or horizontal.
|
6
6
|
|
7
|
-
## STATUS: WIP 🚧
|
8
|
-
|
9
|
-
These are not production-ready components and **should never be used in product**. This space is useful for testing new components whose APIs might change before final release.
|
10
|
-
|
11
7
|
## Usage
|
12
8
|
|
13
9
|
To import Divider:
|
14
10
|
|
15
11
|
```js
|
16
|
-
import { Divider } from '@fluentui/react-
|
12
|
+
import { Divider } from '@fluentui/react-components';
|
17
13
|
```
|
18
14
|
|
19
|
-
|
15
|
+
### Examples
|
20
16
|
|
21
|
-
```
|
22
|
-
|
17
|
+
```jsx
|
18
|
+
<Divider />
|
19
|
+
<Divider>This is a divider</Divider>
|
20
|
+
<Divider alignContent="center">This is a divider</Divider>
|
21
|
+
<Divider appearance="subtle">This is a divider</Divider>
|
22
|
+
<Divider inset>This is a divider</Divider>
|
23
|
+
<Divider vertical>This is a divider</Divider>
|
23
24
|
```
|
25
|
+
|
26
|
+
See [Fluent UI Storybook](https://aka.ms/fluentui-storybook) for more detailed usage examples.
|
27
|
+
|
28
|
+
Alternatively, run Storybook locally with:
|
29
|
+
|
30
|
+
1. `yarn start`
|
31
|
+
2. Select `react-divider` from the list.
|
32
|
+
|
33
|
+
### Specification
|
34
|
+
|
35
|
+
See [SPEC.md](./SPEC.md).
|
36
|
+
|
37
|
+
### Migration Guide
|
38
|
+
|
39
|
+
If you're upgrading to Fluent UI v9 see [MIGRATION.md](./MIGRATION.md) for guidance on updating to the latest Divider implementation.
|
package/Spec.md
CHANGED
@@ -59,7 +59,7 @@ The `Divider` component has four appearance variants:
|
|
59
59
|
|
60
60
|
## API
|
61
61
|
|
62
|
-
|
62
|
+
See API at [Divider.types.tsx](./src/components/Divider/Divider.types.ts).
|
63
63
|
|
64
64
|
## HTML Structure
|
65
65
|
|
@@ -73,7 +73,7 @@ From [Divider.types.tsx](https://github.com/microsoft/fluentui/blob/master/packa
|
|
73
73
|
|
74
74
|
## Migration
|
75
75
|
|
76
|
-
[See MIGRATION.md](./
|
76
|
+
[See MIGRATION.md](./MIGRATION.md).
|
77
77
|
|
78
78
|
## Behaviors
|
79
79
|
|
@@ -3,39 +3,43 @@ import type { ComponentState } from '@fluentui/react-utilities';
|
|
3
3
|
import type { ForwardRefComponent } from '@fluentui/react-utilities';
|
4
4
|
import * as React_2 from 'react';
|
5
5
|
import type { Slot } from '@fluentui/react-utilities';
|
6
|
+
import type { SlotClassNames } from '@fluentui/react-utilities';
|
6
7
|
|
7
8
|
/**
|
8
9
|
* A divider visually segments content into groups.
|
9
10
|
*/
|
10
11
|
export declare const Divider: ForwardRefComponent<DividerProps>;
|
11
12
|
|
12
|
-
export declare const
|
13
|
+
export declare const dividerClassNames: SlotClassNames<DividerSlots>;
|
13
14
|
|
14
|
-
declare type
|
15
|
+
export declare type DividerProps = ComponentProps<Partial<DividerSlots>> & {
|
15
16
|
/**
|
16
17
|
* Determines the alignment of the content within the divider.
|
17
|
-
*
|
18
|
+
*
|
19
|
+
* @default 'center'
|
18
20
|
*/
|
19
|
-
alignContent
|
21
|
+
alignContent?: 'start' | 'center' | 'end';
|
20
22
|
/**
|
21
23
|
* A divider can have one of the preset appearances.
|
22
24
|
* When not specified, the divider has its default appearance.
|
25
|
+
*
|
26
|
+
* @default 'default'
|
23
27
|
*/
|
24
|
-
appearance?: 'brand' | 'strong' | 'subtle';
|
28
|
+
appearance?: 'brand' | 'default' | 'strong' | 'subtle';
|
25
29
|
/**
|
26
30
|
* Adds padding to the beginning and end of the divider.
|
31
|
+
*
|
27
32
|
* @default false
|
28
33
|
*/
|
29
|
-
inset
|
34
|
+
inset?: boolean;
|
30
35
|
/**
|
31
36
|
* A divider can be horizontal (default) or vertical.
|
37
|
+
*
|
32
38
|
* @default false
|
33
39
|
*/
|
34
|
-
vertical
|
40
|
+
vertical?: boolean;
|
35
41
|
};
|
36
42
|
|
37
|
-
export declare type DividerProps = ComponentProps<Partial<DividerSlots>> & Partial<DividerCommons>;
|
38
|
-
|
39
43
|
export declare type DividerSlots = {
|
40
44
|
/**
|
41
45
|
* Root of the component that renders as a `<div>` tag.
|
@@ -47,7 +51,7 @@ export declare type DividerSlots = {
|
|
47
51
|
wrapper: Slot<'div'>;
|
48
52
|
};
|
49
53
|
|
50
|
-
export declare type DividerState = ComponentState<DividerSlots> &
|
54
|
+
export declare type DividerState = ComponentState<DividerSlots> & Required<Pick<DividerProps, 'alignContent' | 'appearance' | 'inset' | 'vertical'>>;
|
51
55
|
|
52
56
|
/**
|
53
57
|
* Renders a Divider component by passing the slot props (defined in `state`) to the appropriate slots.
|
File without changes
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["components/Divider/Divider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAZ,MAAuB,OAAvB;AACA,SAAS,sBAAT,QAAuC,iBAAvC;AACA,SAAS,mBAAT,QAAoC,cAApC;AACA,SAAS,yBAAT,QAA0C,oBAA1C;AAIA;;AAEG;;AACH,OAAO,MAAM,OAAO,gBAAsC,KAAK,CAAC,UAAN,CAAiB,CAAC,KAAD,EAAQ,GAAR,KAAe;
|
1
|
+
{"version":3,"sources":["components/Divider/Divider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAZ,MAAuB,OAAvB;AACA,SAAS,sBAAT,QAAuC,iBAAvC;AACA,SAAS,mBAAT,QAAoC,cAApC;AACA,SAAS,yBAAT,QAA0C,oBAA1C;AAIA;;AAEG;;AACH,OAAO,MAAM,OAAO,gBAAsC,KAAK,CAAC,UAAN,CAAiB,CAAC,KAAD,EAAQ,GAAR,KAAe;EACxF,MAAM,KAAK,GAAG,mBAAmB,CAAC,KAAD,EAAQ,GAAR,CAAjC;EAEA,yBAAyB,CAAC,KAAD,CAAzB;EAEA,OAAO,sBAAsB,CAAC,KAAD,CAA7B;AACD,CANyD,CAAnD;AAQP,OAAO,CAAC,WAAR,GAAsB,SAAtB","sourcesContent":["import * as React from 'react';\nimport { renderDivider_unstable } from './renderDivider';\nimport { useDivider_unstable } from './useDivider';\nimport { useDividerStyles_unstable } from './useDividerStyles';\nimport type { ForwardRefComponent } from '@fluentui/react-utilities';\nimport type { DividerProps } from './Divider.types';\n\n/**\n * A divider visually segments content into groups.\n */\nexport const Divider: ForwardRefComponent<DividerProps> = React.forwardRef((props, ref) => {\n const state = useDivider_unstable(props, ref);\n\n useDividerStyles_unstable(state);\n\n return renderDivider_unstable(state);\n});\n\nDivider.displayName = 'Divider';\n"],"sourceRoot":"../src/"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Divider.types.js","sourceRoot":"../src/","sources":["components/Divider/Divider.types.ts"],"names":[],"mappings":"","sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\n\nexport type DividerSlots = {\n /**\n * Root of the component that renders as a `<div>` tag.\n */\n root: Slot<'div'>;\n\n /**\n * Accessibility wrapper for content when presented.\n */\n wrapper: Slot<'div'>;\n};\n\
|
1
|
+
{"version":3,"file":"Divider.types.js","sourceRoot":"../src/","sources":["components/Divider/Divider.types.ts"],"names":[],"mappings":"","sourcesContent":["import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities';\n\nexport type DividerSlots = {\n /**\n * Root of the component that renders as a `<div>` tag.\n */\n root: Slot<'div'>;\n\n /**\n * Accessibility wrapper for content when presented.\n */\n wrapper: Slot<'div'>;\n};\n\nexport type DividerProps = ComponentProps<Partial<DividerSlots>> & {\n /**\n * Determines the alignment of the content within the divider.\n *\n * @default 'center'\n */\n alignContent?: 'start' | 'center' | 'end';\n\n /**\n * A divider can have one of the preset appearances.\n * When not specified, the divider has its default appearance.\n *\n * @default 'default'\n */\n appearance?: 'brand' | 'default' | 'strong' | 'subtle';\n\n /**\n * Adds padding to the beginning and end of the divider.\n *\n * @default false\n */\n inset?: boolean;\n\n /**\n * A divider can be horizontal (default) or vertical.\n *\n * @default false\n */\n vertical?: boolean;\n};\n\nexport type DividerState = ComponentState<DividerSlots> &\n Required<Pick<DividerProps, 'alignContent' | 'appearance' | 'inset' | 'vertical'>>;\n"]}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["components/Divider/renderDivider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAZ,MAAuB,OAAvB;AACA,SAAS,QAAT,QAAyB,2BAAzB;AAGA;;AAEG;;AACH,OAAO,MAAM,sBAAsB,GAAI,KAAD,IAAwB;
|
1
|
+
{"version":3,"sources":["components/Divider/renderDivider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAZ,MAAuB,OAAvB;AACA,SAAS,QAAT,QAAyB,2BAAzB;AAGA;;AAEG;;AACH,OAAO,MAAM,sBAAsB,GAAI,KAAD,IAAwB;EAC5D,MAAM;IAAE,KAAF;IAAS;EAAT,IAAuB,QAAQ,CAAe,KAAf,CAArC;EACA,oBACE,KAAA,CAAA,aAAA,CAAC,KAAK,CAAC,IAAP,EAAW,EAAA,GAAK,SAAS,CAAC;EAAf,CAAX,EACG,SAAS,CAAC,IAAV,CAAe,QAAf,KAA4B,SAA5B,iBACC,KAAA,CAAA,aAAA,CAAC,KAAK,CAAC,OAAP,EAAc,EAAA,GAAK,SAAS,CAAC;EAAf,CAAd,EAAuC,SAAS,CAAC,IAAV,CAAe,QAAtD,CAFJ,CADF;AAOD,CATM","sourcesContent":["import * as React from 'react';\nimport { getSlots } from '@fluentui/react-utilities';\nimport { DividerSlots, DividerState } from './Divider.types';\n\n/**\n * Renders a Divider component by passing the slot props (defined in `state`) to the appropriate slots.\n */\nexport const renderDivider_unstable = (state: DividerState) => {\n const { slots, slotProps } = getSlots<DividerSlots>(state);\n return (\n <slots.root {...slotProps.root}>\n {slotProps.root.children !== undefined && (\n <slots.wrapper {...slotProps.wrapper}>{slotProps.root.children}</slots.wrapper>\n )}\n </slots.root>\n );\n};\n"],"sourceRoot":"../src/"}
|
@@ -8,7 +8,7 @@ import { getNativeElementProps, resolveShorthand, useId } from '@fluentui/react-
|
|
8
8
|
export const useDivider_unstable = (props, ref) => {
|
9
9
|
const {
|
10
10
|
alignContent = 'center',
|
11
|
-
appearance,
|
11
|
+
appearance = 'default',
|
12
12
|
inset = false,
|
13
13
|
vertical = false,
|
14
14
|
wrapper
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["components/Divider/useDivider.ts"],"names":[],"mappings":"AACA,SAAS,qBAAT,EAAgC,gBAAhC,EAAkD,KAAlD,QAA+D,2BAA/D;AAGA;;;;AAIG;;AACH,OAAO,MAAM,mBAAmB,GAAG,CAAC,KAAD,EAAsB,GAAtB,KAAmE;
|
1
|
+
{"version":3,"sources":["components/Divider/useDivider.ts"],"names":[],"mappings":"AACA,SAAS,qBAAT,EAAgC,gBAAhC,EAAkD,KAAlD,QAA+D,2BAA/D;AAGA;;;;AAIG;;AACH,OAAO,MAAM,mBAAmB,GAAG,CAAC,KAAD,EAAsB,GAAtB,KAAmE;EACpG,MAAM;IAAE,YAAY,GAAG,QAAjB;IAA2B,UAAU,GAAG,SAAxC;IAAmD,KAAK,GAAG,KAA3D;IAAkE,QAAQ,GAAG,KAA7E;IAAoF;EAApF,IAAgG,KAAtG;EACA,MAAM,SAAS,GAAG,KAAK,CAAC,UAAD,CAAvB;EAEA,OAAO;IACL;IACA,YAFK;IAGL,UAHK;IAIL,KAJK;IAKL,QALK;IAOL;IACA,UAAU,EAAE;MACV,IAAI,EAAE,KADI;MAEV,OAAO,EAAE;IAFC,CARP;IAaL,IAAI,EAAE,qBAAqB,CAAC,KAAD,EAAQ,EACjC,GAAG,KAD8B;MAEjC,GAFiC;MAGjC,IAAI,EAAE,WAH2B;MAIjC,oBAAoB,QAAQ,GAAG,UAAH,GAAgB,YAJX;MAKjC,mBAAmB,KAAK,CAAC,QAAN,GAAiB,SAAjB,GAA6B;IALf,CAAR,CAbtB;IAoBL,OAAO,EAAE,gBAAgB,CAAC,OAAD,EAAU;MACjC,QAAQ,EAAE,IADuB;MAEjC,YAAY,EAAE;QACZ,EAAE,EAAE,SADQ;QAEZ,QAAQ,EAAE,KAAK,CAAC;MAFJ;IAFmB,CAAV;EApBpB,CAAP;AA4BD,CAhCM","sourcesContent":["import * as React from 'react';\nimport { getNativeElementProps, resolveShorthand, useId } from '@fluentui/react-utilities';\nimport type { DividerProps, DividerState } from './Divider.types';\n\n/**\n * Returns the props and state required to render the component\n * @param props - User-provided props to the Divider component.\n * @param ref - User-provided ref to be passed to the Divider component.\n */\nexport const useDivider_unstable = (props: DividerProps, ref: React.Ref<HTMLElement>): DividerState => {\n const { alignContent = 'center', appearance = 'default', inset = false, vertical = false, wrapper } = props;\n const dividerId = useId('divider-');\n\n return {\n // Props passed at the top-level\n alignContent,\n appearance,\n inset,\n vertical,\n\n // Slots definition\n components: {\n root: 'div',\n wrapper: 'div',\n },\n\n root: getNativeElementProps('div', {\n ...props,\n ref,\n role: 'separator',\n 'aria-orientation': vertical ? 'vertical' : 'horizontal',\n 'aria-labelledby': props.children ? dividerId : undefined,\n }),\n wrapper: resolveShorthand(wrapper, {\n required: true,\n defaultProps: {\n id: dividerId,\n children: props.children,\n },\n }),\n };\n};\n"],"sourceRoot":"../src/"}
|
@@ -1,6 +1,9 @@
|
|
1
1
|
import { mergeClasses, shorthands, __styles } from '@griffel/react';
|
2
2
|
import { tokens } from '@fluentui/react-theme';
|
3
|
-
export const
|
3
|
+
export const dividerClassNames = {
|
4
|
+
root: 'fui-Divider',
|
5
|
+
wrapper: 'fui-Divider__wrapper'
|
6
|
+
};
|
4
7
|
const contentSpacing = '12px';
|
5
8
|
const insetSpacing = '12px';
|
6
9
|
const maxStartEndLength = '8px';
|
@@ -19,117 +22,121 @@ const useBaseStyles = /*#__PURE__*/__styles({
|
|
19
22
|
"Bhrd7zp": "figsok6",
|
20
23
|
"Bg96gwp": "fwrc4pm",
|
21
24
|
"fsow6f": "f17mccla",
|
22
|
-
"
|
23
|
-
"
|
24
|
-
"
|
25
|
-
"
|
26
|
-
"
|
27
|
-
"
|
28
|
-
"Bp1vogq": "fn9f2qq",
|
29
|
-
"Bohd3ja": ["f1h60vep", "fz0g6r7"],
|
30
|
-
"oqd9ik": "ffdc0f3",
|
31
|
-
"Fdvyjd": "fsnc50s",
|
32
|
-
"keybh5": "fjrry2l",
|
33
|
-
"F7kzw7": "fii7hsz",
|
34
|
-
"B13j16c": ["fp9yzmz", "f1n0fcl2"],
|
35
|
-
"Bk8j60v": "f13jg1wd",
|
36
|
-
"Bpbi4o9": ["f1n0fcl2", "fp9yzmz"]
|
25
|
+
"Bcvre1j": "fyl8oag",
|
26
|
+
"Br0sdwz": "f16vkdww",
|
27
|
+
"Bn78ew0": "fhsnbul",
|
28
|
+
"li1rpt": "f1gw3sf2",
|
29
|
+
"ap17g6": "f1ly5f7u",
|
30
|
+
"B771hl4": "f1s3tz6t"
|
37
31
|
},
|
38
32
|
"childless": {
|
39
|
-
"
|
40
|
-
"
|
41
|
-
"
|
42
|
-
"
|
33
|
+
"susq4k": "f1kyqvp9",
|
34
|
+
"Bicfajf": ["fzynn9s", "f1z0ukd1"],
|
35
|
+
"jwcpgy": ["fekrn8e", "ftdg338"],
|
36
|
+
"B4rk6o": "fesgyo"
|
43
37
|
},
|
44
38
|
"start": {
|
45
|
-
"
|
39
|
+
"Bsft5z2": "f13zj6fq"
|
46
40
|
},
|
47
41
|
"center": {
|
48
|
-
"
|
49
|
-
"
|
42
|
+
"Ftih45": "f1wl9k8s",
|
43
|
+
"Bsft5z2": "f13zj6fq"
|
50
44
|
},
|
51
45
|
"end": {
|
52
|
-
"
|
46
|
+
"Ftih45": "f1wl9k8s"
|
53
47
|
},
|
54
48
|
"brand": {
|
55
49
|
"sj55zd": "f16muhyy",
|
56
|
-
"
|
57
|
-
"
|
58
|
-
"
|
59
|
-
"
|
60
|
-
"
|
61
|
-
"
|
62
|
-
"
|
63
|
-
"
|
50
|
+
"Bq4z7u6": "fcbuu2a",
|
51
|
+
"Bk5zm6e": ["f1wdw2dr", "f1ttio3w"],
|
52
|
+
"Bqjgrrk": "f1582fpk",
|
53
|
+
"Bm6vgfq": ["f1ttio3w", "f1wdw2dr"],
|
54
|
+
"B0n5ga8": "f1ahrvm8",
|
55
|
+
"s924m2": ["f1cd3wbc", "f17hbk9y"],
|
56
|
+
"B1q35kw": "fvrapl0",
|
57
|
+
"Gp14am": ["f17hbk9y", "f1cd3wbc"]
|
58
|
+
},
|
59
|
+
"default": {
|
60
|
+
"sj55zd": "fkfq4zb",
|
61
|
+
"Bq4z7u6": "f1vccso1",
|
62
|
+
"Bk5zm6e": ["f1geml7w", "fjml6kk"],
|
63
|
+
"Bqjgrrk": "f1r7kh1m",
|
64
|
+
"Bm6vgfq": ["fjml6kk", "f1geml7w"],
|
65
|
+
"B0n5ga8": "f16j7guv",
|
66
|
+
"s924m2": ["fx01ahm", "fj1a37q"],
|
67
|
+
"B1q35kw": "fl8d8yv",
|
68
|
+
"Gp14am": ["fj1a37q", "fx01ahm"]
|
64
69
|
},
|
65
70
|
"subtle": {
|
66
|
-
"
|
67
|
-
"
|
68
|
-
"
|
69
|
-
"
|
70
|
-
"
|
71
|
-
"
|
72
|
-
"
|
73
|
-
"
|
71
|
+
"sj55zd": "fkfq4zb",
|
72
|
+
"Bq4z7u6": "f5g06un",
|
73
|
+
"Bk5zm6e": ["f13sxdku", "f1n015lb"],
|
74
|
+
"Bqjgrrk": "f1x6bl8t",
|
75
|
+
"Bm6vgfq": ["f1n015lb", "f13sxdku"],
|
76
|
+
"B0n5ga8": "fvod1wy",
|
77
|
+
"s924m2": ["fwslg65", "flk0e17"],
|
78
|
+
"B1q35kw": "f103fvts",
|
79
|
+
"Gp14am": ["flk0e17", "fwslg65"]
|
74
80
|
},
|
75
81
|
"strong": {
|
76
|
-
"
|
77
|
-
"
|
78
|
-
"
|
79
|
-
"
|
80
|
-
"
|
81
|
-
"
|
82
|
-
"
|
83
|
-
"
|
82
|
+
"sj55zd": "fkfq4zb",
|
83
|
+
"Bq4z7u6": "f10tv6oz",
|
84
|
+
"Bk5zm6e": ["f16xp3sf", "f1seuxxq"],
|
85
|
+
"Bqjgrrk": "fwrmqbx",
|
86
|
+
"Bm6vgfq": ["f1seuxxq", "f16xp3sf"],
|
87
|
+
"B0n5ga8": "ft83z1f",
|
88
|
+
"s924m2": ["f1g4150c", "f192dr6e"],
|
89
|
+
"B1q35kw": "f1qnawh6",
|
90
|
+
"Gp14am": ["f192dr6e", "f1g4150c"]
|
84
91
|
}
|
85
92
|
}, {
|
86
|
-
"d": [".f122n59{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}", ".f1ewtqcl{box-sizing:border-box;}", ".f22iagw{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}", ".f1063pyq{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}", ".fqerorx{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;}", ".f10pi13n{position:relative;}", ".fk6fouc{font-family:var(--fontFamilyBase);}", ".fy9rknc{font-size:var(--fontSizeBase200);}", ".figsok6{font-weight:var(--fontWeightRegular);}", ".fwrc4pm{line-height:var(--lineHeightBase200);}", ".f17mccla{text-align:center;}", ".
|
93
|
+
"d": [".f122n59{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}", ".f1ewtqcl{box-sizing:border-box;}", ".f22iagw{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}", ".f1063pyq{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}", ".fqerorx{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;}", ".f10pi13n{position:relative;}", ".fk6fouc{font-family:var(--fontFamilyBase);}", ".fy9rknc{font-size:var(--fontSizeBase200);}", ".figsok6{font-weight:var(--fontWeightRegular);}", ".fwrc4pm{line-height:var(--lineHeightBase200);}", ".f17mccla{text-align:center;}", ".fyl8oag::before{box-sizing:border-box;}", ".f16vkdww::before{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}", ".fhsnbul::before{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;}", ".f1gw3sf2::after{box-sizing:border-box;}", ".f1ly5f7u::after{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}", ".f1s3tz6t::after{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;}", ".f1kyqvp9::before{margin-bottom:0;}", ".fzynn9s::before{margin-right:0;}", ".f1z0ukd1::before{margin-left:0;}", ".fekrn8e::after{margin-left:0;}", ".ftdg338::after{margin-right:0;}", ".fesgyo::after{margin-top:0;}", ".f13zj6fq::after{content:\"\";}", ".f1wl9k8s::before{content:\"\";}", ".f16muhyy{color:var(--colorBrandForeground1);}", ".fcbuu2a::before{border-top-color:var(--colorBrandStroke1);}", ".f1wdw2dr::before{border-right-color:var(--colorBrandStroke1);}", ".f1ttio3w::before{border-left-color:var(--colorBrandStroke1);}", ".f1582fpk::before{border-bottom-color:var(--colorBrandStroke1);}", ".f1ahrvm8::after{border-top-color:var(--colorBrandStroke1);}", ".f1cd3wbc::after{border-right-color:var(--colorBrandStroke1);}", ".f17hbk9y::after{border-left-color:var(--colorBrandStroke1);}", ".fvrapl0::after{border-bottom-color:var(--colorBrandStroke1);}", ".fkfq4zb{color:var(--colorNeutralForeground2);}", ".f1vccso1::before{border-top-color:var(--colorNeutralStroke2);}", ".f1geml7w::before{border-right-color:var(--colorNeutralStroke2);}", ".fjml6kk::before{border-left-color:var(--colorNeutralStroke2);}", ".f1r7kh1m::before{border-bottom-color:var(--colorNeutralStroke2);}", ".f16j7guv::after{border-top-color:var(--colorNeutralStroke2);}", ".fx01ahm::after{border-right-color:var(--colorNeutralStroke2);}", ".fj1a37q::after{border-left-color:var(--colorNeutralStroke2);}", ".fl8d8yv::after{border-bottom-color:var(--colorNeutralStroke2);}", ".f5g06un::before{border-top-color:var(--colorNeutralStroke3);}", ".f13sxdku::before{border-right-color:var(--colorNeutralStroke3);}", ".f1n015lb::before{border-left-color:var(--colorNeutralStroke3);}", ".f1x6bl8t::before{border-bottom-color:var(--colorNeutralStroke3);}", ".fvod1wy::after{border-top-color:var(--colorNeutralStroke3);}", ".fwslg65::after{border-right-color:var(--colorNeutralStroke3);}", ".flk0e17::after{border-left-color:var(--colorNeutralStroke3);}", ".f103fvts::after{border-bottom-color:var(--colorNeutralStroke3);}", ".f10tv6oz::before{border-top-color:var(--colorNeutralStroke1);}", ".f16xp3sf::before{border-right-color:var(--colorNeutralStroke1);}", ".f1seuxxq::before{border-left-color:var(--colorNeutralStroke1);}", ".fwrmqbx::before{border-bottom-color:var(--colorNeutralStroke1);}", ".ft83z1f::after{border-top-color:var(--colorNeutralStroke1);}", ".f1g4150c::after{border-right-color:var(--colorNeutralStroke1);}", ".f192dr6e::after{border-left-color:var(--colorNeutralStroke1);}", ".f1qnawh6::after{border-bottom-color:var(--colorNeutralStroke1);}"]
|
87
94
|
});
|
88
95
|
|
89
96
|
const useHorizontalStyles = /*#__PURE__*/__styles({
|
90
97
|
"base": {
|
91
98
|
"a9b677": "fly5x3f",
|
92
|
-
"
|
93
|
-
"
|
94
|
-
"
|
95
|
-
"
|
96
|
-
"
|
97
|
-
"
|
99
|
+
"Bdkvgpv": "f163fonl",
|
100
|
+
"B0qfbqy": "f51yk4v",
|
101
|
+
"pbipgd": "f13rof3u",
|
102
|
+
"Bm2nyyq": "f8rth92",
|
103
|
+
"xrcqlc": "f6czdpx",
|
104
|
+
"i5u598": "f1iyka9k"
|
98
105
|
},
|
99
106
|
"inset": {
|
100
107
|
"uwmqm3": ["fjlbh76", "f11qrl6u"],
|
101
108
|
"z189sj": ["f11qrl6u", "fjlbh76"]
|
102
109
|
},
|
103
110
|
"start": {
|
104
|
-
"
|
105
|
-
"
|
106
|
-
"
|
107
|
-
"
|
111
|
+
"Ftih45": "f1wl9k8s",
|
112
|
+
"Bicfajf": ["f1ojjlep", "fk1kexq"],
|
113
|
+
"Bxwl2t9": "f1he2m4d",
|
114
|
+
"jwcpgy": ["f12w1bnb", "f1558wlj"]
|
108
115
|
},
|
109
116
|
"center": {
|
110
|
-
"
|
111
|
-
"
|
117
|
+
"Bicfajf": ["f1ojjlep", "fk1kexq"],
|
118
|
+
"jwcpgy": ["f12w1bnb", "f1558wlj"]
|
112
119
|
},
|
113
120
|
"end": {
|
114
|
-
"
|
115
|
-
"
|
116
|
-
"
|
117
|
-
"
|
121
|
+
"Bicfajf": ["f1ojjlep", "fk1kexq"],
|
122
|
+
"Bsft5z2": "f13zj6fq",
|
123
|
+
"jwcpgy": ["f12w1bnb", "f1558wlj"],
|
124
|
+
"Iy66sp": "f1ayce8x"
|
118
125
|
}
|
119
126
|
}, {
|
120
|
-
"d": [".fly5x3f{width:100%;}", ".
|
127
|
+
"d": [".fly5x3f{width:100%;}", ".f163fonl::before{border-top-style:solid;}", ".f51yk4v::before{border-top-width:var(--strokeWidthThin);}", ".f13rof3u::before{min-width:8px;}", ".f8rth92::after{border-top-style:solid;}", ".f6czdpx::after{border-top-width:var(--strokeWidthThin);}", ".f1iyka9k::after{min-width:8px;}", ".fjlbh76{padding-left:12px;}", ".f11qrl6u{padding-right:12px;}", ".f1wl9k8s::before{content:\"\";}", ".f1ojjlep::before{margin-right:12px;}", ".fk1kexq::before{margin-left:12px;}", ".f1he2m4d::before{max-width:8px;}", ".f12w1bnb::after{margin-left:12px;}", ".f1558wlj::after{margin-right:12px;}", ".f13zj6fq::after{content:\"\";}", ".f1ayce8x::after{max-width:8px;}"]
|
121
128
|
});
|
122
129
|
|
123
130
|
const useVerticalStyles = /*#__PURE__*/__styles({
|
124
131
|
"base": {
|
125
132
|
"Beiy3e4": "f1vx9l62",
|
126
133
|
"sshi5w": "f16gbxbe",
|
127
|
-
"
|
128
|
-
"
|
129
|
-
"
|
130
|
-
"
|
131
|
-
"
|
132
|
-
"
|
134
|
+
"m598lv": ["f1yq6w5o", "f1jpmc5p"],
|
135
|
+
"B4f6apu": ["f9sc749", "f1x8pvcy"],
|
136
|
+
"zkzzav": "fhkwbjy",
|
137
|
+
"Barhvk9": ["flthirb", "ftkbnf5"],
|
138
|
+
"Ihftqj": ["f13hvwk3", "f1en4csx"],
|
139
|
+
"Bde111x": "f19onpk6"
|
133
140
|
},
|
134
141
|
"inset": {
|
135
142
|
"B6of3ja": "f1xdg43u",
|
@@ -139,23 +146,23 @@ const useVerticalStyles = /*#__PURE__*/__styles({
|
|
139
146
|
"sshi5w": "f1tjaq3g"
|
140
147
|
},
|
141
148
|
"start": {
|
142
|
-
"
|
143
|
-
"
|
144
|
-
"
|
145
|
-
"
|
149
|
+
"Ftih45": "f1wl9k8s",
|
150
|
+
"susq4k": "fg2pwug",
|
151
|
+
"Bbdr6tz": "fkjtzyi",
|
152
|
+
"B4rk6o": "f8vk40g"
|
146
153
|
},
|
147
154
|
"center": {
|
148
|
-
"
|
149
|
-
"
|
155
|
+
"susq4k": "fg2pwug",
|
156
|
+
"B4rk6o": "f8vk40g"
|
150
157
|
},
|
151
158
|
"end": {
|
152
|
-
"
|
153
|
-
"
|
154
|
-
"
|
155
|
-
"
|
159
|
+
"susq4k": "fg2pwug",
|
160
|
+
"Bsft5z2": "f13zj6fq",
|
161
|
+
"B4rk6o": "f8vk40g",
|
162
|
+
"gn64ia": "fqg5mu5"
|
156
163
|
}
|
157
164
|
}, {
|
158
|
-
"d": [".f1vx9l62{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}", ".f16gbxbe{min-height:20px;}", ".
|
165
|
+
"d": [".f1vx9l62{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}", ".f16gbxbe{min-height:20px;}", ".f1yq6w5o::before{border-right-style:solid;}", ".f1jpmc5p::before{border-left-style:solid;}", ".f9sc749::before{border-right-width:var(--strokeWidthThin);}", ".f1x8pvcy::before{border-left-width:var(--strokeWidthThin);}", ".fhkwbjy::before{min-height:8px;}", ".flthirb::after{border-right-style:solid;}", ".ftkbnf5::after{border-left-style:solid;}", ".f13hvwk3::after{border-right-width:var(--strokeWidthThin);}", ".f1en4csx::after{border-left-width:var(--strokeWidthThin);}", ".f19onpk6::after{min-height:8px;}", ".f1xdg43u{margin-top:12px;}", ".f1jlhsmd{margin-bottom:12px;}", ".f1tjaq3g{min-height:84px;}", ".f1wl9k8s::before{content:\"\";}", ".fg2pwug::before{margin-bottom:12px;}", ".fkjtzyi::before{max-height:8px;}", ".f8vk40g::after{margin-top:12px;}", ".f13zj6fq::after{content:\"\";}", ".fqg5mu5::after{max-height:8px;}"]
|
159
166
|
});
|
160
167
|
|
161
168
|
export const useDividerStyles_unstable = state => {
|
@@ -168,12 +175,17 @@ export const useDividerStyles_unstable = state => {
|
|
168
175
|
inset,
|
169
176
|
vertical
|
170
177
|
} = state;
|
171
|
-
state.root.className = mergeClasses(
|
178
|
+
state.root.className = mergeClasses(dividerClassNames.root, // Base styles
|
172
179
|
baseStyles.base, baseStyles[alignContent], appearance && baseStyles[appearance], // Horizontal styles
|
173
180
|
!vertical && horizontalStyles.base, !vertical && inset && horizontalStyles.inset, !vertical && horizontalStyles[alignContent], // Vertical styles
|
174
181
|
vertical && verticalStyles.base, vertical && inset && verticalStyles.inset, vertical && verticalStyles[alignContent], vertical && state.root.children !== undefined && verticalStyles.withChildren, // Childless styles
|
175
182
|
state.root.children === undefined && baseStyles.childless, // User provided class name
|
176
183
|
state.root.className);
|
184
|
+
|
185
|
+
if (state.wrapper) {
|
186
|
+
state.wrapper.className = mergeClasses(dividerClassNames.wrapper, state.wrapper.className);
|
187
|
+
}
|
188
|
+
|
177
189
|
return state;
|
178
190
|
};
|
179
191
|
//# sourceMappingURL=useDividerStyles.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["components/Divider/useDividerStyles.ts"],"names":[],"mappings":"AAAA,SAAS,YAAT,EAAuB,UAAvB,kBAAqD,gBAArD;AACA,SAAS,MAAT,QAAuB,uBAAvB;
|
1
|
+
{"version":3,"sources":["components/Divider/useDividerStyles.ts"],"names":[],"mappings":"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","sourcesContent":["import { mergeClasses, shorthands, makeStyles } from '@griffel/react';\nimport { tokens } from '@fluentui/react-theme';\nimport { DividerSlots, DividerState } from './Divider.types';\nimport type { SlotClassNames } from '@fluentui/react-utilities';\n\nexport const dividerClassNames: SlotClassNames<DividerSlots> = {\n root: 'fui-Divider',\n wrapper: 'fui-Divider__wrapper',\n};\n\nconst contentSpacing = '12px';\nconst insetSpacing = '12px';\nconst maxStartEndLength = '8px';\nconst minStartEndLength = '8px;';\n\nconst useBaseStyles = makeStyles({\n // Base styles\n base: {\n alignItems: 'center',\n boxSizing: 'border-box',\n display: 'flex',\n flexDirection: 'row',\n flexGrow: 1,\n position: 'relative',\n\n fontFamily: tokens.fontFamilyBase,\n fontSize: tokens.fontSizeBase200,\n fontWeight: tokens.fontWeightRegular,\n lineHeight: tokens.lineHeightBase200,\n textAlign: 'center',\n\n '::before': {\n boxSizing: 'border-box',\n display: 'flex',\n flexGrow: 1,\n },\n\n '::after': {\n boxSizing: 'border-box',\n display: 'flex',\n flexGrow: 1,\n },\n },\n\n // Childless styles\n childless: {\n '::before': {\n marginBottom: 0,\n marginRight: 0,\n },\n\n '::after': {\n marginLeft: 0,\n marginTop: 0,\n },\n },\n\n // Alignment variations\n start: {\n '::after': {\n content: '\"\"',\n },\n },\n center: {\n '::before': {\n content: '\"\"',\n },\n '::after': {\n content: '\"\"',\n },\n },\n end: {\n '::before': {\n content: '\"\"',\n },\n },\n\n // Appearance variations\n brand: {\n color: tokens.colorBrandForeground1,\n\n '::before': {\n ...shorthands.borderColor(tokens.colorBrandStroke1),\n },\n\n '::after': {\n ...shorthands.borderColor(tokens.colorBrandStroke1),\n },\n },\n default: {\n color: tokens.colorNeutralForeground2,\n\n '::before': {\n ...shorthands.borderColor(tokens.colorNeutralStroke2),\n },\n\n '::after': {\n ...shorthands.borderColor(tokens.colorNeutralStroke2),\n },\n },\n subtle: {\n color: tokens.colorNeutralForeground2,\n\n '::before': {\n ...shorthands.borderColor(tokens.colorNeutralStroke3),\n },\n\n '::after': {\n ...shorthands.borderColor(tokens.colorNeutralStroke3),\n },\n },\n strong: {\n color: tokens.colorNeutralForeground2,\n\n '::before': {\n ...shorthands.borderColor(tokens.colorNeutralStroke1),\n },\n\n '::after': {\n ...shorthands.borderColor(tokens.colorNeutralStroke1),\n },\n },\n});\n\nconst useHorizontalStyles = makeStyles({\n // Base styles\n base: {\n width: '100%',\n\n '::before': {\n borderTopStyle: 'solid',\n borderTopWidth: tokens.strokeWidthThin,\n minWidth: minStartEndLength,\n },\n\n '::after': {\n borderTopStyle: 'solid',\n borderTopWidth: tokens.strokeWidthThin,\n minWidth: minStartEndLength,\n },\n },\n\n // Inset styles\n inset: {\n paddingLeft: insetSpacing,\n paddingRight: insetSpacing,\n },\n\n // Alignment variations\n start: {\n '::before': {\n content: '\"\"',\n marginRight: contentSpacing,\n maxWidth: maxStartEndLength,\n },\n\n '::after': {\n marginLeft: contentSpacing,\n },\n },\n center: {\n '::before': {\n marginRight: contentSpacing,\n },\n '::after': {\n marginLeft: contentSpacing,\n },\n },\n end: {\n '::before': {\n marginRight: contentSpacing,\n },\n '::after': {\n content: '\"\"',\n marginLeft: contentSpacing,\n maxWidth: maxStartEndLength,\n },\n },\n});\n\nconst useVerticalStyles = makeStyles({\n // Base styles\n base: {\n flexDirection: 'column',\n minHeight: '20px',\n\n '::before': {\n borderRightStyle: 'solid',\n borderRightWidth: tokens.strokeWidthThin,\n minHeight: minStartEndLength,\n },\n\n '::after': {\n borderRightStyle: 'solid',\n borderRightWidth: tokens.strokeWidthThin,\n minHeight: minStartEndLength,\n },\n },\n\n // Inset styles\n inset: {\n marginTop: insetSpacing,\n marginBottom: insetSpacing,\n },\n\n // With children styles\n withChildren: {\n minHeight: '84px',\n },\n\n // Alignment variations\n start: {\n '::before': {\n content: '\"\"',\n marginBottom: contentSpacing,\n maxHeight: maxStartEndLength,\n },\n\n '::after': {\n marginTop: contentSpacing,\n },\n },\n center: {\n '::before': {\n marginBottom: contentSpacing,\n },\n '::after': {\n marginTop: contentSpacing,\n },\n },\n end: {\n '::before': {\n marginBottom: contentSpacing,\n },\n '::after': {\n content: '\"\"',\n marginTop: contentSpacing,\n maxHeight: maxStartEndLength,\n },\n },\n});\n\nexport const useDividerStyles_unstable = (state: DividerState): DividerState => {\n const baseStyles = useBaseStyles();\n const horizontalStyles = useHorizontalStyles();\n const verticalStyles = useVerticalStyles();\n\n const { alignContent, appearance, inset, vertical } = state;\n\n state.root.className = mergeClasses(\n dividerClassNames.root,\n\n // Base styles\n baseStyles.base,\n baseStyles[alignContent],\n appearance && baseStyles[appearance],\n\n // Horizontal styles\n !vertical && horizontalStyles.base,\n !vertical && inset && horizontalStyles.inset,\n !vertical && horizontalStyles[alignContent],\n\n // Vertical styles\n vertical && verticalStyles.base,\n vertical && inset && verticalStyles.inset,\n vertical && verticalStyles[alignContent],\n vertical && state.root.children !== undefined && verticalStyles.withChildren,\n\n // Childless styles\n state.root.children === undefined && baseStyles.childless,\n\n // User provided class name\n state.root.className,\n );\n\n if (state.wrapper) {\n state.wrapper.className = mergeClasses(dividerClassNames.wrapper, state.wrapper.className);\n }\n\n return state;\n};\n"],"sourceRoot":"../src/"}
|
package/lib/index.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export
|
1
|
+
export { Divider, dividerClassNames, renderDivider_unstable, useDividerStyles_unstable, useDivider_unstable } from './Divider';
|
2
2
|
//# sourceMappingURL=index.js.map
|