@bagelink/vue 0.0.276 → 0.0.282
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/components/ComboBox.vue.d.ts +2 -0
- package/dist/components/ComboBox.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/CheckInput.vue.d.ts +9 -4
- package/dist/components/form/inputs/CheckInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
- package/dist/index.cjs +25 -17
- package/dist/index.mjs +25 -17
- package/dist/plugins/modal.d.ts +1 -1
- package/dist/plugins/modal.d.ts.map +1 -1
- package/dist/style.css +861 -641
- package/package.json +1 -1
- package/src/components/ComboBox.vue +15 -10
- package/src/components/form/inputs/CheckInput.vue +55 -53
- package/src/components/form/inputs/SelectInput.vue +272 -284
- package/src/components/formkit/Toggle.vue +85 -100
- package/src/plugins/modal.ts +23 -23
- package/src/styles/buttons.css +13 -3
- package/src/styles/inputs.css +100 -109
- package/src/styles/layout.css +449 -191
- package/src/styles/text.css +80 -59
package/src/styles/text.css
CHANGED
|
@@ -1,129 +1,150 @@
|
|
|
1
|
-
/* h1,
|
|
2
|
-
h2,
|
|
3
|
-
h3,
|
|
4
|
-
h4,
|
|
5
|
-
h5,
|
|
6
|
-
h6 {
|
|
7
|
-
width: max-content;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
h1 {}
|
|
11
|
-
|
|
12
|
-
h2 {}
|
|
13
|
-
|
|
14
|
-
h3 {}
|
|
15
|
-
|
|
16
|
-
h4 {}
|
|
17
|
-
|
|
18
|
-
h5 {}
|
|
19
|
-
|
|
20
|
-
h6 {} */
|
|
21
|
-
|
|
22
1
|
.txt-center {
|
|
23
|
-
|
|
2
|
+
text-align: center;
|
|
24
3
|
}
|
|
25
4
|
|
|
26
5
|
.txt-start {
|
|
27
|
-
|
|
6
|
+
text-align: start;
|
|
28
7
|
}
|
|
29
8
|
|
|
30
9
|
.txt-end {
|
|
31
|
-
|
|
10
|
+
text-align: end;
|
|
32
11
|
}
|
|
33
12
|
|
|
34
13
|
.smalltxt {
|
|
35
|
-
|
|
14
|
+
font-size: 12px;
|
|
36
15
|
}
|
|
37
16
|
|
|
38
17
|
.txt20 {
|
|
39
|
-
|
|
18
|
+
font-size: 20px;
|
|
40
19
|
}
|
|
41
20
|
|
|
42
21
|
.txt18 {
|
|
43
|
-
|
|
22
|
+
font-size: 18px;
|
|
44
23
|
}
|
|
45
24
|
|
|
46
25
|
.txt16 {
|
|
47
|
-
|
|
26
|
+
font-size: 16px;
|
|
48
27
|
}
|
|
49
28
|
|
|
50
29
|
.txt14 {
|
|
51
|
-
|
|
30
|
+
font-size: 14px;
|
|
52
31
|
}
|
|
53
32
|
|
|
54
33
|
.txt12 {
|
|
55
|
-
|
|
34
|
+
font-size: 12px;
|
|
56
35
|
}
|
|
57
36
|
|
|
58
37
|
.txt10 {
|
|
59
|
-
|
|
38
|
+
font-size: 10px;
|
|
60
39
|
}
|
|
61
40
|
|
|
62
41
|
.txt9 {
|
|
63
|
-
|
|
42
|
+
font-size: 9px;
|
|
64
43
|
}
|
|
65
44
|
|
|
66
45
|
.no-margin {
|
|
67
|
-
|
|
46
|
+
margin: 0;
|
|
68
47
|
}
|
|
69
48
|
|
|
70
49
|
.txtgray {
|
|
71
|
-
|
|
50
|
+
color: var(--bgl-gray);
|
|
72
51
|
}
|
|
73
52
|
|
|
74
53
|
.txtblue {
|
|
75
|
-
|
|
54
|
+
color: var(--bgl-primary);
|
|
76
55
|
}
|
|
77
56
|
|
|
78
57
|
.txtblack {
|
|
79
|
-
|
|
58
|
+
color: var(--bgl-black);
|
|
80
59
|
}
|
|
81
60
|
|
|
82
61
|
.txtred {
|
|
83
|
-
|
|
62
|
+
color: var(--bgl-red);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.txtwhite {
|
|
66
|
+
color: var(--bgl-white);
|
|
84
67
|
}
|
|
85
68
|
|
|
86
69
|
.font-light {
|
|
87
|
-
|
|
70
|
+
font-weight: 100;
|
|
88
71
|
}
|
|
89
72
|
|
|
90
73
|
.bold {
|
|
91
|
-
|
|
74
|
+
font-weight: 700;
|
|
92
75
|
}
|
|
93
76
|
|
|
94
77
|
.line-height-1 {
|
|
95
|
-
|
|
78
|
+
line-height: 1;
|
|
96
79
|
}
|
|
97
80
|
|
|
98
81
|
.ellipsis {
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
82
|
+
overflow: hidden;
|
|
83
|
+
display: block;
|
|
84
|
+
width: 100%;
|
|
85
|
+
text-overflow: ellipsis;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.ellipsis-1,
|
|
89
|
+
.ellipsis-2,
|
|
90
|
+
.ellipsis-3,
|
|
91
|
+
.ellipsis-4,
|
|
92
|
+
.ellipsis-5,
|
|
93
|
+
.ellipsis-6 {
|
|
94
|
+
display: block;
|
|
95
|
+
display: -webkit-box;
|
|
96
|
+
max-width: 100%;
|
|
97
|
+
-webkit-box-orient: vertical;
|
|
98
|
+
overflow: hidden;
|
|
99
|
+
text-overflow: ellipsis;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.ellipsis-1 {
|
|
103
|
+
-webkit-line-clamp: 1;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.ellipsis-2 {
|
|
107
|
+
-webkit-line-clamp: 2;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.ellipsis-3 {
|
|
111
|
+
-webkit-line-clamp: 3;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.ellipsis-4 {
|
|
115
|
+
-webkit-line-clamp: 4;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.ellipsis-5 {
|
|
119
|
+
-webkit-line-clamp: 5;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.ellipsis-6 {
|
|
123
|
+
-webkit-line-clamp: 6;
|
|
103
124
|
}
|
|
104
125
|
|
|
105
126
|
.pointer {
|
|
106
|
-
|
|
127
|
+
cursor: pointer;
|
|
107
128
|
}
|
|
108
129
|
|
|
109
130
|
.decoration-none {
|
|
110
|
-
|
|
131
|
+
text-decoration: none;
|
|
111
132
|
}
|
|
112
133
|
|
|
113
134
|
.bgl_icon-font {
|
|
114
|
-
|
|
135
|
+
font-family: "Material Symbols Outlined", serif;
|
|
115
136
|
}
|
|
116
137
|
|
|
117
138
|
@media screen and (max-width: 910px) {
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
}
|
|
139
|
+
.txt20 {
|
|
140
|
+
font-size: 18px;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.txt16 {
|
|
144
|
+
font-size: 14px;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.txt14 {
|
|
148
|
+
font-size: 12px;
|
|
149
|
+
}
|
|
150
|
+
}
|