Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsMeBrianD committed Feb 12, 2025
1 parent 626bb9e commit 9d01bc8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 34 deletions.
24 changes: 0 additions & 24 deletions packages/lib/sdk/src/build-dev/vite/virtuals/initUsql.js

This file was deleted.

8 changes: 4 additions & 4 deletions packages/ui/core-components/src/lib/atoms/alert/Alert.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
};
const classMap = {
info: 'border-info/50 bg-info/10',
negative: 'border-negative/50 bg-negative/10',
positive: 'border-positive/50 bg-positive/10',
warning: 'border-warning/50 bg-warning/10'
info: 'border-info/50 bg-info/10 text-info',
negative: 'border-negative/50 bg-negative/10 text-negative',
positive: 'border-positive/50 bg-positive/10 text-positive',
warning: 'border-warning/50 bg-warning/10 text-warning',
};
</script>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
</script>

<Story name="All variants" let:args>
<Toast {...args} status="error" title="Title" message="This is the toast message" />
<Toast {...args} status="negative" title="Title" message="This is the toast message" />
<Toast {...args} status="warning" title="Title" message="This is the toast message" />
<Toast {...args} status="success" title="Title" message="This is the toast message" />
<Toast {...args} status="positive" title="Title" message="This is the toast message" />
<Toast {...args} status="info" title="Title" message="This is the toast message" />
</Story>
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
};
const classLookup = {
negative: 'border-negative/50 bg-negative/10 text-negative-content',
positive: 'border-positive/50 bg-positive/10 text-positive-content',
info: 'border-info/50 bg-info/10 text-info-content',
warning: 'border-warning/50 bg-warning/10 text-warning-content'
negative: 'border-negative/50 bg-negative/10 text-negative',
positive: 'border-positive/50 bg-positive/10 text-positive',
info: 'border-info/50 bg-info/10 text-info',
warning: 'border-warning/50 bg-warning/10 text-warning'
};
</script>

Expand Down

0 comments on commit 9d01bc8

Please sign in to comment.