@spectrum-web-components/progress-circle 1.2.0-beta.1 → 1.2.0-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,166 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "sp-progress-circle.js",
8
+ "declarations": [],
9
+ "exports": [
10
+ {
11
+ "kind": "custom-element-definition",
12
+ "name": "sp-progress-circle",
13
+ "declaration": {
14
+ "name": "ProgressCircle",
15
+ "module": "/src/ProgressCircle.js"
16
+ }
17
+ }
18
+ ]
19
+ },
20
+ {
21
+ "kind": "javascript-module",
22
+ "path": "src/ProgressCircle.js",
23
+ "declarations": [
24
+ {
25
+ "kind": "class",
26
+ "description": "",
27
+ "name": "ProgressCircle",
28
+ "members": [
29
+ {
30
+ "kind": "field",
31
+ "name": "indeterminate",
32
+ "type": {
33
+ "text": "boolean"
34
+ },
35
+ "privacy": "public",
36
+ "default": "false",
37
+ "attribute": "indeterminate",
38
+ "reflects": true
39
+ },
40
+ {
41
+ "kind": "field",
42
+ "name": "label",
43
+ "type": {
44
+ "text": "string"
45
+ },
46
+ "privacy": "public",
47
+ "default": "''",
48
+ "attribute": "label"
49
+ },
50
+ {
51
+ "kind": "field",
52
+ "name": "staticColor",
53
+ "type": {
54
+ "text": "'white' | undefined"
55
+ },
56
+ "privacy": "public",
57
+ "attribute": "static-color",
58
+ "reflects": true
59
+ },
60
+ {
61
+ "kind": "field",
62
+ "name": "progress",
63
+ "type": {
64
+ "text": "number"
65
+ },
66
+ "privacy": "public",
67
+ "default": "0",
68
+ "attribute": "progress"
69
+ },
70
+ {
71
+ "kind": "field",
72
+ "name": "slotEl",
73
+ "type": {
74
+ "text": "HTMLSlotElement"
75
+ },
76
+ "privacy": "private"
77
+ },
78
+ {
79
+ "kind": "method",
80
+ "name": "makeRotation",
81
+ "privacy": "private",
82
+ "return": {
83
+ "type": {
84
+ "text": "string | undefined"
85
+ }
86
+ },
87
+ "parameters": [
88
+ {
89
+ "name": "rotation",
90
+ "type": {
91
+ "text": "number"
92
+ }
93
+ }
94
+ ]
95
+ },
96
+ {
97
+ "kind": "method",
98
+ "name": "handleSlotchange",
99
+ "privacy": "protected",
100
+ "return": {
101
+ "type": {
102
+ "text": "void"
103
+ }
104
+ }
105
+ }
106
+ ],
107
+ "attributes": [
108
+ {
109
+ "name": "indeterminate",
110
+ "type": {
111
+ "text": "boolean"
112
+ },
113
+ "default": "false",
114
+ "fieldName": "indeterminate"
115
+ },
116
+ {
117
+ "name": "label",
118
+ "type": {
119
+ "text": "string"
120
+ },
121
+ "default": "''",
122
+ "fieldName": "label"
123
+ },
124
+ {
125
+ "name": "static-color",
126
+ "type": {
127
+ "text": "'white' | undefined"
128
+ },
129
+ "fieldName": "staticColor"
130
+ },
131
+ {
132
+ "name": "progress",
133
+ "type": {
134
+ "text": "number"
135
+ },
136
+ "default": "0",
137
+ "fieldName": "progress"
138
+ }
139
+ ],
140
+ "mixins": [
141
+ {
142
+ "name": "SizedMixin",
143
+ "package": "@spectrum-web-components/base"
144
+ }
145
+ ],
146
+ "superclass": {
147
+ "name": "SpectrumElement",
148
+ "package": "@spectrum-web-components/base"
149
+ },
150
+ "tagName": "sp-progress-circle",
151
+ "customElement": true
152
+ }
153
+ ],
154
+ "exports": [
155
+ {
156
+ "kind": "js",
157
+ "name": "ProgressCircle",
158
+ "declaration": {
159
+ "name": "ProgressCircle",
160
+ "module": "src/ProgressCircle.js"
161
+ }
162
+ }
163
+ ]
164
+ }
165
+ ]
166
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/progress-circle",
3
- "version": "1.2.0-beta.1",
3
+ "version": "1.2.0-beta.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -58,8 +58,8 @@
58
58
  "lit-html"
59
59
  ],
60
60
  "dependencies": {
61
- "@spectrum-web-components/base": "^1.2.0-beta.1",
62
- "@spectrum-web-components/shared": "^1.2.0-beta.1"
61
+ "@spectrum-web-components/base": "^1.2.0-beta.2",
62
+ "@spectrum-web-components/shared": "^1.2.0-beta.2"
63
63
  },
64
64
  "devDependencies": {
65
65
  "@spectrum-css/progresscircle": "4.0.0-s2-foundations.15"
@@ -70,5 +70,5 @@
70
70
  "./sp-*.js",
71
71
  "./**/*.dev.js"
72
72
  ],
73
- "gitHead": "10139c3ba67a3abfb114859efadac87d9dc4a472"
73
+ "gitHead": "c0c67a3bdce0642f6a60d11a62fdcb6c1909ca62"
74
74
  }