superdesk-ui-framework 4.0.26 → 4.0.28
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/app-typescript/components/Button.tsx +2 -0
- package/app-typescript/components/FormLabel.tsx +7 -1
- package/app-typescript/components/Label.tsx +2 -13
- package/app-typescript/components/RadioButtonGroup.tsx +6 -5
- package/app-typescript/components/Select.tsx +2 -0
- package/app-typescript/components/SelectPreview.tsx +1 -1
- package/app-typescript/components/ShowPopup.tsx +28 -19
- package/app-typescript/components/TreeMenu.tsx +16 -0
- package/app-typescript/components/TreeSelect/TreeSelect.tsx +4 -21
- package/app-typescript/components/TreeSelect/TreeSelectItem.tsx +1 -1
- package/app-typescript/components/TreeSelect/TreeSelectPill.tsx +1 -1
- package/app-typescript/helpers.tsx +13 -0
- package/app-typescript/index.ts +1 -0
- package/dist/examples.bundle.js +1426 -1406
- package/dist/playgrounds/react-playgrounds/TestGround.tsx +1 -1
- package/dist/superdesk-ui.bundle.js +1364 -1345
- package/dist/vendor.bundle.js +7 -7
- package/examples/pages/playgrounds/react-playgrounds/TestGround.tsx +1 -1
- package/package.json +1 -1
- package/react/components/Button.d.ts +1 -0
- package/react/components/Button.js +1 -1
- package/react/components/FormLabel.d.ts +1 -0
- package/react/components/FormLabel.js +1 -1
- package/react/components/Label.d.ts +0 -1
- package/react/components/Label.js +3 -15
- package/react/components/RadioButtonGroup.d.ts +3 -2
- package/react/components/RadioButtonGroup.js +3 -3
- package/react/components/Select.d.ts +1 -0
- package/react/components/Select.js +1 -1
- package/react/components/SelectPreview.js +3 -3
- package/react/components/ShowPopup.d.ts +1 -1
- package/react/components/ShowPopup.js +7 -7
- package/react/components/TreeMenu.js +25 -0
- package/react/components/TreeSelect/TreeSelect.js +5 -14
- package/react/components/TreeSelect/TreeSelectItem.js +2 -2
- package/react/components/TreeSelect/TreeSelectPill.js +3 -3
- package/react/helpers.d.ts +1 -0
- package/react/helpers.js +14 -1
- package/react/index.d.ts +1 -0
- package/react/index.js +3 -1
@@ -2031,7 +2031,7 @@ export class TestGround extends React.Component<IProps, IState> {
|
|
2031
2031
|
|
2032
2032
|
<div className="sd-check__group-new sd-check-button__group--left">
|
2033
2033
|
<RadioButtonGroup
|
2034
|
-
value={this.state.value3}
|
2034
|
+
value={this.state.value3 ?? ''}
|
2035
2035
|
options={[
|
2036
2036
|
{label: "RadioButton with an icon", value: "somevalue4", icon: "th-list"},
|
2037
2037
|
{label: "RadioButton with no visible text, only an icon", value: "somevalue5", icon: "th", labelHidden: true},
|