@bcrs-shared-components/action-chip 1.0.28 → 1.0.30

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.
Files changed (2) hide show
  1. package/ActionChip.vue +4 -5
  2. package/package.json +5 -5
package/ActionChip.vue CHANGED
@@ -10,17 +10,16 @@
10
10
  </template>
11
11
 
12
12
  <script lang="ts">
13
- import { Component, Prop, Vue } from 'vue-property-decorator'
13
+ import Vue from 'vue'
14
+ import { Component, Prop } from 'vue-property-decorator'
14
15
  import { ActionTypes } from '@bcrs-shared-components/enums'
15
16
  import { ActionableItemIF } from '@bcrs-shared-components/interfaces'
16
17
 
17
18
  @Component({})
18
19
  export default class ActionChip extends Vue {
19
- @Prop({ default: {} })
20
- readonly actionableItem: ActionableItemIF
20
+ @Prop({ default: {} }) readonly actionableItem!: ActionableItemIF
21
21
 
22
- @Prop({ default: 'EDITED' })
23
- readonly editedLabel: boolean
22
+ @Prop({ default: 'EDITED' }) readonly editedLabel!: string
24
23
 
25
24
  // Declaration for template
26
25
  readonly ActionTypes = ActionTypes
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@bcrs-shared-components/action-chip",
3
- "version": "1.0.28",
3
+ "version": "1.0.30",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
7
  "dependencies": {
8
- "@bcrs-shared-components/enums": "^1.0.21",
9
- "@bcrs-shared-components/interfaces": "^1.0.41",
10
- "vue-property-decorator": "^8.4.0"
8
+ "@bcrs-shared-components/enums": "^1.0.22",
9
+ "@bcrs-shared-components/interfaces": "^1.0.43",
10
+ "vue-property-decorator": "^9.1.2"
11
11
  },
12
- "gitHead": "68de5224869fb4d2399e7c24e81ab8e7a39b2cd1"
12
+ "gitHead": "6183a393dd216617fbde7341ed7d3d8b35db7fc2"
13
13
  }