Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,6 @@ jobs:
with:
reportCoverage: false

check-charts-compat-peer-deps:
if: ${{ github.event.inputs.publish_only != 'true' }}
runs-on: ubuntu-latest
environment: charts-peer-deps-approval
steps:
- name: No-op
run: echo "Did you update the peer dependencies of the charts and compat package?"

release-dryrun:
if: ${{ github.event.inputs.publish_only != 'true' }}
runs-on: ubuntu-latest
Expand Down Expand Up @@ -85,8 +77,8 @@ jobs:
--allow-branch ${{ github.ref_name }}

build-and-release:
if: ${{ !cancelled() && (github.event.inputs.publish_only == 'true' || (needs.test.result == 'success' && needs.release-dryrun.result == 'success' && needs.check-charts-compat-peer-deps.result == 'success')) }}
needs: ['test', 'release-dryrun', 'check-charts-compat-peer-deps']
if: ${{ !cancelled() && (github.event.inputs.publish_only == 'true' || (needs.test.result == 'success' && needs.release-dryrun.result == 'success')) }}
needs: ['test', 'release-dryrun']
runs-on: ubuntu-latest
environment:
name: 'npm'
Expand Down
6 changes: 3 additions & 3 deletions .storybook/custom-element-manifests/ai.json
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@
},
{
"name": "default",
"description": "Defines the suggestion items.\n\n**Note:** The suggestions would be displayed only if the `showSuggestions`\nproperty is set to `true`.\n\n**Note:** The `<ui5-suggestion-item>`, `<ui5-suggestion-item-group>` and `ui5-suggestion-item-custom` are recommended to be used as suggestion items.",
"description": "Defines the suggestion items.\n\n**Note:** The suggestions would be displayed only if the `showSuggestions`\nproperty is set to `true`.\n\n**Note:** The `<ui5-suggestion-item>`, `<ui5-suggestion-item-group>` and `ui5-suggestion-item-custom` are recommended to be used as suggestion items.\n\n**Note:** Input with type `Number` does not support suggestions.",
"_ui5propertyName": "suggestionItems",
"_ui5type": {
"text": "Array<IInputSuggestionItem>",
Expand Down Expand Up @@ -627,7 +627,7 @@
]
},
"default": "\"Text\"",
"description": "Defines the HTML type of the component.\n\n**Notes:**\n\n- The particular effect of this property differs depending on the browser\nand the current language settings, especially for type `Number`.\n- The property is mostly intended to be used with touch devices\nthat use different soft keyboard layouts depending on the given input type.",
"description": "Defines the HTML type of the component.\n\n**Notes:**\n\n- The particular effect of this property differs depending on the browser\nand the current language settings, especially for type `Number`.\n- The property is mostly intended to be used with touch devices\nthat use different soft keyboard layouts depending on the given input type.\n- Type `Number` does not support suggestions.",
"privacy": "public"
},
{
Expand Down Expand Up @@ -999,7 +999,7 @@
}
},
{
"description": "Defines the HTML type of the component.\n\n**Notes:**\n\n- The particular effect of this property differs depending on the browser\nand the current language settings, especially for type `Number`.\n- The property is mostly intended to be used with touch devices\nthat use different soft keyboard layouts depending on the given input type.",
"description": "Defines the HTML type of the component.\n\n**Notes:**\n\n- The particular effect of this property differs depending on the browser\nand the current language settings, especially for type `Number`.\n- The property is mostly intended to be used with touch devices\nthat use different soft keyboard layouts depending on the given input type.\n- Type `Number` does not support suggestions.",
"name": "type",
"default": "\"Text\"",
"fieldName": "type",
Expand Down
Loading
Loading