@uipath/apollo-react 5.1.0 → 5.1.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/dist/canvas/components/StageNode/TaskContent.cjs +2 -2
- package/dist/canvas/components/StageNode/TaskContent.js +2 -2
- package/dist/canvas/styles/tailwind.canvas.css +1 -1
- package/dist/core/tokens/css/theme-variables.css +12 -0
- package/dist/core/tokens/css/variables.css +13 -1
- package/dist/core/tokens/jss/palette.cjs +36 -0
- package/dist/core/tokens/jss/palette.d.ts +2 -0
- package/dist/core/tokens/less/_variables.less +12 -0
- package/dist/core/tokens/scss/_css-variables.scss +1355 -0
- package/dist/core/tokens/scss/_scoped-theme-variables.scss +823 -0
- package/dist/core/tokens/scss/_variables.scss +28 -0
- package/dist/core/tokens/scss/base-host.scss +12 -0
- package/dist/core/tokens/scss/helpers.scss +26 -0
- package/dist/core/tokens/scss/mixins.scss +5 -0
- package/dist/core/tokens/scss/theme-variables.scss +12 -0
- package/dist/core/tokens/scss/theme.scss +12 -0
- package/package.json +2 -2
|
@@ -123,7 +123,7 @@ const TaskPlayButton = /*#__PURE__*/ (0, external_react_namespaceObject.memo)(({
|
|
|
123
123
|
onMouseDown: (e)=>e.stopPropagation(),
|
|
124
124
|
onKeyDown: (e)=>e.stopPropagation(),
|
|
125
125
|
"aria-label": triggerTaskLabel,
|
|
126
|
-
className: small ? 'task-menu-icon-button h-4 w-4 [&_svg]:size-3.5' : 'task-menu-icon-button h-4 w-4',
|
|
126
|
+
className: small ? 'task-menu-icon-button h-4 w-4 [&_svg]:size-3.5 rounded-sm' : 'task-menu-icon-button h-4 w-4 rounded-sm',
|
|
127
127
|
style: {
|
|
128
128
|
color: 'var(--canvas-icon-default)',
|
|
129
129
|
minWidth: 'unset',
|
|
@@ -245,7 +245,7 @@ const TaskContent = /*#__PURE__*/ (0, external_react_namespaceObject.memo)(({ ta
|
|
|
245
245
|
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(apollo_wind_namespaceObject.Button, {
|
|
246
246
|
variant: "ghost",
|
|
247
247
|
size: "icon",
|
|
248
|
-
className: "h-4 w-4",
|
|
248
|
+
className: "h-4 w-4 rounded-sm",
|
|
249
249
|
"aria-label": taskStatusTooltip,
|
|
250
250
|
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_ExecutionStatusIcon_index_cjs_namespaceObject.ExecutionStatusIcon, {
|
|
251
251
|
status: taskExecution.status
|
|
@@ -85,7 +85,7 @@ const TaskPlayButton = /*#__PURE__*/ memo(({ taskId, onTaskPlay, small })=>{
|
|
|
85
85
|
onMouseDown: (e)=>e.stopPropagation(),
|
|
86
86
|
onKeyDown: (e)=>e.stopPropagation(),
|
|
87
87
|
"aria-label": triggerTaskLabel,
|
|
88
|
-
className: small ? 'task-menu-icon-button h-4 w-4 [&_svg]:size-3.5' : 'task-menu-icon-button h-4 w-4',
|
|
88
|
+
className: small ? 'task-menu-icon-button h-4 w-4 [&_svg]:size-3.5 rounded-sm' : 'task-menu-icon-button h-4 w-4 rounded-sm',
|
|
89
89
|
style: {
|
|
90
90
|
color: 'var(--canvas-icon-default)',
|
|
91
91
|
minWidth: 'unset',
|
|
@@ -207,7 +207,7 @@ const TaskContent = /*#__PURE__*/ memo(({ task, taskExecution, isDragging, onTas
|
|
|
207
207
|
children: /*#__PURE__*/ jsx(Button, {
|
|
208
208
|
variant: "ghost",
|
|
209
209
|
size: "icon",
|
|
210
|
-
className: "h-4 w-4",
|
|
210
|
+
className: "h-4 w-4 rounded-sm",
|
|
211
211
|
"aria-label": taskStatusTooltip,
|
|
212
212
|
children: /*#__PURE__*/ jsx(ExecutionStatusIcon, {
|
|
213
213
|
status: taskExecution.status
|