@alegendstale/holly-components 0.2.25 → 0.2.27
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/color-palette/index.d.ts +2 -2
- package/dist/components/color-palette/index.d.ts.map +1 -1
- package/dist/components/color-palette/index.js +2 -2
- package/dist/utils/index.d.ts +3 -4
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/utils/index.js +3 -4
- package/package.json +5 -1
|
@@ -3,6 +3,6 @@ import { ColorPaletteItem, ColorPaletteItemEdit } from './item/index.js';
|
|
|
3
3
|
import { ColorPaletteMenu, ColorPaletteReorder } from './menu/index.js';
|
|
4
4
|
import { ColorPaletteComponent } from './component/index.js';
|
|
5
5
|
import { ColorPaletteEditor } from './editor/index.js';
|
|
6
|
-
|
|
7
|
-
export
|
|
6
|
+
export { ColorPalette, ColorPaletteItem, ColorPaletteItemEdit, ColorPaletteMenu, ColorPaletteReorder, ColorPaletteComponent, ColorPaletteEditor };
|
|
7
|
+
export * from './color-palette-utils.js';
|
|
8
8
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/color-palette/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAE,gBAAgB,EAAE,oBAAoB,EAAE,MAAM,iBAAiB,CAAC;AACzE,OAAO,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,CAAC;AACxE,OAAO,EAAE,qBAAqB,EAAE,MAAM,sBAAsB,CAAC;AAC7D,OAAO,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/color-palette/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAE,gBAAgB,EAAE,oBAAoB,EAAE,MAAM,iBAAiB,CAAC;AACzE,OAAO,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,CAAC;AACxE,OAAO,EAAE,qBAAqB,EAAE,MAAM,sBAAsB,CAAC;AAC7D,OAAO,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAEvD,OAAO,EAAE,YAAY,EAAE,gBAAgB,EAAE,oBAAoB,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,qBAAqB,EAAE,kBAAkB,EAAE,CAAC;AAClJ,cAAc,0BAA0B,CAAC"}
|
|
@@ -3,5 +3,5 @@ import { ColorPaletteItem, ColorPaletteItemEdit } from './item/index.js';
|
|
|
3
3
|
import { ColorPaletteMenu, ColorPaletteReorder } from './menu/index.js';
|
|
4
4
|
import { ColorPaletteComponent } from './component/index.js';
|
|
5
5
|
import { ColorPaletteEditor } from './editor/index.js';
|
|
6
|
-
|
|
7
|
-
export
|
|
6
|
+
export { ColorPalette, ColorPaletteItem, ColorPaletteItemEdit, ColorPaletteMenu, ColorPaletteReorder, ColorPaletteComponent, ColorPaletteEditor };
|
|
7
|
+
export * from './color-palette-utils.js';
|
package/dist/utils/index.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export { BasicUtils, EventEmitter, GenerateUtils };
|
|
1
|
+
export * from './basicUtils.js';
|
|
2
|
+
export * from './EventEmitter.js';
|
|
3
|
+
export * from './generateUtils.js';
|
|
5
4
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC"}
|
package/dist/utils/index.js
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export { BasicUtils, EventEmitter, GenerateUtils };
|
|
1
|
+
export * from './basicUtils.js';
|
|
2
|
+
export * from './EventEmitter.js';
|
|
3
|
+
export * from './generateUtils.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"private": false,
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.27",
|
|
4
4
|
"name": "@alegendstale/holly-components",
|
|
5
5
|
"description": "Reusable UI components created using lit",
|
|
6
6
|
"type": "module",
|
|
@@ -8,6 +8,10 @@
|
|
|
8
8
|
"module": "./dist/index.js",
|
|
9
9
|
"types": "./dist/index.d.ts",
|
|
10
10
|
"exports": {
|
|
11
|
+
"./color-palette/utils": {
|
|
12
|
+
"import": "./dist/components/color-palette/color-palette-utils.d.ts",
|
|
13
|
+
"types": "./dist/components/color-palette/color-palette-utils.d.ts"
|
|
14
|
+
},
|
|
11
15
|
"./utils": {
|
|
12
16
|
"import": "./dist/utils/index.js",
|
|
13
17
|
"types": "./dist/utils/index.d.ts"
|