@apify/ui-library 1.85.0 → 1.86.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/dist/src/design_system/colors/colors.stories.d.ts +6 -0
- package/dist/src/design_system/colors/colors.stories.d.ts.map +1 -0
- package/dist/src/design_system/colors/colors.stories.js +17 -0
- package/dist/src/design_system/colors/colors.stories.js.map +1 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +4 -3
- package/src/components/badge.stories.jsx +104 -0
- package/src/components/button.stories.jsx +126 -0
- package/src/design_system/colors/colors.stories.tsx +22 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"colors.stories.d.ts","sourceRoot":"","sources":["../../../../src/design_system/colors/colors.stories.tsx"],"names":[],"mappings":";;;AAGA,wBAEE;AAUF,eAAO,MAAM,OAAO,+CAMnB,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import styled from 'styled-components';
|
|
3
|
+
// eslint-disable-next-line import/no-default-export
|
|
4
|
+
export default {
|
|
5
|
+
title: 'Design Tokens/Colors',
|
|
6
|
+
};
|
|
7
|
+
const Grid = styled.div `
|
|
8
|
+
padding: 32px;
|
|
9
|
+
width: 100%;
|
|
10
|
+
display: grid;
|
|
11
|
+
grid-template-columns: repeat( auto-fit, minmax(100px, 1fr) );
|
|
12
|
+
gap: 32px 16px;
|
|
13
|
+
`;
|
|
14
|
+
export const Default = () => {
|
|
15
|
+
return (_jsx(Grid, { children: "TODO COLORS PALETTE" }));
|
|
16
|
+
};
|
|
17
|
+
//# sourceMappingURL=colors.stories.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"colors.stories.js","sourceRoot":"","sources":["../../../../src/design_system/colors/colors.stories.tsx"],"names":[],"mappings":";AAAA,OAAO,MAAM,MAAM,mBAAmB,CAAC;AAEvC,oDAAoD;AACpD,eAAe;IACX,KAAK,EAAE,sBAAsB;CAChC,CAAC;AAEF,MAAM,IAAI,GAAG,MAAM,CAAC,GAAG,CAAA;;;;;;CAMtB,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,GAAG,EAAE;IACxB,OAAO,CACH,KAAC,IAAI,sCAEE,CACV,CAAC;AACN,CAAC,CAAC"}
|