Skip to content

Commit

Permalink
^10.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lucafoscili committed Feb 24, 2025
1 parent 9dbc86e commit b517e7c
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 21 deletions.
4 changes: 2 additions & 2 deletions packages/ketchup-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sme.up/ketchup-react",
"version": "10.1.0",
"version": "10.1.1",
"main": "dist/components.js",
"module": "dist/components.js",
"types": "dist/components.d.ts",
Expand All @@ -21,7 +21,7 @@
"description": "Ketchup React Components library by smeup",
"license": "Apache-2.0",
"dependencies": {
"@sme.up/ketchup": "10.1.0",
"@sme.up/ketchup": "10.1.1",
"@stencil/react-output-target": "^0.7",
"react": "^18",
"react-dom": "^18"
Expand Down
2 changes: 1 addition & 1 deletion packages/ketchup-showcase/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"lint": "vue-cli-service lint"
},
"dependencies": {
"@sme.up/ketchup": "^10.1.0",
"@sme.up/ketchup": "^10.1.1",
"core-js": "^3.30.2",
"vue": "^2.6.14",
"vue-router": "^3.5.1"
Expand Down
4 changes: 2 additions & 2 deletions packages/ketchup-showcase/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
@kup-tree-nodeselected="treeClick"
></kup-tree
><div class="version"
><a href="https://github.com/smeup/ketchup/releases/tag/v10.1.0"
>v10.1.0</a
><a href="https://github.com/smeup/ketchup/releases/tag/v10.1.1"
>v10.1.1</a
></div
></div
>
Expand Down
2 changes: 1 addition & 1 deletion packages/ketchup/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sme.up/ketchup",
"version": "10.1.0",
"version": "10.1.1",
"keywords": [
"smeup",
"KetchUP",
Expand Down
10 changes: 10 additions & 0 deletions packages/ketchup/src/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4307,6 +4307,11 @@ export namespace Components {
"waitForReady": () => Promise<void>;
}
interface KupTimePicker {
/**
* When set to true, the selected date will be appended to the current value instead of replacing it.
* @default false
*/
"appendSelection": boolean;
/**
* When set to true, the drop down menu will display a clock.
* @default true
Expand Down Expand Up @@ -9672,6 +9677,11 @@ declare namespace LocalJSX {
"trailingLabel"?: boolean;
}
interface KupTimePicker {
/**
* When set to true, the selected date will be appended to the current value instead of replacing it.
* @default false
*/
"appendSelection"?: boolean;
/**
* When set to true, the drop down menu will display a clock.
* @default true
Expand Down
2 changes: 1 addition & 1 deletion packages/ketchup/src/components/kup-data-table/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ If the `sticky` element would be hidden by the scroll, after having specified a
| `removableColumns` | `removable-columns` | Sets the possibility to remove the selected column. | `boolean` | `false` |
| `resizableColumns` | `resizable-columns` | Gives the possibility to resize columns by dragging on their right edge. | `boolean` | `true` |
| `rowActions` | -- | Sets the actions of the rows. | `KupDataRowAction[]` | `undefined` |
| `rowsPerPage` | `rows-per-page` | Sets the number of rows per page to display. | `number` | `1000` |
| `rowsPerPage` | `rows-per-page` | Sets the number of rows per page to display. | `number` | `10` |
| `scrollOnHover` | `scroll-on-hover` | Activates the scroll on hover function. | `boolean` | `false` |
| `selection` | `selection` | Set the type of the rows selection. | `SelectionMode.MULTIPLE \| SelectionMode.MULTIPLE_CHECKBOX \| SelectionMode.NONE \| SelectionMode.SINGLE` | `SelectionMode.SINGLE` |
| `showCustomization` | `show-customization` | If set to true, displays the button to open the customization panel. | `boolean` | `true` |
Expand Down
23 changes: 12 additions & 11 deletions packages/ketchup/src/components/kup-time-picker/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,18 @@

## Properties

| Property | Attribute | Description | Type | Default |
| ----------------- | ------------------- | --------------------------------------------------------------- | --------- | ------- |
| `clockVariant` | `clock-variant` | When set to true, the drop down menu will display a clock. | `boolean` | `true` |
| `customStyle` | `custom-style` | Custom style of the component. | `string` | `''` |
| `data` | -- | Props of the sub-components (time input text field) | `Object` | `{}` |
| `disabled` | `disabled` | Defaults at false. When set to true, the component is disabled. | `boolean` | `false` |
| `error` | `error` | Set error message | `string` | `''` |
| `initialValue` | `initial-value` | Sets the initial value of the component. | `string` | `''` |
| `manageSeconds` | `manage-seconds` | Manage seconds. | `boolean` | `true` |
| `showMarker` | `show-marker` | When true shows a small marker on the component. | `boolean` | `false` |
| `timeMinutesStep` | `time-minutes-step` | Minutes step. | `number` | `10` |
| Property | Attribute | Description | Type | Default |
| ----------------- | ------------------- | -------------------------------------------------------------------------------------------------- | --------- | ------- |
| `appendSelection` | `append-selection` | When set to true, the selected date will be appended to the current value instead of replacing it. | `boolean` | `false` |
| `clockVariant` | `clock-variant` | When set to true, the drop down menu will display a clock. | `boolean` | `true` |
| `customStyle` | `custom-style` | Custom style of the component. | `string` | `''` |
| `data` | -- | Props of the sub-components (time input text field) | `Object` | `{}` |
| `disabled` | `disabled` | Defaults at false. When set to true, the component is disabled. | `boolean` | `false` |
| `error` | `error` | Set error message | `string` | `''` |
| `initialValue` | `initial-value` | Sets the initial value of the component. | `string` | `''` |
| `manageSeconds` | `manage-seconds` | Manage seconds. | `boolean` | `true` |
| `showMarker` | `show-marker` | When true shows a small marker on the component. | `boolean` | `false` |
| `timeMinutesStep` | `time-minutes-step` | Minutes step. | `number` | `10` |


## Events
Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3144,7 +3144,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@sme.up/ketchup-react@workspace:packages/ketchup-react"
dependencies:
"@sme.up/ketchup": 10.1.0
"@sme.up/ketchup": 10.1.1
"@stencil/core": ^4
"@stencil/react-output-target": ^0.7
react: ^18
Expand Down Expand Up @@ -3177,7 +3177,7 @@ __metadata:
resolution: "@sme.up/ketchup-showcase@workspace:packages/ketchup-showcase"
dependencies:
"@babel/plugin-transform-private-methods": ^7.24.1
"@sme.up/ketchup": ^10.1.0
"@sme.up/ketchup": ^10.1.1
"@typescript-eslint/eslint-plugin": ^5.59.8
"@typescript-eslint/parser": ^5.59.8
"@vue/cli-plugin-babel": ~5.0.8
Expand All @@ -3201,7 +3201,7 @@ __metadata:
languageName: unknown
linkType: soft

"@sme.up/[email protected].0, @sme.up/ketchup@^10.1.0, @sme.up/ketchup@workspace:packages/ketchup":
"@sme.up/[email protected].1, @sme.up/ketchup@^10.1.1, @sme.up/ketchup@workspace:packages/ketchup":
version: 0.0.0-use.local
resolution: "@sme.up/ketchup@workspace:packages/ketchup"
dependencies:
Expand Down

0 comments on commit b517e7c

Please sign in to comment.