Skip to content

Commit 3ec0051

Browse files
committed
reorganize components
1 parent c3313aa commit 3ec0051

78 files changed

Lines changed: 2015 additions & 229 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@ yarn-error.log*
2525
/src/stories/
2626

2727
*storybook.log
28+
/dist/

.storybook/main.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ const config: StorybookConfig = {
1515
},
1616
},
1717
'@storybook/addon-themes',
18+
'@storybook/addon-google-analytics',
1819
],
1920
staticDirs: ['../src/static', '../src/lib/assets/fonts'],
2021
framework: {

.storybook/manager.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@ import { addons } from 'storybook/manager-api';
22
import yourTheme from './theme';
33

44
addons.setConfig({
5-
theme: yourTheme,
6-
});
5+
theme: yourTheme,
6+
});
7+
8+
window.STORYBOOK_GA_ID = 'G-H4X1J4017T';
9+
window.STORYBOOK_REACT_GA_OPTIONS = {};

dist/lib/components/cspr/cspr.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ export interface CsprProps {
44
precisionCase?: PrecisionCase;
55
hideCsprCurrency?: boolean;
66
}
7-
export declare function Cspr({ motes, precisionCase, hideCsprCurrency }: CsprProps): import("react/jsx-runtime").JSX.Element;
8-
export default Cspr;
7+
export declare function CSPR({ motes, precisionCase, hideCsprCurrency }: CsprProps): import("react/jsx-runtime").JSX.Element;
8+
export default CSPR;
99
//# sourceMappingURL=cspr.d.ts.map

favicon-16x16.png

1.61 KB
Loading

favicon-32x32.png

1.21 KB
Loading

favicon.ico

852 Bytes
Binary file not shown.

manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
"type": "image/x-icon"
99
},
1010
{
11-
"src": "favicon-16x16.png",
12-
"type": "image/png",
11+
"src": "favicon-16x16.svg",
12+
"type": "image/svg",
1313
"sizes": "192x192"
1414
},
1515
{
16-
"src": "favicon-32x32.png",
17-
"type": "image/png",
16+
"src": "favicon-32x32.svg",
17+
"type": "image/svg",
1818
"sizes": "512x512"
1919
}
2020
],

0 commit comments

Comments
 (0)