@umbraco-ui/uui 1.16.0 → 1.17.0-rc.1
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 +44 -1
- package/dist/uui.min.js +7401 -679
- package/dist/uui.min.js.map +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/package.json +85 -85
- package/vscode-html-custom-data.json +25 -7
package/custom-elements.json
CHANGED
|
@@ -3728,7 +3728,11 @@
|
|
|
3728
3728
|
"cssProperties": [
|
|
3729
3729
|
{
|
|
3730
3730
|
"name": "--uui-icon-color",
|
|
3731
|
-
"description": "
|
|
3731
|
+
"description": "sets the color for the icon, if not set it will use the text color."
|
|
3732
|
+
},
|
|
3733
|
+
{
|
|
3734
|
+
"name": "--uui-icon-color-overwrite",
|
|
3735
|
+
"description": "overwrite the icon color, once this is set the --uui-icon-color will be ignored."
|
|
3732
3736
|
}
|
|
3733
3737
|
]
|
|
3734
3738
|
},
|
|
@@ -8144,6 +8148,45 @@
|
|
|
8144
8148
|
}
|
|
8145
8149
|
]
|
|
8146
8150
|
},
|
|
8151
|
+
{
|
|
8152
|
+
"name": "uui-responsive-container",
|
|
8153
|
+
"path": "./../uui-responsive-container/lib/uui-responsive-container.element.ts",
|
|
8154
|
+
"description": "A responsive container that collapses overflowing children into a dropdown.",
|
|
8155
|
+
"attributes": [
|
|
8156
|
+
{
|
|
8157
|
+
"name": "collapse",
|
|
8158
|
+
"description": "Controls which side items collapse from.\n- \"end\": Items collapse from the right, more button appears on right (default)\n- \"start\": Items collapse from the left, more button appears on left",
|
|
8159
|
+
"type": "\"start\" | \"end\"",
|
|
8160
|
+
"default": "\"\\\"end\\\"\""
|
|
8161
|
+
}
|
|
8162
|
+
],
|
|
8163
|
+
"properties": [
|
|
8164
|
+
{
|
|
8165
|
+
"name": "collapse",
|
|
8166
|
+
"attribute": "collapse",
|
|
8167
|
+
"description": "Controls which side items collapse from.\n- \"end\": Items collapse from the right, more button appears on right (default)\n- \"start\": Items collapse from the left, more button appears on left",
|
|
8168
|
+
"type": "\"start\" | \"end\"",
|
|
8169
|
+
"default": "\"\\\"end\\\"\""
|
|
8170
|
+
},
|
|
8171
|
+
{
|
|
8172
|
+
"name": "styles",
|
|
8173
|
+
"type": "CSSResult[]",
|
|
8174
|
+
"default": "[null]"
|
|
8175
|
+
}
|
|
8176
|
+
],
|
|
8177
|
+
"slots": [
|
|
8178
|
+
{
|
|
8179
|
+
"name": "",
|
|
8180
|
+
"description": "Default slot for child elements (buttons, etc.)"
|
|
8181
|
+
}
|
|
8182
|
+
],
|
|
8183
|
+
"cssProperties": [
|
|
8184
|
+
{
|
|
8185
|
+
"name": "--uui-responsive-container-gap",
|
|
8186
|
+
"description": "Gap between items (default: 8px)"
|
|
8187
|
+
}
|
|
8188
|
+
]
|
|
8189
|
+
},
|
|
8147
8190
|
{
|
|
8148
8191
|
"name": "uui-scroll-container",
|
|
8149
8192
|
"path": "./../uui-scroll-container/lib/uui-scroll-container.element.ts",
|