@spectrum-web-components/action-bar 0.49.0-beta.2 → 0.49.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,218 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "sp-action-bar.js",
8
+ "declarations": [],
9
+ "exports": [
10
+ {
11
+ "kind": "custom-element-definition",
12
+ "name": "sp-action-bar",
13
+ "declaration": {
14
+ "name": "ActionBar",
15
+ "module": "/src/ActionBar.js"
16
+ }
17
+ }
18
+ ]
19
+ },
20
+ {
21
+ "kind": "javascript-module",
22
+ "path": "src/ActionBar.js",
23
+ "declarations": [
24
+ {
25
+ "kind": "variable",
26
+ "name": "actionBarVariants",
27
+ "type": {
28
+ "text": "array"
29
+ },
30
+ "default": "['sticky', 'fixed']"
31
+ },
32
+ {
33
+ "kind": "class",
34
+ "description": "",
35
+ "name": "ActionBar",
36
+ "slots": [
37
+ {
38
+ "description": "Content to display with the Action Bar",
39
+ "name": ""
40
+ }
41
+ ],
42
+ "members": [
43
+ {
44
+ "kind": "field",
45
+ "name": "emphasized",
46
+ "type": {
47
+ "text": "boolean"
48
+ },
49
+ "privacy": "public",
50
+ "default": "false",
51
+ "description": "Deliver the Action Bar with additional visual emphasis.",
52
+ "attribute": "emphasized",
53
+ "reflects": true
54
+ },
55
+ {
56
+ "kind": "field",
57
+ "name": "flexible",
58
+ "type": {
59
+ "text": "boolean"
60
+ },
61
+ "privacy": "public",
62
+ "default": "false",
63
+ "description": "When `flexible` the action bar sizes itself to its content\nrather than a specific width.",
64
+ "parameters": [
65
+ {
66
+ "name": "flexible",
67
+ "type": {
68
+ "text": "Boolean"
69
+ }
70
+ }
71
+ ],
72
+ "attribute": "flexible",
73
+ "reflects": true
74
+ },
75
+ {
76
+ "kind": "field",
77
+ "name": "open",
78
+ "type": {
79
+ "text": "boolean"
80
+ },
81
+ "privacy": "public",
82
+ "default": "false",
83
+ "attribute": "open",
84
+ "reflects": true
85
+ },
86
+ {
87
+ "kind": "field",
88
+ "name": "variant",
89
+ "privacy": "public",
90
+ "description": "The variant applies specific styling when set to `sticky` or `fixed`.\n`variant` attribute is removed when not matching one of the above.",
91
+ "parameters": [
92
+ {
93
+ "name": "variant",
94
+ "type": {
95
+ "text": "String"
96
+ }
97
+ }
98
+ ],
99
+ "type": {
100
+ "text": "string"
101
+ },
102
+ "attribute": "variant"
103
+ },
104
+ {
105
+ "kind": "field",
106
+ "name": "_variant",
107
+ "type": {
108
+ "text": "string"
109
+ },
110
+ "privacy": "private",
111
+ "default": "''"
112
+ },
113
+ {
114
+ "kind": "method",
115
+ "name": "handleClick",
116
+ "privacy": "private",
117
+ "return": {
118
+ "type": {
119
+ "text": "void"
120
+ }
121
+ }
122
+ }
123
+ ],
124
+ "events": [
125
+ {
126
+ "name": "close",
127
+ "type": {
128
+ "text": "Event"
129
+ }
130
+ }
131
+ ],
132
+ "attributes": [
133
+ {
134
+ "name": "emphasized",
135
+ "type": {
136
+ "text": "boolean"
137
+ },
138
+ "default": "false",
139
+ "description": "Deliver the Action Bar with additional visual emphasis.",
140
+ "fieldName": "emphasized"
141
+ },
142
+ {
143
+ "name": "flexible",
144
+ "type": {
145
+ "text": "boolean"
146
+ },
147
+ "default": "false",
148
+ "description": "When `flexible` the action bar sizes itself to its content\nrather than a specific width.",
149
+ "parameters": [
150
+ {
151
+ "name": "flexible",
152
+ "type": {
153
+ "text": "Boolean"
154
+ }
155
+ }
156
+ ],
157
+ "fieldName": "flexible"
158
+ },
159
+ {
160
+ "name": "open",
161
+ "type": {
162
+ "text": "boolean"
163
+ },
164
+ "default": "false",
165
+ "fieldName": "open"
166
+ },
167
+ {
168
+ "name": "variant",
169
+ "description": "The variant applies specific styling when set to `sticky` or `fixed`.\n`variant` attribute is removed when not matching one of the above.",
170
+ "parameters": [
171
+ {
172
+ "name": "variant",
173
+ "type": {
174
+ "text": "String"
175
+ }
176
+ }
177
+ ],
178
+ "type": {
179
+ "text": "string"
180
+ },
181
+ "fieldName": "variant"
182
+ }
183
+ ],
184
+ "mixins": [
185
+ {
186
+ "name": "FocusVisiblePolyfillMixin",
187
+ "package": "@spectrum-web-components/shared/src/focus-visible.js"
188
+ }
189
+ ],
190
+ "superclass": {
191
+ "name": "SpectrumElement",
192
+ "package": "@spectrum-web-components/base"
193
+ },
194
+ "tagName": "sp-action-bar",
195
+ "customElement": true
196
+ }
197
+ ],
198
+ "exports": [
199
+ {
200
+ "kind": "js",
201
+ "name": "actionBarVariants",
202
+ "declaration": {
203
+ "name": "actionBarVariants",
204
+ "module": "src/ActionBar.js"
205
+ }
206
+ },
207
+ {
208
+ "kind": "js",
209
+ "name": "ActionBar",
210
+ "declaration": {
211
+ "name": "ActionBar",
212
+ "module": "src/ActionBar.js"
213
+ }
214
+ }
215
+ ]
216
+ }
217
+ ]
218
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/action-bar",
3
- "version": "0.49.0-beta.2",
3
+ "version": "0.49.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/action-group": "^0.49.0-beta.2",
61
- "@spectrum-web-components/base": "^0.49.0-beta.2",
62
- "@spectrum-web-components/button": "^0.49.0-beta.2",
63
- "@spectrum-web-components/field-label": "^0.49.0-beta.2",
64
- "@spectrum-web-components/popover": "^0.49.0-beta.2"
60
+ "@spectrum-web-components/action-group": "^0.49.0",
61
+ "@spectrum-web-components/base": "^0.49.0",
62
+ "@spectrum-web-components/button": "^0.49.0",
63
+ "@spectrum-web-components/field-label": "^0.49.0",
64
+ "@spectrum-web-components/popover": "^0.49.0"
65
65
  },
66
66
  "devDependencies": {
67
67
  "@spectrum-css/actionbar": "^8.1.1"
@@ -72,5 +72,5 @@
72
72
  "./sp-*.js",
73
73
  "./**/*.dev.js"
74
74
  ],
75
- "gitHead": "2a8752a182e31dfd71c010b72bece20b0b5d1c9e"
75
+ "gitHead": "088e84caa1e2f723d735b011608ca0a3411e2149"
76
76
  }