@spectrum-web-components/button-group 0.8.7 → 0.8.8
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 +0 -57
- package/package.json +3 -3
package/custom-elements.json
CHANGED
|
@@ -72,63 +72,6 @@
|
|
|
72
72
|
}
|
|
73
73
|
}
|
|
74
74
|
]
|
|
75
|
-
},
|
|
76
|
-
{
|
|
77
|
-
"kind": "javascript-module",
|
|
78
|
-
"path": "src/button-group.css.ts",
|
|
79
|
-
"declarations": [
|
|
80
|
-
{
|
|
81
|
-
"kind": "variable",
|
|
82
|
-
"name": "styles",
|
|
83
|
-
"default": "css`\n:host{--spectrum-buttongroup-button-gap-reset:0}:host{display:flex}::slotted(*){flex-shrink:0}:host([dir=ltr]) ::slotted(:not(:first-of-type)){margin-left:var(\n--spectrum-buttongroup-button-gap-x,var(--spectrum-global-dimension-static-size-200)\n)}:host([dir=rtl]) ::slotted(:not(:first-of-type)){margin-right:var(\n--spectrum-buttongroup-button-gap-x,var(--spectrum-global-dimension-static-size-200)\n)}:host([vertical]){display:inline-flex;flex-direction:column}:host([dir=ltr][vertical]) ::slotted(:not(:first-of-type)){margin-left:var(\n--spectrum-buttongroup-button-gap-reset\n)}:host([dir=rtl][vertical]) ::slotted(:not(:first-of-type)){margin-right:var(\n--spectrum-buttongroup-button-gap-reset\n)}:host([vertical]) ::slotted(:not(:first-of-type)){margin-top:var(\n--spectrum-buttongroup-button-gap-y,var(--spectrum-global-dimension-static-size-200)\n)}:host([vertical]) ::slotted(sp-action-button){--spectrum-actionbutton-label-flex-grow:1}:host([dir=ltr][vertical]) ::slotted(sp-action-button){--spectrum-actionbutton-label-text-align:left}:host([dir=rtl][vertical]) ::slotted(sp-action-button){--spectrum-actionbutton-label-text-align:right}\n`"
|
|
84
|
-
}
|
|
85
|
-
],
|
|
86
|
-
"exports": [
|
|
87
|
-
{
|
|
88
|
-
"kind": "js",
|
|
89
|
-
"name": "default",
|
|
90
|
-
"declaration": {
|
|
91
|
-
"name": "styles",
|
|
92
|
-
"module": "src/button-group.css.ts"
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
]
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
"kind": "javascript-module",
|
|
99
|
-
"path": "src/index.ts",
|
|
100
|
-
"declarations": [],
|
|
101
|
-
"exports": [
|
|
102
|
-
{
|
|
103
|
-
"kind": "js",
|
|
104
|
-
"name": "*",
|
|
105
|
-
"declaration": {
|
|
106
|
-
"name": "*",
|
|
107
|
-
"package": "./ButtonGroup.js"
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
]
|
|
111
|
-
},
|
|
112
|
-
{
|
|
113
|
-
"kind": "javascript-module",
|
|
114
|
-
"path": "src/spectrum-button-group.css.ts",
|
|
115
|
-
"declarations": [
|
|
116
|
-
{
|
|
117
|
-
"kind": "variable",
|
|
118
|
-
"name": "styles",
|
|
119
|
-
"default": "css`\n:host{--spectrum-buttongroup-button-gap-reset:0}:host{display:flex}::slotted(*){flex-shrink:0}:host([dir=ltr]) ::slotted(:not(:first-of-type)){margin-left:var(\n--spectrum-buttongroup-button-gap-x,var(--spectrum-global-dimension-static-size-200)\n)}:host([dir=rtl]) ::slotted(:not(:first-of-type)){margin-right:var(\n--spectrum-buttongroup-button-gap-x,var(--spectrum-global-dimension-static-size-200)\n)}:host([vertical]){display:inline-flex;flex-direction:column}:host([dir=ltr][vertical]) ::slotted(:not(:first-of-type)){margin-left:var(\n--spectrum-buttongroup-button-gap-reset\n)}:host([dir=rtl][vertical]) ::slotted(:not(:first-of-type)){margin-right:var(\n--spectrum-buttongroup-button-gap-reset\n)}:host([vertical]) ::slotted(:not(:first-of-type)){margin-top:var(\n--spectrum-buttongroup-button-gap-y,var(--spectrum-global-dimension-static-size-200)\n)}\n`"
|
|
120
|
-
}
|
|
121
|
-
],
|
|
122
|
-
"exports": [
|
|
123
|
-
{
|
|
124
|
-
"kind": "js",
|
|
125
|
-
"name": "default",
|
|
126
|
-
"declaration": {
|
|
127
|
-
"name": "styles",
|
|
128
|
-
"module": "src/spectrum-button-group.css.ts"
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
]
|
|
132
75
|
}
|
|
133
76
|
]
|
|
134
77
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spectrum-web-components/button-group",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.8",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -48,12 +48,12 @@
|
|
|
48
48
|
"tslib": "^2.0.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@spectrum-css/buttongroup": "^5.0.
|
|
51
|
+
"@spectrum-css/buttongroup": "^5.0.11"
|
|
52
52
|
},
|
|
53
53
|
"types": "./src/index.d.ts",
|
|
54
54
|
"customElements": "custom-elements.json",
|
|
55
55
|
"sideEffects": [
|
|
56
56
|
"./sp-*.js"
|
|
57
57
|
],
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "8f5ea3556e160b6e30815edb2414dc5a5999a925"
|
|
59
59
|
}
|