@symbo.ls/uikit 2.11.229 → 2.11.230
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/dist/index.cjs.js +11 -12
- package/dist/index.cjs.js.map +2 -2
- package/package.json +2 -2
package/dist/index.cjs.js
CHANGED
|
@@ -9837,7 +9837,7 @@ var Label = {
|
|
|
9837
9837
|
text: "-2.902x",
|
|
9838
9838
|
fontSize: "Y",
|
|
9839
9839
|
boxSize: "fit-content fit-content",
|
|
9840
|
-
|
|
9840
|
+
theme: "secondary",
|
|
9841
9841
|
padding: "W Y",
|
|
9842
9842
|
round: "Y"
|
|
9843
9843
|
}
|
|
@@ -10142,19 +10142,18 @@ var TooltipParent = {
|
|
|
10142
10142
|
var Pills = {
|
|
10143
10143
|
extend: Flex,
|
|
10144
10144
|
props: {
|
|
10145
|
-
gap: "Y2"
|
|
10145
|
+
gap: "Y2",
|
|
10146
|
+
childProps: {
|
|
10147
|
+
boxSize: "Y2",
|
|
10148
|
+
round: "A",
|
|
10149
|
+
theme: "tertiary",
|
|
10150
|
+
"!active": { theme: "tertiary" },
|
|
10151
|
+
".active": { theme: "primary" }
|
|
10152
|
+
}
|
|
10146
10153
|
},
|
|
10147
10154
|
childExtend: {
|
|
10148
10155
|
props: ({ key, state, parent }) => ({
|
|
10149
|
-
active: parseInt(key) === parseInt(state.active || parent.props.active)
|
|
10150
|
-
boxSize: "Y2",
|
|
10151
|
-
round: "A",
|
|
10152
|
-
"!active": {
|
|
10153
|
-
theme: "tertiary"
|
|
10154
|
-
},
|
|
10155
|
-
".active": {
|
|
10156
|
-
theme: "primary"
|
|
10157
|
-
}
|
|
10156
|
+
active: parseInt(key) === parseInt(state.active || parent.props.active)
|
|
10158
10157
|
}),
|
|
10159
10158
|
on: {
|
|
10160
10159
|
click: (e, el) => {
|
|
@@ -10162,7 +10161,7 @@ var Pills = {
|
|
|
10162
10161
|
}
|
|
10163
10162
|
}
|
|
10164
10163
|
},
|
|
10165
|
-
$
|
|
10164
|
+
$setPropsCollection: ({ props: props4, state }) => new Array(props4.qty).fill({})
|
|
10166
10165
|
};
|
|
10167
10166
|
|
|
10168
10167
|
// Tab/index.js
|