@kaizen/components 1.70.6 → 1.70.8
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/codemods/upgradeIconV1/getNewIconPropsFromOldIconName.ts +1 -1
- package/dist/cjs/Filter/Filter/subcomponents/FilterContents/FilterContents.cjs +1 -1
- package/dist/cjs/Filter/Filter/subcomponents/FilterContents/FilterContents.module.css.cjs +6 -0
- package/dist/cjs/Filter/Filter/subcomponents/FilterPopover/FilterPopover.cjs +1 -1
- package/dist/cjs/Filter/Filter/subcomponents/FilterPopover/FilterPopover.module.css.cjs +6 -0
- package/dist/cjs/Filter/FilterBar/subcomponents/ClearAllButton/ClearAllButton.cjs +1 -1
- package/dist/cjs/Filter/FilterBar/subcomponents/ClearAllButton/ClearAllButton.module.css.cjs +7 -0
- package/dist/cjs/Filter/FilterSelect/FilterSelect.cjs +1 -1
- package/dist/cjs/Filter/FilterSelect/FilterSelect.module.css.cjs +6 -0
- package/dist/esm/Filter/Filter/subcomponents/FilterContents/FilterContents.mjs +1 -1
- package/dist/esm/Filter/Filter/subcomponents/FilterContents/FilterContents.module.css.mjs +4 -0
- package/dist/esm/Filter/Filter/subcomponents/FilterPopover/FilterPopover.mjs +1 -1
- package/dist/esm/Filter/Filter/subcomponents/FilterPopover/FilterPopover.module.css.mjs +4 -0
- package/dist/esm/Filter/FilterBar/subcomponents/ClearAllButton/ClearAllButton.mjs +1 -1
- package/dist/esm/Filter/FilterBar/subcomponents/ClearAllButton/ClearAllButton.module.css.mjs +5 -0
- package/dist/esm/Filter/FilterSelect/FilterSelect.mjs +1 -1
- package/dist/esm/Filter/FilterSelect/FilterSelect.module.css.mjs +4 -0
- package/dist/styles.css +19 -19
- package/package.json +1 -1
- package/src/Content/Content.module.scss +2 -2
- package/src/Filter/Filter/subcomponents/FilterContents/FilterContents.module.css +3 -0
- package/src/Filter/Filter/subcomponents/FilterContents/FilterContents.tsx +1 -1
- package/src/Filter/Filter/subcomponents/FilterPopover/FilterPopover.module.css +7 -0
- package/src/Filter/Filter/subcomponents/FilterPopover/FilterPopover.tsx +1 -1
- package/src/Filter/FilterBar/subcomponents/ClearAllButton/ClearAllButton.tsx +1 -1
- package/src/Filter/FilterSelect/FilterSelect.module.css +8 -0
- package/src/Filter/FilterSelect/FilterSelect.tsx +1 -1
- package/src/__rc__/Icon/_docs/Icon--migration-guide.mdx +28 -0
- package/src/__rc__/Icon/_docs/Icon.docs.stories.tsx +38 -0
- package/dist/cjs/Filter/Filter/subcomponents/FilterContents/FilterContents.module.scss.cjs +0 -6
- package/dist/cjs/Filter/Filter/subcomponents/FilterPopover/FilterPopover.module.scss.cjs +0 -6
- package/dist/cjs/Filter/FilterBar/subcomponents/ClearAllButton/ClearAllButton.module.scss.cjs +0 -7
- package/dist/cjs/Filter/FilterSelect/FilterSelect.module.scss.cjs +0 -6
- package/dist/esm/Filter/Filter/subcomponents/FilterContents/FilterContents.module.scss.mjs +0 -4
- package/dist/esm/Filter/Filter/subcomponents/FilterPopover/FilterPopover.module.scss.mjs +0 -4
- package/dist/esm/Filter/FilterBar/subcomponents/ClearAllButton/ClearAllButton.module.scss.mjs +0 -5
- package/dist/esm/Filter/FilterSelect/FilterSelect.module.scss.mjs +0 -4
- package/src/Filter/Filter/subcomponents/FilterContents/FilterContents.module.scss +0 -5
- package/src/Filter/Filter/subcomponents/FilterPopover/FilterPopover.module.scss +0 -11
- package/src/Filter/FilterSelect/FilterSelect.module.scss +0 -10
- /package/src/Filter/FilterBar/subcomponents/ClearAllButton/{ClearAllButton.module.scss → ClearAllButton.module.css} +0 -0
|
@@ -5,7 +5,7 @@ import { type StringSuggestions } from '~components/types/StringSuggestions'
|
|
|
5
5
|
// `undefined` means the icon has no usage, thus is not available in the new icon set
|
|
6
6
|
type NewIconProps = { name: IconNames; isFilled?: boolean } | undefined
|
|
7
7
|
|
|
8
|
-
const iconMap = new Map<keyof typeof OLD_ICONS, NewIconProps>([
|
|
8
|
+
export const iconMap = new Map<keyof typeof OLD_ICONS, NewIconProps>([
|
|
9
9
|
['AcademyIcon', { name: 'school' }],
|
|
10
10
|
['ActionOffIcon', undefined],
|
|
11
11
|
['ActionOffWhiteIcon', undefined],
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
var tslib = require('tslib');
|
|
4
4
|
var React = require('react');
|
|
5
5
|
var classnames = require('classnames');
|
|
6
|
-
var FilterContents_module = require('./FilterContents.module.
|
|
6
|
+
var FilterContents_module = require('./FilterContents.module.css.cjs');
|
|
7
7
|
function _interopDefault(e) {
|
|
8
8
|
return e && e.__esModule ? e : {
|
|
9
9
|
default: e
|
|
@@ -4,7 +4,7 @@ var tslib = require('tslib');
|
|
|
4
4
|
var React = require('react');
|
|
5
5
|
var classnames = require('classnames');
|
|
6
6
|
var reactPopper = require('react-popper');
|
|
7
|
-
var FilterPopover_module = require('./FilterPopover.module.
|
|
7
|
+
var FilterPopover_module = require('./FilterPopover.module.css.cjs');
|
|
8
8
|
function _interopDefault(e) {
|
|
9
9
|
return e && e.__esModule ? e : {
|
|
10
10
|
default: e
|
|
@@ -6,7 +6,7 @@ var classnames = require('classnames');
|
|
|
6
6
|
var Button = require('../../../../Button/Button/Button.cjs');
|
|
7
7
|
require('../../../../Button/IconButton/IconButton.cjs');
|
|
8
8
|
var FilterBarContext = require('../../context/FilterBarContext.cjs');
|
|
9
|
-
var ClearAllButton_module = require('./ClearAllButton.module.
|
|
9
|
+
var ClearAllButton_module = require('./ClearAllButton.module.css.cjs');
|
|
10
10
|
function _interopDefault(e) {
|
|
11
11
|
return e && e.__esModule ? e : {
|
|
12
12
|
default: e
|
|
@@ -19,7 +19,7 @@ var SelectPopoverContents = require('../../__rc__/Select/subcomponents/SelectPop
|
|
|
19
19
|
require('../../__rc__/Select/subcomponents/SelectToggle/SelectToggle.cjs');
|
|
20
20
|
var getDisabledKeysFromItems = require('../../__rc__/Select/utils/getDisabledKeysFromItems.cjs');
|
|
21
21
|
var transformSelectItemToCollectionElement = require('../../__rc__/Select/utils/transformSelectItemToCollectionElement.cjs');
|
|
22
|
-
var FilterSelect_module = require('./FilterSelect.module.
|
|
22
|
+
var FilterSelect_module = require('./FilterSelect.module.css.cjs');
|
|
23
23
|
function _interopDefault(e) {
|
|
24
24
|
return e && e.__esModule ? e : {
|
|
25
25
|
default: e
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __rest, __assign } from 'tslib';
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import classnames from 'classnames';
|
|
4
|
-
import styles from './FilterContents.module.
|
|
4
|
+
import styles from './FilterContents.module.css.mjs';
|
|
5
5
|
const FilterContents = /*#__PURE__*/function () {
|
|
6
6
|
const FilterContents = function (_a) {
|
|
7
7
|
var children = _a.children,
|
|
@@ -2,7 +2,7 @@ import { __rest, __assign } from 'tslib';
|
|
|
2
2
|
import React, { useState } from 'react';
|
|
3
3
|
import classnames from 'classnames';
|
|
4
4
|
import { usePopper } from 'react-popper';
|
|
5
|
-
import styles from './FilterPopover.module.
|
|
5
|
+
import styles from './FilterPopover.module.css.mjs';
|
|
6
6
|
const FilterPopover = /*#__PURE__*/function () {
|
|
7
7
|
const FilterPopover = function (_a) {
|
|
8
8
|
var children = _a.children,
|
|
@@ -4,7 +4,7 @@ import classnames from 'classnames';
|
|
|
4
4
|
import { Button } from '../../../../Button/Button/Button.mjs';
|
|
5
5
|
import '../../../../Button/IconButton/IconButton.mjs';
|
|
6
6
|
import { useFilterBarContext } from '../../context/FilterBarContext.mjs';
|
|
7
|
-
import styles from './ClearAllButton.module.
|
|
7
|
+
import styles from './ClearAllButton.module.css.mjs';
|
|
8
8
|
const ClearAllButton = /*#__PURE__*/function () {
|
|
9
9
|
const ClearAllButton = function () {
|
|
10
10
|
var _a;
|
|
@@ -17,7 +17,7 @@ import { SelectPopoverContents } from '../../__rc__/Select/subcomponents/SelectP
|
|
|
17
17
|
import '../../__rc__/Select/subcomponents/SelectToggle/SelectToggle.mjs';
|
|
18
18
|
import { getDisabledKeysFromItems } from '../../__rc__/Select/utils/getDisabledKeysFromItems.mjs';
|
|
19
19
|
import { transformSelectItemToCollectionElement } from '../../__rc__/Select/utils/transformSelectItemToCollectionElement.mjs';
|
|
20
|
-
import styles from './FilterSelect.module.
|
|
20
|
+
import styles from './FilterSelect.module.css.mjs';
|
|
21
21
|
const FilterSelect = /*#__PURE__*/function () {
|
|
22
22
|
const FilterSelect = function (_a) {
|
|
23
23
|
var isOpen = _a.isOpen,
|
package/dist/styles.css
CHANGED
|
@@ -2358,12 +2358,12 @@
|
|
|
2358
2358
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
2359
2359
|
.Content-module_content__ZeTRs {
|
|
2360
2360
|
max-width: 1392px;
|
|
2361
|
-
|
|
2361
|
+
padding: 0 72px;
|
|
2362
2362
|
width: 100%;
|
|
2363
2363
|
}
|
|
2364
2364
|
@media (max-width: calc(1080px - 1px)) {
|
|
2365
2365
|
.Content-module_content__ZeTRs {
|
|
2366
|
-
|
|
2366
|
+
padding: 0 12px;
|
|
2367
2367
|
}
|
|
2368
2368
|
}
|
|
2369
2369
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
@@ -3565,26 +3565,24 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
3565
3565
|
display: inline;
|
|
3566
3566
|
margin-bottom: 0;
|
|
3567
3567
|
}
|
|
3568
|
-
|
|
3569
|
-
|
|
3570
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
3571
|
-
.FilterPopover-module_filterPopover__eVkH6 {
|
|
3572
|
-
background-color: var(--color-white, #ffffff);
|
|
3568
|
+
.FilterPopover-module_filterPopover__ZAkra {
|
|
3569
|
+
background-color: var(--color-white);
|
|
3573
3570
|
z-index: 1010;
|
|
3574
|
-
box-shadow: var(--shadow-large-box-shadow
|
|
3575
|
-
border-radius: var(--border-borderless-border-radius
|
|
3571
|
+
box-shadow: var(--shadow-large-box-shadow);
|
|
3572
|
+
border-radius: var(--border-borderless-border-radius);
|
|
3576
3573
|
display: inline-flex;
|
|
3577
3574
|
}
|
|
3575
|
+
|
|
3578
3576
|
@media (width < 768px) {
|
|
3579
3577
|
.Filter-module_filter__u3IkC {
|
|
3580
3578
|
flex-basis: 100%;
|
|
3581
3579
|
}
|
|
3582
3580
|
}
|
|
3583
3581
|
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
padding: var(--spacing-md, 1.5rem);
|
|
3582
|
+
.FilterContents-module_filterContents__LEVFe {
|
|
3583
|
+
padding: var(--spacing-24);
|
|
3587
3584
|
}
|
|
3585
|
+
|
|
3588
3586
|
.DateInputField-module_disabled__gfago {
|
|
3589
3587
|
opacity: 0.3;
|
|
3590
3588
|
}
|
|
@@ -4160,14 +4158,15 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
4160
4158
|
text-overflow: ellipsis;
|
|
4161
4159
|
padding-inline-end: var(--spacing-12);
|
|
4162
4160
|
}
|
|
4163
|
-
|
|
4164
|
-
.FilterSelect-
|
|
4161
|
+
/* This a temporary fix to increase specificity, until we figure out why this CSS is being compiled later than the padding in the FilterContents sub-component */
|
|
4162
|
+
.FilterSelect-module_filterContents__--oQN.FilterSelect-module_filterContents__--oQN {
|
|
4165
4163
|
box-sizing: border-box;
|
|
4166
|
-
min-width: 12.25rem;
|
|
4167
|
-
max-width: 25rem;
|
|
4164
|
+
min-width: 12.25rem; /* 196px */
|
|
4165
|
+
max-width: 25rem; /* 400px */
|
|
4168
4166
|
overflow: auto;
|
|
4169
|
-
padding: unset;
|
|
4167
|
+
padding: unset; /* Padding is added by <SelectPopoverContents> */
|
|
4170
4168
|
}
|
|
4169
|
+
|
|
4171
4170
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
4172
4171
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
4173
4172
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
@@ -4304,13 +4303,14 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
4304
4303
|
display: block;
|
|
4305
4304
|
margin: 5px 0;
|
|
4306
4305
|
}
|
|
4307
|
-
.ClearAllButton-
|
|
4306
|
+
.ClearAllButton-module_clearAllButton__dl4nS {
|
|
4308
4307
|
white-space: nowrap;
|
|
4309
4308
|
}
|
|
4310
4309
|
|
|
4311
|
-
.ClearAllButton-
|
|
4310
|
+
.ClearAllButton-module_hidden__guVNI {
|
|
4312
4311
|
visibility: hidden;
|
|
4313
4312
|
}
|
|
4313
|
+
|
|
4314
4314
|
.FilterBar-module_filterBar__JEVKL {
|
|
4315
4315
|
display: flex;
|
|
4316
4316
|
padding: var(--spacing-8);
|
package/package.json
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
.content {
|
|
5
5
|
max-width: $layout-content-max-width;
|
|
6
|
-
|
|
6
|
+
padding: 0 $layout-content-side-margin;
|
|
7
7
|
width: 100%;
|
|
8
8
|
|
|
9
9
|
@media (max-width: calc(#{$layout-breakpoints-large} - 1px)) {
|
|
10
|
-
|
|
10
|
+
padding: 0 $content-margin-width-on-medium-and-small;
|
|
11
11
|
}
|
|
12
12
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React, { type HTMLAttributes } from 'react'
|
|
2
2
|
import classnames from 'classnames'
|
|
3
3
|
import { type OverrideClassName } from '~components/types/OverrideClassName'
|
|
4
|
-
import styles from './FilterContents.module.
|
|
4
|
+
import styles from './FilterContents.module.css'
|
|
5
5
|
|
|
6
6
|
export type FilterContentsProps = {
|
|
7
7
|
children: React.ReactNode
|
|
@@ -3,7 +3,7 @@ import { type Options } from '@popperjs/core'
|
|
|
3
3
|
import classnames from 'classnames'
|
|
4
4
|
import { usePopper } from 'react-popper'
|
|
5
5
|
import { type OverrideClassName } from '~components/types/OverrideClassName'
|
|
6
|
-
import styles from './FilterPopover.module.
|
|
6
|
+
import styles from './FilterPopover.module.css'
|
|
7
7
|
|
|
8
8
|
export type FilterPopoverProps = {
|
|
9
9
|
children: React.ReactNode
|
|
@@ -3,7 +3,7 @@ import { useIntl } from '@cultureamp/i18n-react-intl'
|
|
|
3
3
|
import classnames from 'classnames'
|
|
4
4
|
import { Button } from '~components/Button'
|
|
5
5
|
import { useFilterBarContext } from '../../context/FilterBarContext'
|
|
6
|
-
import styles from './ClearAllButton.module.
|
|
6
|
+
import styles from './ClearAllButton.module.css'
|
|
7
7
|
|
|
8
8
|
export const ClearAllButton = (): JSX.Element => {
|
|
9
9
|
const { formatMessage } = useIntl()
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/* This a temporary fix to increase specificity, until we figure out why this CSS is being compiled later than the padding in the FilterContents sub-component */
|
|
2
|
+
.filterContents.filterContents {
|
|
3
|
+
box-sizing: border-box;
|
|
4
|
+
min-width: 12.25rem; /* 196px */
|
|
5
|
+
max-width: 25rem; /* 400px */
|
|
6
|
+
overflow: auto;
|
|
7
|
+
padding: unset; /* Padding is added by <SelectPopoverContents> */
|
|
8
|
+
}
|
|
@@ -17,7 +17,7 @@ import { getDisabledKeysFromItems } from '~components/__rc__/Select/utils/getDis
|
|
|
17
17
|
import { transformSelectItemToCollectionElement } from '~components/__rc__/Select/utils/transformSelectItemToCollectionElement'
|
|
18
18
|
import { type OverrideClassName } from '~components/types/OverrideClassName'
|
|
19
19
|
import { type SelectItem, type SelectOption } from './types'
|
|
20
|
-
import styles from './FilterSelect.module.
|
|
20
|
+
import styles from './FilterSelect.module.css'
|
|
21
21
|
|
|
22
22
|
type OmittedAriaSelectProps =
|
|
23
23
|
| 'label'
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { Canvas, Meta, Controls, Story } from '@storybook/blocks'
|
|
2
|
+
import { ResourceLinks, KAIOInstallation, LinkTo } from '~storybook/components'
|
|
3
|
+
import * as IconStories from './Icon.docs.stories'
|
|
4
|
+
|
|
5
|
+
<Meta title="Components/Icon/Icon (Future)/Migration Guide" />
|
|
6
|
+
|
|
7
|
+
# Icon Migration Guide
|
|
8
|
+
|
|
9
|
+
This is a short guide to assist in migration from the old to new Icon component.
|
|
10
|
+
|
|
11
|
+
## Codemod
|
|
12
|
+
|
|
13
|
+
To assist in migration we have created the `upgradeiconv1` codemod. This will loop through the given directory and update all instances of Icon to the latest implementation. You can refer to this [README](https://github.com/cultureamp/kaizen-design-system/blob/main/packages/components/codemods/README.md#upgradeiconv1) on how to run this within your repository.
|
|
14
|
+
|
|
15
|
+
For more information on the changes to the API, we recommend referring the <LinkTo pageId="components-icon-icon-future-api-specification--docs">API Specification</LinkTo>.
|
|
16
|
+
|
|
17
|
+
## Changes to Icon exportNames
|
|
18
|
+
|
|
19
|
+
The following table outlines the changes to the Icons names and whether the new `isFilled` prop is required. This can be used if you are manually migrating components.
|
|
20
|
+
|
|
21
|
+
Where `N/A` is shown, this indicates that an equivalent icon does not exist or has been made redundant by the new API, ie:
|
|
22
|
+
|
|
23
|
+
- `ActionOffIcon` is not needed as the new `ActionOnIcon` (`flash_on`) can be used with the `isFilled` to handle the toggled states.
|
|
24
|
+
- `ActionOffIconActionOffWhiteIcon` is not needed as the API allows for color to be set via `className` or inherited via it's parent element.
|
|
25
|
+
|
|
26
|
+
You will need to discuss alternative with your design team or reach out in the #help_design_system channel if an equivalent icon does not exist.
|
|
27
|
+
|
|
28
|
+
<Story of={IconStories.IconTableComparison} />
|
|
@@ -15,6 +15,7 @@ import { ToggleSwitchField } from '~components/ToggleSwitch'
|
|
|
15
15
|
import { Button } from '~components/__rc__/Button'
|
|
16
16
|
import { Tag } from '~components/__rc__/Tag'
|
|
17
17
|
import { StickerSheet } from '~storybook/components/StickerSheet'
|
|
18
|
+
import { iconMap } from '../../../../codemods/upgradeIconV1/getNewIconPropsFromOldIconName'
|
|
18
19
|
import { iconDefaultSet } from '../constants'
|
|
19
20
|
import { Icon } from '../index'
|
|
20
21
|
import imgInterfaceDont from './assets/interface-dont.png'
|
|
@@ -476,3 +477,40 @@ export const TooltipDont: Story = {
|
|
|
476
477
|
/>
|
|
477
478
|
),
|
|
478
479
|
}
|
|
480
|
+
|
|
481
|
+
export const IconTableComparison: Story = {
|
|
482
|
+
render: () => {
|
|
483
|
+
return (
|
|
484
|
+
<TableContainer>
|
|
485
|
+
<TableHeader>
|
|
486
|
+
<TableRow>
|
|
487
|
+
<TableHeaderRowCell width={4 / 12} labelText="Old name" />
|
|
488
|
+
<TableHeaderRowCell width={4 / 12} labelText="New name" />
|
|
489
|
+
<TableHeaderRowCell width={4 / 12} labelText="isFilled" />
|
|
490
|
+
</TableRow>
|
|
491
|
+
</TableHeader>
|
|
492
|
+
{Array.from(iconMap).map(([key, value]) => (
|
|
493
|
+
<TableCard key={key}>
|
|
494
|
+
<TableRow>
|
|
495
|
+
<TableRowCell width={4 / 12}>
|
|
496
|
+
<Text tag="div" variant="body">
|
|
497
|
+
{key}
|
|
498
|
+
</Text>
|
|
499
|
+
</TableRowCell>
|
|
500
|
+
<TableRowCell width={4 / 12}>
|
|
501
|
+
<Text tag="div" variant="body">
|
|
502
|
+
{value?.name ?? 'N/A'}
|
|
503
|
+
</Text>
|
|
504
|
+
</TableRowCell>
|
|
505
|
+
<TableRowCell width={4 / 12}>
|
|
506
|
+
<Text tag="div" variant="body">
|
|
507
|
+
{value?.isFilled ? 'true' : value?.name ? 'false' : 'N/A'}
|
|
508
|
+
</Text>
|
|
509
|
+
</TableRowCell>
|
|
510
|
+
</TableRow>
|
|
511
|
+
</TableCard>
|
|
512
|
+
))}
|
|
513
|
+
</TableContainer>
|
|
514
|
+
)
|
|
515
|
+
},
|
|
516
|
+
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
@import '~@kaizen/design-tokens/sass/border';
|
|
2
|
-
@import '~@kaizen/design-tokens/sass/color';
|
|
3
|
-
@import '~@kaizen/design-tokens/sass/shadow';
|
|
4
|
-
|
|
5
|
-
.filterPopover {
|
|
6
|
-
background-color: $color-white;
|
|
7
|
-
z-index: 1010;
|
|
8
|
-
box-shadow: $shadow-large-box-shadow;
|
|
9
|
-
border-radius: $border-borderless-border-radius;
|
|
10
|
-
display: inline-flex;
|
|
11
|
-
}
|
|
File without changes
|