@policystudio/policy-studio-ui-vue 1.0.58 → 1.0.62
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/dist/css/psui_styles.css +276 -263
- package/package.json +1 -1
- package/src/assets/scss/components/PsAccordion.scss +8 -3
- package/src/assets/scss/components/PsInputSelect.scss +53 -32
- package/src/assets/scss/components/PsMiniTag.scss +52 -53
- package/src/assets/scss/components/PsTabHeader.scss +1 -3
- package/src/components/accordion/PsAccordionItem.vue +15 -4
- package/src/components/badges-and-tags/PsMiniTag.vue +5 -1
- package/src/components/buttons/PsButton.vue +17 -3
- package/src/components/controls/PsCheckboxSimple.vue +40 -5
- package/src/components/controls/PsDraggable.vue +3 -4
- package/src/components/forms/PsDropdown.vue +9 -0
- package/src/components/forms/PsInputSelect.vue +4 -2
- package/src/stories/Button.stories.js +20 -15
- package/src/stories/CheckboxSimple.stories.js +6 -5
- package/tailwind.config.js +1 -1
- package/vetur/attributes.json +150 -42
- package/vetur/tags.json +56 -8
|
@@ -15,78 +15,83 @@ const TemplateDefault = (args, { argTypes }) => ({
|
|
|
15
15
|
props: Object.keys(argTypes),
|
|
16
16
|
components: { PsButton },
|
|
17
17
|
template: `
|
|
18
|
-
<div style="display:flex; flex-direction: column;">
|
|
18
|
+
<div style="display:flex; flex-direction: column;">
|
|
19
19
|
<p>Size: Big</p>
|
|
20
20
|
<div style="display: flex; flex-direction: column; gap: 10px;">
|
|
21
|
-
<div style="display: grid; grid-template-columns: repeat(
|
|
21
|
+
<div style="display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0.5rem; justify-items: center; align-items: center;">
|
|
22
22
|
<span style="text-align: center; color: black;">Solid Style</span>
|
|
23
23
|
<PsButton label='Left Icon' layout='solid' icon='verified' iconPosition='left'/>
|
|
24
24
|
<PsButton label='Right Icon' layout='solid' icon='verified' iconPosition='right'/>
|
|
25
25
|
<PsButton label='Text Only' layout='solid' />
|
|
26
|
-
<PsButton label='Disabled' layout='solid' icon='verified' iconPosition='left' disabled/>
|
|
26
|
+
<PsButton label='Disabled' layout='solid' icon='verified' iconPosition='left' disabled/>
|
|
27
|
+
<PsButton label='Loading Solid' layout='solid' icon='verified' iconPosition='left' loading />
|
|
27
28
|
</div>
|
|
28
|
-
<div style="display: grid; grid-template-columns: repeat(
|
|
29
|
+
<div style="display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0.5rem; justify-items: center; align-items: center;" >
|
|
29
30
|
<span style="text-align: center; color: blue;">Outline Style</span>
|
|
30
31
|
<PsButton label='Left Icon' layout='outline' icon='verified' iconPosition='left'/>
|
|
31
32
|
<PsButton label='Right Icon' layout='outline' icon='verified' iconPosition='right'/>
|
|
32
33
|
<PsButton label='Text Only' layout='outline'/>
|
|
33
34
|
<PsButton label='Disabled' layout='outline' icon='verified' iconPosition='left' disabled/>
|
|
35
|
+
<PsButton label='Loading Outline' layout='outline' icon='verified' iconPosition='left' loading />
|
|
34
36
|
</div>
|
|
35
|
-
<div style="display: grid; grid-template-columns: repeat(
|
|
37
|
+
<div style="display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0.5rem; justify-items: center; align-items: center;" >
|
|
36
38
|
<span style="text-align: center; color: brown;">Ghost Style</span>
|
|
37
39
|
<PsButton label='Left Icon' layout='ghost' icon='verified' iconPosition='left'/>
|
|
38
40
|
<PsButton label='Right Icon' layout='ghost' icon='verified' iconPosition='right'/>
|
|
39
41
|
<PsButton label='Text Only' layout='ghost' />
|
|
40
42
|
<PsButton label='Disabled' layout='ghost' icon='verified' iconPosition='left' disabled/>
|
|
43
|
+
<PsButton label='Loading Ghost' layout='ghost' icon='verified' iconPosition='left' loading />
|
|
41
44
|
</div>
|
|
42
|
-
<div style="display: grid; grid-template-columns: repeat(
|
|
45
|
+
<div style="display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0.5rem; justify-items: center; align-items: center;" >
|
|
43
46
|
<span style="text-align: center; color: green;">Only-Text Style</span>
|
|
44
47
|
<PsButton label='Left Icon' layout='onlytext' icon='verified' iconPosition='left'/>
|
|
45
48
|
<PsButton label='Right Icon' layout='onlytext' icon='verified' iconPosition='right'/>
|
|
46
49
|
<PsButton label='Text Only' layout='onlytext'/>
|
|
47
50
|
<PsButton label='Disabled' layout='onlytext' icon='verified' iconPosition='left' disabled/>
|
|
51
|
+
<PsButton label='Loading Only-Text' layout='onlytext' icon='verified' iconPosition='left' loading />
|
|
48
52
|
</div>
|
|
49
|
-
<div style="display: grid; grid-template-columns: repeat(
|
|
53
|
+
<div style="display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0.5rem; justify-items: center; align-items: center;" >
|
|
50
54
|
<span style="text-align: center; color: red;">Caution Button</span>
|
|
51
55
|
<PsButton label='Left Icon' layout='caution' icon='verified' iconPosition='left'/>
|
|
52
56
|
<PsButton label='Right Icon' layout='caution' icon='verified' iconPosition='right'/>
|
|
53
57
|
<PsButton label='Text Only' layout='caution' />
|
|
54
58
|
<PsButton label='Disabled' layout='caution' icon='verified' iconPosition='left' disabled/>
|
|
59
|
+
<PsButton label='Loading Caution' layout='caution' icon='verified' iconPosition='left' loading />
|
|
55
60
|
</div>
|
|
56
61
|
|
|
57
62
|
|
|
58
63
|
</div>
|
|
59
64
|
<p>Size: Medium</p>
|
|
60
65
|
<div style="display: flex; flex-direction: column; gap: 10px;">
|
|
61
|
-
<div style="display: grid; grid-template-columns: repeat(
|
|
66
|
+
<div style="display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0.5rem; justify-items: center; align-items: center;" >
|
|
62
67
|
<span style="text-align: center; color: black;">Solid Style</span>
|
|
63
68
|
<PsButton label='Left Icon' layout='solid' icon='verified' iconPosition='left' size='medium'/>
|
|
64
69
|
<PsButton label='Right Icon' layout='solid' icon='verified' iconPosition='right' size='medium'/>
|
|
65
70
|
<PsButton label='Text Only' layout='solid' size='medium'/>
|
|
66
71
|
<PsButton label='Disabled' layout='solid' icon='verified' iconPosition='left' disabled size='medium'/>
|
|
67
72
|
</div>
|
|
68
|
-
<div style="display: grid; grid-template-columns: repeat(
|
|
73
|
+
<div style="display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0.5rem; justify-items: center; align-items: center;" >
|
|
69
74
|
<span style="text-align: center; color: blue;">Outline Style</span>
|
|
70
75
|
<PsButton label='Left Icon' layout='outline' icon='verified' iconPosition='left' size='medium'/>
|
|
71
76
|
<PsButton label='Right Icon' layout='outline' icon='verified' iconPosition='right' size='medium'/>
|
|
72
77
|
<PsButton label='Text Only' layout='outline' size='medium'/>
|
|
73
78
|
<PsButton label='Disabled' layout='outline' icon='verified' iconPosition='left' disabled size='medium'/>
|
|
74
79
|
</div>
|
|
75
|
-
<div style="display: grid; grid-template-columns: repeat(
|
|
80
|
+
<div style="display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0.5rem; justify-items: center; align-items: center;" >
|
|
76
81
|
<span style="text-align: center; color: brown;">Ghost Style</span>
|
|
77
82
|
<PsButton label='Left Icon' layout='ghost' icon='verified' iconPosition='left' size='medium'/>
|
|
78
83
|
<PsButton label='Right Icon' layout='ghost' icon='verified' iconPosition='right' size='medium'/>
|
|
79
84
|
<PsButton label='Text Only' layout='ghost' size='medium'/>
|
|
80
85
|
<PsButton label='Disabled' layout='ghost' icon='verified' iconPosition='left' disabled size='medium'/>
|
|
81
86
|
</div>
|
|
82
|
-
<div style="display: grid; grid-template-columns: repeat(
|
|
87
|
+
<div style="display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0.5rem; justify-items: center; align-items: center;" >
|
|
83
88
|
<span style="text-align: center; color: green;">Only-Text Style</span>
|
|
84
89
|
<PsButton label='Left Icon' layout='onlytext' icon='verified' iconPosition='left' size='medium'/>
|
|
85
90
|
<PsButton label='Right Icon' layout='onlytext' icon='verified' iconPosition='right' size='medium'/>
|
|
86
91
|
<PsButton label='Text Only' layout='onlytext' size='medium'/>
|
|
87
92
|
<PsButton label='Disabled' layout='onlytext' disabled icon='verified' iconPosition='left' size='medium'/>
|
|
88
93
|
</div>
|
|
89
|
-
<div style="display: grid; grid-template-columns: repeat(
|
|
94
|
+
<div style="display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0.5rem; justify-items: center; align-items: center;" >
|
|
90
95
|
<span style="text-align: center; color: red;">Caution Button</span>
|
|
91
96
|
<PsButton label='Left Icon' layout='caution' icon='verified' iconPosition='left' size='medium'/>
|
|
92
97
|
<PsButton label='Right Icon' layout='caution' icon='verified' iconPosition='right' size='medium'/>
|
|
@@ -96,21 +101,21 @@ const TemplateDefault = (args, { argTypes }) => ({
|
|
|
96
101
|
</div>
|
|
97
102
|
<p>Size: Small</p>
|
|
98
103
|
<div style="display: flex; flex-direction: column; gap: 10px;">
|
|
99
|
-
<div style="display: grid; grid-template-columns: repeat(
|
|
104
|
+
<div style="display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0.5rem; justify-items: center; align-items: center;" >
|
|
100
105
|
<span style="text-align: center; color: black;">Solid Style</span>
|
|
101
106
|
<PsButton label='Left Icon' layout='solid' icon='verified' iconPosition='left' size='small'/>
|
|
102
107
|
<PsButton label='Right Icon' layout='solid' icon='verified' iconPosition='right' size='small'/>
|
|
103
108
|
<PsButton label='Text Only' layout='solid' size='small'/>
|
|
104
109
|
<PsButton label='Disabled' layout='solid' icon='verified' iconPosition='left' disabled size='small'/>
|
|
105
110
|
</div>
|
|
106
|
-
<div style="display: grid; grid-template-columns: repeat(
|
|
111
|
+
<div style="display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0.5rem; justify-items: center; align-items: center;" >
|
|
107
112
|
<span style="text-align: center; color: green;">Only-Text Style</span>
|
|
108
113
|
<PsButton label='Left Icon' layout='onlytext' icon='verified' iconPosition='left' size='small'/>
|
|
109
114
|
<PsButton label='Right Icon' layout='onlytext' icon='verified' iconPosition='right' size='small'/>
|
|
110
115
|
<PsButton label='Text Only' layout='onlytext' size='small'/>
|
|
111
116
|
<PsButton label='Disabled' layout='onlytext' disabled icon='verified' iconPosition='left' size='small'/>
|
|
112
117
|
</div>
|
|
113
|
-
<div style="display: grid; grid-template-columns: repeat(
|
|
118
|
+
<div style="display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0.5rem; justify-items: center; align-items: center;" >
|
|
114
119
|
<span style="text-align: center; color: red;">Caution Button</span>
|
|
115
120
|
<PsButton label='Left Icon' layout='caution' icon='verified' iconPosition='left' size='small'/>
|
|
116
121
|
<PsButton label='Right Icon' layout='caution' icon='verified' iconPosition='right' size='small'/>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import PsCheckboxSimple from '../components/controls/PsCheckboxSimple.vue'
|
|
2
2
|
// const icons = ['add_circle', 'delete', 'done', 'info', 'send']
|
|
3
3
|
export default {
|
|
4
|
-
title: 'Components/
|
|
4
|
+
title: 'Components/Inputs V2/Checkbox',
|
|
5
5
|
component: PsCheckboxSimple,
|
|
6
6
|
}
|
|
7
7
|
|
|
@@ -23,8 +23,8 @@ const defaultTemplate = (args, {argTypes}) => ({
|
|
|
23
23
|
<div style='display:flex; flex-direction:column; gap:5px;'>
|
|
24
24
|
<p>Active</p>
|
|
25
25
|
<div style='display: flex; flex-direction:column; gap: 10px;'>
|
|
26
|
-
<PsCheckboxSimple v-bind="$props" label='Label 3'
|
|
27
|
-
<PsCheckboxSimple v-bind="$props" label='Label 4'
|
|
26
|
+
<PsCheckboxSimple v-bind="$props" label='Label 3' checked />
|
|
27
|
+
<PsCheckboxSimple v-bind="$props" label='Label 4' checked size='small'/>
|
|
28
28
|
</div>
|
|
29
29
|
</div>
|
|
30
30
|
<div style='display:flex; flex-direction:column; gap:5px;'>
|
|
@@ -37,8 +37,9 @@ const defaultTemplate = (args, {argTypes}) => ({
|
|
|
37
37
|
<div style='display:flex; flex-direction:column; gap:5px;'>
|
|
38
38
|
<p>Disabled</p>
|
|
39
39
|
<div style='display: flex; flex-direction:column; gap: 10px;'>
|
|
40
|
-
<PsCheckboxSimple v-bind="$props" label='
|
|
41
|
-
<PsCheckboxSimple v-bind="$props" label='
|
|
40
|
+
<PsCheckboxSimple v-bind="$props" label='Input via inputAttrs' :inputAttrs="{ id: 'my-input-id' }" disabled/>
|
|
41
|
+
<PsCheckboxSimple v-bind="$props" label='Input via component id' size='small' id="my-component-id" data-test="test" disabled/>
|
|
42
|
+
<PsCheckboxSimple v-bind="$props" label='Input fallback' size='small' disabled/>
|
|
42
43
|
</div>
|
|
43
44
|
</div>
|
|
44
45
|
</div>
|
package/tailwind.config.js
CHANGED
package/vetur/attributes.json
CHANGED
|
@@ -39,6 +39,44 @@
|
|
|
39
39
|
"type": "string",
|
|
40
40
|
"description": "It sets the text key to get the svg icon in Google Fonts. Make sure to get the correct description of your icon on https://fonts.google.com/."
|
|
41
41
|
},
|
|
42
|
+
"ps-badge-with-icon/icon": {
|
|
43
|
+
"type": "string"
|
|
44
|
+
},
|
|
45
|
+
"PsBadgeWithIcon/icon": {
|
|
46
|
+
"type": "string"
|
|
47
|
+
},
|
|
48
|
+
"ps-badge-with-icon/iconClass": {
|
|
49
|
+
"type": "string",
|
|
50
|
+
"description": "It set any further css style that might be needed."
|
|
51
|
+
},
|
|
52
|
+
"PsBadgeWithIcon/iconClass": {
|
|
53
|
+
"type": "string",
|
|
54
|
+
"description": "It set any further css style that might be needed."
|
|
55
|
+
},
|
|
56
|
+
"ps-badge-with-icon/message": {
|
|
57
|
+
"type": "string"
|
|
58
|
+
},
|
|
59
|
+
"PsBadgeWithIcon/message": {
|
|
60
|
+
"type": "string"
|
|
61
|
+
},
|
|
62
|
+
"ps-badge-with-icon/layout": {
|
|
63
|
+
"type": "string",
|
|
64
|
+
"options": [
|
|
65
|
+
"grey",
|
|
66
|
+
"blue",
|
|
67
|
+
"green",
|
|
68
|
+
"yellow"
|
|
69
|
+
]
|
|
70
|
+
},
|
|
71
|
+
"PsBadgeWithIcon/layout": {
|
|
72
|
+
"type": "string",
|
|
73
|
+
"options": [
|
|
74
|
+
"grey",
|
|
75
|
+
"blue",
|
|
76
|
+
"green",
|
|
77
|
+
"yellow"
|
|
78
|
+
]
|
|
79
|
+
},
|
|
42
80
|
"ps-card-infos/title": {
|
|
43
81
|
"type": "string",
|
|
44
82
|
"description": "It sets the title of your card."
|
|
@@ -143,7 +181,12 @@
|
|
|
143
181
|
"success",
|
|
144
182
|
"warning",
|
|
145
183
|
"error",
|
|
146
|
-
"default"
|
|
184
|
+
"default",
|
|
185
|
+
"solid-info",
|
|
186
|
+
"solid-success",
|
|
187
|
+
"solid-warning",
|
|
188
|
+
"solid-error",
|
|
189
|
+
"solid-default"
|
|
147
190
|
]
|
|
148
191
|
},
|
|
149
192
|
"PsMiniTag/layout": {
|
|
@@ -154,7 +197,12 @@
|
|
|
154
197
|
"success",
|
|
155
198
|
"warning",
|
|
156
199
|
"error",
|
|
157
|
-
"default"
|
|
200
|
+
"default",
|
|
201
|
+
"solid-info",
|
|
202
|
+
"solid-success",
|
|
203
|
+
"solid-warning",
|
|
204
|
+
"solid-error",
|
|
205
|
+
"solid-default"
|
|
158
206
|
]
|
|
159
207
|
},
|
|
160
208
|
"ps-mini-tag/message": {
|
|
@@ -362,18 +410,18 @@
|
|
|
362
410
|
"description": "It sets the label of the checkbox input."
|
|
363
411
|
},
|
|
364
412
|
"ps-checkbox/inputValue": {
|
|
365
|
-
"type": "string",
|
|
413
|
+
"type": "string|boolean",
|
|
366
414
|
"description": "It sets the value which should be monitored."
|
|
367
415
|
},
|
|
368
416
|
"PsCheckbox/inputValue": {
|
|
369
|
-
"type": "string",
|
|
417
|
+
"type": "string|boolean",
|
|
370
418
|
"description": "It sets the value which should be monitored."
|
|
371
419
|
},
|
|
372
420
|
"ps-checkbox/value": {
|
|
373
|
-
"type": "array"
|
|
421
|
+
"type": "array|boolean"
|
|
374
422
|
},
|
|
375
423
|
"PsCheckbox/value": {
|
|
376
|
-
"type": "array"
|
|
424
|
+
"type": "array|boolean"
|
|
377
425
|
},
|
|
378
426
|
"ps-checkbox/disabled": {
|
|
379
427
|
"type": "boolean",
|
|
@@ -415,6 +463,60 @@
|
|
|
415
463
|
"mixed"
|
|
416
464
|
]
|
|
417
465
|
},
|
|
466
|
+
"ps-checkbox-simple/label": {
|
|
467
|
+
"type": "string",
|
|
468
|
+
"description": "It sets the label of the checkbox input."
|
|
469
|
+
},
|
|
470
|
+
"PsCheckboxSimple/label": {
|
|
471
|
+
"type": "string",
|
|
472
|
+
"description": "It sets the label of the checkbox input."
|
|
473
|
+
},
|
|
474
|
+
"ps-checkbox-simple/disabled": {
|
|
475
|
+
"type": "boolean",
|
|
476
|
+
"description": "It disables the checkbox input."
|
|
477
|
+
},
|
|
478
|
+
"PsCheckboxSimple/disabled": {
|
|
479
|
+
"type": "boolean",
|
|
480
|
+
"description": "It disables the checkbox input."
|
|
481
|
+
},
|
|
482
|
+
"ps-checkbox-simple/checked": {
|
|
483
|
+
"type": "boolean"
|
|
484
|
+
},
|
|
485
|
+
"PsCheckboxSimple/checked": {
|
|
486
|
+
"type": "boolean"
|
|
487
|
+
},
|
|
488
|
+
"ps-checkbox-simple/size": {
|
|
489
|
+
"type": "string",
|
|
490
|
+
"description": "It set the of the checkbox input. eg: big and small.",
|
|
491
|
+
"options": [
|
|
492
|
+
"big",
|
|
493
|
+
"small"
|
|
494
|
+
]
|
|
495
|
+
},
|
|
496
|
+
"PsCheckboxSimple/size": {
|
|
497
|
+
"type": "string",
|
|
498
|
+
"description": "It set the of the checkbox input. eg: big and small.",
|
|
499
|
+
"options": [
|
|
500
|
+
"big",
|
|
501
|
+
"small"
|
|
502
|
+
]
|
|
503
|
+
},
|
|
504
|
+
"ps-checkbox-simple/layout": {
|
|
505
|
+
"type": "string",
|
|
506
|
+
"description": "It set the layout of the checkbox input. eg: default and mixed.",
|
|
507
|
+
"options": [
|
|
508
|
+
"default",
|
|
509
|
+
"mixed"
|
|
510
|
+
]
|
|
511
|
+
},
|
|
512
|
+
"PsCheckboxSimple/layout": {
|
|
513
|
+
"type": "string",
|
|
514
|
+
"description": "It set the layout of the checkbox input. eg: default and mixed.",
|
|
515
|
+
"options": [
|
|
516
|
+
"default",
|
|
517
|
+
"mixed"
|
|
518
|
+
]
|
|
519
|
+
},
|
|
418
520
|
"ps-draggable/getColumns": {
|
|
419
521
|
"type": "object",
|
|
420
522
|
"description": "It sets the data that will be used."
|
|
@@ -431,6 +533,14 @@
|
|
|
431
533
|
"type": "string",
|
|
432
534
|
"description": "It sets the module which will be used to set getters and actions."
|
|
433
535
|
},
|
|
536
|
+
"ps-draggable/disabled": {
|
|
537
|
+
"type": "boolean",
|
|
538
|
+
"description": "It disables the input. All mouse events are disabled."
|
|
539
|
+
},
|
|
540
|
+
"PsDraggable/disabled": {
|
|
541
|
+
"type": "boolean",
|
|
542
|
+
"description": "It disables the input. All mouse events are disabled."
|
|
543
|
+
},
|
|
434
544
|
"ps-inline-selector/width": {
|
|
435
545
|
"type": "number",
|
|
436
546
|
"description": "It sets the default width of the inline selector."
|
|
@@ -529,6 +639,12 @@
|
|
|
529
639
|
"type": "string",
|
|
530
640
|
"description": "It sets the placeholder of the component."
|
|
531
641
|
},
|
|
642
|
+
"ps-radio-button/inputId": {
|
|
643
|
+
"type": "string"
|
|
644
|
+
},
|
|
645
|
+
"PsRadioButton/inputId": {
|
|
646
|
+
"type": "string"
|
|
647
|
+
},
|
|
532
648
|
"ps-radio-button/label": {
|
|
533
649
|
"type": "string",
|
|
534
650
|
"description": "It sets the label of the radio button."
|
|
@@ -538,18 +654,18 @@
|
|
|
538
654
|
"description": "It sets the label of the radio button."
|
|
539
655
|
},
|
|
540
656
|
"ps-radio-button/inputValue": {
|
|
541
|
-
"type": "string",
|
|
657
|
+
"type": "string|object",
|
|
542
658
|
"description": "It's the value of the checkbox"
|
|
543
659
|
},
|
|
544
660
|
"PsRadioButton/inputValue": {
|
|
545
|
-
"type": "string",
|
|
661
|
+
"type": "string|object",
|
|
546
662
|
"description": "It's the value of the checkbox"
|
|
547
663
|
},
|
|
548
664
|
"ps-radio-button/value": {
|
|
549
|
-
"type": "string"
|
|
665
|
+
"type": "string|object"
|
|
550
666
|
},
|
|
551
667
|
"PsRadioButton/value": {
|
|
552
|
-
"type": "string"
|
|
668
|
+
"type": "string|object"
|
|
553
669
|
},
|
|
554
670
|
"ps-radio-button/disabled": {
|
|
555
671
|
"type": "boolean",
|
|
@@ -639,6 +755,14 @@
|
|
|
639
755
|
"type": "boolean",
|
|
640
756
|
"description": "It sets the value of the switch button."
|
|
641
757
|
},
|
|
758
|
+
"ps-switch/disabled": {
|
|
759
|
+
"type": "boolean",
|
|
760
|
+
"description": "It sets disabling mode."
|
|
761
|
+
},
|
|
762
|
+
"PsSwitch/disabled": {
|
|
763
|
+
"type": "boolean",
|
|
764
|
+
"description": "It sets disabling mode."
|
|
765
|
+
},
|
|
642
766
|
"ps-switch/size": {
|
|
643
767
|
"type": "string",
|
|
644
768
|
"description": "It sets the size of the switch button. eg: small and big.",
|
|
@@ -885,61 +1009,61 @@
|
|
|
885
1009
|
"type": "boolean",
|
|
886
1010
|
"description": "It sets a active css class based on a boolean property."
|
|
887
1011
|
},
|
|
888
|
-
"ps-select
|
|
1012
|
+
"ps-input-select/items": {
|
|
889
1013
|
"type": "",
|
|
890
1014
|
"description": "It sets the items which will be rendered within the select input."
|
|
891
1015
|
},
|
|
892
|
-
"
|
|
1016
|
+
"PsInputSelect/items": {
|
|
893
1017
|
"type": "",
|
|
894
1018
|
"description": "It sets the items which will be rendered within the select input."
|
|
895
1019
|
},
|
|
896
|
-
"ps-select
|
|
1020
|
+
"ps-input-select/value": {
|
|
897
1021
|
"type": "string"
|
|
898
1022
|
},
|
|
899
|
-
"
|
|
1023
|
+
"PsInputSelect/value": {
|
|
900
1024
|
"type": "string"
|
|
901
1025
|
},
|
|
902
|
-
"ps-select
|
|
1026
|
+
"ps-input-select/label": {
|
|
903
1027
|
"type": "string",
|
|
904
1028
|
"description": "It sets the value label of the select input if needed."
|
|
905
1029
|
},
|
|
906
|
-
"
|
|
1030
|
+
"PsInputSelect/label": {
|
|
907
1031
|
"type": "string",
|
|
908
1032
|
"description": "It sets the value label of the select input if needed."
|
|
909
1033
|
},
|
|
910
|
-
"ps-select
|
|
1034
|
+
"ps-input-select/optionalLabel": {
|
|
911
1035
|
"type": "string",
|
|
912
1036
|
"description": "It sets a o optional label below the select input."
|
|
913
1037
|
},
|
|
914
|
-
"
|
|
1038
|
+
"PsInputSelect/optionalLabel": {
|
|
915
1039
|
"type": "string",
|
|
916
1040
|
"description": "It sets a o optional label below the select input."
|
|
917
1041
|
},
|
|
918
|
-
"ps-select
|
|
1042
|
+
"ps-input-select/keyLabel": {
|
|
919
1043
|
"type": "string",
|
|
920
1044
|
"description": "It sets the key label of your items if needed."
|
|
921
1045
|
},
|
|
922
|
-
"
|
|
1046
|
+
"PsInputSelect/keyLabel": {
|
|
923
1047
|
"type": "string",
|
|
924
1048
|
"description": "It sets the key label of your items if needed."
|
|
925
1049
|
},
|
|
926
|
-
"ps-select
|
|
1050
|
+
"ps-input-select/keyValue": {
|
|
927
1051
|
"type": "string",
|
|
928
1052
|
"description": "It sets the key value of yout items if needed."
|
|
929
1053
|
},
|
|
930
|
-
"
|
|
1054
|
+
"PsInputSelect/keyValue": {
|
|
931
1055
|
"type": "string",
|
|
932
1056
|
"description": "It sets the key value of yout items if needed."
|
|
933
1057
|
},
|
|
934
|
-
"ps-select
|
|
1058
|
+
"ps-input-select/disabled": {
|
|
935
1059
|
"type": "boolean",
|
|
936
1060
|
"description": "It disables the select input. All mouse events are disabled."
|
|
937
1061
|
},
|
|
938
|
-
"
|
|
1062
|
+
"PsInputSelect/disabled": {
|
|
939
1063
|
"type": "boolean",
|
|
940
1064
|
"description": "It disables the select input. All mouse events are disabled."
|
|
941
1065
|
},
|
|
942
|
-
"ps-select
|
|
1066
|
+
"ps-input-select/layout": {
|
|
943
1067
|
"type": "string",
|
|
944
1068
|
"description": "It sets the layout of the select input. eg: default and mini.",
|
|
945
1069
|
"options": [
|
|
@@ -947,7 +1071,7 @@
|
|
|
947
1071
|
"mini"
|
|
948
1072
|
]
|
|
949
1073
|
},
|
|
950
|
-
"
|
|
1074
|
+
"PsInputSelect/layout": {
|
|
951
1075
|
"type": "string",
|
|
952
1076
|
"description": "It sets the layout of the select input. eg: default and mini.",
|
|
953
1077
|
"options": [
|
|
@@ -1325,22 +1449,6 @@
|
|
|
1325
1449
|
"type": "number|string",
|
|
1326
1450
|
"description": "It sets the size of the icon."
|
|
1327
1451
|
},
|
|
1328
|
-
"app-icon/width": {
|
|
1329
|
-
"type": "number|string",
|
|
1330
|
-
"description": "It sets the width of the icon."
|
|
1331
|
-
},
|
|
1332
|
-
"AppIcon/width": {
|
|
1333
|
-
"type": "number|string",
|
|
1334
|
-
"description": "It sets the width of the icon."
|
|
1335
|
-
},
|
|
1336
|
-
"app-icon/height": {
|
|
1337
|
-
"type": "number|string",
|
|
1338
|
-
"description": "It sets the height of the icon."
|
|
1339
|
-
},
|
|
1340
|
-
"AppIcon/height": {
|
|
1341
|
-
"type": "number|string",
|
|
1342
|
-
"description": "It sets the height of the icon."
|
|
1343
|
-
},
|
|
1344
1452
|
"app-icon/stroke": {
|
|
1345
1453
|
"type": "string",
|
|
1346
1454
|
"description": "It sets fill property of the icon."
|
package/vetur/tags.json
CHANGED
|
@@ -27,6 +27,24 @@
|
|
|
27
27
|
],
|
|
28
28
|
"description": ""
|
|
29
29
|
},
|
|
30
|
+
"ps-badge-with-icon": {
|
|
31
|
+
"attributes": [
|
|
32
|
+
"icon",
|
|
33
|
+
"iconClass",
|
|
34
|
+
"message",
|
|
35
|
+
"layout"
|
|
36
|
+
],
|
|
37
|
+
"description": ""
|
|
38
|
+
},
|
|
39
|
+
"PsBadgeWithIcon": {
|
|
40
|
+
"attributes": [
|
|
41
|
+
"icon",
|
|
42
|
+
"iconClass",
|
|
43
|
+
"message",
|
|
44
|
+
"layout"
|
|
45
|
+
],
|
|
46
|
+
"description": ""
|
|
47
|
+
},
|
|
30
48
|
"ps-card-infos": {
|
|
31
49
|
"attributes": [
|
|
32
50
|
"title",
|
|
@@ -199,17 +217,39 @@
|
|
|
199
217
|
],
|
|
200
218
|
"description": ""
|
|
201
219
|
},
|
|
220
|
+
"ps-checkbox-simple": {
|
|
221
|
+
"attributes": [
|
|
222
|
+
"label",
|
|
223
|
+
"disabled",
|
|
224
|
+
"checked",
|
|
225
|
+
"size",
|
|
226
|
+
"layout"
|
|
227
|
+
],
|
|
228
|
+
"description": ""
|
|
229
|
+
},
|
|
230
|
+
"PsCheckboxSimple": {
|
|
231
|
+
"attributes": [
|
|
232
|
+
"label",
|
|
233
|
+
"disabled",
|
|
234
|
+
"checked",
|
|
235
|
+
"size",
|
|
236
|
+
"layout"
|
|
237
|
+
],
|
|
238
|
+
"description": ""
|
|
239
|
+
},
|
|
202
240
|
"ps-draggable": {
|
|
203
241
|
"attributes": [
|
|
204
242
|
"getColumns",
|
|
205
|
-
"module"
|
|
243
|
+
"module",
|
|
244
|
+
"disabled"
|
|
206
245
|
],
|
|
207
246
|
"description": ""
|
|
208
247
|
},
|
|
209
248
|
"PsDraggable": {
|
|
210
249
|
"attributes": [
|
|
211
250
|
"getColumns",
|
|
212
|
-
"module"
|
|
251
|
+
"module",
|
|
252
|
+
"disabled"
|
|
213
253
|
],
|
|
214
254
|
"description": ""
|
|
215
255
|
},
|
|
@@ -251,6 +291,7 @@
|
|
|
251
291
|
},
|
|
252
292
|
"ps-radio-button": {
|
|
253
293
|
"attributes": [
|
|
294
|
+
"inputId",
|
|
254
295
|
"label",
|
|
255
296
|
"inputValue",
|
|
256
297
|
"value",
|
|
@@ -261,6 +302,7 @@
|
|
|
261
302
|
},
|
|
262
303
|
"PsRadioButton": {
|
|
263
304
|
"attributes": [
|
|
305
|
+
"inputId",
|
|
264
306
|
"label",
|
|
265
307
|
"inputValue",
|
|
266
308
|
"value",
|
|
@@ -299,6 +341,7 @@
|
|
|
299
341
|
"attributes": [
|
|
300
342
|
"label",
|
|
301
343
|
"value",
|
|
344
|
+
"disabled",
|
|
302
345
|
"size"
|
|
303
346
|
],
|
|
304
347
|
"description": ""
|
|
@@ -307,6 +350,7 @@
|
|
|
307
350
|
"attributes": [
|
|
308
351
|
"label",
|
|
309
352
|
"value",
|
|
353
|
+
"disabled",
|
|
310
354
|
"size"
|
|
311
355
|
],
|
|
312
356
|
"description": ""
|
|
@@ -427,7 +471,7 @@
|
|
|
427
471
|
],
|
|
428
472
|
"description": ""
|
|
429
473
|
},
|
|
430
|
-
"ps-select
|
|
474
|
+
"ps-input-select": {
|
|
431
475
|
"attributes": [
|
|
432
476
|
"items",
|
|
433
477
|
"value",
|
|
@@ -440,7 +484,7 @@
|
|
|
440
484
|
],
|
|
441
485
|
"description": ""
|
|
442
486
|
},
|
|
443
|
-
"
|
|
487
|
+
"PsInputSelect": {
|
|
444
488
|
"attributes": [
|
|
445
489
|
"items",
|
|
446
490
|
"value",
|
|
@@ -517,6 +561,14 @@
|
|
|
517
561
|
],
|
|
518
562
|
"description": ""
|
|
519
563
|
},
|
|
564
|
+
"ps-scroll-bar": {
|
|
565
|
+
"attributes": [],
|
|
566
|
+
"description": ""
|
|
567
|
+
},
|
|
568
|
+
"PsScrollBar": {
|
|
569
|
+
"attributes": [],
|
|
570
|
+
"description": ""
|
|
571
|
+
},
|
|
520
572
|
"ps-tab-header": {
|
|
521
573
|
"attributes": [
|
|
522
574
|
"layout",
|
|
@@ -605,8 +657,6 @@
|
|
|
605
657
|
"type",
|
|
606
658
|
"iconClasses",
|
|
607
659
|
"size",
|
|
608
|
-
"width",
|
|
609
|
-
"height",
|
|
610
660
|
"stroke",
|
|
611
661
|
"color",
|
|
612
662
|
"loaderIcon",
|
|
@@ -620,8 +670,6 @@
|
|
|
620
670
|
"type",
|
|
621
671
|
"iconClasses",
|
|
622
672
|
"size",
|
|
623
|
-
"width",
|
|
624
|
-
"height",
|
|
625
673
|
"stroke",
|
|
626
674
|
"color",
|
|
627
675
|
"loaderIcon",
|