@stonecrop/beam 0.6.3 → 0.7.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/dist/beam.d.ts +4 -0
- package/dist/beam.js +7708 -6522
- package/dist/beam.js.map +1 -1
- package/dist/beam.umd.cjs +9 -6
- package/dist/beam.umd.cjs.map +1 -1
- package/dist/src/types/index.d.ts +4 -0
- package/dist/src/types/index.d.ts.map +1 -1
- package/package.json +20 -20
- package/src/types/index.ts +4 -0
- package/dist/tsdoc-metadata.json +0 -11
package/dist/beam.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ export { BeamArrow }
|
|
|
33
33
|
export { BeamBtn }
|
|
34
34
|
|
|
35
35
|
/**
|
|
36
|
+
* Union type for color values - supports RGB, RGBA, HEX, HSL, HSLA, or CSS color string
|
|
36
37
|
* @public
|
|
37
38
|
*/
|
|
38
39
|
export declare type BeamColor = RGB | RGBA | HEX | HSL | HSLA | CSSProperties['color'];
|
|
@@ -42,6 +43,7 @@ export { BeamDayDivider }
|
|
|
42
43
|
export { BeamFilter }
|
|
43
44
|
|
|
44
45
|
/**
|
|
46
|
+
* Filter choice with label and value for BeamFilter component
|
|
45
47
|
* @public
|
|
46
48
|
*/
|
|
47
49
|
export declare type BeamFilterChoice = {
|
|
@@ -88,6 +90,7 @@ export declare type HSLA = `hsl(${number}, ${number}%, ${number}%), ${number}`;
|
|
|
88
90
|
* @public
|
|
89
91
|
*/
|
|
90
92
|
export declare interface IMqttStream extends IClientOptions {
|
|
93
|
+
/** MQTT topics to subscribe to */
|
|
91
94
|
topics?: string[];
|
|
92
95
|
}
|
|
93
96
|
|
|
@@ -109,6 +112,7 @@ export { ListItem }
|
|
|
109
112
|
export { ListView }
|
|
110
113
|
|
|
111
114
|
/**
|
|
115
|
+
* Configuration object for ListView component items
|
|
112
116
|
* @public
|
|
113
117
|
*/
|
|
114
118
|
export declare type ListViewItem = {
|