Skip to content

Commit

Permalink
Merge branch 'main' into mc-release-31.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
micahchiang authored Nov 9, 2023
2 parents d93955f + adfd13f commit 3bbd6d0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions packages/storybook/stories/va-notification.stories.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import { getWebComponentDocs, propStructure, StoryDocs } from './wc-helpers';
const notificationDocs = getWebComponentDocs('va-notification');

export default {
title: 'Components/Notification',
title: 'Deprecated/Notification',
id: 'components/va-notification',
argTypes: {
argTypes: {
children: {
table: {
disable: true,
Expand Down
2 changes: 1 addition & 1 deletion packages/web-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@department-of-veterans-affairs/web-components",
"version": "4.47.0",
"version": "4.47.1",
"description": "Stencil Component Starter",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ import {
Element,
Event,
EventEmitter,
Host,
Prop,
Host,
Prop,
h,
Listen,
} from '@stencil/core';
import classnames from 'classnames';

/**
* @componentName Notification
* @maturityCategory caution
* @maturityLevel proposed
* @maturityCategory dont_use
* @maturityLevel deprecated
*/

@Component({
Expand Down Expand Up @@ -84,7 +84,7 @@ export class VaNotification {
* If `true`, the component-library-analytics event is disabled.
*/
@Prop() disableAnalytics?: boolean = false;

/**
* Fires when the component is closed by clicking on the close icon. This fires only
* when closeable is true.
Expand All @@ -106,7 +106,7 @@ export class VaNotification {
componentLibraryAnalytics: EventEmitter;

/**
* Listen for the va-link GA event and capture it so
* Listen for the va-link GA event and capture it so
* that we can emit a single va-notification GA event that includes
* the va-link details.
*/
Expand Down

0 comments on commit 3bbd6d0

Please sign in to comment.