@e280/shiny 0.1.0-6 → 0.1.0-8
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/package.json +1 -1
- package/s/components/drawer/style.css.ts +1 -3
- package/s/demo/demo.bundle.ts +0 -1
- package/s/index.ts +4 -1
- package/x/components/drawer/style.css.js +1 -3
- package/x/components/drawer/style.css.js.map +1 -1
- package/x/demo/demo.bundle.js +0 -1
- package/x/demo/demo.bundle.js.map +1 -1
- package/x/demo/demo.bundle.min.js +1 -4
- package/x/demo/demo.bundle.min.js.map +2 -2
- package/x/index.d.ts +4 -1
- package/x/index.html +2 -2
- package/x/index.js +4 -1
- package/x/index.js.map +1 -1
- package/x/install/basic.bundle.min.js +1 -3
- package/x/install/basic.bundle.min.js.map +2 -2
- package/x/shiny.d.ts +5 -5
package/x/index.d.ts
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
export * from "./themes/index.js";
|
|
2
|
-
export * from "./components/example/component.js";
|
|
3
2
|
export * from "./components/copy/component.js";
|
|
3
|
+
export * from "./components/drawer/component.js";
|
|
4
|
+
export * from "./components/drawer/drawer.js";
|
|
5
|
+
export * from "./components/example/component.js";
|
|
4
6
|
export * from "./components/framework.js";
|
|
7
|
+
export * from "./components/raw-components.js";
|
|
5
8
|
export * from "./shiny.js";
|
package/x/index.html
CHANGED
|
@@ -128,7 +128,7 @@ body > section {
|
|
|
128
128
|
}
|
|
129
129
|
|
|
130
130
|
</style>
|
|
131
|
-
<script type=module src="demo/demo.bundle.min.js?v=
|
|
131
|
+
<script type=module src="demo/demo.bundle.min.js?v=ac17ea3786c3"></script>
|
|
132
132
|
<link rel="icon" href="assets/favicon.png?v=0414eeb5fcc2"/>
|
|
133
133
|
|
|
134
134
|
<meta name="theme-color" content="#d068ff">
|
|
@@ -145,7 +145,7 @@ body > section {
|
|
|
145
145
|
|
|
146
146
|
<h1>
|
|
147
147
|
<strong>✨shiny✨</strong>
|
|
148
|
-
<small>v0.1.0-
|
|
148
|
+
<small>v0.1.0-8</small>
|
|
149
149
|
</h1>
|
|
150
150
|
|
|
151
151
|
<section>
|
package/x/index.js
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
export * from "./themes/index.js";
|
|
2
|
-
export * from "./components/example/component.js";
|
|
3
2
|
export * from "./components/copy/component.js";
|
|
3
|
+
export * from "./components/drawer/component.js";
|
|
4
|
+
export * from "./components/drawer/drawer.js";
|
|
5
|
+
export * from "./components/example/component.js";
|
|
4
6
|
export * from "./components/framework.js";
|
|
7
|
+
export * from "./components/raw-components.js";
|
|
5
8
|
export * from "./shiny.js";
|
|
6
9
|
//# sourceMappingURL=index.js.map
|
package/x/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../s/index.ts"],"names":[],"mappings":"AACA,cAAc,mBAAmB,CAAA;AAEjC,cAAc,mCAAmC,CAAA;AACjD,cAAc,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../s/index.ts"],"names":[],"mappings":"AACA,cAAc,mBAAmB,CAAA;AAEjC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,kCAAkC,CAAA;AAChD,cAAc,+BAA+B,CAAA;AAC7C,cAAc,mCAAmC,CAAA;AACjD,cAAc,2BAA2B,CAAA;AACzC,cAAc,gCAAgC,CAAA;AAE9C,cAAc,YAAY,CAAA"}
|
|
@@ -96,7 +96,6 @@ ${q}
|
|
|
96
96
|
width: 100%;
|
|
97
97
|
height: 100%;
|
|
98
98
|
--button-size: 2em;
|
|
99
|
-
--drawer-height: auto;
|
|
100
99
|
--anim-duration: 200ms;
|
|
101
100
|
--blanket-bg: #1118;
|
|
102
101
|
--blanket-backdrop-filter: blur(0.5em);
|
|
@@ -145,8 +144,7 @@ ${q}
|
|
|
145
144
|
|
|
146
145
|
> slot {
|
|
147
146
|
display: block;
|
|
148
|
-
height:
|
|
149
|
-
max-height: 100%;
|
|
147
|
+
height: 100%;
|
|
150
148
|
overflow-y: auto;
|
|
151
149
|
}
|
|
152
150
|
|