@descope/web-components-ui 1.0.288 → 1.0.289
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/cjs/index.cjs.js +5 -0
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.esm.js +5 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/button-selection-group-fields-descope-button-selection-group-item-index-js.js +1 -1
- package/package.json +1 -1
- package/src/components/button-selection-group-fields/descope-button-selection-group-item/ButtonSelectionGroupItemClass.js +4 -0
- package/src/index.d.ts +3 -0
- package/src/theme/components/buttonSelectionGroup/buttonSelectionGroupItem.js +1 -0
package/dist/index.d.ts
CHANGED
@@ -51,6 +51,8 @@ export type Theme = {
|
|
51
51
|
typography: Record<string, any>;
|
52
52
|
shadow: Record<string, string>;
|
53
53
|
spacing: Record<string, string>;
|
54
|
+
radius: Record<string, string>;
|
55
|
+
border: Record<string, string>;
|
54
56
|
};
|
55
57
|
components: {
|
56
58
|
button: Record<string, any>;
|
@@ -60,5 +62,6 @@ export type Theme = {
|
|
60
62
|
link: Record<string, any>;
|
61
63
|
text: Record<string, any>;
|
62
64
|
inputWrapper: Record<string, any>;
|
65
|
+
buttonSelectionGroupItem: Record<string, any>;
|
63
66
|
};
|
64
67
|
};
|
package/dist/index.esm.js
CHANGED
@@ -7015,6 +7015,10 @@ const ButtonSelectionGroupItemClass = compose(
|
|
7015
7015
|
selector: () => ButtonClass.componentName,
|
7016
7016
|
property: ButtonClass.cssVarList.borderColor,
|
7017
7017
|
},
|
7018
|
+
borderWidth: {
|
7019
|
+
selector: () => ButtonClass.componentName,
|
7020
|
+
property: ButtonClass.cssVarList.borderWidth,
|
7021
|
+
},
|
7018
7022
|
borderStyle: {
|
7019
7023
|
selector: () => ButtonClass.componentName,
|
7020
7024
|
property: ButtonClass.cssVarList.borderStyle,
|
@@ -10865,6 +10869,7 @@ const buttonSelectionGroupItem = {
|
|
10865
10869
|
[vars$a.borderStyle]: 'solid',
|
10866
10870
|
[vars$a.borderRadius]: globalRefs$8.radius.sm,
|
10867
10871
|
[vars$a.outlineColor]: 'transparent',
|
10872
|
+
[vars$a.borderWidth]: globalRefs$8.border.xs,
|
10868
10873
|
|
10869
10874
|
_hover: {
|
10870
10875
|
[vars$a.backgroundColor]: globalRefs$8.colors.surface.highlight,
|