@ersbeth/picokit 0.0.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/README.md +97 -0
- package/dist/components/index.d.ts +4 -0
- package/dist/components/index.d.ts.map +1 -0
- package/dist/components/layout/cluster.d.ts +6 -0
- package/dist/components/layout/cluster.d.ts.map +1 -0
- package/dist/components/layout/container.d.ts +6 -0
- package/dist/components/layout/container.d.ts.map +1 -0
- package/dist/components/layout/dual.d.ts +14 -0
- package/dist/components/layout/dual.d.ts.map +1 -0
- package/dist/components/layout/index.d.ts +5 -0
- package/dist/components/layout/index.d.ts.map +1 -0
- package/dist/components/layout/stack.d.ts +6 -0
- package/dist/components/layout/stack.d.ts.map +1 -0
- package/dist/components/marketing/footer.d.ts +40 -0
- package/dist/components/marketing/footer.d.ts.map +1 -0
- package/dist/components/marketing/index.d.ts +6 -0
- package/dist/components/marketing/index.d.ts.map +1 -0
- package/dist/components/marketing/navigation.d.ts +24 -0
- package/dist/components/marketing/navigation.d.ts.map +1 -0
- package/dist/components/marketing/page.d.ts +13 -0
- package/dist/components/marketing/page.d.ts.map +1 -0
- package/dist/components/marketing/section.d.ts +13 -0
- package/dist/components/marketing/section.d.ts.map +1 -0
- package/dist/components/marketing/text.d.ts +12 -0
- package/dist/components/marketing/text.d.ts.map +1 -0
- package/dist/components/mixin/alignMixin.d.ts +15 -0
- package/dist/components/mixin/alignMixin.d.ts.map +1 -0
- package/dist/components/mixin/gapMixin.d.ts +22 -0
- package/dist/components/mixin/gapMixin.d.ts.map +1 -0
- package/dist/components/mixin/heightMixin.d.ts +22 -0
- package/dist/components/mixin/heightMixin.d.ts.map +1 -0
- package/dist/components/mixin/index.d.ts +9 -0
- package/dist/components/mixin/index.d.ts.map +1 -0
- package/dist/components/mixin/paddingMixin.d.ts +99 -0
- package/dist/components/mixin/paddingMixin.d.ts.map +1 -0
- package/dist/components/mixin/panelMixin.d.ts +48 -0
- package/dist/components/mixin/panelMixin.d.ts.map +1 -0
- package/dist/components/mixin/styleMixin.d.ts +9 -0
- package/dist/components/mixin/styleMixin.d.ts.map +1 -0
- package/dist/components/mixin/textMixin.d.ts +66 -0
- package/dist/components/mixin/textMixin.d.ts.map +1 -0
- package/dist/components/mixin/widthMixin.d.ts +26 -0
- package/dist/components/mixin/widthMixin.d.ts.map +1 -0
- package/dist/components/ui/avatar.d.ts +9 -0
- package/dist/components/ui/avatar.d.ts.map +1 -0
- package/dist/components/ui/button.d.ts +29 -0
- package/dist/components/ui/button.d.ts.map +1 -0
- package/dist/components/ui/card.d.ts +10 -0
- package/dist/components/ui/card.d.ts.map +1 -0
- package/dist/components/ui/carousel.d.ts +17 -0
- package/dist/components/ui/carousel.d.ts.map +1 -0
- package/dist/components/ui/image.d.ts +24 -0
- package/dist/components/ui/image.d.ts.map +1 -0
- package/dist/components/ui/index.d.ts +6 -0
- package/dist/components/ui/index.d.ts.map +1 -0
- package/dist/components.css +1867 -0
- package/dist/components.d.ts +2 -0
- package/dist/components.d.ts.map +1 -0
- package/dist/components.jsx +1051 -0
- package/dist/media.css +39 -0
- package/dist/reset.css +40 -0
- package/dist/reset.d.ts +2 -0
- package/dist/reset.d.ts.map +1 -0
- package/dist/reset.js +1 -0
- package/dist/src/components/index.d.ts +4 -0
- package/dist/src/components/index.d.ts.map +1 -0
- package/dist/src/components/layout/cluster.d.ts +6 -0
- package/dist/src/components/layout/cluster.d.ts.map +1 -0
- package/dist/src/components/layout/container.d.ts +6 -0
- package/dist/src/components/layout/container.d.ts.map +1 -0
- package/dist/src/components/layout/dual.d.ts +14 -0
- package/dist/src/components/layout/dual.d.ts.map +1 -0
- package/dist/src/components/layout/index.d.ts +5 -0
- package/dist/src/components/layout/index.d.ts.map +1 -0
- package/dist/src/components/layout/stack.d.ts +6 -0
- package/dist/src/components/layout/stack.d.ts.map +1 -0
- package/dist/src/components/marketing/footer.d.ts +40 -0
- package/dist/src/components/marketing/footer.d.ts.map +1 -0
- package/dist/src/components/marketing/index.d.ts +6 -0
- package/dist/src/components/marketing/index.d.ts.map +1 -0
- package/dist/src/components/marketing/navigation.d.ts +24 -0
- package/dist/src/components/marketing/navigation.d.ts.map +1 -0
- package/dist/src/components/marketing/page.d.ts +13 -0
- package/dist/src/components/marketing/page.d.ts.map +1 -0
- package/dist/src/components/marketing/section.d.ts +13 -0
- package/dist/src/components/marketing/section.d.ts.map +1 -0
- package/dist/src/components/marketing/text.d.ts +12 -0
- package/dist/src/components/marketing/text.d.ts.map +1 -0
- package/dist/src/components/mixin/alignMixin.d.ts +15 -0
- package/dist/src/components/mixin/alignMixin.d.ts.map +1 -0
- package/dist/src/components/mixin/gapMixin.d.ts +22 -0
- package/dist/src/components/mixin/gapMixin.d.ts.map +1 -0
- package/dist/src/components/mixin/heightMixin.d.ts +22 -0
- package/dist/src/components/mixin/heightMixin.d.ts.map +1 -0
- package/dist/src/components/mixin/index.d.ts +9 -0
- package/dist/src/components/mixin/index.d.ts.map +1 -0
- package/dist/src/components/mixin/paddingMixin.d.ts +99 -0
- package/dist/src/components/mixin/paddingMixin.d.ts.map +1 -0
- package/dist/src/components/mixin/panelMixin.d.ts +48 -0
- package/dist/src/components/mixin/panelMixin.d.ts.map +1 -0
- package/dist/src/components/mixin/styleMixin.d.ts +9 -0
- package/dist/src/components/mixin/styleMixin.d.ts.map +1 -0
- package/dist/src/components/mixin/textMixin.d.ts +66 -0
- package/dist/src/components/mixin/textMixin.d.ts.map +1 -0
- package/dist/src/components/mixin/widthMixin.d.ts +26 -0
- package/dist/src/components/mixin/widthMixin.d.ts.map +1 -0
- package/dist/src/components/ui/avatar.d.ts +9 -0
- package/dist/src/components/ui/avatar.d.ts.map +1 -0
- package/dist/src/components/ui/button.d.ts +29 -0
- package/dist/src/components/ui/button.d.ts.map +1 -0
- package/dist/src/components/ui/card.d.ts +10 -0
- package/dist/src/components/ui/card.d.ts.map +1 -0
- package/dist/src/components/ui/carousel.d.ts +17 -0
- package/dist/src/components/ui/carousel.d.ts.map +1 -0
- package/dist/src/components/ui/image.d.ts +24 -0
- package/dist/src/components/ui/image.d.ts.map +1 -0
- package/dist/src/components/ui/index.d.ts +6 -0
- package/dist/src/components/ui/index.d.ts.map +1 -0
- package/dist/src/components.d.ts +2 -0
- package/dist/src/components.d.ts.map +1 -0
- package/dist/src/reset.d.ts +2 -0
- package/dist/src/reset.d.ts.map +1 -0
- package/dist/src/theme.d.ts +2 -0
- package/dist/src/theme.d.ts.map +1 -0
- package/dist/src/tokens.d.ts +2 -0
- package/dist/src/tokens.d.ts.map +1 -0
- package/dist/test/app.d.ts +2 -0
- package/dist/test/app.d.ts.map +1 -0
- package/dist/test/main.d.ts +5 -0
- package/dist/test/main.d.ts.map +1 -0
- package/dist/test/pages/examples/home.d.ts +2 -0
- package/dist/test/pages/examples/home.d.ts.map +1 -0
- package/dist/test/pages/examples/pageBlocks.d.ts +2 -0
- package/dist/test/pages/examples/pageBlocks.d.ts.map +1 -0
- package/dist/test/pages/examples/pageButtons.d.ts +2 -0
- package/dist/test/pages/examples/pageButtons.d.ts.map +1 -0
- package/dist/test/pages/examples/pageCards.d.ts +2 -0
- package/dist/test/pages/examples/pageCards.d.ts.map +1 -0
- package/dist/test/pages/examples/pageCarousel.d.ts +2 -0
- package/dist/test/pages/examples/pageCarousel.d.ts.map +1 -0
- package/dist/test/pages/examples/pageContainers.d.ts +2 -0
- package/dist/test/pages/examples/pageContainers.d.ts.map +1 -0
- package/dist/test/pages/examples/pageLists.d.ts +2 -0
- package/dist/test/pages/examples/pageLists.d.ts.map +1 -0
- package/dist/test/pages/examples/pagePalette.d.ts +2 -0
- package/dist/test/pages/examples/pagePalette.d.ts.map +1 -0
- package/dist/test/pages/examples/pageSections.d.ts +2 -0
- package/dist/test/pages/examples/pageSections.d.ts.map +1 -0
- package/dist/test/pages/examples/pageSplits.d.ts +2 -0
- package/dist/test/pages/examples/pageSplits.d.ts.map +1 -0
- package/dist/test/pages/examples/pageText.d.ts +2 -0
- package/dist/test/pages/examples/pageText.d.ts.map +1 -0
- package/dist/test/pages/examples/palettePreview.d.ts +4 -0
- package/dist/test/pages/examples/palettePreview.d.ts.map +1 -0
- package/dist/test/pages/examples/paletteSwatches.d.ts +11 -0
- package/dist/test/pages/examples/paletteSwatches.d.ts.map +1 -0
- package/dist/test/pages/pageFooter.d.ts +2 -0
- package/dist/test/pages/pageFooter.d.ts.map +1 -0
- package/dist/test/pages/pageHeader.d.ts +2 -0
- package/dist/test/pages/pageHeader.d.ts.map +1 -0
- package/dist/test/pages/pageLayout.d.ts +3 -0
- package/dist/test/pages/pageLayout.d.ts.map +1 -0
- package/dist/test/vite.config.dev.d.ts +3 -0
- package/dist/test/vite.config.dev.d.ts.map +1 -0
- package/dist/test/vite.config.preview.d.ts +3 -0
- package/dist/test/vite.config.preview.d.ts.map +1 -0
- package/dist/theme.css +175 -0
- package/dist/theme.d.ts +2 -0
- package/dist/theme.d.ts.map +1 -0
- package/dist/theme.js +1 -0
- package/dist/tokens.css +1256 -0
- package/dist/tokens.d.ts +2 -0
- package/dist/tokens.d.ts.map +1 -0
- package/dist/tokens.js +1 -0
- package/package.json +63 -0
package/dist/media.css
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/* MEDIA OS */
|
|
2
|
+
|
|
3
|
+
@custom-media --OSdark (prefers-color-scheme: dark);
|
|
4
|
+
@custom-media --OSlight (prefers-color-scheme: light);
|
|
5
|
+
|
|
6
|
+
/* MEDIA ORIENTATION */
|
|
7
|
+
|
|
8
|
+
@custom-media --portrait (orientation: portrait);
|
|
9
|
+
@custom-media --landscape (orientation: landscape);
|
|
10
|
+
|
|
11
|
+
/* MEDIA WIDTH */
|
|
12
|
+
|
|
13
|
+
@custom-media --xxs-only (0px <= width < 240px);
|
|
14
|
+
@custom-media --xxs-above (width >= 240px);
|
|
15
|
+
@custom-media --xxs-below (width < 240px);
|
|
16
|
+
|
|
17
|
+
@custom-media --xs-only (240px <= width < 360px);
|
|
18
|
+
@custom-media --xs-above (width >= 360px);
|
|
19
|
+
@custom-media --xs-below (width < 360px);
|
|
20
|
+
|
|
21
|
+
@custom-media --sm-only (360px <= width < 480px);
|
|
22
|
+
@custom-media --sm-above (width >= 480px);
|
|
23
|
+
@custom-media --sm-below (width < 480px);
|
|
24
|
+
|
|
25
|
+
@custom-media --md-only (480px <= width < 768px);
|
|
26
|
+
@custom-media --md-above (width >= 768px);
|
|
27
|
+
@custom-media --md-below (width < 768px);
|
|
28
|
+
|
|
29
|
+
@custom-media --lg-only (768px <= width < 1024px);
|
|
30
|
+
@custom-media --lg-above (width >= 1024px);
|
|
31
|
+
@custom-media --lg-below (width < 1024px);
|
|
32
|
+
|
|
33
|
+
@custom-media --xl-only (1024px <= width < 1440px);
|
|
34
|
+
@custom-media --xl-above (width >= 1440px);
|
|
35
|
+
@custom-media --xl-below (width < 1440px);
|
|
36
|
+
|
|
37
|
+
@custom-media --xxl-only (1440px <= width < 1920px);
|
|
38
|
+
@custom-media --xxl-above (width >= 1920px);
|
|
39
|
+
@custom-media --xxl-below (width < 1920px);
|
package/dist/reset.css
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
@layer reset {
|
|
2
|
+
*,
|
|
3
|
+
*:before,
|
|
4
|
+
*:after {
|
|
5
|
+
box-sizing: border-box;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
* {
|
|
9
|
+
margin: 0;
|
|
10
|
+
padding: 0;
|
|
11
|
+
border: none;
|
|
12
|
+
background: none;
|
|
13
|
+
font: inherit;
|
|
14
|
+
font-size: 100%;
|
|
15
|
+
vertical-align: baseline;
|
|
16
|
+
line-height: 1;
|
|
17
|
+
text-decoration: none;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
ol,
|
|
21
|
+
ul {
|
|
22
|
+
list-style: none;
|
|
23
|
+
}
|
|
24
|
+
blockquote,
|
|
25
|
+
q {
|
|
26
|
+
quotes: none;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
blockquote:before,
|
|
30
|
+
blockquote:after,
|
|
31
|
+
q:before,
|
|
32
|
+
q:after {
|
|
33
|
+
content: "";
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
table {
|
|
37
|
+
border-collapse: collapse;
|
|
38
|
+
border-spacing: 0;
|
|
39
|
+
}
|
|
40
|
+
}
|
package/dist/reset.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"reset.d.ts","sourceRoot":"","sources":["../src/reset.ts"],"names":[],"mappings":"AAAA,OAAO,mBAAmB,CAAC"}
|
package/dist/reset.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,MAAM,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { ParentComponent } from "solid-js";
|
|
2
|
+
import { AlignMixin, GapMixin, HeightMixin, PaddingMixin, PanelMixin, StyleMixin, TextMixin, WidthMixin } from "../mixin";
|
|
3
|
+
import "./cluster.css";
|
|
4
|
+
export type ClusterProps = StyleMixin.Props & PanelMixin.Props & PaddingMixin.Props & TextMixin.Props & GapMixin.Props & WidthMixin.Props & HeightMixin.Props & AlignMixin.Props;
|
|
5
|
+
export declare const Cluster: ParentComponent<ClusterProps>;
|
|
6
|
+
//# sourceMappingURL=cluster.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cluster.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/cluster.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAChD,OAAO,EACH,UAAU,EACV,QAAQ,EACR,WAAW,EACX,YAAY,EACZ,UAAU,EACV,UAAU,EACV,SAAS,EACT,UAAU,EACb,MAAM,UAAU,CAAC;AAClB,OAAO,eAAe,CAAC;AAQvB,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,KAAK,GACvC,UAAU,CAAC,KAAK,GAChB,YAAY,CAAC,KAAK,GAClB,SAAS,CAAC,KAAK,GACf,QAAQ,CAAC,KAAK,GACd,UAAU,CAAC,KAAK,GAChB,WAAW,CAAC,KAAK,GACjB,UAAU,CAAC,KAAK,CAAC;AAMrB,eAAO,MAAM,OAAO,EAAE,eAAe,CAAC,YAAY,CAkBjD,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { ParentComponent } from "solid-js";
|
|
2
|
+
import { HeightMixin, PaddingMixin, PanelMixin, StyleMixin, TextMixin, WidthMixin } from "../mixin";
|
|
3
|
+
import "./container.css";
|
|
4
|
+
export type ContainerProps = StyleMixin.Props & PanelMixin.Props & PaddingMixin.Props & TextMixin.Props & HeightMixin.Props & WidthMixin.Props;
|
|
5
|
+
export declare const Container: ParentComponent<ContainerProps>;
|
|
6
|
+
//# sourceMappingURL=container.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"container.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/container.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAChD,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,UAAU,EAAE,UAAU,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAEpG,OAAO,iBAAiB,CAAC;AAQzB,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,KAAK,GACzC,UAAU,CAAC,KAAK,GAChB,YAAY,CAAC,KAAK,GAClB,SAAS,CAAC,KAAK,GACf,WAAW,CAAC,KAAK,GACjB,UAAU,CAAC,KAAK,CAAC;AAIrB,eAAO,MAAM,SAAS,EAAE,eAAe,CAAC,cAAc,CAgBrD,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { ParentComponent } from "solid-js";
|
|
2
|
+
import { AlignMixin, GapMixin, HeightMixin, PaddingMixin, PanelMixin, StyleMixin, TextMixin, WidthMixin } from "../mixin";
|
|
3
|
+
import "./dual.css";
|
|
4
|
+
declare const SPLITS: {
|
|
5
|
+
left: string;
|
|
6
|
+
middle: string;
|
|
7
|
+
right: string;
|
|
8
|
+
};
|
|
9
|
+
export type DualProps = StyleMixin.Props & PanelMixin.Props & PaddingMixin.Props & TextMixin.Props & GapMixin.Props & WidthMixin.Props & HeightMixin.Props & AlignMixin.Props & {
|
|
10
|
+
split: keyof typeof SPLITS;
|
|
11
|
+
};
|
|
12
|
+
export declare const Dual: ParentComponent<DualProps>;
|
|
13
|
+
export {};
|
|
14
|
+
//# sourceMappingURL=dual.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dual.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/dual.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAChD,OAAO,EACH,UAAU,EACV,QAAQ,EACR,WAAW,EACX,YAAY,EACZ,UAAU,EACV,UAAU,EACV,SAAS,EACT,UAAU,EACb,MAAM,UAAU,CAAC;AAClB,OAAO,YAAY,CAAC;AAOpB,QAAA,MAAM,MAAM;;;;CAIX,CAAC;AAIF,MAAM,MAAM,SAAS,GAAG,UAAU,CAAC,KAAK,GACpC,UAAU,CAAC,KAAK,GAChB,YAAY,CAAC,KAAK,GAClB,SAAS,CAAC,KAAK,GACf,QAAQ,CAAC,KAAK,GACd,UAAU,CAAC,KAAK,GAChB,WAAW,CAAC,KAAK,GACjB,UAAU,CAAC,KAAK,GAAG;IACf,KAAK,EAAE,MAAM,OAAO,MAAM,CAAC;CAC9B,CAAC;AAIN,eAAO,MAAM,IAAI,EAAE,eAAe,CAAC,SAAS,CAkB3C,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { ParentComponent } from "solid-js";
|
|
2
|
+
import { AlignMixin, GapMixin, HeightMixin, PaddingMixin, PanelMixin, StyleMixin, TextMixin, WidthMixin } from "../mixin";
|
|
3
|
+
import "./stack.css";
|
|
4
|
+
export type StackProps = StyleMixin.Props & PanelMixin.Props & PaddingMixin.Props & TextMixin.Props & GapMixin.Props & WidthMixin.Props & HeightMixin.Props & AlignMixin.Props;
|
|
5
|
+
export declare const Stack: ParentComponent<StackProps>;
|
|
6
|
+
//# sourceMappingURL=stack.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"stack.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/stack.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAChD,OAAO,EACH,UAAU,EACV,QAAQ,EACR,WAAW,EACX,YAAY,EACZ,UAAU,EACV,UAAU,EACV,SAAS,EACT,UAAU,EACb,MAAM,UAAU,CAAC;AAElB,OAAO,aAAa,CAAC;AAQrB,MAAM,MAAM,UAAU,GAAG,UAAU,CAAC,KAAK,GACrC,UAAU,CAAC,KAAK,GAChB,YAAY,CAAC,KAAK,GAClB,SAAS,CAAC,KAAK,GACf,QAAQ,CAAC,KAAK,GACd,UAAU,CAAC,KAAK,GAChB,WAAW,CAAC,KAAK,GACjB,UAAU,CAAC,KAAK,CAAC;AAIrB,eAAO,MAAM,KAAK,EAAE,eAAe,CAAC,UAAU,CAkB7C,CAAC"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import type { JSX, ParentComponent } from "solid-js";
|
|
2
|
+
import type { PanelMixin } from "../mixin/panelMixin";
|
|
3
|
+
import "./footer.css";
|
|
4
|
+
type StyleProps = {
|
|
5
|
+
class?: string;
|
|
6
|
+
style?: JSX.CSSProperties;
|
|
7
|
+
};
|
|
8
|
+
type FooterProps = StyleProps & {
|
|
9
|
+
panelColor: PanelMixin.Props["panelColor"];
|
|
10
|
+
panelIntensity: PanelMixin.Props["panelIntensity"];
|
|
11
|
+
contact: {
|
|
12
|
+
title: string;
|
|
13
|
+
description: string;
|
|
14
|
+
email?: string;
|
|
15
|
+
phone?: string;
|
|
16
|
+
address?: string;
|
|
17
|
+
};
|
|
18
|
+
networks?: {
|
|
19
|
+
title: string;
|
|
20
|
+
items: {
|
|
21
|
+
name: string;
|
|
22
|
+
url: string;
|
|
23
|
+
}[];
|
|
24
|
+
};
|
|
25
|
+
legal: {
|
|
26
|
+
title: string;
|
|
27
|
+
items: {
|
|
28
|
+
name: string;
|
|
29
|
+
url: string;
|
|
30
|
+
}[];
|
|
31
|
+
};
|
|
32
|
+
map?: {
|
|
33
|
+
title: string;
|
|
34
|
+
url: string;
|
|
35
|
+
};
|
|
36
|
+
copyright: string;
|
|
37
|
+
};
|
|
38
|
+
export declare const Footer: ParentComponent<FooterProps>;
|
|
39
|
+
export {};
|
|
40
|
+
//# sourceMappingURL=footer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"footer.d.ts","sourceRoot":"","sources":["../../../../src/components/marketing/footer.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,GAAG,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAGrD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEtD,OAAO,cAAc,CAAC;AAkBtB,KAAK,UAAU,GAAG;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,GAAG,CAAC,aAAa,CAAC;CAC7B,CAAC;AAEF,KAAK,WAAW,GAAG,UAAU,GAAG;IAC5B,UAAU,EAAE,UAAU,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;IAC3C,cAAc,EAAE,UAAU,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC;IACnD,OAAO,EAAE;QACL,KAAK,EAAE,MAAM,CAAC;QACd,WAAW,EAAE,MAAM,CAAC;QACpB,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,OAAO,CAAC,EAAE,MAAM,CAAC;KACpB,CAAC;IACF,QAAQ,CAAC,EAAE;QACP,KAAK,EAAE,MAAM,CAAC;QACd,KAAK,EAAE;YACH,IAAI,EAAE,MAAM,CAAC;YACb,GAAG,EAAE,MAAM,CAAC;SACf,EAAE,CAAC;KACP,CAAC;IACF,KAAK,EAAE;QACH,KAAK,EAAE,MAAM,CAAC;QACd,KAAK,EAAE;YACH,IAAI,EAAE,MAAM,CAAC;YACb,GAAG,EAAE,MAAM,CAAC;SACf,EAAE,CAAC;KACP,CAAC;IACF,GAAG,CAAC,EAAE;QACF,KAAK,EAAE,MAAM,CAAC;QACd,GAAG,EAAE,MAAM,CAAC;KACf,CAAC;IACF,SAAS,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,eAAO,MAAM,MAAM,EAAE,eAAe,CAAC,WAAW,CAoF/C,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/marketing/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { type AnchorProps } from "@solidjs/router";
|
|
2
|
+
import { type JSX, type ParentComponent } from "solid-js";
|
|
3
|
+
import "./navigation.css";
|
|
4
|
+
type StyleProps = {
|
|
5
|
+
class?: string;
|
|
6
|
+
style?: JSX.CSSProperties;
|
|
7
|
+
};
|
|
8
|
+
export declare const NavigationRoot: ParentComponent<StyleProps>;
|
|
9
|
+
type NavigationLinkProps = {
|
|
10
|
+
label: string;
|
|
11
|
+
href: AnchorProps["href"];
|
|
12
|
+
target?: AnchorProps["target"];
|
|
13
|
+
};
|
|
14
|
+
export type NavigationProps = StyleProps & {
|
|
15
|
+
brand: JSX.Element;
|
|
16
|
+
links: NavigationLinkProps[];
|
|
17
|
+
cta?: {
|
|
18
|
+
primary: NavigationLinkProps;
|
|
19
|
+
secondary?: NavigationLinkProps;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
export declare const Navigation: ParentComponent<NavigationProps>;
|
|
23
|
+
export {};
|
|
24
|
+
//# sourceMappingURL=navigation.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"navigation.d.ts","sourceRoot":"","sources":["../../../../src/components/marketing/navigation.tsx"],"names":[],"mappings":"AASA,OAAO,EAAK,KAAK,WAAW,EAAE,MAAM,iBAAiB,CAAC;AACtD,OAAO,EAAO,KAAK,GAAG,EAAE,KAAK,eAAe,EAAoB,MAAM,UAAU,CAAC;AACjF,OAAO,kBAAkB,CAAC;AAgC1B,KAAK,UAAU,GAAG;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,GAAG,CAAC,aAAa,CAAC;CAC7B,CAAC;AAIF,eAAO,MAAM,cAAc,EAAE,eAAe,CAAC,UAAU,CAMtD,CAAC;AA+NF,KAAK,mBAAmB,GAAG;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAAC,MAAM,CAAC,EAAE,WAAW,CAAC,QAAQ,CAAC,CAAA;CAAE,CAAC;AAExG,MAAM,MAAM,eAAe,GAAG,UAAU,GAAG;IACvC,KAAK,EAAE,GAAG,CAAC,OAAO,CAAC;IACnB,KAAK,EAAE,mBAAmB,EAAE,CAAC;IAC7B,GAAG,CAAC,EAAE;QAAE,OAAO,EAAE,mBAAmB,CAAC;QAAC,SAAS,CAAC,EAAE,mBAAmB,CAAA;KAAE,CAAC;CAC3E,CAAC;AAIF,eAAO,MAAM,UAAU,EAAE,eAAe,CAAC,eAAe,CAyEvD,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { JSX, ParentComponent } from "solid-js";
|
|
2
|
+
import "./page.css";
|
|
3
|
+
type StyleProps = {
|
|
4
|
+
class?: string;
|
|
5
|
+
style?: JSX.CSSProperties;
|
|
6
|
+
};
|
|
7
|
+
export type PageProps = StyleProps & {
|
|
8
|
+
header: JSX.Element;
|
|
9
|
+
footer: JSX.Element;
|
|
10
|
+
};
|
|
11
|
+
export declare const Page: ParentComponent<PageProps>;
|
|
12
|
+
export {};
|
|
13
|
+
//# sourceMappingURL=page.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"page.d.ts","sourceRoot":"","sources":["../../../../src/components/marketing/page.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AACrD,OAAO,YAAY,CAAC;AAYpB,KAAK,UAAU,GAAG;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,GAAG,CAAC,aAAa,CAAC;CAC7B,CAAC;AAIF,MAAM,MAAM,SAAS,GAAG,UAAU,GAAG;IACjC,MAAM,EAAE,GAAG,CAAC,OAAO,CAAC;IACpB,MAAM,EAAE,GAAG,CAAC,OAAO,CAAC;CACvB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,eAAe,CAAC,SAAS,CAU3C,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { type ParentComponent } from "solid-js";
|
|
2
|
+
import { HeightMixin, PaddingMixin, PanelMixin, StyleMixin, TextMixin } from "../mixin";
|
|
3
|
+
import "./section.css";
|
|
4
|
+
export type SectionTextProps = StyleMixin.Props & TextMixin.Props & {
|
|
5
|
+
hero?: boolean;
|
|
6
|
+
};
|
|
7
|
+
export type SectionProps = StyleMixin.Props & PanelMixin.Props & PaddingMixin.Props & HeightMixin.Props & TextMixin.Props;
|
|
8
|
+
export declare const Section: ParentComponent<SectionProps> & {
|
|
9
|
+
Title: ParentComponent<SectionTextProps>;
|
|
10
|
+
Description: ParentComponent<SectionTextProps>;
|
|
11
|
+
Tagline: ParentComponent<SectionTextProps>;
|
|
12
|
+
};
|
|
13
|
+
//# sourceMappingURL=section.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"section.d.ts","sourceRoot":"","sources":["../../../../src/components/marketing/section.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAS,KAAK,eAAe,EAAU,MAAM,UAAU,CAAC;AAC/D,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,UAAU,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAExF,OAAO,eAAe,CAAC;AAoBvB,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,KAAK,GAC3C,SAAS,CAAC,KAAK,GAAG;IACd,IAAI,CAAC,EAAE,OAAO,CAAC;CAClB,CAAC;AAEN,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,KAAK,GACvC,UAAU,CAAC,KAAK,GAChB,YAAY,CAAC,KAAK,GAClB,WAAW,CAAC,KAAK,GACjB,SAAS,CAAC,KAAK,CAAC;AAqGpB,eAAO,MAAM,OAAO;;;;CAIlB,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { ParentComponent } from "solid-js";
|
|
2
|
+
import { StyleMixin, TextMixin } from "../mixin";
|
|
3
|
+
import "./text.css";
|
|
4
|
+
export type TextProps = StyleMixin.Props & TextMixin.Props;
|
|
5
|
+
export declare const P: ParentComponent<TextProps>;
|
|
6
|
+
export declare const H1: ParentComponent<TextProps>;
|
|
7
|
+
export declare const H2: ParentComponent<TextProps>;
|
|
8
|
+
export declare const H3: ParentComponent<TextProps>;
|
|
9
|
+
export declare const H4: ParentComponent<TextProps>;
|
|
10
|
+
export declare const H5: ParentComponent<TextProps>;
|
|
11
|
+
export declare const H6: ParentComponent<TextProps>;
|
|
12
|
+
//# sourceMappingURL=text.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"text.d.ts","sourceRoot":"","sources":["../../../../src/components/marketing/text.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAChD,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACjD,OAAO,YAAY,CAAC;AAEpB,MAAM,MAAM,SAAS,GAAG,UAAU,CAAC,KAAK,GAAG,SAAS,CAAC,KAAK,CAAC;AAE3D,eAAO,MAAM,CAAC,EAAE,eAAe,CAAC,SAAS,CAQxC,CAAC;AAEF,eAAO,MAAM,EAAE,EAAE,eAAe,CAAC,SAAS,CAQzC,CAAC;AAEF,eAAO,MAAM,EAAE,EAAE,eAAe,CAAC,SAAS,CAQzC,CAAC;AAEF,eAAO,MAAM,EAAE,EAAE,eAAe,CAAC,SAAS,CAQzC,CAAC;AAEF,eAAO,MAAM,EAAE,EAAE,eAAe,CAAC,SAAS,CAQzC,CAAC;AAEF,eAAO,MAAM,EAAE,EAAE,eAAe,CAAC,SAAS,CAQzC,CAAC;AAEF,eAAO,MAAM,EAAE,EAAE,eAAe,CAAC,SAAS,CAQzC,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import "./alignMixin.css";
|
|
2
|
+
export declare namespace AlignMixin {
|
|
3
|
+
const ALIGNS: {
|
|
4
|
+
readonly start: "align-start";
|
|
5
|
+
readonly center: "align-center";
|
|
6
|
+
readonly end: "align-end";
|
|
7
|
+
readonly stretch: "align-stretch";
|
|
8
|
+
};
|
|
9
|
+
export type Props = {
|
|
10
|
+
align?: keyof typeof ALIGNS;
|
|
11
|
+
};
|
|
12
|
+
export function classes(props: Props): string;
|
|
13
|
+
export {};
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=alignMixin.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"alignMixin.d.ts","sourceRoot":"","sources":["../../../../src/components/mixin/alignMixin.tsx"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,CAAC;AAE1B,yBAAiB,UAAU,CAAC;IAOxB,MAAM,MAAM;;;;;KAKF,CAAC;IAIX,MAAM,MAAM,KAAK,GAAG;QAChB,KAAK,CAAC,EAAE,MAAM,OAAO,MAAM,CAAC;KAC/B,CAAC;IAIF,MAAM,UAAU,OAAO,CAAC,KAAK,EAAE,KAAK,UAInC;;CACJ"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import "./gapMixin.css";
|
|
2
|
+
export declare namespace GapMixin {
|
|
3
|
+
const GAPS: {
|
|
4
|
+
readonly none: "gap-none";
|
|
5
|
+
readonly "3xsmall": "gap-3xsmall";
|
|
6
|
+
readonly "2xsmall": "gap-2xsmall";
|
|
7
|
+
readonly xsmall: "gap-xsmall";
|
|
8
|
+
readonly small: "gap-small";
|
|
9
|
+
readonly medium: "gap-medium";
|
|
10
|
+
readonly large: "gap-large";
|
|
11
|
+
readonly xlarge: "gap-xlarge";
|
|
12
|
+
readonly "2xlarge": "gap-2xlarge";
|
|
13
|
+
readonly "3xlarge": "gap-3xlarge";
|
|
14
|
+
readonly "4xlarge": "gap-4xlarge";
|
|
15
|
+
};
|
|
16
|
+
export type Props = {
|
|
17
|
+
gap?: keyof typeof GAPS;
|
|
18
|
+
};
|
|
19
|
+
export function classes(props: Props): string;
|
|
20
|
+
export {};
|
|
21
|
+
}
|
|
22
|
+
//# sourceMappingURL=gapMixin.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"gapMixin.d.ts","sourceRoot":"","sources":["../../../../src/components/mixin/gapMixin.tsx"],"names":[],"mappings":"AAAA,OAAO,gBAAgB,CAAC;AAExB,yBAAiB,QAAQ,CAAC;IAOtB,MAAM,IAAI;;;;;;;;;;;;KAYA,CAAC;IAIX,MAAM,MAAM,KAAK,GAAG;QAChB,GAAG,CAAC,EAAE,MAAM,OAAO,IAAI,CAAC;KAC3B,CAAC;IAIF,MAAM,UAAU,OAAO,CAAC,KAAK,EAAE,KAAK,UAKnC;;CACJ"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import "./heightMixin.css";
|
|
2
|
+
export declare namespace HeightMixin {
|
|
3
|
+
const HEIGHTS: {
|
|
4
|
+
full: string;
|
|
5
|
+
large: string;
|
|
6
|
+
medium: string;
|
|
7
|
+
small: string;
|
|
8
|
+
};
|
|
9
|
+
const MIN_HEIGHTS: {
|
|
10
|
+
full: string;
|
|
11
|
+
large: string;
|
|
12
|
+
medium: string;
|
|
13
|
+
small: string;
|
|
14
|
+
};
|
|
15
|
+
export type Props = {
|
|
16
|
+
height?: keyof typeof HEIGHTS;
|
|
17
|
+
minHeight?: keyof typeof MIN_HEIGHTS;
|
|
18
|
+
};
|
|
19
|
+
export function classes(props: Props): string;
|
|
20
|
+
export {};
|
|
21
|
+
}
|
|
22
|
+
//# sourceMappingURL=heightMixin.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"heightMixin.d.ts","sourceRoot":"","sources":["../../../../src/components/mixin/heightMixin.tsx"],"names":[],"mappings":"AAAA,OAAO,mBAAmB,CAAC;AAE3B,yBAAiB,WAAW,CAAC;IAQzB,MAAM,OAAO;;;;;KAKZ,CAAC;IAEF,MAAM,WAAW;;;;;KAKhB,CAAC;IAIF,MAAM,MAAM,KAAK,GAAG;QAChB,MAAM,CAAC,EAAE,MAAM,OAAO,OAAO,CAAC;QAC9B,SAAS,CAAC,EAAE,MAAM,OAAO,WAAW,CAAC;KACxC,CAAC;IAGF,MAAM,UAAU,OAAO,CAAC,KAAK,EAAE,KAAK,UAKnC;;CACJ"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from "./alignMixin";
|
|
2
|
+
export * from "./gapMixin";
|
|
3
|
+
export * from "./heightMixin";
|
|
4
|
+
export * from "./paddingMixin";
|
|
5
|
+
export * from "./panelMixin";
|
|
6
|
+
export * from "./styleMixin";
|
|
7
|
+
export * from "./textMixin";
|
|
8
|
+
export * from "./widthMixin";
|
|
9
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/mixin/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC"}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import "./paddingMixin.css";
|
|
2
|
+
export declare namespace PaddingMixin {
|
|
3
|
+
const PADDINGS: {
|
|
4
|
+
readonly "3xsmall": "padding-3xsmall";
|
|
5
|
+
readonly "2xsmall": "padding-2xsmall";
|
|
6
|
+
readonly xsmall: "padding-xsmall";
|
|
7
|
+
readonly small: "padding-small";
|
|
8
|
+
readonly medium: "padding-medium";
|
|
9
|
+
readonly large: "padding-large";
|
|
10
|
+
readonly xlarge: "padding-xlarge";
|
|
11
|
+
readonly "2xlarge": "padding-2xlarge";
|
|
12
|
+
readonly "3xlarge": "padding-3xlarge";
|
|
13
|
+
readonly "4xlarge": "padding-4xlarge";
|
|
14
|
+
};
|
|
15
|
+
const PADDING_BLOCKS: {
|
|
16
|
+
readonly "3xsmall": "padding-block-3xsmall";
|
|
17
|
+
readonly "2xsmall": "padding-block-2xsmall";
|
|
18
|
+
readonly xsmall: "padding-block-xsmall";
|
|
19
|
+
readonly small: "padding-block-small";
|
|
20
|
+
readonly medium: "padding-block-medium";
|
|
21
|
+
readonly large: "padding-block-large";
|
|
22
|
+
readonly xlarge: "padding-block-xlarge";
|
|
23
|
+
readonly "2xlarge": "padding-block-2xlarge";
|
|
24
|
+
readonly "3xlarge": "padding-block-3xlarge";
|
|
25
|
+
readonly "4xlarge": "padding-block-4xlarge";
|
|
26
|
+
};
|
|
27
|
+
const PADDING_INLINES: {
|
|
28
|
+
readonly "3xsmall": "padding-inline-3xsmall";
|
|
29
|
+
readonly "2xsmall": "padding-inline-2xsmall";
|
|
30
|
+
readonly xsmall: "padding-inline-xsmall";
|
|
31
|
+
readonly small: "padding-inline-small";
|
|
32
|
+
readonly medium: "padding-inline-medium";
|
|
33
|
+
readonly large: "padding-inline-large";
|
|
34
|
+
readonly xlarge: "padding-inline-xlarge";
|
|
35
|
+
readonly "2xlarge": "padding-inline-2xlarge";
|
|
36
|
+
readonly "3xlarge": "padding-inline-3xlarge";
|
|
37
|
+
readonly "4xlarge": "padding-inline-4xlarge";
|
|
38
|
+
};
|
|
39
|
+
const PADDING_TOPS: {
|
|
40
|
+
readonly "3xsmall": "padding-top-3xsmall";
|
|
41
|
+
readonly "2xsmall": "padding-top-2xsmall";
|
|
42
|
+
readonly xsmall: "padding-top-xsmall";
|
|
43
|
+
readonly small: "padding-top-small";
|
|
44
|
+
readonly medium: "padding-top-medium";
|
|
45
|
+
readonly large: "padding-top-large";
|
|
46
|
+
readonly xlarge: "padding-top-xlarge";
|
|
47
|
+
readonly "2xlarge": "padding-top-2xlarge";
|
|
48
|
+
readonly "3xlarge": "padding-top-3xlarge";
|
|
49
|
+
readonly "4xlarge": "padding-top-4xlarge";
|
|
50
|
+
};
|
|
51
|
+
const PADDING_BOTTOMS: {
|
|
52
|
+
readonly "3xsmall": "padding-bottom-3xsmall";
|
|
53
|
+
readonly "2xsmall": "padding-bottom-2xsmall";
|
|
54
|
+
readonly xsmall: "padding-bottom-xsmall";
|
|
55
|
+
readonly small: "padding-bottom-small";
|
|
56
|
+
readonly medium: "padding-bottom-medium";
|
|
57
|
+
readonly large: "padding-bottom-large";
|
|
58
|
+
readonly xlarge: "padding-bottom-xlarge";
|
|
59
|
+
readonly "2xlarge": "padding-bottom-2xlarge";
|
|
60
|
+
readonly "3xlarge": "padding-bottom-3xlarge";
|
|
61
|
+
readonly "4xlarge": "padding-bottom-4xlarge";
|
|
62
|
+
};
|
|
63
|
+
const PADDING_LEFTS: {
|
|
64
|
+
readonly "3xsmall": "padding-left-3xsmall";
|
|
65
|
+
readonly "2xsmall": "padding-left-2xsmall";
|
|
66
|
+
readonly xsmall: "padding-left-xsmall";
|
|
67
|
+
readonly small: "padding-left-small";
|
|
68
|
+
readonly medium: "padding-left-medium";
|
|
69
|
+
readonly large: "padding-left-large";
|
|
70
|
+
readonly xlarge: "padding-left-xlarge";
|
|
71
|
+
readonly "2xlarge": "padding-left-2xlarge";
|
|
72
|
+
readonly "3xlarge": "padding-left-3xlarge";
|
|
73
|
+
readonly "4xlarge": "padding-left-4xlarge";
|
|
74
|
+
};
|
|
75
|
+
const PADDING_RIGHTS: {
|
|
76
|
+
readonly "3xsmall": "padding-right-3xsmall";
|
|
77
|
+
readonly "2xsmall": "padding-right-2xsmall";
|
|
78
|
+
readonly xsmall: "padding-right-xsmall";
|
|
79
|
+
readonly small: "padding-right-small";
|
|
80
|
+
readonly medium: "padding-right-medium";
|
|
81
|
+
readonly large: "padding-right-large";
|
|
82
|
+
readonly xlarge: "padding-right-xlarge";
|
|
83
|
+
readonly "2xlarge": "padding-right-2xlarge";
|
|
84
|
+
readonly "3xlarge": "padding-right-3xlarge";
|
|
85
|
+
readonly "4xlarge": "padding-right-4xlarge";
|
|
86
|
+
};
|
|
87
|
+
export type Props = {
|
|
88
|
+
padding?: keyof typeof PADDINGS;
|
|
89
|
+
paddingBlock?: keyof typeof PADDING_BLOCKS;
|
|
90
|
+
paddingInline?: keyof typeof PADDING_INLINES;
|
|
91
|
+
paddingTop?: keyof typeof PADDING_TOPS;
|
|
92
|
+
paddingBottom?: keyof typeof PADDING_BOTTOMS;
|
|
93
|
+
paddingLeft?: keyof typeof PADDING_LEFTS;
|
|
94
|
+
paddingRight?: keyof typeof PADDING_RIGHTS;
|
|
95
|
+
};
|
|
96
|
+
export function classes(props: Props): string;
|
|
97
|
+
export {};
|
|
98
|
+
}
|
|
99
|
+
//# sourceMappingURL=paddingMixin.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"paddingMixin.d.ts","sourceRoot":"","sources":["../../../../src/components/mixin/paddingMixin.ts"],"names":[],"mappings":"AAAA,OAAO,oBAAoB,CAAC;AAE5B,yBAAiB,YAAY,CAAC;IAW1B,MAAM,QAAQ;;;;;;;;;;;KAWJ,CAAC;IAEX,MAAM,cAAc;;;;;;;;;;;KAWV,CAAC;IAEX,MAAM,eAAe;;;;;;;;;;;KAWX,CAAC;IAEX,MAAM,YAAY;;;;;;;;;;;KAWR,CAAC;IAEX,MAAM,eAAe;;;;;;;;;;;KAWX,CAAC;IAEX,MAAM,aAAa;;;;;;;;;;;KAWT,CAAC;IAEX,MAAM,cAAc;;;;;;;;;;;KAWV,CAAC;IAIX,MAAM,MAAM,KAAK,GAAG;QAChB,OAAO,CAAC,EAAE,MAAM,OAAO,QAAQ,CAAC;QAChC,YAAY,CAAC,EAAE,MAAM,OAAO,cAAc,CAAC;QAC3C,aAAa,CAAC,EAAE,MAAM,OAAO,eAAe,CAAC;QAC7C,UAAU,CAAC,EAAE,MAAM,OAAO,YAAY,CAAC;QACvC,aAAa,CAAC,EAAE,MAAM,OAAO,eAAe,CAAC;QAC7C,WAAW,CAAC,EAAE,MAAM,OAAO,aAAa,CAAC;QACzC,YAAY,CAAC,EAAE,MAAM,OAAO,cAAc,CAAC;KAC9C,CAAC;IAIF,MAAM,UAAU,OAAO,CAAC,KAAK,EAAE,KAAK,UAYnC;;CACJ"}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import "./panelMixin.css";
|
|
2
|
+
export declare namespace PanelMixin {
|
|
3
|
+
const COLORS: {
|
|
4
|
+
readonly neutral: "panel-color-neutral";
|
|
5
|
+
readonly brand: "panel-color-brand";
|
|
6
|
+
readonly accent: "panel-color-accent";
|
|
7
|
+
readonly danger: "panel-color-danger";
|
|
8
|
+
};
|
|
9
|
+
const INTENSITIES: {
|
|
10
|
+
readonly transparent: "panel-intensity-transparent";
|
|
11
|
+
readonly clear: "panel-intensity-clear";
|
|
12
|
+
readonly subtle: "panel-intensity-subtle";
|
|
13
|
+
readonly soft: "panel-intensity-soft";
|
|
14
|
+
readonly muted: "panel-intensity-muted";
|
|
15
|
+
readonly base: "panel-intensity-base";
|
|
16
|
+
readonly strong: "panel-intensity-strong";
|
|
17
|
+
readonly deep: "panel-intensity-deep";
|
|
18
|
+
};
|
|
19
|
+
const BORDERS: {
|
|
20
|
+
all: string;
|
|
21
|
+
block: string;
|
|
22
|
+
inline: string;
|
|
23
|
+
top: string;
|
|
24
|
+
bottom: string;
|
|
25
|
+
left: string;
|
|
26
|
+
right: string;
|
|
27
|
+
};
|
|
28
|
+
const RADII: {
|
|
29
|
+
all: string;
|
|
30
|
+
top: string;
|
|
31
|
+
bottom: string;
|
|
32
|
+
left: string;
|
|
33
|
+
right: string;
|
|
34
|
+
topLeft: string;
|
|
35
|
+
topRight: string;
|
|
36
|
+
bottomLeft: string;
|
|
37
|
+
bottomRight: string;
|
|
38
|
+
};
|
|
39
|
+
export type Props = {
|
|
40
|
+
panelColor?: keyof typeof COLORS;
|
|
41
|
+
panelIntensity?: keyof typeof INTENSITIES;
|
|
42
|
+
panelBorder?: keyof typeof BORDERS | Array<keyof typeof BORDERS>;
|
|
43
|
+
panelRadius?: keyof typeof RADII | Array<keyof typeof RADII>;
|
|
44
|
+
};
|
|
45
|
+
export function classes(props: Props): string;
|
|
46
|
+
export {};
|
|
47
|
+
}
|
|
48
|
+
//# sourceMappingURL=panelMixin.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"panelMixin.d.ts","sourceRoot":"","sources":["../../../../src/components/mixin/panelMixin.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,CAAC;AAE1B,yBAAiB,UAAU,CAAC;IASxB,MAAM,MAAM;;;;;KAKF,CAAC;IAEX,MAAM,WAAW;;;;;;;;;KASP,CAAC;IAEX,MAAM,OAAO;;;;;;;;KAQZ,CAAC;IAEF,MAAM,KAAK;;;;;;;;;;KAUV,CAAC;IAIF,MAAM,MAAM,KAAK,GAAG;QAChB,UAAU,CAAC,EAAE,MAAM,OAAO,MAAM,CAAC;QACjC,cAAc,CAAC,EAAE,MAAM,OAAO,WAAW,CAAC;QAC1C,WAAW,CAAC,EAAE,MAAM,OAAO,OAAO,GAAG,KAAK,CAAC,MAAM,OAAO,OAAO,CAAC,CAAC;QACjE,WAAW,CAAC,EAAE,MAAM,OAAO,KAAK,GAAG,KAAK,CAAC,MAAM,OAAO,KAAK,CAAC,CAAC;KAChE,CAAC;IAsBF,MAAM,UAAU,OAAO,CAAC,KAAK,EAAE,KAAK,UAEnC;;CACJ"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"styleMixin.d.ts","sourceRoot":"","sources":["../../../../src/components/mixin/styleMixin.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,UAAU,CAAC;AAEpC,yBAAiB,UAAU,CAAC;IAGxB,KAAY,KAAK,GAAG;QAChB,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,KAAK,CAAC,EAAE,GAAG,CAAC,aAAa,CAAC;KAC7B,CAAC;IAGF,SAAgB,OAAO,CAAC,KAAK,EAAE,KAAK,UAEnC;CACJ"}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import "./textMixin.css";
|
|
2
|
+
export declare namespace TextMixin {
|
|
3
|
+
const COLORS: {
|
|
4
|
+
readonly neutral: "text-color-neutral";
|
|
5
|
+
readonly brand: "text-color-brand";
|
|
6
|
+
readonly accent: "text-color-accent";
|
|
7
|
+
readonly danger: "text-color-danger";
|
|
8
|
+
};
|
|
9
|
+
const INTENSITIES: {
|
|
10
|
+
readonly subtle: "text-intensity-subtle";
|
|
11
|
+
readonly soft: "text-intensity-soft";
|
|
12
|
+
readonly muted: "text-intensity-muted";
|
|
13
|
+
readonly base: "text-intensity-base";
|
|
14
|
+
readonly strong: "text-intensity-strong";
|
|
15
|
+
readonly deep: "text-intensity-deep";
|
|
16
|
+
readonly inverted: "text-intensity-inverted";
|
|
17
|
+
};
|
|
18
|
+
const ALIGNS: {
|
|
19
|
+
readonly left: "text-align-left";
|
|
20
|
+
readonly center: "text-align-center";
|
|
21
|
+
readonly right: "text-align-right";
|
|
22
|
+
readonly stretch: "text-align-stretch";
|
|
23
|
+
};
|
|
24
|
+
const FAMILIES: {
|
|
25
|
+
readonly body: "text-family-body";
|
|
26
|
+
readonly heading: "text-family-heading";
|
|
27
|
+
readonly code: "text-family-code";
|
|
28
|
+
readonly longform: "text-family-longform";
|
|
29
|
+
readonly tagline: "text-family-tagline";
|
|
30
|
+
readonly action: "text-family-action";
|
|
31
|
+
};
|
|
32
|
+
const WEIGHTS: {
|
|
33
|
+
readonly light: "text-weight-light";
|
|
34
|
+
readonly normal: "text-weight-normal";
|
|
35
|
+
readonly semibold: "text-weight-semibold";
|
|
36
|
+
readonly bold: "text-weight-bold";
|
|
37
|
+
};
|
|
38
|
+
const SIZES: {
|
|
39
|
+
readonly "2xsmall": "text-size-2xs";
|
|
40
|
+
readonly xsmall: "text-size-xs";
|
|
41
|
+
readonly small: "text-size-s";
|
|
42
|
+
readonly medium: "text-size-m";
|
|
43
|
+
readonly large: "text-size-l";
|
|
44
|
+
readonly xlarge: "text-size-xl";
|
|
45
|
+
readonly "2xlarge": "text-size-2xl";
|
|
46
|
+
readonly "3xlarge": "text-size-3xl";
|
|
47
|
+
readonly "4xlarge": "text-size-4xl";
|
|
48
|
+
};
|
|
49
|
+
const LINES: {
|
|
50
|
+
readonly condensed: "text-line-condensed";
|
|
51
|
+
readonly normal: "text-line-normal";
|
|
52
|
+
readonly expanded: "text-line-expanded";
|
|
53
|
+
};
|
|
54
|
+
export type Props = {
|
|
55
|
+
textColor?: keyof typeof COLORS;
|
|
56
|
+
textIntensity?: keyof typeof INTENSITIES;
|
|
57
|
+
textAlign?: keyof typeof ALIGNS;
|
|
58
|
+
textFamily?: keyof typeof FAMILIES;
|
|
59
|
+
textWeight?: keyof typeof WEIGHTS;
|
|
60
|
+
textSize?: keyof typeof SIZES;
|
|
61
|
+
textLine?: keyof typeof LINES;
|
|
62
|
+
};
|
|
63
|
+
export function classes(props: Props): string;
|
|
64
|
+
export {};
|
|
65
|
+
}
|
|
66
|
+
//# sourceMappingURL=textMixin.d.ts.map
|