@brickclay-org/ui 0.0.7 → 0.0.8

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.
package/README.md CHANGED
@@ -35,7 +35,7 @@ A fully accessible radio button component with Angular forms integration. Featur
35
35
  ## Installation
36
36
 
37
37
  ```bash
38
- npm i @brickclay-org/ui@0.0.6
38
+ npm i @brickclay-org/ui@0.0.8
39
39
  ```
40
40
 
41
41
  ### Peer Dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brickclay-org/ui",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=17.0.0 <21.0.0",
6
6
  "@angular/core": ">=17.0.0 <21.0.0"
@@ -7,8 +7,8 @@ import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';
7
7
  standalone: true,
8
8
  imports: [CommonModule],
9
9
  encapsulation:ViewEncapsulation.None,
10
- templateUrl: './toggle.html',
11
- styleUrls: ['./toggle.css'],
10
+ templateUrl: './toggle.component.html',
11
+ styleUrls: ['./toggle.component.css'],
12
12
  providers: [
13
13
  {
14
14
  provide: NG_VALUE_ACCESSOR,
package/src/public-api.ts CHANGED
@@ -13,7 +13,7 @@ export * from './lib/calender/components/time-picker/time-picker.component';
13
13
  export * from './lib/calender/calendar.module';
14
14
  export * from './lib/calender/services/calendar-manager.service';
15
15
  //Toggle
16
- export * from './lib/toggle/toggle';
16
+ export * from './lib/toggle/components/toggle.component';
17
17
  //CheckBox
18
18
  export * from './lib/checkbox/checkbox';
19
19
  //Radio-Button