@tactics/toddle-styleguide 1.7.5 → 1.7.7

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/index.tsx CHANGED
@@ -82,6 +82,7 @@ import { Count } from './src/components/atoms/count/count.component';
82
82
  import { Amount } from './src/components/molecules/amount/amount.component';
83
83
  import { TimetableEditor } from './src/components/organisms/timetable-editor/timetable-editor.component';
84
84
  import { InlineError } from './src/components/molecules/inline-error/inline-error.component';
85
+ import { InlineNotice } from './src/components/molecules/inline-notice/inline-notice.component';
85
86
 
86
87
  // Exports of enums
87
88
  import {BubbleAlignment} from './src/types/bubble-alignment.enum';
@@ -187,5 +188,6 @@ export {
187
188
  TimetableEditor,
188
189
  TimeSlotRecord,
189
190
  TimeSlotSequence,
190
- InlineError
191
+ InlineError,
192
+ InlineNotice
191
193
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tactics/toddle-styleguide",
3
- "version": "1.7.5",
3
+ "version": "1.7.7",
4
4
  "main": "index.tsx",
5
5
  "types": "index.d.ts",
6
6
  "prepublish": "tsc",
@@ -7,7 +7,7 @@ export const Stylesheet = (context) =>
7
7
  flexDirection: 'row',
8
8
  gap: Scale.m,
9
9
  width: '100%',
10
- backgroundColor: context.colors.ui.error.xlight,
10
+ backgroundColor: context.colors.ui.warning.xlight,
11
11
  borderRadius: Scale.s,
12
12
  alignItems: 'center',
13
13
  justifyContent: 'flex-start',