@spectrum-web-components/progress-bar 0.9.5-overlay.18 → 0.30.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.
@@ -0,0 +1,159 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "sp-progress-bar.js",
8
+ "declarations": [],
9
+ "exports": []
10
+ },
11
+ {
12
+ "kind": "javascript-module",
13
+ "path": "src/ProgressBar.js",
14
+ "declarations": [
15
+ {
16
+ "kind": "class",
17
+ "description": "",
18
+ "name": "ProgressBar",
19
+ "members": [
20
+ {
21
+ "kind": "field",
22
+ "name": "indeterminate",
23
+ "type": {
24
+ "text": "boolean"
25
+ },
26
+ "privacy": "public",
27
+ "default": "false",
28
+ "attribute": "indeterminate",
29
+ "reflects": true
30
+ },
31
+ {
32
+ "kind": "field",
33
+ "name": "label",
34
+ "type": {
35
+ "text": "string"
36
+ },
37
+ "privacy": "public",
38
+ "default": "''",
39
+ "attribute": "label"
40
+ },
41
+ {
42
+ "kind": "field",
43
+ "name": "overBackground",
44
+ "type": {
45
+ "text": "boolean"
46
+ },
47
+ "privacy": "public",
48
+ "default": "false",
49
+ "attribute": "over-background",
50
+ "reflects": true
51
+ },
52
+ {
53
+ "kind": "field",
54
+ "name": "sideLabel",
55
+ "type": {
56
+ "text": "boolean"
57
+ },
58
+ "privacy": "public",
59
+ "default": "false",
60
+ "attribute": "side-label",
61
+ "reflects": true
62
+ },
63
+ {
64
+ "kind": "field",
65
+ "name": "progress",
66
+ "type": {
67
+ "text": "number"
68
+ },
69
+ "privacy": "public",
70
+ "default": "0",
71
+ "attribute": "progress"
72
+ },
73
+ {
74
+ "kind": "field",
75
+ "name": "static",
76
+ "type": {
77
+ "text": "'white' | undefined"
78
+ },
79
+ "privacy": "public",
80
+ "attribute": "static",
81
+ "reflects": true
82
+ }
83
+ ],
84
+ "attributes": [
85
+ {
86
+ "name": "indeterminate",
87
+ "type": {
88
+ "text": "boolean"
89
+ },
90
+ "default": "false",
91
+ "fieldName": "indeterminate"
92
+ },
93
+ {
94
+ "name": "label",
95
+ "type": {
96
+ "text": "string"
97
+ },
98
+ "default": "''",
99
+ "fieldName": "label"
100
+ },
101
+ {
102
+ "name": "over-background",
103
+ "type": {
104
+ "text": "boolean"
105
+ },
106
+ "default": "false",
107
+ "fieldName": "overBackground"
108
+ },
109
+ {
110
+ "name": "side-label",
111
+ "type": {
112
+ "text": "boolean"
113
+ },
114
+ "default": "false",
115
+ "fieldName": "sideLabel"
116
+ },
117
+ {
118
+ "name": "progress",
119
+ "type": {
120
+ "text": "number"
121
+ },
122
+ "default": "0",
123
+ "fieldName": "progress"
124
+ },
125
+ {
126
+ "name": "static",
127
+ "type": {
128
+ "text": "'white' | undefined"
129
+ },
130
+ "fieldName": "static"
131
+ }
132
+ ],
133
+ "mixins": [
134
+ {
135
+ "name": "SizedMixin",
136
+ "package": "@spectrum-web-components/base"
137
+ }
138
+ ],
139
+ "superclass": {
140
+ "name": "SpectrumElement",
141
+ "package": "@spectrum-web-components/base"
142
+ },
143
+ "tagName": "sp-progress-bar",
144
+ "customElement": true
145
+ }
146
+ ],
147
+ "exports": [
148
+ {
149
+ "kind": "js",
150
+ "name": "ProgressBar",
151
+ "declaration": {
152
+ "name": "ProgressBar",
153
+ "module": "src/ProgressBar.js"
154
+ }
155
+ }
156
+ ]
157
+ }
158
+ ]
159
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/progress-bar",
3
- "version": "0.9.5-overlay.18+2ba65b1a7",
3
+ "version": "0.30.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -57,11 +57,11 @@
57
57
  "lit-html"
58
58
  ],
59
59
  "dependencies": {
60
- "@spectrum-web-components/base": "^0.7.6-overlay.62+2ba65b1a7",
61
- "@spectrum-web-components/field-label": "^0.10.11-overlay.18+2ba65b1a7"
60
+ "@spectrum-web-components/base": "^0.30.0",
61
+ "@spectrum-web-components/field-label": "^0.30.0"
62
62
  },
63
63
  "devDependencies": {
64
- "@spectrum-css/progressbar": "^3.0.22"
64
+ "@spectrum-css/progressbar": "^3.0.27"
65
65
  },
66
66
  "types": "./src/index.d.ts",
67
67
  "customElements": "custom-elements.json",
@@ -69,5 +69,5 @@
69
69
  "./sp-*.js",
70
70
  "./**/*.dev.js"
71
71
  ],
72
- "gitHead": "2ba65b1a7310f182972a840bea45ba93203c2da0"
72
+ "gitHead": "e34a26bf2bbea5f60a5e415e0f12c97654f0e20d"
73
73
  }
@@ -1,4 +1,5 @@
1
1
  "use strict";
2
2
  import { ProgressBar } from "./src/ProgressBar.dev.js";
3
- customElements.define("sp-progress-bar", ProgressBar);
3
+ import { defineElement } from "@spectrum-web-components/base/src/define-element.js";
4
+ defineElement("sp-progress-bar", ProgressBar);
4
5
  //# sourceMappingURL=sp-progress-bar.dev.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["sp-progress-bar.ts"],
4
- "sourcesContent": ["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { ProgressBar } from './src/ProgressBar.dev.js'\n\ncustomElements.define('sp-progress-bar', ProgressBar);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-progress-bar': ProgressBar;\n }\n}\n"],
5
- "mappings": ";AAYA,SAAS,mBAAmB;AAE5B,eAAe,OAAO,mBAAmB,WAAW;",
4
+ "sourcesContent": ["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { ProgressBar } from './src/ProgressBar.dev.js'\nimport { defineElement } from '@spectrum-web-components/base/src/define-element.js';\n\ndefineElement('sp-progress-bar', ProgressBar);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-progress-bar': ProgressBar;\n }\n}\n"],
5
+ "mappings": ";AAYA,SAAS,mBAAmB;AAC5B,SAAS,qBAAqB;AAE9B,cAAc,mBAAmB,WAAW;",
6
6
  "names": []
7
7
  }
@@ -1,2 +1,2 @@
1
- "use strict";import{ProgressBar as r}from"./src/ProgressBar.js";customElements.define("sp-progress-bar",r);
1
+ "use strict";import{ProgressBar as r}from"./src/ProgressBar.js";import{defineElement as e}from"@spectrum-web-components/base/src/define-element.js";e("sp-progress-bar",r);
2
2
  //# sourceMappingURL=sp-progress-bar.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["sp-progress-bar.ts"],
4
- "sourcesContent": ["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { ProgressBar } from './src/ProgressBar.js';\n\ncustomElements.define('sp-progress-bar', ProgressBar);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-progress-bar': ProgressBar;\n }\n}\n"],
5
- "mappings": "aAYA,OAAS,eAAAA,MAAmB,uBAE5B,eAAe,OAAO,kBAAmBA,CAAW",
6
- "names": ["ProgressBar"]
4
+ "sourcesContent": ["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { ProgressBar } from './src/ProgressBar.js';\nimport { defineElement } from '@spectrum-web-components/base/src/define-element.js';\n\ndefineElement('sp-progress-bar', ProgressBar);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-progress-bar': ProgressBar;\n }\n}\n"],
5
+ "mappings": "aAYA,OAAS,eAAAA,MAAmB,uBAC5B,OAAS,iBAAAC,MAAqB,sDAE9BA,EAAc,kBAAmBD,CAAW",
6
+ "names": ["ProgressBar", "defineElement"]
7
7
  }