@zealicsolutions/web-ui 1.0.67 → 1.0.68

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.
@@ -1,5 +1,5 @@
1
- import React from 'react';
2
1
  import { RatingProps } from '@mui/material';
2
+ import React from 'react';
3
3
  export interface RatingMoleculeProps extends Omit<RatingProps, 'onChange'> {
4
4
  text: string;
5
5
  name: string;
@@ -1,6 +1,9 @@
1
1
  import { RatingMoleculeProps } from './Rating';
2
2
  declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0a347bb9").R, import("@storybook/types").Args>;
3
3
  export default _default;
4
+ declare type StoryPropsWithStateValue = RatingMoleculeProps & {
5
+ sourceDataModelFieldValue?: number | string;
6
+ };
4
7
  /** 1) Editable rating with validation */
5
8
  export declare const Editable: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, RatingMoleculeProps>;
6
9
  /** 2) Display-only rating (read only) */
@@ -8,3 +11,9 @@ export declare const DisplayOnly: import("@storybook/types").AnnotatedStoryFn<im
8
11
  /** 3) Disabled rating input */
9
12
  export declare const Disabled: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, RatingMoleculeProps>;
10
13
  export declare const Standalone: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, RatingMoleculeProps>;
14
+ /** Display-only with numeric value from state */
15
+ export declare const DisplayOnlyWithStateValue: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, StoryPropsWithStateValue>;
16
+ /** Display-only with string value from state */
17
+ export declare const DisplayOnlyWithStringStateValue: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, StoryPropsWithStateValue>;
18
+ /** Display-only with partial rating value */
19
+ export declare const DisplayOnlyWithPartialRating: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, StoryPropsWithStateValue>;
@@ -1,6 +1,6 @@
1
- import React from 'react';
2
1
  import { SliderProps } from '@mui/material';
3
2
  import { ConfigurationItemInfo } from 'containers';
3
+ import React from 'react';
4
4
  export interface SliderMoleculeProps extends Omit<SliderProps, 'onChange'> {
5
5
  text?: string;
6
6
  name?: string;
@@ -1,6 +1,9 @@
1
1
  import { SliderMoleculeProps } from './Slider';
2
2
  declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0a347bb9").R, import("@storybook/types").Args>;
3
3
  export default _default;
4
+ declare type StoryPropsWithStateValue = SliderMoleculeProps & {
5
+ sourceDataModelFieldValue?: number | string;
6
+ };
4
7
  /** Editable with required validation */
5
8
  export declare const EditableRequired: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, SliderMoleculeProps>;
6
9
  /** Display-only mode (slider is disabled, text shows numeric value) */
@@ -8,3 +11,9 @@ export declare const DisplayOnly: import("@storybook/types").AnnotatedStoryFn<im
8
11
  /** Vertical usage */
9
12
  export declare const VerticalSlider: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, SliderMoleculeProps>;
10
13
  export declare const Standalone: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, SliderMoleculeProps>;
14
+ /** Display-only with numeric value from state */
15
+ export declare const DisplayOnlyWithStateValue: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, StoryPropsWithStateValue>;
16
+ /** Display-only with string value from state */
17
+ export declare const DisplayOnlyWithStringStateValue: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, StoryPropsWithStateValue>;
18
+ /** Display-only with decimal value from state */
19
+ export declare const DisplayOnlyWithDecimalValue: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, StoryPropsWithStateValue>;
@@ -1,5 +1,5 @@
1
- import React from 'react';
2
1
  import { RatingProps } from '@mui/material';
2
+ import React from 'react';
3
3
  export interface RatingMoleculeProps extends Omit<RatingProps, 'onChange'> {
4
4
  text: string;
5
5
  name: string;