@muraldevkit/ui-toolkit 2.78.0-dev-G53p.1 → 2.78.0-dev-qh4t.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.
@@ -5,4 +5,10 @@
5
5
  .MrlTextarea {
6
6
  @include mrl-text-inputs;
7
7
  resize: vertical;
8
+ &--autoExpand {
9
+ display: block;
10
+ max-height: 120px;
11
+ overflow: hidden;
12
+ resize: none;
13
+ }
8
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@muraldevkit/ui-toolkit",
3
- "version": "2.78.0-dev-G53p.1",
3
+ "version": "2.78.0-dev-qh4t.1",
4
4
  "description": "Mural's UI Toolkit",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -1,22 +0,0 @@
1
- import React from 'react';
2
- import { DSIconType } from '../../svg';
3
- export type InlineNotificationKind = 'error' | 'info' | 'warning' | 'success' | 'general';
4
- interface PropTypes {
5
- /** a custom DS icon which is only applied if the alert is not an error, info, or warning type */
6
- customIcon?: DSIconType;
7
- id: string;
8
- /**
9
- * Accepted values: error, info, warning, success, general
10
- */
11
- kind: InlineNotificationKind;
12
- message: string;
13
- ['data-qa']?: string;
14
- }
15
- /**
16
- * MrlInlineNotification is a notification component that can be used to display messages to the user.
17
- *
18
- * @param props - The properties of the component.
19
- * @returns A React component.
20
- */
21
- export declare const MrlInlineNotification: ({ customIcon, id, kind, message, ["data-qa"]: qa }: PropTypes) => React.ReactElement;
22
- export {};
@@ -1 +0,0 @@
1
- export { MrlInlineNotification } from './MrlInlineNotification';
@@ -1,28 +0,0 @@
1
- .MrlInlineNotification {
2
- align-items: center;
3
- display: flex;
4
- margin-top: var(--mrl-spacing-02);
5
- &.error {
6
- color: var(--mrl-color-text-error);
7
- }
8
- &.information {
9
- :global(.MrlSvgContainer) {
10
- color: var(--mrl-color-background-info);
11
- }
12
- }
13
- &.warning {
14
- :global(.MrlSvgContainer) {
15
- color: var(--mrl-color-background-warning);
16
- }
17
- }
18
- &.success {
19
- :global(.MrlSvgContainer) {
20
- color: var(--mrl-color-text-success);
21
- }
22
- }
23
- &-icon {
24
- height: var(--mrl-spacing-05);
25
- margin-right: var(--mrl-spacing-02);
26
- width: var(--mrl-spacing-05);
27
- }
28
- }