asma-core-ui 3.0.102 → 3.0.103

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.
@@ -9,6 +9,8 @@ export type StyledWidgetProps = {
9
9
  hide?: boolean;
10
10
  };
11
11
  viewMore?: {
12
+ viewMoreText: string;
13
+ viewLessText: string;
12
14
  onClick?: () => void;
13
15
  hide?: boolean;
14
16
  disabled?: boolean;
@@ -1,7 +1,6 @@
1
1
  import type { FC } from 'react';
2
- declare const StyledEmptyPage: FC<{
2
+ export declare const StyledEmptyPage: FC<{
3
3
  isEmpty: boolean;
4
4
  emptyText: string;
5
5
  className?: string;
6
6
  }>;
7
- export default StyledEmptyPage;
@@ -4,5 +4,5 @@ type StyledLoadingProps = {
4
4
  className?: string;
5
5
  size?: 'small' | 'medium' | 'large';
6
6
  };
7
- declare const StyledLoading: FC<StyledLoadingProps>;
8
- export default StyledLoading;
7
+ export declare const StyledLoading: FC<StyledLoadingProps>;
8
+ export {};
@@ -6,8 +6,8 @@ export * from './components/icons';
6
6
  export * from './components/data-display/typography';
7
7
  export * from './components/data-display/form-label';
8
8
  export * from './components/feedback/dialog';
9
- export * from './components/feedback/empty-page';
10
- export * from './components/feedback/loading';
9
+ export * from './components/feedback/empty-page/StyledEmptyPage';
10
+ export * from './components/feedback/loading/StyledLoading';
11
11
  export * from './components/inputs/button';
12
12
  export * from './components/inputs/checkbox';
13
13
  export * from './components/inputs/input-field';
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "3.0.102",
6
+ "version": "3.0.103",
7
7
  "type": "module",
8
8
  "files": [
9
9
  "dist/**/*",
@@ -1 +0,0 @@
1
- export * from './StyledEmptyPage';
@@ -1 +0,0 @@
1
- export * from './StyledLoading';