@alegendstale/holly-components 0.2.5 → 0.2.7
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/dist/components/absolute-container/index.js +1 -0
- package/dist/components/bottom-sheet/index.js +1 -0
- package/dist/components/canvas/index.js +2 -0
- package/dist/components/carousel-scroller/index.js +1 -0
- package/dist/components/color-palette/index.js +7 -0
- package/dist/components/tool-tip/index.js +1 -0
- package/dist/index.d.ts +7 -12
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +14 -13
- package/package.json +6 -6
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import "./absolute-container.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import "./bottom-sheet.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import "./carousel-scroller.js";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import "./color-palette.js";
|
|
2
|
+
import "./item/color-palette-item.js";
|
|
3
|
+
import "./item/color-palette-item-edit.js";
|
|
4
|
+
import "./menu/color-palette-menu.js";
|
|
5
|
+
import "./menu/color-palette-reorder.js";
|
|
6
|
+
import "./component/color-palette-component.js";
|
|
7
|
+
import "./editor/color-palette-editor.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import "./tool-tip.js";
|
package/dist/index.d.ts
CHANGED
|
@@ -1,13 +1,8 @@
|
|
|
1
|
-
import './components/tool-tip';
|
|
2
|
-
import './components/bottom-sheet';
|
|
3
|
-
import './components/carousel-scroller';
|
|
4
|
-
import './components/color-palette';
|
|
5
|
-
import './components/canvas';
|
|
6
|
-
import './components/absolute-container';
|
|
7
|
-
export
|
|
8
|
-
export * from './components/bottom-sheet';
|
|
9
|
-
export * from './components/carousel-scroller';
|
|
10
|
-
export * from './components/color-palette';
|
|
11
|
-
export * from './components/canvas';
|
|
12
|
-
export * from './components/absolute-container';
|
|
1
|
+
import * as ToolTip from './components/tool-tip';
|
|
2
|
+
import * as BottomSheet from './components/bottom-sheet';
|
|
3
|
+
import * as CarouselScroller from './components/carousel-scroller';
|
|
4
|
+
import * as ColorPalette from './components/color-palette';
|
|
5
|
+
import * as Canvas from './components/canvas';
|
|
6
|
+
import * as AbsoluteContainer from './components/absolute-container';
|
|
7
|
+
export { ToolTip, BottomSheet, CarouselScroller, ColorPalette, Canvas, AbsoluteContainer };
|
|
13
8
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,uBAAuB,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAA;AAChD,OAAO,KAAK,WAAW,MAAM,2BAA2B,CAAA;AACxD,OAAO,KAAK,gBAAgB,MAAM,gCAAgC,CAAA;AAClE,OAAO,KAAK,YAAY,MAAM,4BAA4B,CAAA;AAC1D,OAAO,KAAK,MAAM,MAAM,qBAAqB,CAAA;AAC7C,OAAO,KAAK,iBAAiB,MAAM,iCAAiC,CAAA;AAEpE,OAAO,EAAE,OAAO,EAAE,WAAW,EAAE,gBAAgB,EAAE,YAAY,EAAE,MAAM,EAAE,iBAAiB,EAAE,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
import "./components/tool-tip/
|
|
2
|
-
import "./components/bottom-sheet/
|
|
3
|
-
import "./components/carousel-scroller/
|
|
4
|
-
import "./components/color-palette/
|
|
5
|
-
import "./components/
|
|
6
|
-
import "./components/
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
1
|
+
import * as o from "./components/tool-tip/index.js";
|
|
2
|
+
import * as r from "./components/bottom-sheet/index.js";
|
|
3
|
+
import * as e from "./components/carousel-scroller/index.js";
|
|
4
|
+
import * as t from "./components/color-palette/index.js";
|
|
5
|
+
import * as a from "./components/canvas/index.js";
|
|
6
|
+
import * as s from "./components/absolute-container/index.js";
|
|
7
|
+
export {
|
|
8
|
+
s as AbsoluteContainer,
|
|
9
|
+
r as BottomSheet,
|
|
10
|
+
a as Canvas,
|
|
11
|
+
e as CarouselScroller,
|
|
12
|
+
t as ColorPalette,
|
|
13
|
+
o as ToolTip
|
|
14
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"private": false,
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.7",
|
|
4
4
|
"name": "@alegendstale/holly-components",
|
|
5
5
|
"description": "Reusable UI components created using lit",
|
|
6
6
|
"type": "module",
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
"types": "./dist/index.d.ts",
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
12
|
-
"import": "./dist/index
|
|
13
|
-
"types": "./dist/index
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"types": "./dist/index.d.ts"
|
|
14
14
|
},
|
|
15
|
-
"
|
|
16
|
-
"import": "./dist
|
|
17
|
-
"types": "./dist
|
|
15
|
+
"./*": {
|
|
16
|
+
"import": "./dist/*.js",
|
|
17
|
+
"types": "./dist/*.d.ts"
|
|
18
18
|
}
|
|
19
19
|
},
|
|
20
20
|
"files": [
|