@xyd-js/atlas 0.1.0-xyd.9 → 0.1.0-xyd.99
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/.storybook/index.css +1 -27
- package/.storybook/preview.ts +1 -2
- package/CHANGELOG.md +1049 -0
- package/LICENSE +21 -0
- package/dist/Update-0XruJHjj-COLbZvRj.js +4 -0
- package/dist/Update-0XruJHjj-COLbZvRj.js.map +1 -0
- package/dist/Update-DKOAw8p9-COLbZvRj.js +4 -0
- package/dist/Update-DKOAw8p9-COLbZvRj.js.map +1 -0
- package/dist/index.css +43 -54
- package/dist/index.d.ts +30 -11
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/styles.css +89 -0
- package/dist/tokens.css +60 -0
- package/dist/xydPlugin.d.ts +5 -0
- package/dist/xydPlugin.js +2 -0
- package/dist/xydPlugin.js.map +1 -0
- package/index.ts +1 -1
- package/package.json +20 -21
- package/packages/xyd-plugin/SidebarItem.tsx +27 -0
- package/packages/xyd-plugin/index.ts +20 -0
- package/rollup.config.js +56 -12
- package/src/components/ApiRef/ApiRefItem/ApiRefItem.styles.tsx +95 -63
- package/src/components/ApiRef/ApiRefItem/ApiRefItem.tsx +507 -55
- package/src/components/ApiRef/ApiRefProperties/ApiRefProperties.styles.tsx +186 -143
- package/src/components/ApiRef/ApiRefProperties/ApiRefProperties.tsx +584 -76
- package/src/components/ApiRef/ApiRefSamples/ApiRefSamples.styles.tsx +19 -23
- package/src/components/ApiRef/ApiRefSamples/ApiRefSamples.tsx +39 -24
- package/src/components/Atlas/Atlas.styles.tsx +3 -5
- package/src/components/Atlas/Atlas.tsx +34 -21
- package/src/components/Atlas/AtlasContext.tsx +47 -0
- package/src/components/Atlas/AtlasDecorator.styles.ts +22 -0
- package/src/components/Atlas/AtlasDecorator.tsx +15 -0
- package/src/components/Atlas/AtlasLazy/AtlasLazy.styles.tsx +7 -8
- package/src/components/Atlas/AtlasLazy/AtlasLazy.tsx +4 -6
- package/src/components/Atlas/AtlasPrimary.tsx +21 -0
- package/src/components/Atlas/AtlasSecondary.tsx +148 -0
- package/src/components/Atlas/index.ts +6 -2
- package/src/components/Atlas/types.ts +11 -0
- package/src/components/Code/CodeSampleButtons/CodeSampleButtons.styles.tsx +56 -141
- package/src/components/Code/CodeSampleButtons/CodeSampleButtons.tsx +19 -28
- package/src/components/Code/index.ts +0 -4
- package/src/components/Icon/index.tsx +384 -0
- package/src/styles/styles.css +89 -0
- package/src/styles/tokens.css +60 -0
- package/src/utils/mdx.ts +0 -29
- package/tsconfig.json +9 -2
- package/types.d.ts +22 -0
- package/src/components/Code/CodeCopy/CodeCopy.style.tsx +0 -21
- package/src/components/Code/CodeCopy/CodeCopy.tsx +0 -32
- package/src/components/Code/CodeCopy/index.ts +0 -7
- package/src/components/Code/CodeSample/CodeSample.styles.tsx +0 -134
- package/src/components/Code/CodeSample/CodeSample.tsx +0 -149
- package/src/components/Code/CodeSample/index.ts +0 -8
- package/src/components/Code/CodeSample/withLocalStored.tsx +0 -52
- package/src/components/Code/default-theme.ts +0 -266
package/.storybook/index.css
CHANGED
|
@@ -1,30 +1,4 @@
|
|
|
1
|
-
@
|
|
2
|
-
font-family: 'Fustat';
|
|
3
|
-
src: url('./public/fonts/fustat-regular.woff2') format('woff2');
|
|
4
|
-
font-weight: normal;
|
|
5
|
-
font-style: normal;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
@font-face {
|
|
9
|
-
font-family: 'Fustat';
|
|
10
|
-
src: url('./public/fonts/fustat-ext-500.woff2') format('woff2');
|
|
11
|
-
font-weight: 500;
|
|
12
|
-
font-style: normal;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
@font-face {
|
|
16
|
-
font-family: 'Fustat';
|
|
17
|
-
src: url('./public/fonts/fustat-ext-600.woff2') format('woff2');
|
|
18
|
-
font-weight: 600;
|
|
19
|
-
font-style: normal;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
@font-face {
|
|
23
|
-
font-family: 'Fustat';
|
|
24
|
-
src: url('./public/fonts/fustat-ext-700.woff2') format('woff2');
|
|
25
|
-
font-weight: 700;
|
|
26
|
-
font-style: normal;
|
|
27
|
-
}
|
|
1
|
+
@import url('https://fonts.googleapis.com/css2?family=Fustat:wght@400;500;600;700&display=swap');
|
|
28
2
|
|
|
29
3
|
/* Example usage */
|
|
30
4
|
body {
|
package/.storybook/preview.ts
CHANGED