@dynamic-framework/ui-react 1.7.1 → 1.7.2
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/dist/index.esm.js +8 -8
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +8 -8
- package/dist/index.js.map +1 -1
- package/dist/types/components/DQuickActionButton.d.ts +2 -1
- package/dist/types/components/DQuickActionCheck.d.ts +2 -1
- package/dist/types/components/DQuickActionSelect.d.ts +2 -1
- package/dist/types/components/DQuickActionSwitch.d.ts +2 -1
- package/dist/types/stories/components/DInputSelect.stories.d.ts +1 -0
- package/package.json +2 -2
|
@@ -2,6 +2,7 @@ import type { CSSProperties } from 'react';
|
|
|
2
2
|
type Props = {
|
|
3
3
|
line1: string;
|
|
4
4
|
line2: string;
|
|
5
|
+
className?: string;
|
|
5
6
|
actionLinkText?: string;
|
|
6
7
|
actionLinkTheme?: string;
|
|
7
8
|
actionIcon?: string;
|
|
@@ -18,5 +19,5 @@ type Props = {
|
|
|
18
19
|
onClickSecondary?: () => void;
|
|
19
20
|
style?: CSSProperties;
|
|
20
21
|
};
|
|
21
|
-
export default function DQuickActionButton({ line1, line2, actionLinkText, actionLinkTheme, actionIcon, secondaryActionIcon, actionIconFamilyClass, actionIconFamilyPrefix, representativeImage, representativeIcon, representativeIconTheme, representativeIconHasCircle, representativeIconFamilyClass, representativeIconFamilyPrefix, onClick, onClickSecondary, style, }: Props): import("react/jsx-runtime").JSX.Element;
|
|
22
|
+
export default function DQuickActionButton({ line1, line2, className, actionLinkText, actionLinkTheme, actionIcon, secondaryActionIcon, actionIconFamilyClass, actionIconFamilyPrefix, representativeImage, representativeIcon, representativeIconTheme, representativeIconHasCircle, representativeIconFamilyClass, representativeIconFamilyPrefix, onClick, onClickSecondary, style, }: Props): import("react/jsx-runtime").JSX.Element;
|
|
22
23
|
export {};
|
|
@@ -6,8 +6,9 @@ type Props = {
|
|
|
6
6
|
line1: string;
|
|
7
7
|
line2: string;
|
|
8
8
|
line3: string;
|
|
9
|
+
className?: string;
|
|
9
10
|
isChecked?: boolean;
|
|
10
11
|
onChange?: (event: ChangeEvent<HTMLInputElement>) => void;
|
|
11
12
|
};
|
|
12
|
-
export default function DQuickActionCheck({ id, name, value, line1, line2, line3, isChecked, onChange, }: Props): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export default function DQuickActionCheck({ id, name, value, line1, line2, line3, className, isChecked, onChange, }: Props): import("react/jsx-runtime").JSX.Element;
|
|
13
14
|
export {};
|
|
@@ -5,8 +5,9 @@ type Props = {
|
|
|
5
5
|
value: string;
|
|
6
6
|
line1: string;
|
|
7
7
|
line2: string;
|
|
8
|
+
className?: string;
|
|
8
9
|
isSelected?: boolean;
|
|
9
10
|
onChange?: (event: ChangeEvent<HTMLInputElement>) => void;
|
|
10
11
|
};
|
|
11
|
-
export default function DQuickActionSelect({ id, name, value, line1, line2, isSelected, onChange, }: Props): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export default function DQuickActionSelect({ id, name, value, line1, line2, className, isSelected, onChange, }: Props): import("react/jsx-runtime").JSX.Element;
|
|
12
13
|
export {};
|
|
@@ -3,9 +3,10 @@ type Props = {
|
|
|
3
3
|
name?: string;
|
|
4
4
|
label: string;
|
|
5
5
|
hint: string;
|
|
6
|
+
className?: string;
|
|
6
7
|
isChecked?: boolean;
|
|
7
8
|
isDisabled?: boolean;
|
|
8
9
|
onClick?: (isChecked: boolean | undefined) => void;
|
|
9
10
|
};
|
|
10
|
-
export default function DQuickActionSwitch({ id, name, label, hint, isChecked, isDisabled, onClick, }: Props): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export default function DQuickActionSwitch({ id, name, label, hint, className, isChecked, isDisabled, onClick, }: Props): import("react/jsx-runtime").JSX.Element;
|
|
11
12
|
export {};
|
|
@@ -5,6 +5,7 @@ declare const config: Meta<typeof DInputSelect>;
|
|
|
5
5
|
export default config;
|
|
6
6
|
type Story = StoryObj<typeof DInputSelect>;
|
|
7
7
|
export declare const Default: Story;
|
|
8
|
+
export declare const Selected: Story;
|
|
8
9
|
export declare const Disabled: Story;
|
|
9
10
|
export declare const Icon: Story;
|
|
10
11
|
export declare const Extractors: StoryObj<DInputSelectProps<{
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-framework/ui-react",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "1.7.
|
|
4
|
+
"version": "1.7.2",
|
|
5
5
|
"description": "React Dynamic Framework",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -143,5 +143,5 @@
|
|
|
143
143
|
"react-i18next": "~11.18.3",
|
|
144
144
|
"react-toastify": "~9.0.8"
|
|
145
145
|
},
|
|
146
|
-
"gitHead": "
|
|
146
|
+
"gitHead": "153a9b36ad3b7efc9981ef17213420f78afa15ef"
|
|
147
147
|
}
|