@proximus/lavender-skeleton 1.4.16-alpha.8 → 1.4.16-beta.2

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.
@@ -0,0 +1,131 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "src/Skeleton.ts",
8
+ "declarations": [
9
+ {
10
+ "kind": "variable",
11
+ "name": "skeletonsVariantValues",
12
+ "type": {
13
+ "text": "array"
14
+ },
15
+ "default": "[ 'heading-s', 'heading-m', 'heading-l', 'body', 'body-block', 'action-s', 'action-l', 'asset-s', 'asset-l', 'panel', ]"
16
+ },
17
+ {
18
+ "kind": "class",
19
+ "description": "",
20
+ "name": "Skeleton",
21
+ "members": [
22
+ {
23
+ "kind": "field",
24
+ "name": "nativeName",
25
+ "type": {
26
+ "text": "string"
27
+ },
28
+ "static": true,
29
+ "default": "'div'"
30
+ },
31
+ {
32
+ "kind": "field",
33
+ "name": "template",
34
+ "privacy": "private"
35
+ },
36
+ {
37
+ "kind": "method",
38
+ "name": "updateVariant",
39
+ "parameters": [
40
+ {
41
+ "name": "variant",
42
+ "type": {
43
+ "text": "string"
44
+ }
45
+ }
46
+ ]
47
+ },
48
+ {
49
+ "kind": "field",
50
+ "name": "$container",
51
+ "readonly": true
52
+ },
53
+ {
54
+ "kind": "field",
55
+ "name": "variant"
56
+ },
57
+ {
58
+ "kind": "field",
59
+ "name": "inverted"
60
+ },
61
+ {
62
+ "kind": "field",
63
+ "name": "innerHTML"
64
+ }
65
+ ],
66
+ "attributes": [
67
+ {
68
+ "name": "variant"
69
+ },
70
+ {
71
+ "name": "inverted"
72
+ }
73
+ ],
74
+ "superclass": {
75
+ "name": "PxElement",
76
+ "package": "@proximus/lavender-common"
77
+ },
78
+ "tagName": "px-skeleton",
79
+ "customElement": true
80
+ }
81
+ ],
82
+ "exports": [
83
+ {
84
+ "kind": "js",
85
+ "name": "skeletonsVariantValues",
86
+ "declaration": {
87
+ "name": "skeletonsVariantValues",
88
+ "module": "src/Skeleton.ts"
89
+ }
90
+ },
91
+ {
92
+ "kind": "js",
93
+ "name": "Skeleton",
94
+ "declaration": {
95
+ "name": "Skeleton",
96
+ "module": "src/Skeleton.ts"
97
+ }
98
+ },
99
+ {
100
+ "kind": "custom-element-definition",
101
+ "name": "px-skeleton",
102
+ "declaration": {
103
+ "name": "Skeleton",
104
+ "module": "src/Skeleton.ts"
105
+ }
106
+ }
107
+ ]
108
+ },
109
+ {
110
+ "kind": "javascript-module",
111
+ "path": "src/index.ts",
112
+ "declarations": [],
113
+ "exports": [
114
+ {
115
+ "kind": "js",
116
+ "name": "*",
117
+ "declaration": {
118
+ "name": "*",
119
+ "module": "src/Skeleton"
120
+ }
121
+ }
122
+ ]
123
+ },
124
+ {
125
+ "kind": "javascript-module",
126
+ "path": "src/skeleton.css",
127
+ "declarations": [],
128
+ "exports": []
129
+ }
130
+ ]
131
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/microsoft/vscode-css-languageservice/main/docs/customData.schema.json",
3
+ "version": 1.1,
4
+ "properties": [],
5
+ "pseudoElements": []
6
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/microsoft/vscode-html-languageservice/main/docs/customData.schema.json",
3
+ "version": 1.1,
4
+ "tags": [
5
+ {
6
+ "name": "px-skeleton",
7
+ "description": "\n---\n",
8
+ "attributes": [
9
+ { "name": "variant", "values": [] },
10
+ { "name": "inverted", "values": [] }
11
+ ],
12
+ "references": []
13
+ }
14
+ ]
15
+ }
@@ -0,0 +1,35 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
3
+ "name": "@proximus/lavender-skeleton",
4
+ "version": "1.4.16-beta.2",
5
+ "description-markup": "markdown",
6
+ "contributions": {
7
+ "html": {
8
+ "elements": [
9
+ {
10
+ "name": "px-skeleton",
11
+ "description": "\n\n---\n",
12
+ "doc-url": "",
13
+ "attributes": [
14
+ { "name": "variant", "value": { "type": "string" } },
15
+ { "name": "inverted", "value": { "type": "string" } }
16
+ ],
17
+ "events": [],
18
+ "js": {
19
+ "properties": [
20
+ { "name": "$container" },
21
+ { "name": "variant" },
22
+ { "name": "inverted" },
23
+ { "name": "innerHTML" }
24
+ ],
25
+ "events": []
26
+ }
27
+ }
28
+ ]
29
+ },
30
+ "css": {
31
+ "properties": [],
32
+ "pseudo-elements": []
33
+ }
34
+ }
35
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proximus/lavender-skeleton",
3
- "version": "1.4.16-alpha.8",
3
+ "version": "1.4.16-beta.2",
4
4
  "description": "",
5
5
  "main": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",