@bagelink/vue 1.6.4 → 1.6.9

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.
@@ -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;
package/vite.config.ts CHANGED
@@ -28,7 +28,7 @@ export default defineConfig(() => ({
28
28
  lib: {
29
29
  entry: resolve(indexDir, 'index.ts'),
30
30
  formats: ['es', 'cjs'],
31
- fileName: (module, entry) => `${entry}.${ 'es' === module ? 'mjs' : module}`,
31
+ fileName: (module, entry) => `${entry}.${module === 'es' ? 'mjs' : module}`,
32
32
  cssFileName: 'style',
33
33
  },
34
34
  rollupOptions: {