@bcrs-shared-components/action-chip 1.0.29 → 1.1.0

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 +2 -4
  2. package/package.json +4 -4
package/ActionChip.vue CHANGED
@@ -16,11 +16,9 @@ import { ActionableItemIF } from '@bcrs-shared-components/interfaces'
16
16
 
17
17
  @Component({})
18
18
  export default class ActionChip extends Vue {
19
- @Prop({ default: {} })
20
- readonly actionableItem: ActionableItemIF
19
+ @Prop({ default: {} }) readonly actionableItem!: ActionableItemIF
21
20
 
22
- @Prop({ default: 'EDITED' })
23
- readonly editedLabel: boolean
21
+ @Prop({ default: 'EDITED' }) readonly editedLabel!: string
24
22
 
25
23
  // Declaration for template
26
24
  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.29",
3
+ "version": "1.1.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
7
  "dependencies": {
8
8
  "@bcrs-shared-components/enums": "^1.0.22",
9
- "@bcrs-shared-components/interfaces": "^1.0.42",
10
- "vue-property-decorator": "^8.4.0"
9
+ "@bcrs-shared-components/interfaces": "^1.1.0",
10
+ "vue-property-decorator": "^9.1.2"
11
11
  },
12
- "gitHead": "a5b870aca5f29e305aea9be0ae0e0770319ce9cd"
12
+ "gitHead": "fa14bf4a9de9875c9f1932b33fe51a36aec85387"
13
13
  }