@htmlbricks/hb-contact-item 0.8.43 → 0.8.45
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
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@htmlbricks/hb-contact-item",
|
|
3
3
|
"displayName": "Svelte Contact WebComponent",
|
|
4
4
|
"description": "Svelte Contact WebComponent",
|
|
5
|
-
"version": "0.8.
|
|
5
|
+
"version": "0.8.45",
|
|
6
6
|
"main": "release/release.js",
|
|
7
7
|
"publishConfig": {
|
|
8
8
|
"access": "public"
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"prepublish": "npm run build:release"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@htmlbricks/hb-jsutils": "^0.8.
|
|
34
|
-
"@htmlbricks/manifester": "^0.0.
|
|
33
|
+
"@htmlbricks/hb-jsutils": "^0.8.45",
|
|
34
|
+
"@htmlbricks/manifester": "^0.0.9",
|
|
35
35
|
"@rollup/plugin-alias": "^3.1.2",
|
|
36
36
|
"@rollup/plugin-commonjs": "^18.0.0",
|
|
37
37
|
"@rollup/plugin-json": "^4.1.0",
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"webcomponents"
|
|
76
76
|
],
|
|
77
77
|
"contributors": [],
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "cad34cdf98084f7b6d972812fbc05c783318f0ea"
|
|
79
79
|
}
|
package/release/docs.mjs
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
export var storybookArgs = {
|
|
2
|
-
id: { control: { disable: true } },
|
|
3
|
-
phone: { control: { type: "object" } },
|
|
4
|
-
address: { control: { type: "object" } },
|
|
5
|
-
email: { control: { type: "object" } },
|
|
6
|
-
site: { control: { type: "object" } },
|
|
7
|
-
config: { control: { type: "object" } },
|
|
8
|
-
contactclick: { action: "contactClickEvent" }
|
|
9
|
-
};
|
|
10
|
-
var cssVars = [];
|
|
11
|
-
export var cssParts = [];
|
|
12
|
-
export var htmlSlots = [];
|
|
13
|
-
export var i18nLanguages = [];
|
|
14
|
-
export var styleSetup = {
|
|
15
|
-
vars: cssVars,
|
|
16
|
-
parts: cssParts
|
|
17
|
-
};
|
|
18
|
-
var examples = [
|
|
19
|
-
{
|
|
20
|
-
email: { address: "dev@dariocaruso.info" }
|
|
21
|
-
},
|
|
22
|
-
];
|
|
23
|
-
export var componentSetup = {
|
|
24
|
-
definitions: null,
|
|
25
|
-
storybookArgs: storybookArgs,
|
|
26
|
-
styleSetup: styleSetup,
|
|
27
|
-
htmlSlots: htmlSlots,
|
|
28
|
-
i18n: i18nLanguages,
|
|
29
|
-
examples: examples,
|
|
30
|
-
name: "hb-contact-item",
|
|
31
|
-
category: "basic",
|
|
32
|
-
tags: ["basic"],
|
|
33
|
-
size: {}
|
|
34
|
-
};
|
|
35
|
-
//# sourceMappingURL=docs.js.map
|
|
@@ -1,144 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$ref": "#/definitions/Component",
|
|
3
|
-
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
|
-
"definitions": {
|
|
5
|
-
"Component": {
|
|
6
|
-
"additionalProperties": false,
|
|
7
|
-
"properties": {
|
|
8
|
-
"address": {
|
|
9
|
-
"$ref": "#/definitions/IAddress"
|
|
10
|
-
},
|
|
11
|
-
"config": {
|
|
12
|
-
"$ref": "#/definitions/IConfig"
|
|
13
|
-
},
|
|
14
|
-
"email": {
|
|
15
|
-
"$ref": "#/definitions/IEmail"
|
|
16
|
-
},
|
|
17
|
-
"id": {
|
|
18
|
-
"type": "string"
|
|
19
|
-
},
|
|
20
|
-
"phone": {
|
|
21
|
-
"$ref": "#/definitions/IPhone"
|
|
22
|
-
},
|
|
23
|
-
"site": {
|
|
24
|
-
"$ref": "#/definitions/ISite"
|
|
25
|
-
},
|
|
26
|
-
"social": {
|
|
27
|
-
"$ref": "#/definitions/ISocial"
|
|
28
|
-
},
|
|
29
|
-
"style": {
|
|
30
|
-
"type": "string"
|
|
31
|
-
}
|
|
32
|
-
},
|
|
33
|
-
"type": "object"
|
|
34
|
-
},
|
|
35
|
-
"IAddress": {
|
|
36
|
-
"additionalProperties": false,
|
|
37
|
-
"properties": {
|
|
38
|
-
"address": {
|
|
39
|
-
"type": "string"
|
|
40
|
-
},
|
|
41
|
-
"latLang": {
|
|
42
|
-
"items": {
|
|
43
|
-
"type": "number"
|
|
44
|
-
},
|
|
45
|
-
"type": "array"
|
|
46
|
-
},
|
|
47
|
-
"mapUri": {
|
|
48
|
-
"type": "string"
|
|
49
|
-
},
|
|
50
|
-
"shortAddress": {
|
|
51
|
-
"type": "string"
|
|
52
|
-
}
|
|
53
|
-
},
|
|
54
|
-
"required": [
|
|
55
|
-
"address"
|
|
56
|
-
],
|
|
57
|
-
"type": "object"
|
|
58
|
-
},
|
|
59
|
-
"IConfig": {
|
|
60
|
-
"additionalProperties": false,
|
|
61
|
-
"properties": {
|
|
62
|
-
"dispatcher": {
|
|
63
|
-
"type": "boolean"
|
|
64
|
-
},
|
|
65
|
-
"icon": {
|
|
66
|
-
"additionalProperties": false,
|
|
67
|
-
"properties": {
|
|
68
|
-
"fill": {
|
|
69
|
-
"type": "boolean"
|
|
70
|
-
}
|
|
71
|
-
},
|
|
72
|
-
"type": "object"
|
|
73
|
-
},
|
|
74
|
-
"text": {
|
|
75
|
-
"type": "boolean"
|
|
76
|
-
}
|
|
77
|
-
},
|
|
78
|
-
"type": "object"
|
|
79
|
-
},
|
|
80
|
-
"IEmail": {
|
|
81
|
-
"additionalProperties": false,
|
|
82
|
-
"properties": {
|
|
83
|
-
"address": {
|
|
84
|
-
"type": "string"
|
|
85
|
-
},
|
|
86
|
-
"mailLink": {
|
|
87
|
-
"type": "boolean"
|
|
88
|
-
}
|
|
89
|
-
},
|
|
90
|
-
"required": [
|
|
91
|
-
"address"
|
|
92
|
-
],
|
|
93
|
-
"type": "object"
|
|
94
|
-
},
|
|
95
|
-
"IPhone": {
|
|
96
|
-
"additionalProperties": false,
|
|
97
|
-
"properties": {
|
|
98
|
-
"callOnClick": {
|
|
99
|
-
"type": "boolean"
|
|
100
|
-
},
|
|
101
|
-
"number": {
|
|
102
|
-
"type": "string"
|
|
103
|
-
}
|
|
104
|
-
},
|
|
105
|
-
"required": [
|
|
106
|
-
"number"
|
|
107
|
-
],
|
|
108
|
-
"type": "object"
|
|
109
|
-
},
|
|
110
|
-
"ISite": {
|
|
111
|
-
"additionalProperties": false,
|
|
112
|
-
"properties": {
|
|
113
|
-
"label": {
|
|
114
|
-
"type": "string"
|
|
115
|
-
},
|
|
116
|
-
"open": {
|
|
117
|
-
"type": "boolean"
|
|
118
|
-
},
|
|
119
|
-
"uri": {
|
|
120
|
-
"type": "string"
|
|
121
|
-
}
|
|
122
|
-
},
|
|
123
|
-
"type": "object"
|
|
124
|
-
},
|
|
125
|
-
"ISocial": {
|
|
126
|
-
"additionalProperties": false,
|
|
127
|
-
"properties": {
|
|
128
|
-
"label": {
|
|
129
|
-
"type": "string"
|
|
130
|
-
},
|
|
131
|
-
"name": {
|
|
132
|
-
"type": "string"
|
|
133
|
-
},
|
|
134
|
-
"pageUri": {
|
|
135
|
-
"type": "string"
|
|
136
|
-
}
|
|
137
|
-
},
|
|
138
|
-
"required": [
|
|
139
|
-
"name"
|
|
140
|
-
],
|
|
141
|
-
"type": "object"
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$ref": "#/definitions/Events",
|
|
3
|
-
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
|
-
"definitions": {
|
|
5
|
-
"Events": {
|
|
6
|
-
"additionalProperties": false,
|
|
7
|
-
"properties": {
|
|
8
|
-
"contactclick": {
|
|
9
|
-
"additionalProperties": false,
|
|
10
|
-
"properties": {
|
|
11
|
-
"action": {
|
|
12
|
-
"type": "string"
|
|
13
|
-
},
|
|
14
|
-
"options": {}
|
|
15
|
-
},
|
|
16
|
-
"required": [
|
|
17
|
-
"action",
|
|
18
|
-
"options"
|
|
19
|
-
],
|
|
20
|
-
"type": "object"
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
|
-
"required": [
|
|
24
|
-
"contactclick"
|
|
25
|
-
],
|
|
26
|
-
"type": "object"
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
}
|