@nectary/labs 2.2.34 → 2.3.0
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 +2 -2
- package/phone-preview-rcs-channel.d.ts +15 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nectary/labs",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"files": [
|
|
5
5
|
"**/*/*.css",
|
|
6
6
|
"**/*/*.json",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@lit-labs/scoped-registry-mixin": "^1.0.3",
|
|
20
|
-
"@nectary/components": "4.
|
|
20
|
+
"@nectary/components": "4.9.0",
|
|
21
21
|
"solid-element": "1.8.1",
|
|
22
22
|
"solid-js": "1.8.19"
|
|
23
23
|
},
|
|
@@ -1,17 +1,5 @@
|
|
|
1
1
|
import '@nectary/components/icon';
|
|
2
|
-
|
|
3
|
-
* RCS channel preview component.
|
|
4
|
-
*
|
|
5
|
-
* @param props.color Brand color, used in the banner (if no image provided) and tabs.
|
|
6
|
-
* @param props.name Brand name.
|
|
7
|
-
* @param props.description Brand description.
|
|
8
|
-
* @param props.banner Brand banner image.
|
|
9
|
-
* @param props.logo Brand logo image.
|
|
10
|
-
* @param props.phone Brand phone numbers.
|
|
11
|
-
* @param props.website Brand website URLs.
|
|
12
|
-
* @param props.email Brand email addresses.
|
|
13
|
-
*/
|
|
14
|
-
export declare const RcsChannelPreview: (props: {
|
|
2
|
+
interface RcsChannelProps {
|
|
15
3
|
name: string;
|
|
16
4
|
description: string;
|
|
17
5
|
color: string;
|
|
@@ -29,7 +17,20 @@ export declare const RcsChannelPreview: (props: {
|
|
|
29
17
|
label: string;
|
|
30
18
|
address: string;
|
|
31
19
|
}[];
|
|
32
|
-
}
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* RCS channel preview component.
|
|
23
|
+
*
|
|
24
|
+
* @param props.color Brand color, used in the banner (if no image provided) and tabs.
|
|
25
|
+
* @param props.name Brand name.
|
|
26
|
+
* @param props.description Brand description.
|
|
27
|
+
* @param props.banner Brand banner image.
|
|
28
|
+
* @param props.logo Brand logo image.
|
|
29
|
+
* @param props.phone Brand phone numbers.
|
|
30
|
+
* @param props.website Brand website URLs.
|
|
31
|
+
* @param props.email Brand email addresses.
|
|
32
|
+
*/
|
|
33
|
+
export declare const RcsChannelPreview: (props: RcsChannelProps) => Node | Node[];
|
|
33
34
|
type Props = Partial<Parameters<typeof RcsChannelPreview>[0]>;
|
|
34
35
|
type ElementProps = Partial<{
|
|
35
36
|
[K in keyof Props]: Props[K] | string;
|