@e280/shiny 0.1.0-13 → 0.1.0-15
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 +12 -8
- package/package.json +5 -5
- package/s/components/button/showcase.ts +1 -1
- package/s/components/copy/showcase.ts +1 -1
- package/s/components/drawer/component.ts +2 -2
- package/s/components/drawer/showcase.ts +19 -1
- package/s/components/drawer/style.css.ts +2 -0
- package/s/components/example/component.ts +2 -2
- package/s/components/example/showcase.ts +32 -0
- package/s/components/tabs/showcase.ts +7 -2
- package/s/demo/views/exhibit/style.css.ts +3 -0
- package/s/themes/aura.css.ts +5 -5
- package/x/components/button/showcase.js +1 -1
- package/x/components/copy/showcase.js +1 -1
- package/x/components/drawer/component.js +2 -2
- package/x/components/drawer/component.js.map +1 -1
- package/x/components/drawer/showcase.js +19 -1
- package/x/components/drawer/showcase.js.map +1 -1
- package/x/components/drawer/style.css.js +2 -0
- package/x/components/drawer/style.css.js.map +1 -1
- package/x/components/example/component.d.ts +1 -1
- package/x/components/example/component.js +2 -2
- package/x/components/example/component.js.map +1 -1
- package/x/components/example/showcase.d.ts +1 -0
- package/x/components/example/showcase.js +30 -0
- package/x/components/example/showcase.js.map +1 -0
- package/x/components/tabs/showcase.js +7 -2
- package/x/components/tabs/showcase.js.map +1 -1
- package/x/demo/demo.bundle.min.js +106 -78
- package/x/demo/demo.bundle.min.js.map +4 -4
- package/x/demo/views/exhibit/style.css.js +3 -0
- package/x/demo/views/exhibit/style.css.js.map +1 -1
- package/x/demo/views/exhibit/view.d.ts +1 -1
- package/x/demo/viewsets.d.ts +1 -1
- package/x/index.html +2 -2
- package/x/install/aura.bundle.min.js +32 -30
- package/x/install/aura.bundle.min.js.map +4 -4
- package/x/install/plain.bundle.min.js +28 -26
- package/x/install/plain.bundle.min.js.map +4 -4
- package/x/shiny.d.ts +2 -2
- package/x/themes/aura.css.js +5 -5
package/x/shiny.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ export declare function shiny(context: ShinyContext): {
|
|
|
19
19
|
} & typeof import("./index.js").ShinyDrawer;
|
|
20
20
|
ShinyExample: {
|
|
21
21
|
new (): import("./index.js").ShinyExample;
|
|
22
|
-
view: import("@e280/sly").View<[start
|
|
22
|
+
view: import("@e280/sly").View<[start?: any]>;
|
|
23
23
|
} & typeof import("./index.js").ShinyExample;
|
|
24
24
|
ShinyTabs: {
|
|
25
25
|
new (): import("./index.js").ShinyTabs;
|
|
@@ -38,7 +38,7 @@ export declare function shiny(context: ShinyContext): {
|
|
|
38
38
|
side?: "left" | "right";
|
|
39
39
|
control?: import("./index.js").DrawerControl;
|
|
40
40
|
}]>;
|
|
41
|
-
ShinyExample: import("@e280/sly").View<[start
|
|
41
|
+
ShinyExample: import("@e280/sly").View<[start?: any]> & import("@e280/sly").View<[context: ShinyContext, start?: any]>;
|
|
42
42
|
ShinyTabs: import("@e280/sly").View<[controlOption?: import("./index.js").TabControl | undefined]> & import("@e280/sly").View<[context: ShinyContext, controlOption?: import("./index.js").TabControl | undefined]>;
|
|
43
43
|
};
|
|
44
44
|
};
|
package/x/themes/aura.css.js
CHANGED
|
@@ -58,14 +58,14 @@ export const aura = css `@layer overlay {
|
|
|
58
58
|
|
|
59
59
|
:host([view="shiny-drawer"]:not([plain])) {
|
|
60
60
|
display: block;
|
|
61
|
+
--slate-bg: linear-gradient(
|
|
62
|
+
to top right,
|
|
63
|
+
color-mix(in oklab, var(--calm), #222 50%),
|
|
64
|
+
color-mix(in oklab, var(--calm), #888 50%)
|
|
65
|
+
);
|
|
61
66
|
|
|
62
67
|
&::part(slate) {
|
|
63
68
|
padding: 1em;
|
|
64
|
-
background: linear-gradient(
|
|
65
|
-
to top right,
|
|
66
|
-
#00a9dd69,
|
|
67
|
-
#70ffd77a
|
|
68
|
-
);
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
71
|
|