comand-component-library 4.2.9 → 4.2.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.
@@ -0,0 +1,113 @@
1
+ {
2
+ "person": {
3
+ "id": 1,
4
+ "type": "casual",
5
+ "imgSrc": "https://comand-ui.com/samples/images/user-images/fake-user-2.jpg",
6
+ "bgImgSrc": "/images/background-images/background-matrix.jpg",
7
+ "lastName": "Miller",
8
+ "middleName": "",
9
+ "firstName": "Jackson",
10
+ "birthdate": "1975-07-11",
11
+ "gender": "m",
12
+ "profession": "Developer",
13
+ "countryIso": "de",
14
+ "companyName": "Big Tech Company",
15
+ "about": "I am the best developer in my home office",
16
+ "group": "Friends"
17
+ },
18
+ "account": {
19
+ "online": true,
20
+ "type": "premium",
21
+ "created": "2023-03-17"
22
+ },
23
+ "tags": [
24
+ {
25
+ "name": "Backend Development"
26
+ },
27
+ {
28
+ "name": "Frontend Development",
29
+ "description": "Frontend Development embraces the visible part of development. This includes primary the structure and its styling of websites combined by some basic logic."
30
+ },
31
+ {
32
+ "name": "Data Migration"
33
+ }
34
+ ],
35
+ "contact": [
36
+ {
37
+ "name": "companyName",
38
+ "iconClass": "icon-company",
39
+ "data": "Your company name",
40
+ "labelText": "companyName"
41
+ },
42
+ {
43
+ "name": "address",
44
+ "iconClass": "icon-home",
45
+ "labelText": "Address",
46
+ "streetNo": "Your Street/No",
47
+ "zip": "Your zip",
48
+ "city": "Duisburg",
49
+ "miscInfo": "Misc. info",
50
+ "country": "de"
51
+ },
52
+ {
53
+ "name": "phone",
54
+ "iconClass": "icon-phone",
55
+ "data": "Your phone number",
56
+ "labelText": "Telephone",
57
+ "tooltip": "Call number",
58
+ "href": "0123456789"
59
+ },
60
+ {
61
+ "name": "phone",
62
+ "iconClass": "icon-device-smartphone",
63
+ "data": "Your mobile phone number",
64
+ "labelText": "Mobile phone",
65
+ "tooltip": "Call number",
66
+ "href": "0123456789"
67
+ },
68
+ {
69
+ "name": "email",
70
+ "iconClass": "icon-mail",
71
+ "data": "Your email address",
72
+ "labelText": "Email",
73
+ "tooltip": "Send mail",
74
+ "href": "mail@provider.de"
75
+ },
76
+ {
77
+ "name": "url",
78
+ "iconClass": "icon-globe",
79
+ "data": "Your website",
80
+ "labelText": "Website",
81
+ "tooltip": "Open website in new tab",
82
+ "href": "https://www.domain.toplevel"
83
+ }
84
+ ],
85
+ "networks": [
86
+ {
87
+ "buttonClass": "social-network-facebook",
88
+ "iconClass": "icon-facebook",
89
+ "linkText": "facebook",
90
+ "path": "https://www.facebook.com",
91
+ "tooltip": "Visit profile on facebook"
92
+ },
93
+ {
94
+ "buttonClass": "social-network-instagram",
95
+ "iconClass": "icon-instagram",
96
+ "linkText": "instagram",
97
+ "path": "https://www.instagram.com",
98
+ "tooltip": "Visit profile on instagram"
99
+ },
100
+ {
101
+ "buttonClass": "social-network-linkedin",
102
+ "iconClass": "icon-linkedin",
103
+ "linkText": "linkedin",
104
+ "path": "https://www.linkedin.com",
105
+ "tooltip": "Visit profile on linkedin"
106
+ }
107
+ ],
108
+ "profileVisibility": {
109
+ "casual": [],
110
+ "founder": ["canSeeLocation"],
111
+ "investor": ["canSeeLocation"]
112
+ }
113
+ }
@@ -311,7 +311,7 @@ data() {
311
311
  cmdHeadlineSettingsData: {
312
312
  preHeadlineText: "Pre-headline text",
313
313
  headlineText: "Headline text",
314
- headlineLevel: 1,
314
+ headlineLevel: 3,
315
315
  textAlign: "left"
316
316
  },
317
317
  cmdHeadlineSettingsControls: {
@@ -582,11 +582,14 @@ export default {
582
582
  align-self: auto;
583
583
  }
584
584
 
585
- .box-header .cmd-headline {
586
- margin-bottom: 0;
585
+ .box-header {
586
+ .cmd-headline {
587
+ margin-bottom: 0;
588
+ text-decoration: none;
587
589
 
588
- &:only-child {
589
- width: 100% /* stretch in flex-container */
590
+ &:only-child {
591
+ width: 100% /* stretch in flex-container */
592
+ }
590
593
  }
591
594
  }
592
595
 
@@ -533,6 +533,18 @@ export default {
533
533
  }
534
534
  }
535
535
 
536
+ a {
537
+ gap: calc(var(--icon-and-text-gap) / 2) !important;
538
+
539
+ span {
540
+ text-decoration: none !important;
541
+
542
+ &[class*="icon"]:last-child {
543
+ margin-left: auto !important;
544
+ }
545
+ }
546
+ }
547
+
536
548
  > ul {
537
549
  height: var(--form-input-height);
538
550
  margin: 0;
@@ -584,7 +596,6 @@ export default {
584
596
  }
585
597
 
586
598
  &.open {
587
- border-bottom: 0;
588
599
  ul {
589
600
  border-bottom-left-radius: var(--default-border-radius);
590
601
  border-bottom-right-radius: var(--default-border-radius);
@@ -730,9 +741,11 @@ export default {
730
741
  > ul {
731
742
  > li:first-child {
732
743
  > a {
744
+ text-decoration: none !important;
733
745
  border-color: var(--status-color);
734
746
 
735
747
  > span, [class*="icon-"] {
748
+ text-decoration: none !important;
736
749
  color: var(--status-color);
737
750
  }
738
751
 
@@ -3,8 +3,8 @@
3
3
  :class="{error: errorOccurred}" :novalidate="novalidate" :method="formMethod">
4
4
  <template v-if="useFieldset">
5
5
  <fieldset class="flex-container">
6
- <legend :class="{hidden : !legend.show, 'align-left': legend.align === 'left'}">{{
7
- legend.text
6
+ <legend :class="{hidden : !legendOptions.show, 'align-left': legendOptions.align === 'left'}">{{
7
+ legendOptions.text
8
8
  }}
9
9
  </legend>
10
10
  <CmdSystemMessage v-if="systemMessage.show && systemMessage.message" :validationStatus="systemMessage.validationStatus" :systemMessage="systemMessage.message"/>
@@ -120,13 +120,7 @@ export default {
120
120
  */
121
121
  legend: {
122
122
  type: Object,
123
- default() {
124
- return {
125
- show: true,
126
- align: "left",
127
- text: "Legend"
128
- }
129
- }
123
+ required: false
130
124
  },
131
125
  /**
132
126
  * activate if form-elements should be given by slot
@@ -183,6 +177,14 @@ export default {
183
177
  }
184
178
  },
185
179
  computed: {
180
+ legendOptions() {
181
+ return {
182
+ show: true,
183
+ align: "left",
184
+ text: "Legend",
185
+ ...this.legend
186
+ }
187
+ },
186
188
  submitButtonOptions() {
187
189
  return {
188
190
  iconClass: "icon-check",
@@ -1006,6 +1006,12 @@ export default {
1006
1006
  width: 100%;
1007
1007
  }
1008
1008
  }
1009
+
1010
+ .label-text {
1011
+ [class*="icon-"] {
1012
+ top: -.2rem;
1013
+ }
1014
+ }
1009
1015
  }
1010
1016
 
1011
1017
  .search-field-wrapper {
@@ -1,7 +1,9 @@
1
1
  <template>
2
2
  <!-- begin login-form -->
3
3
  <fieldset v-show="!sendLogin" class="cmd-login-form flex-container">
4
- <legend :class="{hidden : !legendLoginForm.show, 'align-left': legendLoginForm.align === 'left'}">{{ legendLoginForm.text }}</legend>
4
+ <legend :class="{hidden : !legendLoginForm.show, 'align-left': legendLoginForm.align === 'left'}">
5
+ {{ legendLoginForm.text }}
6
+ </legend>
5
7
  <!-- begin CmdHeadline -->
6
8
  <CmdHeadline
7
9
  v-if="cmdHeadlineLoginForm"
@@ -14,11 +16,16 @@
14
16
  <div class="gsi-material-button-state"></div>
15
17
  <div class="gsi-material-button-content-wrapper">
16
18
  <div class="gsi-material-button-icon">
17
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" xmlns:xlink="http://www.w3.org/1999/xlink" style="display: block;">
18
- <path fill="#EA4335" d="M24 9.5c3.54 0 6.71 1.22 9.21 3.6l6.85-6.85C35.9 2.38 30.47 0 24 0 14.62 0 6.51 5.38 2.56 13.22l7.98 6.19C12.43 13.72 17.74 9.5 24 9.5z"></path>
19
- <path fill="#4285F4" d="M46.98 24.55c0-1.57-.15-3.09-.38-4.55H24v9.02h12.94c-.58 2.96-2.26 5.48-4.78 7.18l7.73 6c4.51-4.18 7.09-10.36 7.09-17.65z"></path>
20
- <path fill="#FBBC05" d="M10.53 28.59c-.48-1.45-.76-2.99-.76-4.59s.27-3.14.76-4.59l-7.98-6.19C.92 16.46 0 20.12 0 24c0 3.88.92 7.54 2.56 10.78l7.97-6.19z"></path>
21
- <path fill="#34A853" d="M24 48c6.48 0 11.93-2.13 15.89-5.81l-7.73-6c-2.15 1.45-4.92 2.3-8.16 2.3-6.26 0-11.57-4.22-13.47-9.91l-7.98 6.19C6.51 42.62 14.62 48 24 48z"></path>
19
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"
20
+ xmlns:xlink="http://www.w3.org/1999/xlink" style="display: block;">
21
+ <path fill="#EA4335"
22
+ d="M24 9.5c3.54 0 6.71 1.22 9.21 3.6l6.85-6.85C35.9 2.38 30.47 0 24 0 14.62 0 6.51 5.38 2.56 13.22l7.98 6.19C12.43 13.72 17.74 9.5 24 9.5z"></path>
23
+ <path fill="#4285F4"
24
+ d="M46.98 24.55c0-1.57-.15-3.09-.38-4.55H24v9.02h12.94c-.58 2.96-2.26 5.48-4.78 7.18l7.73 6c4.51-4.18 7.09-10.36 7.09-17.65z"></path>
25
+ <path fill="#FBBC05"
26
+ d="M10.53 28.59c-.48-1.45-.76-2.99-.76-4.59s.27-3.14.76-4.59l-7.98-6.19C.92 16.46 0 20.12 0 24c0 3.88.92 7.54 2.56 10.78l7.97-6.19z"></path>
27
+ <path fill="#34A853"
28
+ d="M24 48c6.48 0 11.93-2.13 15.89-5.81l-7.73-6c-2.15 1.45-4.92 2.3-8.16 2.3-6.26 0-11.57-4.22-13.47-9.91l-7.98 6.19C6.51 42.62 14.62 48 24 48z"></path>
22
29
  <path fill="none" d="M0 0h48v48H0z"></path>
23
30
  </svg>
24
31
  </div>
@@ -31,7 +38,7 @@
31
38
  <!-- begin Facebook-Login-Button -->
32
39
  <div v-if="enableLoginWithFacebook"
33
40
  class="fb-login-button"
34
- data-width=""
41
+ data-width="200"
35
42
  data-size=""
36
43
  data-button-type=""
37
44
  data-layout=""
@@ -40,8 +47,12 @@
40
47
  </div>
41
48
  <!-- end Facebook-Login-Button -->
42
49
 
50
+ <button v-if="enableLoginWithGoogle || enableLoginWithFacebook" @click.prevent="showLogin = true">
51
+ <span>Login with your data</span>
52
+ </button>
53
+
43
54
  <!-- begin form elements -->
44
- <div :class="['login-fields flex-container', {'vertical': orientation === 'vertical'}]">
55
+ <div v-show="showLogin" :class="['login-fields flex-container', {'vertical': orientation === 'vertical'}]">
45
56
  <!-- begin CmdFormElement -->
46
57
  <CmdFormElement
47
58
  element="input"
@@ -75,9 +86,9 @@
75
86
  <a v-if="linkForgotPassword" href="#" @click.prevent="toggleSendLoginView">
76
87
  <!-- begin CmdIcon -->
77
88
  <CmdIcon v-if="linkForgotPassword.icon?.show && linkForgotPassword.icon?.iconClass"
78
- :iconClass="linkForgotPassword.icon.iconClass"
79
- :type="linkForgotPassword.icon.iconType"
80
- :title="linkForgotPassword.icon.tooltip"
89
+ :iconClass="linkForgotPassword.icon.iconClass"
90
+ :type="linkForgotPassword.icon.iconType"
91
+ :title="linkForgotPassword.icon.tooltip"
81
92
  />
82
93
  <!-- end CmdIcon -->
83
94
  <span v-if="linkForgotPassword.text">{{ linkForgotPassword.text }}</span>
@@ -128,7 +139,9 @@
128
139
 
129
140
  <!-- begin send-login-form -->
130
141
  <fieldset v-show="sendLogin" class="cmd-login-form flex-container">
131
- <legend :class="{hidden : !legendForgotLoginForm.show, 'align-left': legendForgotLoginForm.align === 'left'}">{{ legendForgotLoginForm .text }}</legend>
142
+ <legend :class="{hidden : !legendForgotLoginForm.show, 'align-left': legendForgotLoginForm.align === 'left'}">
143
+ {{ legendForgotLoginForm.text }}
144
+ </legend>
132
145
  <!-- begin CmdHeadline -->
133
146
  <CmdHeadline
134
147
  v-if="cmdHeadlineSendLoginForm"
@@ -163,7 +176,7 @@
163
176
  <!-- end CmdIcon -->
164
177
 
165
178
  <span>
166
- {{linkBackToLogin.text}}
179
+ {{ linkBackToLogin.text }}
167
180
  </span>
168
181
  </a>
169
182
 
@@ -202,36 +215,40 @@ export default {
202
215
  passwordValidationStatus: false,
203
216
  emailValidationStatus: false,
204
217
  sendLoginMail: "",
205
- sendLogin: false
218
+ sendLogin: false,
219
+ showLogin: true
206
220
  }
207
221
  },
208
222
  props: {
209
223
  /**
210
224
  * activate if login with google should be enabled
211
225
  */
212
- enableLoginWithGoogle: {
213
- type: Boolean,
214
- default: true
215
- },
226
+ enableLoginWithGoogle:
227
+ {
228
+ type: Boolean,
229
+ default: true
230
+ },
216
231
  /**
217
232
  * activate if login with facebook should be enabled
218
233
  */
219
234
  enableLoginWithFacebook: {
220
235
  type: Boolean,
221
- default: true
236
+ default: false
222
237
  },
223
238
  /**
224
239
  * value for v-model (modelValue is default name in vue 3)
225
240
  */
226
241
  modelValue: {
227
242
  type: Object,
228
- default() {
243
+ default
244
+ () {
229
245
  return {
230
246
  username: "",
231
247
  password: ""
232
248
  }
233
249
  }
234
- },
250
+ }
251
+ ,
235
252
  /**
236
253
  * orientation for inputfields
237
254
  *
@@ -239,11 +256,13 @@ export default {
239
256
  */
240
257
  orientation: {
241
258
  type: String,
242
- default: null,
259
+ default:
260
+ null,
243
261
  validator(event) {
244
262
  return event === "vertical" || event === "horizontal"
245
263
  }
246
- },
264
+ }
265
+ ,
247
266
  /**
248
267
  * options for legend for login-fieldset
249
268
  *
@@ -251,29 +270,33 @@ export default {
251
270
  */
252
271
  legendLoginForm: {
253
272
  type: Object,
254
- default() {
273
+ default
274
+ () {
255
275
  return {
256
276
  show: true,
257
277
  align: "right",
258
278
  text: "Login form"
259
279
  }
260
280
  }
261
- },
281
+ }
282
+ ,
262
283
  /**
263
284
  * legend for forgot-login-fieldset
264
285
  *
265
286
  * @requiredForAccessibility: true
266
- */
287
+ */
267
288
  legendForgotLoginForm: {
268
289
  type: Object,
269
- default() {
290
+ default
291
+ () {
270
292
  return {
271
293
  show: true,
272
294
  align: "right",
273
295
  text: "Forgot login form"
274
296
  }
275
297
  }
276
- },
298
+ }
299
+ ,
277
300
  /**
278
301
  * properties for CmdHeadline-component for login-form
279
302
  */
@@ -317,13 +340,14 @@ export default {
317
340
  },
318
341
  /**
319
342
  * options to display
320
- *
343
+ *
321
344
  * forgotPassword: toggles form to send password by email
322
345
  * createAccount: creates a link (href/router) which could lead to a register-form
323
346
  */
324
347
  linkForgotPassword: {
325
348
  type: Object,
326
- default() {
349
+ default
350
+ () {
327
351
  return {
328
352
  icon: {
329
353
  show: true,
@@ -357,7 +381,8 @@ export default {
357
381
  */
358
382
  linkBackToLogin: {
359
383
  type: Object,
360
- default() {
384
+ default
385
+ () {
361
386
  return {
362
387
  icon: {
363
388
  show: true,
@@ -485,7 +510,7 @@ export default {
485
510
  this.sendLogin = !this.sendLogin
486
511
 
487
512
  this.$nextTick(() => {
488
- if(this.sendLogin) {
513
+ if (this.sendLogin) {
489
514
  this.$refs.sendPassword.setFocus()
490
515
  } else {
491
516
  this.$refs.username.setFocus()
@@ -493,7 +518,7 @@ export default {
493
518
  })
494
519
  },
495
520
  modelChange() {
496
- this.$emit("update:modelValue", { "username": this.username, "password": this.password })
521
+ this.$emit("update:modelValue", {"username": this.username, "password": this.password})
497
522
  },
498
523
  onClick(event) {
499
524
  this.$emit("click", event)
@@ -517,10 +542,22 @@ export default {
517
542
  },
518
543
  watch: {
519
544
  username() {
520
- this.modelChange()
545
+ this.modelChange()
521
546
  },
522
547
  password() {
523
- this.modelChange()
548
+ this.modelChange()
549
+ },
550
+ enableLoginWithGoogle: {
551
+ handler() {
552
+ this.showLogin = false
553
+ },
554
+ immediate: true
555
+ },
556
+ enableLoginWithFacebook: {
557
+ handler() {
558
+ this.showLogin = false
559
+ },
560
+ immediate: true
524
561
  }
525
562
  }
526
563
  }
@@ -541,9 +578,9 @@ export default {
541
578
 
542
579
  .login-fields {
543
580
  &.vertical {
544
- .cmd-form-element {
545
- width: 100%;
546
- }
581
+ .cmd-form-element {
582
+ width: 100%;
583
+ }
547
584
  }
548
585
  }
549
586
 
@@ -552,7 +589,7 @@ export default {
552
589
  align-items: center;
553
590
 
554
591
  > a:not(.button) {
555
- display: block;
592
+ display: flex;
556
593
  text-decoration: none;
557
594
  }
558
595
 
@@ -563,51 +600,30 @@ export default {
563
600
 
564
601
  /* begin google-login-button */
565
602
  .gsi-material-button {
566
- -moz-user-select: none;
567
- -webkit-user-select: none;
568
- -ms-user-select: none;
569
- -webkit-appearance: none;
570
- background-color: WHITE;
571
- background-image: none;
572
- border: 1px solid #747775;
573
- -webkit-border-radius: 4px;
574
- border-radius: 4px;
575
- -webkit-box-sizing: border-box;
576
- box-sizing: border-box;
603
+ border: var(--button-border);
604
+ border-color: #747775;
577
605
  color: #1f1f1f;
578
- cursor: pointer;
579
606
  font-family: 'Roboto', arial, sans-serif;
580
- font-size: 14px;
581
- height: 40px;
582
607
  letter-spacing: 0.25px;
583
- outline: none;
584
- overflow: hidden;
585
- padding: 0 12px;
586
- position: relative;
587
- text-align: center;
588
- -webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
589
608
  transition: background-color .218s, border-color .218s, box-shadow .218s;
590
- vertical-align: middle;
591
609
  white-space: nowrap;
592
- width: auto;
593
- max-width: 400px;
594
- min-width: min-content;
610
+
611
+ border-radius: var(--button-border-radius);;
612
+ background-color: var(--color-white);
613
+ height: var(--input-height);
614
+ padding: var(--button-padding);
595
615
  }
596
616
 
597
617
  .gsi-material-button .gsi-material-button-icon {
598
- height: 20px;
599
- margin-right: 12px;
600
- min-width: 20px;
601
- width: 20px;
618
+ height: 2rem;
619
+ aspect-ratio: 1/1;
620
+ margin-right: calc(var(--default-margin) / 2);
602
621
  }
603
622
 
604
623
  .gsi-material-button .gsi-material-button-content-wrapper {
605
- -webkit-align-items: center;
606
624
  align-items: center;
607
625
  display: flex;
608
- -webkit-flex-direction: row;
609
626
  flex-direction: row;
610
- -webkit-flex-wrap: nowrap;
611
627
  flex-wrap: nowrap;
612
628
  height: 100%;
613
629
  justify-content: space-between;
@@ -616,7 +632,6 @@ export default {
616
632
  }
617
633
 
618
634
  .gsi-material-button .gsi-material-button-contents {
619
- -webkit-flex-grow: 1;
620
635
  flex-grow: 1;
621
636
  font-family: 'Roboto', arial, sans-serif;
622
637
  font-weight: 500;
@@ -626,7 +641,6 @@ export default {
626
641
  }
627
642
 
628
643
  .gsi-material-button .gsi-material-button-state {
629
- -webkit-transition: opacity .218s;
630
644
  transition: opacity .218s;
631
645
  bottom: 0;
632
646
  left: 0;
@@ -637,35 +651,31 @@ export default {
637
651
  }
638
652
 
639
653
  .gsi-material-button:disabled {
640
- cursor: default;
641
654
  background-color: #ffffff61;
642
655
  border-color: #1f1f1f1f;
643
656
  }
644
657
 
645
- .gsi-material-button:disabled .gsi-material-button-contents {
646
- opacity: 38%;
647
- }
648
-
649
- .gsi-material-button:disabled .gsi-material-button-icon {
650
- opacity: 38%;
658
+ .gsi-material-button:disabled {
659
+ .gsi-material-button-contents, .gsi-material-button-icon {
660
+ opacity: 38%;
661
+ }
651
662
  }
652
663
 
653
- .gsi-material-button:not(:disabled):active .gsi-material-button-state,
654
- .gsi-material-button:not(:disabled):focus .gsi-material-button-state {
664
+ .gsi-material-button:not(:disabled):is(:active, :focus) .gsi-material-button-state {
655
665
  background-color: #303030;
656
666
  opacity: 12%;
657
667
  }
658
668
 
659
669
  .gsi-material-button:not(:disabled):hover {
660
- -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
661
670
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
662
- }
663
671
 
664
- .gsi-material-button:not(:disabled):hover .gsi-material-button-state {
665
- background-color: #303030;
666
- opacity: 8%;
672
+ .gsi-material-button-state {
673
+ background-color: #303030;
674
+ opacity: 8%;
675
+ }
667
676
  }
668
677
  /* end google-login-button */
669
678
  }
679
+
670
680
  /* end cmd-login-form ---------------------------------------------------------------------------------------- */
671
681
  </style>