@bagelink/vue 1.6.2 → 1.6.7
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/Swiper.vue.d.ts +85 -0
- package/dist/components/Swiper.vue.d.ts.map +1 -0
- package/dist/components/form/inputs/CodeEditor/Index.vue.d.ts +3 -3
- package/dist/components/form/inputs/CodeEditor/Index.vue.d.ts.map +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/index.cjs +46 -20
- package/dist/index.mjs +8840 -4142
- package/dist/style.css +1 -1
- package/package.json +2 -1
- package/src/components/Swiper.vue +507 -0
- package/src/components/form/inputs/CodeEditor/Index.vue +49 -9
- package/src/components/index.ts +1 -0
- package/src/styles/layout.css +57 -1
- package/src/styles/mobilLayout.css +59 -1
- package/src/styles/text.css +45 -0
|
@@ -91,10 +91,68 @@
|
|
|
91
91
|
border-radius: 100%;
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
-
|
|
94
|
+
|
|
95
|
+
.m_aspect-ratio-1,
|
|
96
|
+
.m_ratio-1 {
|
|
95
97
|
aspect-ratio: 1;
|
|
96
98
|
}
|
|
97
99
|
|
|
100
|
+
.m_aspect-ratio-4-3,
|
|
101
|
+
.m_ratio-4-3 {
|
|
102
|
+
aspect-ratio: 4 / 3;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.m_aspect-ratio-3-4,
|
|
106
|
+
.m_ratio-3-4 {
|
|
107
|
+
aspect-ratio: 3 / 4;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.m_aspect-ratio-16-9,
|
|
111
|
+
.m_ratio-16-9 {
|
|
112
|
+
aspect-ratio: 16 / 9;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.m_aspect-ratio-9-16,
|
|
116
|
+
.m_ratio-9-16 {
|
|
117
|
+
aspect-ratio: 9 / 16;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.m_aspect-ratio-3-2,
|
|
121
|
+
.m_ratio-3-2 {
|
|
122
|
+
aspect-ratio: 3 / 2;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.m_aspect-ratio-2-3,
|
|
126
|
+
.m_ratio-2-3 {
|
|
127
|
+
aspect-ratio: 2 / 3;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.m_aspect-ratio-5-4,
|
|
131
|
+
.m_ratio-5-4 {
|
|
132
|
+
aspect-ratio: 5 / 4;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.m_aspect-ratio-4-5,
|
|
136
|
+
.m_ratio-4-5 {
|
|
137
|
+
aspect-ratio: 4 / 5;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.m_aspect-ratio-2-1,
|
|
141
|
+
.m_ratio-2-1 {
|
|
142
|
+
aspect-ratio: 2 / 1;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.m_aspect-ratio-1-2,
|
|
146
|
+
.m_ratio-1-2 {
|
|
147
|
+
aspect-ratio: 1 / 2;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.m_aspect-ratio-21-9,
|
|
151
|
+
.m_ratio-21-9 {
|
|
152
|
+
aspect-ratio: 21 / 9;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
|
|
98
156
|
.m_vertical-align-middle,
|
|
99
157
|
.m_vertical-middle {
|
|
100
158
|
vertical-align: middle;
|
package/src/styles/text.css
CHANGED
|
@@ -143,21 +143,41 @@
|
|
|
143
143
|
font-size: 150px;
|
|
144
144
|
}
|
|
145
145
|
|
|
146
|
+
.txt19,
|
|
147
|
+
.txt-19 {
|
|
148
|
+
font-size: 19px;
|
|
149
|
+
}
|
|
150
|
+
|
|
146
151
|
.txt18,
|
|
147
152
|
.txt-18 {
|
|
148
153
|
font-size: 18px;
|
|
149
154
|
}
|
|
150
155
|
|
|
156
|
+
.txt17,
|
|
157
|
+
.txt-17 {
|
|
158
|
+
font-size: 17px;
|
|
159
|
+
}
|
|
160
|
+
|
|
151
161
|
.txt16,
|
|
152
162
|
.txt-16 {
|
|
153
163
|
font-size: 16px;
|
|
154
164
|
}
|
|
155
165
|
|
|
166
|
+
.txt15,
|
|
167
|
+
.txt-15 {
|
|
168
|
+
font-size: 15px;
|
|
169
|
+
}
|
|
170
|
+
|
|
156
171
|
.txt14,
|
|
157
172
|
.txt-14 {
|
|
158
173
|
font-size: 14px;
|
|
159
174
|
}
|
|
160
175
|
|
|
176
|
+
.txt13,
|
|
177
|
+
.txt-13 {
|
|
178
|
+
font-size: 13px;
|
|
179
|
+
}
|
|
180
|
+
|
|
161
181
|
.txt12,
|
|
162
182
|
.txt-12 {
|
|
163
183
|
font-size: 12px;
|
|
@@ -1577,26 +1597,51 @@
|
|
|
1577
1597
|
font-size: 150px;
|
|
1578
1598
|
}
|
|
1579
1599
|
|
|
1600
|
+
.m_txt19,
|
|
1601
|
+
.m_txt-19 {
|
|
1602
|
+
font-size: 19px;
|
|
1603
|
+
}
|
|
1604
|
+
|
|
1580
1605
|
.m_txt18,
|
|
1581
1606
|
.m_txt-18 {
|
|
1582
1607
|
font-size: 18px;
|
|
1583
1608
|
}
|
|
1584
1609
|
|
|
1610
|
+
.m_txt17,
|
|
1611
|
+
.m_txt-17 {
|
|
1612
|
+
font-size: 17px;
|
|
1613
|
+
}
|
|
1614
|
+
|
|
1585
1615
|
.m_txt16,
|
|
1586
1616
|
.m_txt-16 {
|
|
1587
1617
|
font-size: 16px;
|
|
1588
1618
|
}
|
|
1589
1619
|
|
|
1620
|
+
.m_txt15,
|
|
1621
|
+
.m_txt-15 {
|
|
1622
|
+
font-size: 15px;
|
|
1623
|
+
}
|
|
1624
|
+
|
|
1590
1625
|
.m_txt14,
|
|
1591
1626
|
.m_txt-14 {
|
|
1592
1627
|
font-size: 14px;
|
|
1593
1628
|
}
|
|
1594
1629
|
|
|
1630
|
+
.m_txt13,
|
|
1631
|
+
.m_txt-13 {
|
|
1632
|
+
font-size: 13px;
|
|
1633
|
+
}
|
|
1634
|
+
|
|
1595
1635
|
.m_txt12,
|
|
1596
1636
|
.m_txt-12 {
|
|
1597
1637
|
font-size: 12px;
|
|
1598
1638
|
}
|
|
1599
1639
|
|
|
1640
|
+
.m_txt11,
|
|
1641
|
+
.m_txt-11 {
|
|
1642
|
+
font-size: 11px;
|
|
1643
|
+
}
|
|
1644
|
+
|
|
1600
1645
|
.m_txt10,
|
|
1601
1646
|
.m_txt-10 {
|
|
1602
1647
|
font-size: 10px;
|