@descope/flow-components 3.3.3 → 3.3.4
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/fm/222.js +1 -1
- package/dist/fm/222.js.map +1 -1
- package/dist/fm/467.js +1 -1
- package/dist/fm/467.js.map +1 -1
- package/dist/fm/477.js +1 -1
- package/dist/fm/477.js.map +1 -1
- package/dist/fm/985.js +1 -1
- package/dist/fm/985.js.map +1 -1
- package/dist/fm/__federation_expose_componentClasses.js +1 -1
- package/dist/fm/__federation_expose_componentClasses.js.map +1 -1
- package/dist/fm/__federation_expose_components.js +1 -1
- package/dist/fm/__federation_expose_theme.js +1 -1
- package/dist/fm/__federation_expose_theme.js.map +1 -1
- package/dist/fm/flowComponents.js +1 -1
- package/dist/fm/flowComponents.js.map +1 -1
- package/dist/fm/main.js +1 -1
- package/dist/fm/main.js.map +1 -1
- package/dist/fm/mf-manifest.json +1 -1
- package/dist/fm/mf-stats.json +1 -1
- package/dist/index.cjs.js +15 -7
- package/package.json +2 -2
package/dist/fm/mf-manifest.json
CHANGED
package/dist/fm/mf-stats.json
CHANGED
package/dist/index.cjs.js
CHANGED
|
@@ -82883,6 +82883,7 @@ function requireIndex_cjs () {
|
|
|
82883
82883
|
hostDirection: { ...host$x, property: 'direction' },
|
|
82884
82884
|
fontSize: {},
|
|
82885
82885
|
fontFamily: {},
|
|
82886
|
+
fontWeight: {},
|
|
82886
82887
|
|
|
82887
82888
|
cursor: {},
|
|
82888
82889
|
backgroundColor: {},
|
|
@@ -82897,7 +82898,10 @@ function requireIndex_cjs () {
|
|
|
82897
82898
|
borderStyle: {},
|
|
82898
82899
|
borderWidth: {},
|
|
82899
82900
|
|
|
82900
|
-
verticalPadding: [
|
|
82901
|
+
verticalPadding: [
|
|
82902
|
+
{ property: 'padding-top' },
|
|
82903
|
+
{ property: 'padding-bottom' },
|
|
82904
|
+
],
|
|
82901
82905
|
horizontalPadding: [
|
|
82902
82906
|
{ property: 'padding-right', fallback: '0.875em' },
|
|
82903
82907
|
{ property: 'padding-left', fallback: '0.875em' },
|
|
@@ -82905,9 +82909,9 @@ function requireIndex_cjs () {
|
|
|
82905
82909
|
|
|
82906
82910
|
labelTextColor: { property: 'color' },
|
|
82907
82911
|
iconColor: {
|
|
82908
|
-
|
|
82909
|
-
|
|
82910
|
-
|
|
82912
|
+
selector: () => `::slotted(*)`,
|
|
82913
|
+
property: IconClass.cssVarList.fill,
|
|
82914
|
+
},
|
|
82911
82915
|
labelTextDecoration: { ...label$a, property: 'text-decoration' },
|
|
82912
82916
|
labelSpacing: { ...label$a, property: 'gap' },
|
|
82913
82917
|
textAlign: { ...label$a, property: 'justify-content', fallback: 'center' },
|
|
@@ -82920,7 +82924,7 @@ function requireIndex_cjs () {
|
|
|
82920
82924
|
}),
|
|
82921
82925
|
clickableMixin,
|
|
82922
82926
|
draggableMixin$1,
|
|
82923
|
-
componentNameValidationMixin$1
|
|
82927
|
+
componentNameValidationMixin$1,
|
|
82924
82928
|
)(
|
|
82925
82929
|
createProxy$1({
|
|
82926
82930
|
slots: ['', 'prefix', 'label', 'suffix'],
|
|
@@ -82946,7 +82950,7 @@ function requireIndex_cjs () {
|
|
|
82946
82950
|
`,
|
|
82947
82951
|
excludeAttrsSync: ['tabindex', 'class', 'style'],
|
|
82948
82952
|
componentName: componentName$1i,
|
|
82949
|
-
})
|
|
82953
|
+
}),
|
|
82950
82954
|
);
|
|
82951
82955
|
|
|
82952
82956
|
const { color, fontSize } = ButtonClass.cssVarList;
|
|
@@ -82993,12 +82997,16 @@ function requireIndex_cjs () {
|
|
|
82993
82997
|
surface: globalRefs$H.colors.surface,
|
|
82994
82998
|
};
|
|
82995
82999
|
|
|
82996
|
-
const [helperTheme$7, helperRefs$7, helperVars$6] = createHelperVars$1(
|
|
83000
|
+
const [helperTheme$7, helperRefs$7, helperVars$6] = createHelperVars$1(
|
|
83001
|
+
{ mode },
|
|
83002
|
+
componentName$1i,
|
|
83003
|
+
);
|
|
82997
83004
|
|
|
82998
83005
|
const button = {
|
|
82999
83006
|
...helperTheme$7,
|
|
83000
83007
|
|
|
83001
83008
|
[compVars$9.fontFamily]: globalRefs$H.fonts.font1.family,
|
|
83009
|
+
[compVars$9.fontWeight]: '400',
|
|
83002
83010
|
|
|
83003
83011
|
[compVars$9.cursor]: 'pointer',
|
|
83004
83012
|
[compVars$9.hostHeight]: '3em',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@descope/flow-components",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"webpack-subresource-integrity": "5.2.0-rc.1"
|
|
98
98
|
},
|
|
99
99
|
"dependencies": {
|
|
100
|
-
"@descope/web-components-ui": "3.3.
|
|
100
|
+
"@descope/web-components-ui": "3.3.4"
|
|
101
101
|
},
|
|
102
102
|
"peerDependencies": {
|
|
103
103
|
"react": ">= 18"
|