@maggioli-design-system/mds-dropdown
Advanced tools
Comparing version 5.2.0 to 5.2.1
@@ -453,3 +453,3 @@ import { hashValue, setAttributeIfEmpty } from "../../common/aria"; | ||
"tags": [], | ||
"text": "Specifies the id of the caller element." | ||
"text": "Specifies the selector of the target element, this attribute is used with `querySelector` method." | ||
}, | ||
@@ -456,0 +456,0 @@ "attribute": "target", |
{ | ||
"timestamp": "2024-02-26T21:04:59", | ||
"timestamp": "2024-03-20T15:41:25", | ||
"compiler": { | ||
@@ -373,3 +373,3 @@ "name": "@stencil/core", | ||
"reflectToAttr": false, | ||
"docs": "Specifies the id of the caller element.", | ||
"docs": "Specifies the selector of the target element, this attribute is used with `querySelector` method.", | ||
"docsTags": [], | ||
@@ -376,0 +376,0 @@ "values": [ |
{ | ||
"timestamp": "2024-02-26T21:04:59", | ||
"timestamp": "2024-03-20T15:41:25", | ||
"compiler": { | ||
@@ -448,3 +448,3 @@ "name": "node", | ||
"tags": [], | ||
"text": "Specifies the id of the caller element." | ||
"text": "Specifies the selector of the target element, this attribute is used with `querySelector` method." | ||
}, | ||
@@ -784,3 +784,3 @@ "internal": false | ||
"tags": [], | ||
"text": "Specifies the id of the caller element." | ||
"text": "Specifies the selector of the target element, this attribute is used with `querySelector` method." | ||
}, | ||
@@ -787,0 +787,0 @@ "internal": false |
@@ -65,3 +65,3 @@ /* eslint-disable */ | ||
/** | ||
* Specifies the id of the caller element. | ||
* Specifies the selector of the target element, this attribute is used with `querySelector` method. | ||
*/ | ||
@@ -170,3 +170,3 @@ "target": string; | ||
/** | ||
* Specifies the id of the caller element. | ||
* Specifies the selector of the target element, this attribute is used with `querySelector` method. | ||
*/ | ||
@@ -173,0 +173,0 @@ "target": string; |
@@ -48,3 +48,3 @@ import { EventEmitter } from '../../stencil-public-runtime'; | ||
/** | ||
* Specifies the id of the caller element. | ||
* Specifies the selector of the target element, this attribute is used with `querySelector` method. | ||
*/ | ||
@@ -51,0 +51,0 @@ readonly target: string; |
{ | ||
"timestamp": "2024-02-26T20:53:06", | ||
"timestamp": "2024-03-20T15:27:43", | ||
"compiler": { | ||
@@ -374,3 +374,3 @@ "name": "@stencil/core", | ||
"reflectToAttr": false, | ||
"docs": "Specifies the id of the caller element.", | ||
"docs": "Specifies the selector of the target element, this attribute is used with `querySelector` method.", | ||
"docsTags": [], | ||
@@ -913,2 +913,7 @@ "values": [ | ||
}, | ||
"src/components/mds-push-notification/meta/event-detail.ts::MdsPushNotificationEventDetail": { | ||
"declaration": "export interface MdsPushNotificationEventDetail {\n id: string;\n}", | ||
"docstring": "", | ||
"path": "src/components/mds-push-notification/meta/event-detail.ts" | ||
}, | ||
"src/components/mds-stepper-bar/meta/event-detail.ts::MdsStepperBarEventDetail": { | ||
@@ -915,0 +920,0 @@ "declaration": "export interface MdsStepperBarEventDetail {\n step: number\n value: string\n}", |
{ | ||
"name": "@maggioli-design-system/mds-dropdown", | ||
"version": "5.2.0", | ||
"version": "5.2.1", | ||
"description": "mds-dropdown is a web-component from Magma Design System, built with StencilJS, TypeScript, Storybook. It's based on the web-component standard and it's designed to be agnostic from the JavaScirpt framework you are using.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.cjs.js", |
@@ -49,19 +49,19 @@ # mds-dropdown | ||
| Property | Attribute | Description | Type | Default | | ||
| --------------------- | ---------------- | ------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | | ||
| `arrow` | `arrow` | If set, the component will have an arrow pointing to the caller. | `boolean` | `true` | | ||
| `arrowPadding` | `arrow-padding` | Sets the distance between arrow and dropdown margins. | `number` | `24` | | ||
| `autoPlacement` | `auto-placement` | If set, the component will be placed automatically near it's caller. | `boolean` | `false` | | ||
| `backdrop` | `backdrop` | Specifies if the component has a backdrop background | `boolean` | `false` | | ||
| `flip` | `flip` | Specifies the placement of the component if no space is available where it is placed. | `boolean` | `false` | | ||
| `interaction` | `interaction` | Specifies if the component is triggered from the caller on mouseover or click event | `"click" \| "mouseover" \| undefined` | `'click'` | | ||
| `offset` | `offset` | Sets distance between the dropdown and the caller. | `number` | `24` | | ||
| `placement` | `placement` | Specifies where the component should be placed relative to the caller. | `"bottom" \| "bottom-end" \| "bottom-start" \| "left" \| "left-end" \| "left-start" \| "right" \| "right-end" \| "right-start" \| "top" \| "top-end" \| "top-start"` | `'bottom'` | | ||
| `shift` | `shift` | If set, the component will be kept inside the viewport. | `boolean` | `true` | | ||
| `shiftPadding` | `shift-padding` | Sets a safe area distance between the dropdown and the viewport. | `number` | `24` | | ||
| `smooth` | `smooth` | If set, the component will follow the caller smoothly, visible when the page scrolls. | `boolean` | `true` | | ||
| `strategy` | `strategy` | Sets the CSS position strategy of the component. | `"absolute" \| "fixed"` | `'fixed'` | | ||
| `target` _(required)_ | `target` | Specifies the id of the caller element. | `string` | `undefined` | | ||
| `visible` | `visible` | Specifies the visibility of the component. | `boolean` | `false` | | ||
| `zIndex` | `z-index` | Specifies the visibility of the component. | `number` | `undefined` | | ||
| Property | Attribute | Description | Type | Default | | ||
| --------------------- | ---------------- | ------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | | ||
| `arrow` | `arrow` | If set, the component will have an arrow pointing to the caller. | `boolean` | `true` | | ||
| `arrowPadding` | `arrow-padding` | Sets the distance between arrow and dropdown margins. | `number` | `24` | | ||
| `autoPlacement` | `auto-placement` | If set, the component will be placed automatically near it's caller. | `boolean` | `false` | | ||
| `backdrop` | `backdrop` | Specifies if the component has a backdrop background | `boolean` | `false` | | ||
| `flip` | `flip` | Specifies the placement of the component if no space is available where it is placed. | `boolean` | `false` | | ||
| `interaction` | `interaction` | Specifies if the component is triggered from the caller on mouseover or click event | `"click" \| "mouseover" \| undefined` | `'click'` | | ||
| `offset` | `offset` | Sets distance between the dropdown and the caller. | `number` | `24` | | ||
| `placement` | `placement` | Specifies where the component should be placed relative to the caller. | `"bottom" \| "bottom-end" \| "bottom-start" \| "left" \| "left-end" \| "left-start" \| "right" \| "right-end" \| "right-start" \| "top" \| "top-end" \| "top-start"` | `'bottom'` | | ||
| `shift` | `shift` | If set, the component will be kept inside the viewport. | `boolean` | `true` | | ||
| `shiftPadding` | `shift-padding` | Sets a safe area distance between the dropdown and the viewport. | `number` | `24` | | ||
| `smooth` | `smooth` | If set, the component will follow the caller smoothly, visible when the page scrolls. | `boolean` | `true` | | ||
| `strategy` | `strategy` | Sets the CSS position strategy of the component. | `"absolute" \| "fixed"` | `'fixed'` | | ||
| `target` _(required)_ | `target` | Specifies the selector of the target element, this attribute is used with `querySelector` method. | `string` | `undefined` | | ||
| `visible` | `visible` | Specifies the visibility of the component. | `boolean` | `false` | | ||
| `zIndex` | `z-index` | Specifies the visibility of the component. | `number` | `undefined` | | ||
@@ -68,0 +68,0 @@ |
@@ -65,3 +65,3 @@ /* eslint-disable */ | ||
/** | ||
* Specifies the id of the caller element. | ||
* Specifies the selector of the target element, this attribute is used with `querySelector` method. | ||
*/ | ||
@@ -170,3 +170,3 @@ "target": string; | ||
/** | ||
* Specifies the id of the caller element. | ||
* Specifies the selector of the target element, this attribute is used with `querySelector` method. | ||
*/ | ||
@@ -173,0 +173,0 @@ "target": string; |
@@ -10,19 +10,19 @@ # mds-dropdown | ||
| Property | Attribute | Description | Type | Default | | ||
| --------------------- | ---------------- | ------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | | ||
| `arrow` | `arrow` | If set, the component will have an arrow pointing to the caller. | `boolean` | `true` | | ||
| `arrowPadding` | `arrow-padding` | Sets the distance between arrow and dropdown margins. | `number` | `24` | | ||
| `autoPlacement` | `auto-placement` | If set, the component will be placed automatically near it's caller. | `boolean` | `false` | | ||
| `backdrop` | `backdrop` | Specifies if the component has a backdrop background | `boolean` | `false` | | ||
| `flip` | `flip` | Specifies the placement of the component if no space is available where it is placed. | `boolean` | `false` | | ||
| `interaction` | `interaction` | Specifies if the component is triggered from the caller on mouseover or click event | `"click" \| "mouseover" \| undefined` | `'click'` | | ||
| `offset` | `offset` | Sets distance between the dropdown and the caller. | `number` | `24` | | ||
| `placement` | `placement` | Specifies where the component should be placed relative to the caller. | `"bottom" \| "bottom-end" \| "bottom-start" \| "left" \| "left-end" \| "left-start" \| "right" \| "right-end" \| "right-start" \| "top" \| "top-end" \| "top-start"` | `'bottom'` | | ||
| `shift` | `shift` | If set, the component will be kept inside the viewport. | `boolean` | `true` | | ||
| `shiftPadding` | `shift-padding` | Sets a safe area distance between the dropdown and the viewport. | `number` | `24` | | ||
| `smooth` | `smooth` | If set, the component will follow the caller smoothly, visible when the page scrolls. | `boolean` | `true` | | ||
| `strategy` | `strategy` | Sets the CSS position strategy of the component. | `"absolute" \| "fixed"` | `'fixed'` | | ||
| `target` _(required)_ | `target` | Specifies the id of the caller element. | `string` | `undefined` | | ||
| `visible` | `visible` | Specifies the visibility of the component. | `boolean` | `false` | | ||
| `zIndex` | `z-index` | Specifies the visibility of the component. | `number` | `undefined` | | ||
| Property | Attribute | Description | Type | Default | | ||
| --------------------- | ---------------- | ------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | | ||
| `arrow` | `arrow` | If set, the component will have an arrow pointing to the caller. | `boolean` | `true` | | ||
| `arrowPadding` | `arrow-padding` | Sets the distance between arrow and dropdown margins. | `number` | `24` | | ||
| `autoPlacement` | `auto-placement` | If set, the component will be placed automatically near it's caller. | `boolean` | `false` | | ||
| `backdrop` | `backdrop` | Specifies if the component has a backdrop background | `boolean` | `false` | | ||
| `flip` | `flip` | Specifies the placement of the component if no space is available where it is placed. | `boolean` | `false` | | ||
| `interaction` | `interaction` | Specifies if the component is triggered from the caller on mouseover or click event | `"click" \| "mouseover" \| undefined` | `'click'` | | ||
| `offset` | `offset` | Sets distance between the dropdown and the caller. | `number` | `24` | | ||
| `placement` | `placement` | Specifies where the component should be placed relative to the caller. | `"bottom" \| "bottom-end" \| "bottom-start" \| "left" \| "left-end" \| "left-start" \| "right" \| "right-end" \| "right-start" \| "top" \| "top-end" \| "top-start"` | `'bottom'` | | ||
| `shift` | `shift` | If set, the component will be kept inside the viewport. | `boolean` | `true` | | ||
| `shiftPadding` | `shift-padding` | Sets a safe area distance between the dropdown and the viewport. | `number` | `24` | | ||
| `smooth` | `smooth` | If set, the component will follow the caller smoothly, visible when the page scrolls. | `boolean` | `true` | | ||
| `strategy` | `strategy` | Sets the CSS position strategy of the component. | `"absolute" \| "fixed"` | `'fixed'` | | ||
| `target` _(required)_ | `target` | Specifies the selector of the target element, this attribute is used with `querySelector` method. | `string` | `undefined` | | ||
| `visible` | `visible` | Specifies the visibility of the component. | `boolean` | `false` | | ||
| `zIndex` | `z-index` | Specifies the visibility of the component. | `number` | `undefined` | | ||
@@ -29,0 +29,0 @@ |
@@ -67,2 +67,3 @@ [ | ||
"mgg/data-civil-union", | ||
"mgg/data-cleaning", | ||
"mgg/data-death-civil-union", | ||
@@ -78,2 +79,4 @@ "mgg/data-death-marriage", | ||
"mgg/document-rename", | ||
"mgg/download-csv", | ||
"mgg/download-json", | ||
"mgg/electronic-document", | ||
@@ -110,2 +113,3 @@ "mgg/email-open-check", | ||
"mgg/google-check-small", | ||
"mgg/google-experiment", | ||
"mgg/google-keyboard-double-arrow-down", | ||
@@ -141,2 +145,3 @@ "mgg/google-keyboard-double-arrow-up", | ||
"mgg/map-marker-settings", | ||
"mgg/masks-office", | ||
"mgg/military-draft", | ||
@@ -199,2 +204,3 @@ "mgg/money-bag-settings", | ||
"mgg/sending-error", | ||
"mgg/session", | ||
"mgg/settings-attachment", | ||
@@ -201,0 +207,0 @@ "mgg/sign-shop", |
@@ -55,2 +55,3 @@ [ | ||
"mgg/data-civil-union", | ||
"mgg/data-cleaning", | ||
"mgg/data-death-civil-union", | ||
@@ -66,2 +67,4 @@ "mgg/data-death-marriage", | ||
"mgg/document-rename", | ||
"mgg/download-csv", | ||
"mgg/download-json", | ||
"mgg/electronic-document", | ||
@@ -98,2 +101,3 @@ "mgg/email-open-check", | ||
"mgg/google-check-small", | ||
"mgg/google-experiment", | ||
"mgg/google-keyboard-double-arrow-down", | ||
@@ -129,2 +133,3 @@ "mgg/google-keyboard-double-arrow-up", | ||
"mgg/map-marker-settings", | ||
"mgg/masks-office", | ||
"mgg/military-draft", | ||
@@ -187,2 +192,3 @@ "mgg/money-bag-settings", | ||
"mgg/sending-error", | ||
"mgg/session", | ||
"mgg/settings-attachment", | ||
@@ -189,0 +195,0 @@ "mgg/sign-shop", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1402216
21861