proto-tinker-wc 0.0.11 → 0.0.12
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FunctionalComponent } from '../../stencil-public-runtime';
|
|
2
|
-
import {
|
|
3
|
-
declare const ColorPicker: FunctionalComponent<
|
|
2
|
+
import { ActiveProps } from '../../utils';
|
|
3
|
+
declare const ColorPicker: FunctionalComponent<ActiveProps>;
|
|
4
4
|
export { ColorPicker };
|
|
5
5
|
export default ColorPicker;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FunctionalComponent } from '../../stencil-public-runtime';
|
|
2
|
-
import {
|
|
3
|
-
declare const DataSource: FunctionalComponent<
|
|
2
|
+
import { ActiveProps } from '../../utils';
|
|
3
|
+
declare const DataSource: FunctionalComponent<ActiveProps>;
|
|
4
4
|
export { DataSource };
|
|
5
5
|
export default DataSource;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FunctionalComponent } from '../../stencil-public-runtime';
|
|
2
|
-
import {
|
|
3
|
-
declare const DataValues: FunctionalComponent<
|
|
2
|
+
import { PassiveProps } from '../../utils';
|
|
3
|
+
declare const DataValues: FunctionalComponent<PassiveProps>;
|
|
4
4
|
export { DataValues };
|
|
5
5
|
export default DataValues;
|
|
@@ -32,9 +32,12 @@ interface StateDef {
|
|
|
32
32
|
pick: string;
|
|
33
33
|
values: number[];
|
|
34
34
|
}
|
|
35
|
-
interface
|
|
36
|
-
actions
|
|
37
|
-
state
|
|
35
|
+
interface ActiveProps {
|
|
36
|
+
actions: ActionsDef;
|
|
37
|
+
state: StateDef;
|
|
38
|
+
}
|
|
39
|
+
interface PassiveProps {
|
|
40
|
+
state: StateDef;
|
|
38
41
|
}
|
|
39
42
|
interface IconProps {
|
|
40
43
|
hex?: string;
|
|
@@ -43,4 +46,4 @@ interface IconProps {
|
|
|
43
46
|
selected?: boolean;
|
|
44
47
|
size?: number;
|
|
45
48
|
}
|
|
46
|
-
export type { BarObj, FunnelObj, ColorDict, CreateFn, ActionsDef, StateDef,
|
|
49
|
+
export type { BarObj, FunnelObj, ColorDict, CreateFn, ActionsDef, StateDef, ActiveProps, PassiveProps, IconProps, };
|