@spectrum-web-components/action-bar 0.5.14 → 0.5.15
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/custom-elements.json +4 -4
- package/package.json +3 -3
- package/src/action-bar.css.dev.js +2 -12
- package/src/action-bar.css.dev.js.map +2 -2
- package/src/action-bar.css.js +2 -12
- package/src/action-bar.css.js.map +2 -2
- package/src/spectrum-action-bar.css.dev.js +2 -12
- package/src/spectrum-action-bar.css.dev.js.map +2 -2
- package/src/spectrum-action-bar.css.js +2 -12
- package/src/spectrum-action-bar.css.js.map +2 -2
- package/src/spectrum-config.js +26 -33
package/custom-elements.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"modules": [
|
|
5
5
|
{
|
|
6
6
|
"kind": "javascript-module",
|
|
7
|
-
"path": "sp-action-bar.
|
|
7
|
+
"path": "sp-action-bar.js",
|
|
8
8
|
"declarations": [],
|
|
9
9
|
"exports": [
|
|
10
10
|
{
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
},
|
|
20
20
|
{
|
|
21
21
|
"kind": "javascript-module",
|
|
22
|
-
"path": "src/ActionBar.
|
|
22
|
+
"path": "src/ActionBar.js",
|
|
23
23
|
"declarations": [
|
|
24
24
|
{
|
|
25
25
|
"kind": "variable",
|
|
@@ -157,7 +157,7 @@
|
|
|
157
157
|
"name": "actionBarVariants",
|
|
158
158
|
"declaration": {
|
|
159
159
|
"name": "actionBarVariants",
|
|
160
|
-
"module": "src/ActionBar.
|
|
160
|
+
"module": "src/ActionBar.js"
|
|
161
161
|
}
|
|
162
162
|
},
|
|
163
163
|
{
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
"name": "ActionBar",
|
|
166
166
|
"declaration": {
|
|
167
167
|
"name": "ActionBar",
|
|
168
|
-
"module": "src/ActionBar.
|
|
168
|
+
"module": "src/ActionBar.js"
|
|
169
169
|
}
|
|
170
170
|
}
|
|
171
171
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spectrum-web-components/action-bar",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.15",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
],
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"@spectrum-web-components/base": "^0.7.4",
|
|
61
|
-
"@spectrum-web-components/popover": "^0.12.
|
|
61
|
+
"@spectrum-web-components/popover": "^0.12.15"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"@spectrum-css/actionbar": "^4.0.1"
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"./sp-*.js",
|
|
70
70
|
"./**/*.dev.js"
|
|
71
71
|
],
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "1e25ee121f3bc838dbb99bac62f3c95857570f7a"
|
|
73
73
|
}
|
|
@@ -1,22 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
import { css } from "@spectrum-web-components/base";
|
|
3
3
|
const styles = css`
|
|
4
|
-
:host{--spectrum-actionbar-height:var(
|
|
5
|
-
--spectrum-global-dimension-size-600
|
|
6
|
-
);--spectrum-actionbar-padding-left:var(
|
|
4
|
+
:host{--spectrum-actionbar-height:var(--spectrum-global-dimension-size-600);--spectrum-actionbar-padding-left:var(
|
|
7
5
|
--spectrum-global-dimension-size-200
|
|
8
6
|
);--spectrum-actionbar-padding-right:calc(var(--spectrum-global-dimension-size-200)/2);--spectrum-actionbar-margin-x:var(--spectrum-global-dimension-size-200);--spectrum-actionbar-min-width:280px;--spectrum-actionbar-max-width:960px}:host{bottom:0;box-sizing:border-box;display:flex;height:0;justify-content:center;opacity:0;overflow:hidden;padding:0 var(--spectrum-actionbar-margin-x);pointer-events:none;transition:height var(--spectrum-global-animation-duration-100,.13s) ease-in-out,opacity var(--spectrum-global-animation-duration-100,.13s) ease-in-out;z-index:1}:host([open]){height:calc(var(
|
|
9
7
|
--spectrum-actionbar-height,
|
|
10
8
|
var(--spectrum-global-dimension-size-600)
|
|
11
|
-
) + var(--spectrum-actionbar-margin-x)*2);opacity:1}:host([dir=ltr][variant=sticky]){left:0}:host([dir=
|
|
12
|
-
--spectrum-actionbar-padding-left
|
|
13
|
-
)}:host([dir=rtl]) #popover{padding-right:var(
|
|
14
|
-
--spectrum-actionbar-padding-left
|
|
15
|
-
)}:host([dir=ltr]) #popover{padding-right:var(
|
|
16
|
-
--spectrum-actionbar-padding-right
|
|
17
|
-
)}:host([dir=rtl]) #popover{padding-left:var(
|
|
18
|
-
--spectrum-actionbar-padding-right
|
|
19
|
-
)}#popover{align-items:center;box-sizing:border-box;flex-direction:row;height:var(
|
|
9
|
+
) + var(--spectrum-actionbar-margin-x)*2);opacity:1}:host([dir=ltr][variant=sticky]){left:0}:host([dir=ltr][variant=sticky]),:host([dir=rtl][variant=sticky]){right:0}:host([dir=rtl][variant=sticky]){left:0}:host([variant=sticky]){position:sticky}:host([flexible]) #popover{width:auto}:host([variant=fixed]){position:fixed}:host([dir=ltr]) #popover{padding-left:var(--spectrum-actionbar-padding-left)}:host([dir=rtl]) #popover{padding-right:var(--spectrum-actionbar-padding-left)}:host([dir=ltr]) #popover{padding-right:var(--spectrum-actionbar-padding-right)}:host([dir=rtl]) #popover{padding-left:var(--spectrum-actionbar-padding-right)}#popover{align-items:center;box-sizing:border-box;flex-direction:row;height:var(
|
|
20
10
|
--spectrum-actionbar-height,var(--spectrum-global-dimension-size-600)
|
|
21
11
|
);justify-content:space-between;margin:auto;max-width:var(
|
|
22
12
|
--spectrum-actionbar-max-width,var(--spectrum-global-dimension-static-size-3500)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["action-bar.css.ts"],
|
|
4
|
-
"sourcesContent": ["/*\nCopyright 2023 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*/\nimport { css } from '@spectrum-web-components/base';\nconst styles = css`\n:host{--spectrum-actionbar-height:var(
|
|
5
|
-
"mappings": ";AAWA,SAAS,WAAW;AACpB,MAAM,SAAS;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;
|
|
4
|
+
"sourcesContent": ["/*\nCopyright 2023 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*/\nimport { css } from '@spectrum-web-components/base';\nconst styles = css`\n:host{--spectrum-actionbar-height:var(--spectrum-global-dimension-size-600);--spectrum-actionbar-padding-left:var(\n--spectrum-global-dimension-size-200\n);--spectrum-actionbar-padding-right:calc(var(--spectrum-global-dimension-size-200)/2);--spectrum-actionbar-margin-x:var(--spectrum-global-dimension-size-200);--spectrum-actionbar-min-width:280px;--spectrum-actionbar-max-width:960px}:host{bottom:0;box-sizing:border-box;display:flex;height:0;justify-content:center;opacity:0;overflow:hidden;padding:0 var(--spectrum-actionbar-margin-x);pointer-events:none;transition:height var(--spectrum-global-animation-duration-100,.13s) ease-in-out,opacity var(--spectrum-global-animation-duration-100,.13s) ease-in-out;z-index:1}:host([open]){height:calc(var(\n--spectrum-actionbar-height,\nvar(--spectrum-global-dimension-size-600)\n) + var(--spectrum-actionbar-margin-x)*2);opacity:1}:host([dir=ltr][variant=sticky]){left:0}:host([dir=ltr][variant=sticky]),:host([dir=rtl][variant=sticky]){right:0}:host([dir=rtl][variant=sticky]){left:0}:host([variant=sticky]){position:sticky}:host([flexible]) #popover{width:auto}:host([variant=fixed]){position:fixed}:host([dir=ltr]) #popover{padding-left:var(--spectrum-actionbar-padding-left)}:host([dir=rtl]) #popover{padding-right:var(--spectrum-actionbar-padding-left)}:host([dir=ltr]) #popover{padding-right:var(--spectrum-actionbar-padding-right)}:host([dir=rtl]) #popover{padding-left:var(--spectrum-actionbar-padding-right)}#popover{align-items:center;box-sizing:border-box;flex-direction:row;height:var(\n--spectrum-actionbar-height,var(--spectrum-global-dimension-size-600)\n);justify-content:space-between;margin:auto;max-width:var(\n--spectrum-actionbar-max-width,var(--spectrum-global-dimension-static-size-3500)\n);min-width:var(\n--spectrum-actionbar-min-width,var(--spectrum-global-dimension-static-size-3500)\n);pointer-events:auto;position:relative;width:100%}\n`;\nexport default styles;"],
|
|
5
|
+
"mappings": ";AAWA,SAAS,WAAW;AACpB,MAAM,SAAS;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAcf,eAAe;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/src/action-bar.css.js
CHANGED
|
@@ -1,20 +1,10 @@
|
|
|
1
1
|
"use strict";import{css as t}from"@spectrum-web-components/base";const i=t`
|
|
2
|
-
:host{--spectrum-actionbar-height:var(
|
|
3
|
-
--spectrum-global-dimension-size-600
|
|
4
|
-
);--spectrum-actionbar-padding-left:var(
|
|
2
|
+
:host{--spectrum-actionbar-height:var(--spectrum-global-dimension-size-600);--spectrum-actionbar-padding-left:var(
|
|
5
3
|
--spectrum-global-dimension-size-200
|
|
6
4
|
);--spectrum-actionbar-padding-right:calc(var(--spectrum-global-dimension-size-200)/2);--spectrum-actionbar-margin-x:var(--spectrum-global-dimension-size-200);--spectrum-actionbar-min-width:280px;--spectrum-actionbar-max-width:960px}:host{bottom:0;box-sizing:border-box;display:flex;height:0;justify-content:center;opacity:0;overflow:hidden;padding:0 var(--spectrum-actionbar-margin-x);pointer-events:none;transition:height var(--spectrum-global-animation-duration-100,.13s) ease-in-out,opacity var(--spectrum-global-animation-duration-100,.13s) ease-in-out;z-index:1}:host([open]){height:calc(var(
|
|
7
5
|
--spectrum-actionbar-height,
|
|
8
6
|
var(--spectrum-global-dimension-size-600)
|
|
9
|
-
) + var(--spectrum-actionbar-margin-x)*2);opacity:1}:host([dir=ltr][variant=sticky]){left:0}:host([dir=
|
|
10
|
-
--spectrum-actionbar-padding-left
|
|
11
|
-
)}:host([dir=rtl]) #popover{padding-right:var(
|
|
12
|
-
--spectrum-actionbar-padding-left
|
|
13
|
-
)}:host([dir=ltr]) #popover{padding-right:var(
|
|
14
|
-
--spectrum-actionbar-padding-right
|
|
15
|
-
)}:host([dir=rtl]) #popover{padding-left:var(
|
|
16
|
-
--spectrum-actionbar-padding-right
|
|
17
|
-
)}#popover{align-items:center;box-sizing:border-box;flex-direction:row;height:var(
|
|
7
|
+
) + var(--spectrum-actionbar-margin-x)*2);opacity:1}:host([dir=ltr][variant=sticky]){left:0}:host([dir=ltr][variant=sticky]),:host([dir=rtl][variant=sticky]){right:0}:host([dir=rtl][variant=sticky]){left:0}:host([variant=sticky]){position:sticky}:host([flexible]) #popover{width:auto}:host([variant=fixed]){position:fixed}:host([dir=ltr]) #popover{padding-left:var(--spectrum-actionbar-padding-left)}:host([dir=rtl]) #popover{padding-right:var(--spectrum-actionbar-padding-left)}:host([dir=ltr]) #popover{padding-right:var(--spectrum-actionbar-padding-right)}:host([dir=rtl]) #popover{padding-left:var(--spectrum-actionbar-padding-right)}#popover{align-items:center;box-sizing:border-box;flex-direction:row;height:var(
|
|
18
8
|
--spectrum-actionbar-height,var(--spectrum-global-dimension-size-600)
|
|
19
9
|
);justify-content:space-between;margin:auto;max-width:var(
|
|
20
10
|
--spectrum-actionbar-max-width,var(--spectrum-global-dimension-static-size-3500)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["action-bar.css.ts"],
|
|
4
|
-
"sourcesContent": ["/*\nCopyright 2023 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*/\nimport { css } from '@spectrum-web-components/base';\nconst styles = css`\n:host{--spectrum-actionbar-height:var(
|
|
5
|
-
"mappings": "aAWA,OAAS,OAAAA,MAAW,gCACpB,MAAMC,EAASD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA
|
|
4
|
+
"sourcesContent": ["/*\nCopyright 2023 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*/\nimport { css } from '@spectrum-web-components/base';\nconst styles = css`\n:host{--spectrum-actionbar-height:var(--spectrum-global-dimension-size-600);--spectrum-actionbar-padding-left:var(\n--spectrum-global-dimension-size-200\n);--spectrum-actionbar-padding-right:calc(var(--spectrum-global-dimension-size-200)/2);--spectrum-actionbar-margin-x:var(--spectrum-global-dimension-size-200);--spectrum-actionbar-min-width:280px;--spectrum-actionbar-max-width:960px}:host{bottom:0;box-sizing:border-box;display:flex;height:0;justify-content:center;opacity:0;overflow:hidden;padding:0 var(--spectrum-actionbar-margin-x);pointer-events:none;transition:height var(--spectrum-global-animation-duration-100,.13s) ease-in-out,opacity var(--spectrum-global-animation-duration-100,.13s) ease-in-out;z-index:1}:host([open]){height:calc(var(\n--spectrum-actionbar-height,\nvar(--spectrum-global-dimension-size-600)\n) + var(--spectrum-actionbar-margin-x)*2);opacity:1}:host([dir=ltr][variant=sticky]){left:0}:host([dir=ltr][variant=sticky]),:host([dir=rtl][variant=sticky]){right:0}:host([dir=rtl][variant=sticky]){left:0}:host([variant=sticky]){position:sticky}:host([flexible]) #popover{width:auto}:host([variant=fixed]){position:fixed}:host([dir=ltr]) #popover{padding-left:var(--spectrum-actionbar-padding-left)}:host([dir=rtl]) #popover{padding-right:var(--spectrum-actionbar-padding-left)}:host([dir=ltr]) #popover{padding-right:var(--spectrum-actionbar-padding-right)}:host([dir=rtl]) #popover{padding-left:var(--spectrum-actionbar-padding-right)}#popover{align-items:center;box-sizing:border-box;flex-direction:row;height:var(\n--spectrum-actionbar-height,var(--spectrum-global-dimension-size-600)\n);justify-content:space-between;margin:auto;max-width:var(\n--spectrum-actionbar-max-width,var(--spectrum-global-dimension-static-size-3500)\n);min-width:var(\n--spectrum-actionbar-min-width,var(--spectrum-global-dimension-static-size-3500)\n);pointer-events:auto;position:relative;width:100%}\n`;\nexport default styles;"],
|
|
5
|
+
"mappings": "aAWA,OAAS,OAAAA,MAAW,gCACpB,MAAMC,EAASD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAcf,eAAeC",
|
|
6
6
|
"names": ["css", "styles"]
|
|
7
7
|
}
|
|
@@ -1,22 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
import { css } from "@spectrum-web-components/base";
|
|
3
3
|
const styles = css`
|
|
4
|
-
:host{--spectrum-actionbar-height:var(
|
|
5
|
-
--spectrum-global-dimension-size-600
|
|
6
|
-
);--spectrum-actionbar-padding-left:var(
|
|
4
|
+
:host{--spectrum-actionbar-height:var(--spectrum-global-dimension-size-600);--spectrum-actionbar-padding-left:var(
|
|
7
5
|
--spectrum-global-dimension-size-200
|
|
8
6
|
);--spectrum-actionbar-padding-right:calc(var(--spectrum-global-dimension-size-200)/2);--spectrum-actionbar-margin-x:var(--spectrum-global-dimension-size-200);--spectrum-actionbar-min-width:280px;--spectrum-actionbar-max-width:960px}:host{bottom:0;box-sizing:border-box;display:flex;height:0;justify-content:center;opacity:0;overflow:hidden;padding:0 var(--spectrum-actionbar-margin-x);pointer-events:none;transition:height var(--spectrum-global-animation-duration-100,.13s) ease-in-out,opacity var(--spectrum-global-animation-duration-100,.13s) ease-in-out;z-index:1}:host([open]){height:calc(var(
|
|
9
7
|
--spectrum-actionbar-height,
|
|
10
8
|
var(--spectrum-global-dimension-size-600)
|
|
11
|
-
) + var(--spectrum-actionbar-margin-x)*2);opacity:1}:host([dir=ltr][variant=sticky]){left:0}:host([dir=
|
|
12
|
-
--spectrum-actionbar-padding-left
|
|
13
|
-
)}:host([dir=rtl]) #popover{padding-right:var(
|
|
14
|
-
--spectrum-actionbar-padding-left
|
|
15
|
-
)}:host([dir=ltr]) #popover{padding-right:var(
|
|
16
|
-
--spectrum-actionbar-padding-right
|
|
17
|
-
)}:host([dir=rtl]) #popover{padding-left:var(
|
|
18
|
-
--spectrum-actionbar-padding-right
|
|
19
|
-
)}#popover{align-items:center;box-sizing:border-box;flex-direction:row;height:var(
|
|
9
|
+
) + var(--spectrum-actionbar-margin-x)*2);opacity:1}:host([dir=ltr][variant=sticky]){left:0}:host([dir=ltr][variant=sticky]),:host([dir=rtl][variant=sticky]){right:0}:host([dir=rtl][variant=sticky]){left:0}:host([variant=sticky]){position:sticky}:host([flexible]) #popover{width:auto}:host([variant=fixed]){position:fixed}:host([dir=ltr]) #popover{padding-left:var(--spectrum-actionbar-padding-left)}:host([dir=rtl]) #popover{padding-right:var(--spectrum-actionbar-padding-left)}:host([dir=ltr]) #popover{padding-right:var(--spectrum-actionbar-padding-right)}:host([dir=rtl]) #popover{padding-left:var(--spectrum-actionbar-padding-right)}#popover{align-items:center;box-sizing:border-box;flex-direction:row;height:var(
|
|
20
10
|
--spectrum-actionbar-height,var(--spectrum-global-dimension-size-600)
|
|
21
11
|
);justify-content:space-between;margin:auto;max-width:var(
|
|
22
12
|
--spectrum-actionbar-max-width,var(--spectrum-global-dimension-static-size-3500)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["spectrum-action-bar.css.ts"],
|
|
4
|
-
"sourcesContent": ["/*\nCopyright 2023 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*/\nimport { css } from '@spectrum-web-components/base';\nconst styles = css`\n:host{--spectrum-actionbar-height:var(
|
|
5
|
-
"mappings": ";AAWA,SAAS,WAAW;AACpB,MAAM,SAAS;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;
|
|
4
|
+
"sourcesContent": ["/*\nCopyright 2023 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*/\nimport { css } from '@spectrum-web-components/base';\nconst styles = css`\n:host{--spectrum-actionbar-height:var(--spectrum-global-dimension-size-600);--spectrum-actionbar-padding-left:var(\n--spectrum-global-dimension-size-200\n);--spectrum-actionbar-padding-right:calc(var(--spectrum-global-dimension-size-200)/2);--spectrum-actionbar-margin-x:var(--spectrum-global-dimension-size-200);--spectrum-actionbar-min-width:280px;--spectrum-actionbar-max-width:960px}:host{bottom:0;box-sizing:border-box;display:flex;height:0;justify-content:center;opacity:0;overflow:hidden;padding:0 var(--spectrum-actionbar-margin-x);pointer-events:none;transition:height var(--spectrum-global-animation-duration-100,.13s) ease-in-out,opacity var(--spectrum-global-animation-duration-100,.13s) ease-in-out;z-index:1}:host([open]){height:calc(var(\n--spectrum-actionbar-height,\nvar(--spectrum-global-dimension-size-600)\n) + var(--spectrum-actionbar-margin-x)*2);opacity:1}:host([dir=ltr][variant=sticky]){left:0}:host([dir=ltr][variant=sticky]),:host([dir=rtl][variant=sticky]){right:0}:host([dir=rtl][variant=sticky]){left:0}:host([variant=sticky]){position:sticky}:host([flexible]) #popover{width:auto}:host([variant=fixed]){position:fixed}:host([dir=ltr]) #popover{padding-left:var(--spectrum-actionbar-padding-left)}:host([dir=rtl]) #popover{padding-right:var(--spectrum-actionbar-padding-left)}:host([dir=ltr]) #popover{padding-right:var(--spectrum-actionbar-padding-right)}:host([dir=rtl]) #popover{padding-left:var(--spectrum-actionbar-padding-right)}#popover{align-items:center;box-sizing:border-box;flex-direction:row;height:var(\n--spectrum-actionbar-height,var(--spectrum-global-dimension-size-600)\n);justify-content:space-between;margin:auto;max-width:var(\n--spectrum-actionbar-max-width,var(--spectrum-global-dimension-static-size-3500)\n);min-width:var(\n--spectrum-actionbar-min-width,var(--spectrum-global-dimension-static-size-3500)\n);pointer-events:auto;position:relative;width:100%}\n`;\nexport default styles;"],
|
|
5
|
+
"mappings": ";AAWA,SAAS,WAAW;AACpB,MAAM,SAAS;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAcf,eAAe;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,20 +1,10 @@
|
|
|
1
1
|
"use strict";import{css as t}from"@spectrum-web-components/base";const i=t`
|
|
2
|
-
:host{--spectrum-actionbar-height:var(
|
|
3
|
-
--spectrum-global-dimension-size-600
|
|
4
|
-
);--spectrum-actionbar-padding-left:var(
|
|
2
|
+
:host{--spectrum-actionbar-height:var(--spectrum-global-dimension-size-600);--spectrum-actionbar-padding-left:var(
|
|
5
3
|
--spectrum-global-dimension-size-200
|
|
6
4
|
);--spectrum-actionbar-padding-right:calc(var(--spectrum-global-dimension-size-200)/2);--spectrum-actionbar-margin-x:var(--spectrum-global-dimension-size-200);--spectrum-actionbar-min-width:280px;--spectrum-actionbar-max-width:960px}:host{bottom:0;box-sizing:border-box;display:flex;height:0;justify-content:center;opacity:0;overflow:hidden;padding:0 var(--spectrum-actionbar-margin-x);pointer-events:none;transition:height var(--spectrum-global-animation-duration-100,.13s) ease-in-out,opacity var(--spectrum-global-animation-duration-100,.13s) ease-in-out;z-index:1}:host([open]){height:calc(var(
|
|
7
5
|
--spectrum-actionbar-height,
|
|
8
6
|
var(--spectrum-global-dimension-size-600)
|
|
9
|
-
) + var(--spectrum-actionbar-margin-x)*2);opacity:1}:host([dir=ltr][variant=sticky]){left:0}:host([dir=
|
|
10
|
-
--spectrum-actionbar-padding-left
|
|
11
|
-
)}:host([dir=rtl]) #popover{padding-right:var(
|
|
12
|
-
--spectrum-actionbar-padding-left
|
|
13
|
-
)}:host([dir=ltr]) #popover{padding-right:var(
|
|
14
|
-
--spectrum-actionbar-padding-right
|
|
15
|
-
)}:host([dir=rtl]) #popover{padding-left:var(
|
|
16
|
-
--spectrum-actionbar-padding-right
|
|
17
|
-
)}#popover{align-items:center;box-sizing:border-box;flex-direction:row;height:var(
|
|
7
|
+
) + var(--spectrum-actionbar-margin-x)*2);opacity:1}:host([dir=ltr][variant=sticky]){left:0}:host([dir=ltr][variant=sticky]),:host([dir=rtl][variant=sticky]){right:0}:host([dir=rtl][variant=sticky]){left:0}:host([variant=sticky]){position:sticky}:host([flexible]) #popover{width:auto}:host([variant=fixed]){position:fixed}:host([dir=ltr]) #popover{padding-left:var(--spectrum-actionbar-padding-left)}:host([dir=rtl]) #popover{padding-right:var(--spectrum-actionbar-padding-left)}:host([dir=ltr]) #popover{padding-right:var(--spectrum-actionbar-padding-right)}:host([dir=rtl]) #popover{padding-left:var(--spectrum-actionbar-padding-right)}#popover{align-items:center;box-sizing:border-box;flex-direction:row;height:var(
|
|
18
8
|
--spectrum-actionbar-height,var(--spectrum-global-dimension-size-600)
|
|
19
9
|
);justify-content:space-between;margin:auto;max-width:var(
|
|
20
10
|
--spectrum-actionbar-max-width,var(--spectrum-global-dimension-static-size-3500)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["spectrum-action-bar.css.ts"],
|
|
4
|
-
"sourcesContent": ["/*\nCopyright 2023 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*/\nimport { css } from '@spectrum-web-components/base';\nconst styles = css`\n:host{--spectrum-actionbar-height:var(
|
|
5
|
-
"mappings": "aAWA,OAAS,OAAAA,MAAW,gCACpB,MAAMC,EAASD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA
|
|
4
|
+
"sourcesContent": ["/*\nCopyright 2023 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*/\nimport { css } from '@spectrum-web-components/base';\nconst styles = css`\n:host{--spectrum-actionbar-height:var(--spectrum-global-dimension-size-600);--spectrum-actionbar-padding-left:var(\n--spectrum-global-dimension-size-200\n);--spectrum-actionbar-padding-right:calc(var(--spectrum-global-dimension-size-200)/2);--spectrum-actionbar-margin-x:var(--spectrum-global-dimension-size-200);--spectrum-actionbar-min-width:280px;--spectrum-actionbar-max-width:960px}:host{bottom:0;box-sizing:border-box;display:flex;height:0;justify-content:center;opacity:0;overflow:hidden;padding:0 var(--spectrum-actionbar-margin-x);pointer-events:none;transition:height var(--spectrum-global-animation-duration-100,.13s) ease-in-out,opacity var(--spectrum-global-animation-duration-100,.13s) ease-in-out;z-index:1}:host([open]){height:calc(var(\n--spectrum-actionbar-height,\nvar(--spectrum-global-dimension-size-600)\n) + var(--spectrum-actionbar-margin-x)*2);opacity:1}:host([dir=ltr][variant=sticky]){left:0}:host([dir=ltr][variant=sticky]),:host([dir=rtl][variant=sticky]){right:0}:host([dir=rtl][variant=sticky]){left:0}:host([variant=sticky]){position:sticky}:host([flexible]) #popover{width:auto}:host([variant=fixed]){position:fixed}:host([dir=ltr]) #popover{padding-left:var(--spectrum-actionbar-padding-left)}:host([dir=rtl]) #popover{padding-right:var(--spectrum-actionbar-padding-left)}:host([dir=ltr]) #popover{padding-right:var(--spectrum-actionbar-padding-right)}:host([dir=rtl]) #popover{padding-left:var(--spectrum-actionbar-padding-right)}#popover{align-items:center;box-sizing:border-box;flex-direction:row;height:var(\n--spectrum-actionbar-height,var(--spectrum-global-dimension-size-600)\n);justify-content:space-between;margin:auto;max-width:var(\n--spectrum-actionbar-max-width,var(--spectrum-global-dimension-static-size-3500)\n);min-width:var(\n--spectrum-actionbar-min-width,var(--spectrum-global-dimension-static-size-3500)\n);pointer-events:auto;position:relative;width:100%}\n`;\nexport default styles;"],
|
|
5
|
+
"mappings": "aAWA,OAAS,OAAAA,MAAW,gCACpB,MAAMC,EAASD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAcf,eAAeC",
|
|
6
6
|
"names": ["css", "styles"]
|
|
7
7
|
}
|
package/src/spectrum-config.js
CHANGED
|
@@ -1,48 +1,41 @@
|
|
|
1
|
+
// @ts-check
|
|
1
2
|
/*
|
|
2
|
-
Copyright
|
|
3
|
-
This file is licensed to you under the Apache License, Version 2.0 (the
|
|
3
|
+
Copyright 2023 Adobe. All rights reserved.
|
|
4
|
+
This file is licensed to you under the Apache License, Version 2.0 (the 'License');
|
|
4
5
|
you may not use this file except in compliance with the License. You may obtain a copy
|
|
5
6
|
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
6
7
|
|
|
7
8
|
Unless required by applicable law or agreed to in writing, software distributed under
|
|
8
|
-
the License is distributed on an
|
|
9
|
+
the License is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
9
10
|
OF ANY KIND, either express or implied. See the License for the specific language
|
|
10
11
|
governing permissions and limitations under the License.
|
|
11
12
|
*/
|
|
12
13
|
|
|
14
|
+
import { converterFor } from '../../../tasks/process-spectrum-utils.js';
|
|
15
|
+
|
|
16
|
+
const converter = converterFor('spectrum-ActionBar');
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* @type { import('../../../tasks/spectrum-css-converter').SpectrumCSSConverter }
|
|
20
|
+
*/
|
|
13
21
|
const config = {
|
|
14
|
-
|
|
15
|
-
components: [
|
|
22
|
+
conversions: [
|
|
16
23
|
{
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
type: 'boolean',
|
|
29
|
-
name: 'flexible',
|
|
30
|
-
selector: '.spectrum-ActionBar--flexible',
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
type: 'enum',
|
|
34
|
-
name: 'variant',
|
|
35
|
-
values: [
|
|
36
|
-
'.spectrum-ActionBar--sticky',
|
|
37
|
-
'.spectrum-ActionBar--fixed',
|
|
24
|
+
inPackage: '@spectrum-css/actionbar',
|
|
25
|
+
outPackage: 'action-bar',
|
|
26
|
+
fileName: 'action-bar',
|
|
27
|
+
components: [
|
|
28
|
+
converter.classToHost(),
|
|
29
|
+
converter.classToAttribute('is-open', 'open'),
|
|
30
|
+
converter.classToAttribute('spectrum-ActionBar--flexible'),
|
|
31
|
+
...converter.enumerateAttributes(
|
|
32
|
+
[
|
|
33
|
+
['spectrum-ActionBar--sticky'],
|
|
34
|
+
['spectrum-ActionBar--fixed'],
|
|
38
35
|
],
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
{
|
|
43
|
-
selector: '.spectrum-ActionBar-popover',
|
|
44
|
-
name: 'popover',
|
|
45
|
-
},
|
|
36
|
+
'variant'
|
|
37
|
+
),
|
|
38
|
+
converter.classToId('spectrum-ActionBar-popover'),
|
|
46
39
|
],
|
|
47
40
|
},
|
|
48
41
|
],
|