@uipath/apollo-react 6.39.0 → 6.40.0
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/canvas/components/BaseNode/BaseNode.cjs +3 -1
- package/dist/canvas/components/BaseNode/BaseNode.d.ts.map +1 -1
- package/dist/canvas/components/BaseNode/BaseNode.js +3 -1
- package/dist/canvas/components/BaseNode/BaseNodeConfigContext.d.ts +2 -0
- package/dist/canvas/components/BaseNode/BaseNodeConfigContext.d.ts.map +1 -1
- package/dist/canvas/components/BaseNode/NodeLabel.cjs +10 -6
- package/dist/canvas/components/BaseNode/NodeLabel.d.ts +3 -1
- package/dist/canvas/components/BaseNode/NodeLabel.d.ts.map +1 -1
- package/dist/canvas/components/BaseNode/NodeLabel.js +10 -6
- package/dist/canvas/components/NodePropertyPanel/EditableText.cjs +189 -0
- package/dist/canvas/components/NodePropertyPanel/EditableText.d.ts +15 -0
- package/dist/canvas/components/NodePropertyPanel/EditableText.d.ts.map +1 -0
- package/dist/canvas/components/NodePropertyPanel/EditableText.js +155 -0
- package/dist/canvas/components/NodePropertyPanel/NodePropertyPanel.cjs +51 -10
- package/dist/canvas/components/NodePropertyPanel/NodePropertyPanel.d.ts +1 -1
- package/dist/canvas/components/NodePropertyPanel/NodePropertyPanel.d.ts.map +1 -1
- package/dist/canvas/components/NodePropertyPanel/NodePropertyPanel.js +51 -10
- package/dist/canvas/components/NodePropertyPanel/NodePropertyPanel.types.d.ts +7 -0
- package/dist/canvas/components/NodePropertyPanel/NodePropertyPanel.types.d.ts.map +1 -1
- package/dist/canvas/components/NodePropertyPanel/index.cjs +4 -0
- package/dist/canvas/components/NodePropertyPanel/index.d.ts +3 -1
- package/dist/canvas/components/NodePropertyPanel/index.d.ts.map +1 -1
- package/dist/canvas/components/NodePropertyPanel/index.js +2 -1
- package/dist/canvas/locales/en.cjs +1 -1
- package/dist/canvas/locales/en.d.ts.map +1 -1
- package/dist/canvas/locales/en.js +1 -1
- package/dist/canvas/styles/tailwind.canvas.css +1 -1
- package/dist/material/theme/overrides/MuiChip.cjs +22 -4
- package/dist/material/theme/overrides/MuiChip.d.ts.map +1 -1
- package/dist/material/theme/overrides/MuiChip.js +22 -4
- package/package.json +3 -3
|
@@ -134,7 +134,25 @@ const MuiChip = (palette)=>({
|
|
|
134
134
|
'& .MuiChip-deleteIcon:hover': {
|
|
135
135
|
color: palette.semantic.colorForeground
|
|
136
136
|
},
|
|
137
|
-
'&.
|
|
137
|
+
'&.MuiChip-filled.MuiChip-colorPrimary': {
|
|
138
|
+
color: palette.semantic.colorForegroundOnAccent,
|
|
139
|
+
background: palette.semantic.colorPrimary,
|
|
140
|
+
fontWeight: apollo_core_default().FontFamily.FontWeightSemibold,
|
|
141
|
+
'&:hover': {
|
|
142
|
+
color: palette.semantic.colorForegroundOnAccent,
|
|
143
|
+
background: palette.semantic.colorPrimaryHover
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
'&.MuiChip-filled.MuiChip-colorSecondary': {
|
|
147
|
+
color: palette.secondary.contrastText,
|
|
148
|
+
background: palette.secondary.main,
|
|
149
|
+
fontWeight: apollo_core_default().FontFamily.FontWeightSemibold,
|
|
150
|
+
'&:hover': {
|
|
151
|
+
color: palette.secondary.contrastText,
|
|
152
|
+
background: palette.secondary.dark
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
'&.MuiChip-filled.MuiChip-colorWarning': {
|
|
138
156
|
color: palette.semantic.colorWarningText,
|
|
139
157
|
background: palette.semantic.colorWarningBackground,
|
|
140
158
|
fontWeight: apollo_core_default().FontFamily.FontWeightSemibold,
|
|
@@ -143,7 +161,7 @@ const MuiChip = (palette)=>({
|
|
|
143
161
|
background: palette.semantic.colorWarningBackground
|
|
144
162
|
}
|
|
145
163
|
},
|
|
146
|
-
'&.
|
|
164
|
+
'&.MuiChip-filled.MuiChip-colorSuccess': {
|
|
147
165
|
color: palette.semantic.colorSuccessText,
|
|
148
166
|
background: palette.semantic.colorSuccessBackground,
|
|
149
167
|
fontWeight: apollo_core_default().FontFamily.FontWeightSemibold,
|
|
@@ -152,7 +170,7 @@ const MuiChip = (palette)=>({
|
|
|
152
170
|
background: palette.semantic.colorSuccessBackground
|
|
153
171
|
}
|
|
154
172
|
},
|
|
155
|
-
'&.
|
|
173
|
+
'&.MuiChip-filled.MuiChip-colorInfo': {
|
|
156
174
|
color: palette.semantic.colorInfoForeground,
|
|
157
175
|
background: palette.semantic.colorInfoBackground,
|
|
158
176
|
fontWeight: apollo_core_default().FontFamily.FontWeightSemibold,
|
|
@@ -161,7 +179,7 @@ const MuiChip = (palette)=>({
|
|
|
161
179
|
background: palette.semantic.colorInfoBackground
|
|
162
180
|
}
|
|
163
181
|
},
|
|
164
|
-
'&.
|
|
182
|
+
'&.MuiChip-filled.MuiChip-colorError': {
|
|
165
183
|
color: palette.semantic.colorErrorText,
|
|
166
184
|
background: palette.semantic.colorErrorBackground,
|
|
167
185
|
fontWeight: apollo_core_default().FontFamily.FontWeightSemibold,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MuiChip.d.ts","sourceRoot":"","sources":["../../../../src/material/theme/overrides/MuiChip.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AAEhE,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,wCAAwC,CAAC;AAEtE,eAAO,MAAM,OAAO,GAAI,SAAS,OAAO,KAAG,mBAAmB,CAAC,SAAS,
|
|
1
|
+
{"version":3,"file":"MuiChip.d.ts","sourceRoot":"","sources":["../../../../src/material/theme/overrides/MuiChip.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AAEhE,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,wCAAwC,CAAC;AAEtE,eAAO,MAAM,OAAO,GAAI,SAAS,OAAO,KAAG,mBAAmB,CAAC,SAAS,CAuJtE,CAAC"}
|
|
@@ -96,7 +96,25 @@ const MuiChip = (palette)=>({
|
|
|
96
96
|
'& .MuiChip-deleteIcon:hover': {
|
|
97
97
|
color: palette.semantic.colorForeground
|
|
98
98
|
},
|
|
99
|
-
'&.
|
|
99
|
+
'&.MuiChip-filled.MuiChip-colorPrimary': {
|
|
100
|
+
color: palette.semantic.colorForegroundOnAccent,
|
|
101
|
+
background: palette.semantic.colorPrimary,
|
|
102
|
+
fontWeight: apollo_core.FontFamily.FontWeightSemibold,
|
|
103
|
+
'&:hover': {
|
|
104
|
+
color: palette.semantic.colorForegroundOnAccent,
|
|
105
|
+
background: palette.semantic.colorPrimaryHover
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
'&.MuiChip-filled.MuiChip-colorSecondary': {
|
|
109
|
+
color: palette.secondary.contrastText,
|
|
110
|
+
background: palette.secondary.main,
|
|
111
|
+
fontWeight: apollo_core.FontFamily.FontWeightSemibold,
|
|
112
|
+
'&:hover': {
|
|
113
|
+
color: palette.secondary.contrastText,
|
|
114
|
+
background: palette.secondary.dark
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
'&.MuiChip-filled.MuiChip-colorWarning': {
|
|
100
118
|
color: palette.semantic.colorWarningText,
|
|
101
119
|
background: palette.semantic.colorWarningBackground,
|
|
102
120
|
fontWeight: apollo_core.FontFamily.FontWeightSemibold,
|
|
@@ -105,7 +123,7 @@ const MuiChip = (palette)=>({
|
|
|
105
123
|
background: palette.semantic.colorWarningBackground
|
|
106
124
|
}
|
|
107
125
|
},
|
|
108
|
-
'&.
|
|
126
|
+
'&.MuiChip-filled.MuiChip-colorSuccess': {
|
|
109
127
|
color: palette.semantic.colorSuccessText,
|
|
110
128
|
background: palette.semantic.colorSuccessBackground,
|
|
111
129
|
fontWeight: apollo_core.FontFamily.FontWeightSemibold,
|
|
@@ -114,7 +132,7 @@ const MuiChip = (palette)=>({
|
|
|
114
132
|
background: palette.semantic.colorSuccessBackground
|
|
115
133
|
}
|
|
116
134
|
},
|
|
117
|
-
'&.
|
|
135
|
+
'&.MuiChip-filled.MuiChip-colorInfo': {
|
|
118
136
|
color: palette.semantic.colorInfoForeground,
|
|
119
137
|
background: palette.semantic.colorInfoBackground,
|
|
120
138
|
fontWeight: apollo_core.FontFamily.FontWeightSemibold,
|
|
@@ -123,7 +141,7 @@ const MuiChip = (palette)=>({
|
|
|
123
141
|
background: palette.semantic.colorInfoBackground
|
|
124
142
|
}
|
|
125
143
|
},
|
|
126
|
-
'&.
|
|
144
|
+
'&.MuiChip-filled.MuiChip-colorError': {
|
|
127
145
|
color: palette.semantic.colorErrorText,
|
|
128
146
|
background: palette.semantic.colorErrorBackground,
|
|
129
147
|
fontWeight: apollo_core.FontFamily.FontWeightSemibold,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/apollo-react",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.40.0",
|
|
4
4
|
"description": "Apollo Design System - React component library with Material UI theming",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -220,9 +220,9 @@
|
|
|
220
220
|
"use-sync-external-store": "^1.2.0",
|
|
221
221
|
"zod": "^4.3.5",
|
|
222
222
|
"zustand": "^5.0.9",
|
|
223
|
-
"@uipath/apollo-core": "5.
|
|
223
|
+
"@uipath/apollo-core": "5.14.0",
|
|
224
224
|
"@uipath/apollo-ui-icons": "1.0.0",
|
|
225
|
-
"@uipath/apollo-wind": "2.
|
|
225
|
+
"@uipath/apollo-wind": "2.45.1"
|
|
226
226
|
},
|
|
227
227
|
"devDependencies": {
|
|
228
228
|
"@lingui/cli": "^5.6.1",
|