@atlaskit/css 0.13.0 → 0.13.1
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.md
CHANGED
|
@@ -875,11 +875,11 @@ export type Layer = keyof typeof layerMap;
|
|
|
875
875
|
|
|
876
876
|
/**
|
|
877
877
|
* THIS SECTION WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
878
|
-
* @codegen <<SignedSource::
|
|
878
|
+
* @codegen <<SignedSource::71788d573ebf1ca2644ef177172c9ecf>>
|
|
879
879
|
* @codegenId border
|
|
880
880
|
* @codegenCommand yarn workspace @atlaskit/primitives codegen-styles
|
|
881
881
|
* @codegenParams ["width", "radius"]
|
|
882
|
-
* @codegenDependency ../../../tokens/src/artifacts/tokens-raw/atlassian-shape.tsx <<SignedSource::
|
|
882
|
+
* @codegenDependency ../../../tokens/src/artifacts/tokens-raw/atlassian-shape.tsx <<SignedSource::6496556b3439a7f18f8b7a7a3ec59bb9>>
|
|
883
883
|
*/
|
|
884
884
|
export const borderWidthMap = {
|
|
885
885
|
'border.width': token('border.width', '1px'),
|
|
@@ -902,7 +902,6 @@ export const borderRadiusMap = {
|
|
|
902
902
|
'radius.large': token('radius.large', '8px'),
|
|
903
903
|
'radius.xlarge': token('radius.xlarge', '12px'),
|
|
904
904
|
'radius.full': token('radius.full', '9999px'),
|
|
905
|
-
'radius.tile': token('radius.tile', '25%'),
|
|
906
905
|
// @deprecated
|
|
907
906
|
'border.radius': token('border.radius', '3px'),
|
|
908
907
|
// @deprecated
|
|
@@ -133,7 +133,7 @@ import { token } from '@atlaskit/tokens';
|
|
|
133
133
|
|
|
134
134
|
const styles = cssMap({
|
|
135
135
|
button: { padding: token('space.100'), borderRadius: token('radius.small') },
|
|
136
|
-
dense: { padding: token('space.050'), borderRadius: token('
|
|
136
|
+
dense: { padding: token('space.050'), borderRadius: token('radius.xsmall') },
|
|
137
137
|
});
|
|
138
138
|
|
|
139
139
|
export function Card({
|
|
@@ -199,7 +199,7 @@ import { token } from '@atlaskit/tokens';
|
|
|
199
199
|
|
|
200
200
|
const styles = cssMap({
|
|
201
201
|
button: { padding: token('space.100'), borderRadius: token('radius.small') },
|
|
202
|
-
dense: { padding: token('space.050'), borderRadius: token('
|
|
202
|
+
dense: { padding: token('space.050'), borderRadius: token('radius.xsmall') },
|
|
203
203
|
});
|
|
204
204
|
|
|
205
205
|
export function Card({
|
package/package.json
CHANGED