@worksafevictoria/wcl7.5 1.16.0-beta.1 → 1.16.0-beta.10

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/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@worksafevictoria/wcl7.5",
3
- "version": "1.16.0-beta.1",
3
+ "version": "1.16.0-beta.10",
4
+ "description": "WorkSafe Victoria Component Library - GitHub Actions Migration Test",
4
5
  "main": "src/index.js",
5
6
  "license": "MIT",
6
7
  "repository": {
@@ -142,7 +142,7 @@ methods: {
142
142
  width: 10px !important;
143
143
  height: 10px !important;
144
144
  border-radius: 50% !important;
145
- background-color: yellow !important;
145
+ background-color: gold !important;
146
146
  }
147
147
 
148
148
  .carousel-indicators button:focus,
@@ -153,8 +153,11 @@ methods: {
153
153
 
154
154
  .carousel-caption {
155
155
  display: flex;
156
- font-size: 24px;
156
+ font-size: 16px;
157
+ font-style: normal;
157
158
  font-weight: normal;
159
+ line-height: 20px;
160
+ letter-spacing: 0px;
158
161
  flex-direction: column;
159
162
  align-items: flex-start;
160
163
  text-align: left !important;
@@ -124,13 +124,13 @@ export default {
124
124
 
125
125
  .homepage-header {
126
126
  position:relative;
127
- margin-bottom: 10px;
127
+ margin-bottom: 0px;
128
128
  display: block;
129
129
  border-bottom: none !important;
130
130
  height: auto;
131
131
  align-items: normal;
132
- padding-top: 30px;
133
- padding-bottom: 30px;
132
+ padding-top: 48px;
133
+ padding-bottom: 5px;
134
134
 
135
135
  :deep(.wysiwyg) {
136
136
  h1 {
@@ -150,7 +150,7 @@ export default {
150
150
  &__content-wrapper {
151
151
  width: 100%;
152
152
  position: relative;
153
- margin-top: 80px;
153
+ margin-top: 48px;
154
154
  @include mq('mm') {
155
155
  margin-top: 10px !important;
156
156
  }
@@ -388,7 +388,7 @@ export default {
388
388
  },
389
389
  data() {
390
390
  return {
391
- screen: null,
391
+ screen: 'desktop',
392
392
  isMobileMenuOpen: false,
393
393
  isSecondLevelOpen: false,
394
394
  isThirdLevelOpen: false,
@@ -5,7 +5,7 @@ const mockAccordionItems = [
5
5
  field_title: 'Item one',
6
6
  field_pre_heading: 'preheading text',
7
7
  field_rich_text: {
8
- value:
8
+ processed:
9
9
  '<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>',
10
10
  },
11
11
  id: 'id-1',
@@ -14,7 +14,7 @@ const mockAccordionItems = [
14
14
  field_title: 'Item two',
15
15
  field_pre_heading: 'preheading text',
16
16
  field_rich_text: {
17
- value:
17
+ processed:
18
18
  '<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>',
19
19
  },
20
20
  id: 'id-2',
@@ -23,7 +23,7 @@ const mockAccordionItems = [
23
23
  field_title: 'Item three',
24
24
  field_pre_heading: 'preheading text',
25
25
  field_rich_text: {
26
- value:
26
+ processed:
27
27
  '<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>',
28
28
  },
29
29
  id: 'id-3',
@@ -22,7 +22,7 @@
22
22
  <stepper-item
23
23
  v-if="isStepper"
24
24
  :itemid="item.id ? item.id : '' + index"
25
- :content="hasContent(item) ? item.field_rich_text.value : ''"
25
+ :content="hasContent(item) ? item.field_rich_text.processed : ''"
26
26
  :title="item.field_title"
27
27
  class="accordion__item stepper"
28
28
  :rtl="rtl || item.field_rtl"
@@ -33,7 +33,7 @@
33
33
  <accordion-item
34
34
  v-if="!isStepper"
35
35
  :itemid="item.id ? item.id : '' + index"
36
- :content="hasContent(item) ? item.field_rich_text.value : ''"
36
+ :content="hasContent(item) ? item.field_rich_text.processed : ''"
37
37
  :title="item.field_title"
38
38
  class="accordion__item"
39
39
  :rtl="rtl || item.field_rtl"
@@ -124,8 +124,7 @@ export default {
124
124
  return false
125
125
  },
126
126
  hasContent(item) {
127
- // Changed to processed from value for rich text field.
128
- return item?.field_rich_text?.value
127
+ return item?.field_rich_text?.processed
129
128
  },
130
129
  },
131
130
  }
@@ -3,7 +3,7 @@
3
3
  <!-- Main details -->
4
4
  <container>
5
5
  <row class="records">
6
- <column md="2" sm="12" class="title">
6
+ <column md="2" sm="12" class="title text-break">
7
7
  <a
8
8
  name="titleLink"
9
9
  v-if="item.title"
@@ -58,21 +58,6 @@
58
58
  <div style="padding-top: 20px">
59
59
  <hr />
60
60
  </div>
61
- <!-- Website, if any -->
62
-
63
- <div v-if="item.website">
64
- <row>
65
- <column>
66
- <h5>Website</h5>
67
- </column>
68
- </row>
69
- <row v-if="item.website !== ''">
70
- <a v-if="item.website" target="_blank" :href="`${item.website}`"
71
- ><span class="sr-only visually-hidden">Website address</span>
72
- {{ item.website }}
73
- </a>
74
- </row>
75
- </div>
76
61
  <div v-if="item.serviceCategory">
77
62
  <row class="row-dir-additional">
78
63
  <column>
@@ -50,27 +50,8 @@
50
50
  <option value="Class B - Non-friable">
51
51
  Class B - Non-friable
52
52
  </option>
53
- <!-- <option value="Class A - Restricted - Asbestos Removalists">
54
- Class A - Restricted - Asbestos Removalists
55
- </option>
56
- <option value="Class B - Restricted - Asbestos Removalists">
57
- Class B - Restricted - Asbestos Removalists
58
- </option> -->
59
53
  </select>
60
54
  </column>
61
- <!-- <column xxl="2" xl="3" md="4" sm="6">
62
- <label class="col-form-label visually-hidden" for="search-services">
63
- Search by suburb (typed suburb automatically filters below results)
64
- </label>
65
- <input
66
- id="search-services"
67
- type="text"
68
- v-model="searchServices"
69
- placeholder="Services"
70
- aria-label="Search by suburb (typed suburb automatically filters below results)"
71
- class="search"
72
- />
73
- </column> -->
74
55
  <column md="2">
75
56
  <filter-button
76
57
  v-if="!hideReset"
@@ -120,7 +101,6 @@ export default {
120
101
  searchRem: '',
121
102
  searchSub: '',
122
103
  searchClass: '',
123
- // searchServices: '',
124
104
  filteredItems: null,
125
105
  perPage: 10,
126
106
  page: 0,
@@ -159,21 +139,12 @@ export default {
159
139
  .includes(this.searchClass.toLowerCase()),
160
140
  )
161
141
  }
162
- // if (this.searchServices.length) {
163
- // this.hideReset = false
164
- // results = results.filter((item) =>
165
- // item.services
166
- // .toLowerCase()
167
- // .includes(this.searchServices.toLowerCase()),
168
- // )
169
- // }
170
142
  this.filteredItems = results
171
143
 
172
144
  if (
173
145
  this.searchRem.length ||
174
146
  this.searchSub.length ||
175
147
  this.searchClass.length
176
- // || this.searchServices.length
177
148
  ) {
178
149
  this.pageChanged(1)
179
150
  }
@@ -194,19 +165,9 @@ export default {
194
165
  type: 'ar',
195
166
  title: record.Account,
196
167
  fullAddress: record.Regbusinessaddresssuburb + ' ' + record.Regbusinessaddresspostcode,
197
- // workPhone: record.Phone,
198
168
  mobilePhone: record.PrimaryContactMobile,
199
169
  email: record.PrimaryContactEmail,
200
- website: record.Website ? this.formatWebsite(record.Website) : '',
201
- // contact1: this.returnContact(
202
- // record.ContactFirstName,
203
- // record.ContactLastName,
204
- // ),
205
170
  contact1: record.PrimaryContactAccountName,
206
- // email1: record.PrimaryContactEmail,
207
- // phone1: record.ContactPhoneDisp,
208
- // mobile1: record.PrimaryContactMobile,
209
- // services: record.ServicesAll.replace(/,$/, ''),
210
171
  serviceCategory: record.AsbestosClass,
211
172
  })
212
173
  })
package/src/index.js CHANGED
@@ -2,12 +2,12 @@
2
2
  import Container from './components/Containers/Container/index.vue'
3
3
  import Row from './components/Containers/Row/index.vue'
4
4
  import Column from './components/Containers/Column/index.vue'
5
- import HomepageHeader from './components/Containers/HomepageHeader/index.vue'
5
+ import HomepageHeader from './components/Containers/HomepageHeaderNew/index.vue'
6
6
  import Subheader from './components/Containers/Subheader/index.vue'
7
7
  import SectionGroup from './components/Containers/SectionGroup/index.vue'
8
8
  import CarouselComponent from './components/Containers/Carousel/index.vue'
9
9
  // Replace AppHeader with AppHeaderNew to introduce new header
10
- import AppHeader from './components/Global/AppHeader/index.vue'
10
+ import AppHeader from './components/Global/AppHeaderNew/index.vue'
11
11
  import AppFooter from './components/Global/AppFooter/index.vue'
12
12
  import HeroHeader from './components/Global/HeroHeader/index.vue'
13
13
  import SocialShare from './components/Global/SocialShare/index.vue'
@@ -1,254 +1,127 @@
1
1
  export const arData = [
2
2
  {
3
3
  Account: 'A.D.S. Asbestos Removal Pty Ltd',
4
- // CompanyAddress: '62 Webber Parade',
5
4
  Regbusinessaddresssuburb: 'KEILOR EAST',
6
5
  Regbusinessaddresspostcode: '3033',
7
- // Phone: '0404073745',
8
- // CompanyMobile: '0404 073 745',
9
- // CompanyEmailDisp: 'ads.asbestos@gmail.com',
10
- Website: 'adsasbestosremoval.com.au',
11
- // ContactFirstName: 'Ivan',
12
- // ContactLastName: 'Silva',
13
6
  PrimaryContactAccountName: 'Ivan Silva',
14
- // ContactPhoneDisp: '0404073745',
15
7
  PrimaryPrimaryContactEmail: 'ads.asbestos@gmail.com',
16
8
  PrimaryContactMobile: '1300 064 277',
17
9
  AsbestosClass: 'Class A - Friable and non-friable',
18
- // ServicesAll: 'removal of any asbestos containing material that was previously non-friable but has become friable as a result of a fire and does not require an enclosure with a negative air unit(s) to perform the work.',
19
10
  },
20
11
  {
21
12
  Account: 'AAA ASBESTOS SOLUTIONS PTY LTD',
22
- // CompanyAddress: '9 Ewens Court',
23
13
  Regbusinessaddresssuburb: 'MOUNT GAMBIER',
24
14
  Regbusinessaddresspostcode: '5290',
25
- // Phone: '0418 854 443',
26
- // CompanyMobile: '0418 854 443',
27
- // CompanyEmailDisp: 'nieto4@bigpond.net.au',
28
- Website: '',
29
- // ContactFirstName: 'ERIC',
30
- // ContactLastName: 'NIETO',
31
15
  PrimaryContactAccountName: 'ERIC NIETO',
32
- // ContactPhoneDisp: '0418 854 443',
33
16
  PrimaryContactEmail: 'nieto4@bigpond.net.au',
34
17
  PrimaryContactMobile: '0418 854 443',
35
18
  AsbestosClass: 'Class B - Non-friable',
36
- // ServicesAll: 'All types of non-friable asbestos containing material (eg. cement sheeting or vinyl tiles)',
37
19
  },
38
20
  {
39
21
  Account: 'Aaron John Field',
40
- // CompanyAddress: '44 Townsent Street',
41
22
  Regbusinessaddresssuburb: 'Howlong',
42
23
  Regbusinessaddresspostcode: '2643',
43
- // Phone: '',
44
- // CompanyMobile: '0408474707',
45
- // CompanyEmailDisp: 'azz_317@homail.com',
46
- Website: '',
47
- // ContactFirstName: 'Aaron',
48
- // ContactLastName: 'Field',
49
24
  PrimaryContactAccountName: 'Aaron Field',
50
- // ContactPhoneDisp: '',
51
25
  PrimaryContactEmail: 'azz_317@homail.com',
52
26
  PrimaryContactMobile: '0408474707',
53
27
  AsbestosClass: 'Class B - Non-friable',
54
- // ServicesAll: 'All types of non-friable asbestos containing material (eg. cement sheeting or vinyl tiles),Telecommunication Asbestos cement pits and pipes',
55
28
  },
56
29
  {
57
30
  Account: 'Al Baarini Ahmad',
58
- // CompanyAddress: '13 Rudkin Court',
59
31
  Regbusinessaddresssuburb: 'Hoppers Crossing',
60
32
  Regbusinessaddresspostcode: '3029',
61
- // Phone: '0421 280 732',
62
- // CompanyMobile: '0401 016 565',
63
- // CompanyEmailDisp: 'CITYWIDEDEMOLITION@HOTMAIL.COM',
64
- Website: 'www.citywidedemolition.com.au',
65
- // ContactFirstName: 'Eman',
66
- // ContactLastName: 'Al Baarini',
67
33
  PrimaryContactAccountName: 'Eman Al Baarini',
68
- // ContactPhoneDisp: '0421 280 732',
69
34
  PrimaryContactEmail: 'CITYWIDEDEMOLITION@HOTMAIL.COM',
70
35
  PrimaryContactMobile: '0421 280 732',
71
36
  AsbestosClass: 'Class B - Non-friable',
72
- // ServicesAll: 'All types of non-friable asbestos containing material (eg. cement sheeting or vinyl tiles)',
73
- },
37
+ },
74
38
  {
75
39
  Account: 'Ashcorp Holdings Pty Ltd',
76
- // CompanyAddress: '17 Rohs Road',
77
40
  Regbusinessaddresssuburb: 'EAST BENDIGO',
78
41
  Regbusinessaddresspostcode: '3550',
79
- // Phone: '(03) 5444 3261',
80
- // CompanyMobile: '0409 012 780',
81
- // CompanyEmailDisp: 'admin@ashworthdemolition.com.au',
82
- Website: '',
83
- // ContactFirstName: 'Dean',
84
- // ContactLastName: 'Ashworth',
85
42
  PrimaryContactAccountName: 'Dean Ashworth',
86
- // ContactPhoneDisp: '(03) 5444 3261',
87
43
  PrimaryContactEmail: 'info@ashworthdemolition.com.au',
88
44
  PrimaryContactMobile: '0409012780',
89
45
  AsbestosClass: 'Class A - Friable and non-friable',
90
- // ServicesAll: 'removal of all types of non-friable asbestos containing material,removal of asbestos containing gaskets and ropes,removal of friable asbestos containing material from soil that does not require an enclosure with negative air unit(s),removal of any asbestos containing material that was previously non-friable but has become friable as a result of a fire,The Licence is restricted to removal of asbestos containing material that does not require an enclosure with a negative air unit(s).'
91
46
  },
92
47
  {
93
48
  Account: 'Ventia Utility Services Pty Limited',
94
- // CompanyAddress: 'Ventia - Cardinia Building, 25 Lucknow Street',
95
49
  Regbusinessaddresssuburb: 'MITCHAM',
96
- Regbusinessaddresspostcode: '3132',
97
- // Phone: '0438531164',
98
- // CompanyMobile: '',
99
- // CompanyEmailDisp: 'daniel.dehaan@ventia.com',
100
- Website: 'www.ventia.com.au',
101
- // ContactFirstName: 'Daniel',
102
- // ContactLastName: 'DeHaan',
103
50
  PrimaryContactAccountName: 'Daniel DeHaan',
104
- // ContactPhoneDisp: '0438531164',
105
51
  PrimaryContactEmail: 'daniel.dehaan@ventia.com',
106
52
  PrimaryContactMobile: '0438531164',
107
53
  AsbestosClass: 'Class B - Non-friable',
108
- // ServicesAll: 'Bituminous coal tar coatings,Non-friable Asbestos Cement Water Pipes and Associated Fittings ONLY,Non-friable Asbetos Containing Bituminous Coating on Mild Steel Pipes',
109
54
  },
110
55
  {
111
56
  Account: 'ONE A.D.S Asbestos Removal Pty Ltd',
112
- // CompanyAddress: '62 Webber Parade',
113
57
  Regbusinessaddresssuburb: 'KEILOR EAST',
114
58
  Regbusinessaddresspostcode: '3033',
115
- // Phone: '0404073745',
116
- // CompanyMobile: '0404 073 745',
117
- // CompanyEmailDisp: 'ads.asbestos@gmail.com',
118
- Website: 'http://www.adsasbestosremoval.com.au',
119
- // ContactFirstName: '',
120
- // ContactLastName: '',
121
59
  PrimaryContactAccountName: '',
122
- // ContactPhoneDisp: '0404073745',
123
60
  PrimaryContactEmail: 'ads.asbestos@gmail.com',
124
61
  PrimaryContactMobile: '1300 064 277',
125
62
  AsbestosClass: 'Class A - Friable and non-friable',
126
- // ServicesAll: 'removal of any asbestos containing material that was previously non-friable but has become friable as a result of a fire and does not require an enclosure with a negative air unit(s) to perform the work.',
127
- },
63
+ },
128
64
  {
129
65
  Account: 'TWO A.D.S Asbestos Removal Pty Ltd',
130
- // CompanyAddress: '62 Webber Parade',
131
66
  Regbusinessaddresssuburb: 'KEILOR EAST',
132
67
  Regbusinessaddresspostcode: '3033',
133
- // Phone: '0404073745',
134
- // CompanyMobile: '0404 073 745',
135
- // CompanyEmailDisp: 'ads.asbestos@gmail.com',
136
- Website: 'http://www.adsasbestosremoval.com.au',
137
- // ContactFirstName: 'Ivan',
138
- // ContactLastName: 'Silva',
139
68
  PrimaryContactAccountName: 'Ivan Silva',
140
- // ContactPhoneDisp: '',
141
69
  PrimaryContactEmail: 'ads.asbestos@gmail.com',
142
70
  PrimaryContactMobile: '1300 064 277',
143
71
  AsbestosClass: 'Class A - Friable and non-friable',
144
- // ServicesAll: 'removal of any asbestos containing material that was previously non-friable but has become friable as a result of a fire and does not require an enclosure with a negative air unit(s) to perform the work.',
145
- },
72
+ },
146
73
  {
147
74
  Account: 'Three A.D.S Asbestos Removal Pty Ltd',
148
- // CompanyAddress: '62 Webber Parade',
149
75
  Regbusinessaddresssuburb: 'KEILOR EAST',
150
76
  Regbusinessaddresspostcode: '3033',
151
- // Phone: '0404073745',
152
- // CompanyMobile: '0404 073 745',
153
- // CompanyEmailDisp: 'ads.asbestos@gmail.com',
154
- Website: 'http://www.adsasbestosremoval.com.au',
155
- // ContactFirstName: 'Ivan',
156
- // ContactLastName: 'Silva',
157
77
  PrimaryContactAccountName: 'Ivan Silva',
158
- // ContactPhoneDisp: '0404073745',
159
78
  PrimaryContactEmail: '',
160
79
  PrimaryContactMobile: '1300 064 277',
161
80
  AsbestosClass: 'Class A - Friable and non-friable',
162
- // ServicesAll: 'removal of any asbestos containing material that was previously non-friable but has become friable as a result of a fire and does not require an enclosure with a negative air unit(s) to perform the work.',
163
- },
81
+ },
164
82
  {
165
83
  Account: 'FOUR A.D.S Asbestos Removal Pty Ltd',
166
- // CompanyAddress: '62 Webber Parade',
167
84
  Regbusinessaddresssuburb: 'KEILOR EAST',
168
85
  Regbusinessaddresspostcode: '3033',
169
- // Phone: '0404073745',
170
- // CompanyMobile: '0404 073 745',
171
- // CompanyEmailDisp: 'ads.asbestos@gmail.com',
172
- Website: 'http://www.adsasbestosremoval.com.au',
173
- // ContactFirstName: 'Ivan',
174
- // ContactLastName: 'Silva',
175
86
  PrimaryContactAccountName: 'Ivan Silva',
176
- // ContactPhoneDisp: '0404073745',
177
87
  PrimaryContactEmail: 'ads.asbestos@gmail.com',
178
88
  PrimaryContactMobile: '',
179
89
  AsbestosClass: 'Class A - Friable and non-friable',
180
- // ServicesAll: 'removal of any asbestos containing material that was previously non-friable but has become friable as a result of a fire and does not require an enclosure with a negative air unit(s) to perform the work.',
181
- },
90
+ },
182
91
  {
183
92
  Account: 'Five A.D.S Asbestos Removal Pty Ltd',
184
- // CompanyAddress: '62 Webber Parade',
185
93
  Regbusinessaddresssuburb: 'KEILOR EAST',
186
94
  Regbusinessaddresspostcode: '3033',
187
- // Phone: '0404073745',
188
- // CompanyMobile: '0404 073 745',
189
- // CompanyEmailDisp: 'ads.asbestos@gmail.com',
190
- Website: 'http://www.adsasbestosremoval.com.au',
191
- // ContactFirstName: '',
192
- // ContactLastName: '',
193
95
  PrimaryContactAccountName: '',
194
- // ContactPhoneDisp: '',
195
96
  PrimaryContactEmail: '',
196
97
  PrimaryContactMobile: '',
197
98
  AsbestosClass: 'Class A - Friable and non-friable',
198
- // ServicesAll: 'removal of any asbestos containing material that was previously non-friable but has become friable as a result of a fire and does not require an enclosure with a negative air unit(s) to perform the work.',
199
- },
99
+ },
200
100
  {
201
101
  Account: 'SIX A.D.S Asbestos Removal Pty Ltd',
202
- // CompanyAddress: '62 Webber Parade',
203
102
  Regbusinessaddresssuburb: 'KEILOR EAST',
204
103
  Regbusinessaddresspostcode: '3033',
205
- // Phone: '0404073745',
206
- // CompanyMobile: '0404 073 745',
207
- // CompanyEmailDisp: 'ads.asbestos@gmail.com',
208
- Website: 'http://www.adsasbestosremoval.com.au',
209
- // ContactFirstName: 'Ivan',
210
- // ContactLastName: 'Silva',
211
104
  PrimaryContactAccountName: 'Ivan Silva',
212
- // ContactPhoneDisp: '0404073745',
213
105
  PrimaryContactEmail: 'ads.asbestos@gmail.com',
214
106
  PrimaryContactMobile: '1300 064 277',
215
107
  AsbestosClass: 'Class A - Friable and non-friable',
216
- // ServicesAll: 'removal of any asbestos containing material that was previously non-friable but has become friable as a result of a fire and does not require an enclosure with a negative air unit(s) to perform the work.',
217
- },
108
+ },
218
109
  {
219
110
  Account: 'SSM Asbestos Removal Pty Ltd',
220
- // CompanyAddress: '90 Marriage Lane',
221
111
  Regbusinessaddresssuburb: 'HILLSIDE',
222
112
  Regbusinessaddresspostcode: '3875',
223
- // Phone: '0405 083 197',
224
- // CompanyMobile: '0405 083 197',
225
- // CompanyEmailDisp: 'steve@ssmasbestos.com.au',
226
- Website: 'www.ssm-asbestosremoval.com',
227
- // ContactFirstName: 'Steven',
228
- // ContactLastName: 'McCarthy',
229
113
  PrimaryContactAccountName: 'Steven McCarthy',
230
- // ContactPhoneDisp: '0405 083 197',
231
114
  PrimaryContactEmail: 'steve@ssmasbestos.com.au',
232
115
  PrimaryContactMobile: '0405 083 197',
233
116
  AsbestosClass: 'Class A - Friable and non-friable',
234
- // ServicesAll: 'All types of Asbestos containing material (friable & non-friable)',
235
- },
117
+ },
236
118
  {
237
119
  Account: 'Golden Plains Asbestos PTY LTD',
238
- // CompanyAddress: '165 Grevillea Drive',
239
120
  Regbusinessaddresssuburb: 'ENFIELD',
240
121
  Regbusinessaddresspostcode: '3352',
241
- // Phone: '0450582103',
242
- // CompanyMobile: '0450582103',
243
- // CompanyEmailDisp: 'gpasbestos@outlook.com',
244
- Website: '',
245
- // ContactFirstName: 'Carlos',
246
- // ContactLastName: 'Rios',
247
122
  PrimaryContactAccountName: 'Carlos Rios',
248
- // ContactPhoneDisp: '0450582103',
249
123
  PrimaryContactEmail: 'gpasbestos@outlook.com',
250
124
  PrimaryContactMobile: '0450582103',
251
125
  AsbestosClass: 'Class A - Friable and non-friable',
252
- // ServicesAll: 'All types of Asbestos containing material (friable & non-friable)',
253
- }
126
+ }
254
127
  ]