@bagelink/vue 1.0.33 → 1.0.38
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/DataPreview.vue.d.ts.map +1 -1
- package/dist/components/DataTable/DataTable.vue.d.ts +6 -1
- package/dist/components/DataTable/DataTable.vue.d.ts.map +1 -1
- package/dist/components/DataTable/useTableData.d.ts +7 -1
- package/dist/components/DataTable/useTableData.d.ts.map +1 -1
- package/dist/components/DataTable/useTableSelection.d.ts +4 -1
- package/dist/components/DataTable/useTableSelection.d.ts.map +1 -1
- package/dist/components/DataTable/useTableVirtualization.d.ts.map +1 -1
- package/dist/components/form/BagelForm.vue.d.ts.map +1 -1
- package/dist/components/form/FieldArray.vue.d.ts.map +1 -1
- package/dist/index.cjs +183 -92
- package/dist/index.mjs +183 -92
- package/dist/style.css +475 -56
- package/package.json +1 -1
- package/src/components/DataPreview.vue +30 -4
- package/src/components/DataTable/DataTable.vue +9 -7
- package/src/components/DataTable/useTableData.ts +75 -9
- package/src/components/DataTable/useTableSelection.ts +17 -3
- package/src/components/DataTable/useTableVirtualization.ts +11 -2
- package/src/components/form/FieldArray.vue +44 -5
- package/src/components/layout/BottomMenu.vue +1 -1
- package/src/styles/layout.css +240 -0
- package/src/styles/mobilLayout.css +240 -0
|
@@ -2044,6 +2044,36 @@
|
|
|
2044
2044
|
min-height: 200px;
|
|
2045
2045
|
}
|
|
2046
2046
|
|
|
2047
|
+
.m_h-250,
|
|
2048
|
+
.m_h250p,
|
|
2049
|
+
.m_h-250p {
|
|
2050
|
+
height: 250%;
|
|
2051
|
+
}
|
|
2052
|
+
|
|
2053
|
+
.m_vh-250,
|
|
2054
|
+
.m_h-250vh,
|
|
2055
|
+
.m_h250vh {
|
|
2056
|
+
height: 250vh;
|
|
2057
|
+
}
|
|
2058
|
+
|
|
2059
|
+
.m_h-250px,
|
|
2060
|
+
.m_h250px {
|
|
2061
|
+
height: 250px;
|
|
2062
|
+
}
|
|
2063
|
+
|
|
2064
|
+
.m_hm-250px,
|
|
2065
|
+
.m_max-h-250px,
|
|
2066
|
+
.m_h-max-250px,
|
|
2067
|
+
.m_max-h250px {
|
|
2068
|
+
max-height: 250px;
|
|
2069
|
+
}
|
|
2070
|
+
|
|
2071
|
+
.m_min-h-250px,
|
|
2072
|
+
.m_h-min-250px,
|
|
2073
|
+
.m_min-h250px {
|
|
2074
|
+
min-height: 250px;
|
|
2075
|
+
}
|
|
2076
|
+
|
|
2047
2077
|
.m_h-300,
|
|
2048
2078
|
.m_h300p,
|
|
2049
2079
|
.m_h-300p {
|
|
@@ -2074,6 +2104,36 @@
|
|
|
2074
2104
|
min-height: 300px;
|
|
2075
2105
|
}
|
|
2076
2106
|
|
|
2107
|
+
.m_h-350,
|
|
2108
|
+
.m_h350p,
|
|
2109
|
+
.m_h-350p {
|
|
2110
|
+
height: 350%;
|
|
2111
|
+
}
|
|
2112
|
+
|
|
2113
|
+
.m_vh-350,
|
|
2114
|
+
.m_h-350vh,
|
|
2115
|
+
.m_h350vh {
|
|
2116
|
+
height: 350vh;
|
|
2117
|
+
}
|
|
2118
|
+
|
|
2119
|
+
.m_h-350px,
|
|
2120
|
+
.m_h350px {
|
|
2121
|
+
height: 350px;
|
|
2122
|
+
}
|
|
2123
|
+
|
|
2124
|
+
.m_hm-350px,
|
|
2125
|
+
.m_max-h-350px,
|
|
2126
|
+
.m_h-max-350px,
|
|
2127
|
+
.m_max-h350px {
|
|
2128
|
+
max-height: 350px;
|
|
2129
|
+
}
|
|
2130
|
+
|
|
2131
|
+
.m_min-h-350px,
|
|
2132
|
+
.m_h-min-350px,
|
|
2133
|
+
.m_min-h350px {
|
|
2134
|
+
min-height: 350px;
|
|
2135
|
+
}
|
|
2136
|
+
|
|
2077
2137
|
.m_h-400,
|
|
2078
2138
|
.m_h400p,
|
|
2079
2139
|
.m_h-400p {
|
|
@@ -2104,6 +2164,36 @@
|
|
|
2104
2164
|
min-height: 400px;
|
|
2105
2165
|
}
|
|
2106
2166
|
|
|
2167
|
+
.m_h-450,
|
|
2168
|
+
.m_h450p,
|
|
2169
|
+
.m_h-450p {
|
|
2170
|
+
height: 450%;
|
|
2171
|
+
}
|
|
2172
|
+
|
|
2173
|
+
.m_vh-450,
|
|
2174
|
+
.m_h-450vh,
|
|
2175
|
+
.m_h450vh {
|
|
2176
|
+
height: 450vh;
|
|
2177
|
+
}
|
|
2178
|
+
|
|
2179
|
+
.m_h-450px,
|
|
2180
|
+
.m_h450px {
|
|
2181
|
+
height: 450px;
|
|
2182
|
+
}
|
|
2183
|
+
|
|
2184
|
+
.m_hm-450px,
|
|
2185
|
+
.m_max-h-450px,
|
|
2186
|
+
.m_h-max-450px,
|
|
2187
|
+
.m_max-h450px {
|
|
2188
|
+
max-height: 450px;
|
|
2189
|
+
}
|
|
2190
|
+
|
|
2191
|
+
.m_min-h-450px,
|
|
2192
|
+
.m_h-min-450px,
|
|
2193
|
+
.m_min-h450px {
|
|
2194
|
+
min-height: 450px;
|
|
2195
|
+
}
|
|
2196
|
+
|
|
2107
2197
|
.m_h-500,
|
|
2108
2198
|
.m_h500p,
|
|
2109
2199
|
.m_h-500p {
|
|
@@ -2134,6 +2224,36 @@
|
|
|
2134
2224
|
min-height: 500px;
|
|
2135
2225
|
}
|
|
2136
2226
|
|
|
2227
|
+
.m_h-550,
|
|
2228
|
+
.m_h550p,
|
|
2229
|
+
.m_h-550p {
|
|
2230
|
+
height: 550%;
|
|
2231
|
+
}
|
|
2232
|
+
|
|
2233
|
+
.m_vh-550,
|
|
2234
|
+
.m_h-550vh,
|
|
2235
|
+
.m_h550vh {
|
|
2236
|
+
height: 550vh;
|
|
2237
|
+
}
|
|
2238
|
+
|
|
2239
|
+
.m_h-550px,
|
|
2240
|
+
.m_h550px {
|
|
2241
|
+
height: 550px;
|
|
2242
|
+
}
|
|
2243
|
+
|
|
2244
|
+
.m_hm-550px,
|
|
2245
|
+
.m_max-h-550px,
|
|
2246
|
+
.m_h-max-550px,
|
|
2247
|
+
.m_max-h550px {
|
|
2248
|
+
max-height: 550px;
|
|
2249
|
+
}
|
|
2250
|
+
|
|
2251
|
+
.m_min-h-550px,
|
|
2252
|
+
.m_h-min-550px,
|
|
2253
|
+
.m_min-h550px {
|
|
2254
|
+
min-height: 550px;
|
|
2255
|
+
}
|
|
2256
|
+
|
|
2137
2257
|
.m_h-600,
|
|
2138
2258
|
.m_h600p,
|
|
2139
2259
|
.m_h-600p {
|
|
@@ -2164,6 +2284,36 @@
|
|
|
2164
2284
|
min-height: 600px;
|
|
2165
2285
|
}
|
|
2166
2286
|
|
|
2287
|
+
.m_h-650,
|
|
2288
|
+
.m_h650p,
|
|
2289
|
+
.m_h-650p {
|
|
2290
|
+
height: 650%;
|
|
2291
|
+
}
|
|
2292
|
+
|
|
2293
|
+
.m_vh-650,
|
|
2294
|
+
.m_h-650vh,
|
|
2295
|
+
.m_h650vh {
|
|
2296
|
+
height: 650vh;
|
|
2297
|
+
}
|
|
2298
|
+
|
|
2299
|
+
.m_h-650px,
|
|
2300
|
+
.m_h650px {
|
|
2301
|
+
height: 650px;
|
|
2302
|
+
}
|
|
2303
|
+
|
|
2304
|
+
.m_hm-650px,
|
|
2305
|
+
.m_max-h-650px,
|
|
2306
|
+
.m_h-max-650px,
|
|
2307
|
+
.m_max-h650px {
|
|
2308
|
+
max-height: 650px;
|
|
2309
|
+
}
|
|
2310
|
+
|
|
2311
|
+
.m_min-h-650px,
|
|
2312
|
+
.m_h-min-650px,
|
|
2313
|
+
.m_min-h650px {
|
|
2314
|
+
min-height: 650px;
|
|
2315
|
+
}
|
|
2316
|
+
|
|
2167
2317
|
.m_h-700,
|
|
2168
2318
|
.m_h700p,
|
|
2169
2319
|
.m_h-700p {
|
|
@@ -2194,6 +2344,36 @@
|
|
|
2194
2344
|
min-height: 700px;
|
|
2195
2345
|
}
|
|
2196
2346
|
|
|
2347
|
+
.m_h-750,
|
|
2348
|
+
.m_h750p,
|
|
2349
|
+
.m_h-750p {
|
|
2350
|
+
height: 750%;
|
|
2351
|
+
}
|
|
2352
|
+
|
|
2353
|
+
.m_vh-750,
|
|
2354
|
+
.m_h-750vh,
|
|
2355
|
+
.m_h750vh {
|
|
2356
|
+
height: 750vh;
|
|
2357
|
+
}
|
|
2358
|
+
|
|
2359
|
+
.m_h-750px,
|
|
2360
|
+
.m_h750px {
|
|
2361
|
+
height: 750px;
|
|
2362
|
+
}
|
|
2363
|
+
|
|
2364
|
+
.m_hm-750px,
|
|
2365
|
+
.m_max-h-750px,
|
|
2366
|
+
.m_h-max-750px,
|
|
2367
|
+
.m_max-h750px {
|
|
2368
|
+
max-height: 750px;
|
|
2369
|
+
}
|
|
2370
|
+
|
|
2371
|
+
.m_min-h-750px,
|
|
2372
|
+
.m_h-min-750px,
|
|
2373
|
+
.m_min-h750px {
|
|
2374
|
+
min-height: 750px;
|
|
2375
|
+
}
|
|
2376
|
+
|
|
2197
2377
|
.m_h-800,
|
|
2198
2378
|
.m_h800p,
|
|
2199
2379
|
.m_h-800p {
|
|
@@ -2224,6 +2404,36 @@
|
|
|
2224
2404
|
min-height: 800px;
|
|
2225
2405
|
}
|
|
2226
2406
|
|
|
2407
|
+
.m_h-850,
|
|
2408
|
+
.m_h850p,
|
|
2409
|
+
.m_h-850p {
|
|
2410
|
+
height: 850%;
|
|
2411
|
+
}
|
|
2412
|
+
|
|
2413
|
+
.m_vh-850,
|
|
2414
|
+
.m_h-850vh,
|
|
2415
|
+
.m_h850vh {
|
|
2416
|
+
height: 850vh;
|
|
2417
|
+
}
|
|
2418
|
+
|
|
2419
|
+
.m_h-850px,
|
|
2420
|
+
.m_h850px {
|
|
2421
|
+
height: 850px;
|
|
2422
|
+
}
|
|
2423
|
+
|
|
2424
|
+
.m_hm-850px,
|
|
2425
|
+
.m_max-h-850px,
|
|
2426
|
+
.m_h-max-850px,
|
|
2427
|
+
.m_max-h850px {
|
|
2428
|
+
max-height: 850px;
|
|
2429
|
+
}
|
|
2430
|
+
|
|
2431
|
+
.m_min-h-850px,
|
|
2432
|
+
.m_h-min-850px,
|
|
2433
|
+
.m_min-h850px {
|
|
2434
|
+
min-height: 850px;
|
|
2435
|
+
}
|
|
2436
|
+
|
|
2227
2437
|
.m_h-900,
|
|
2228
2438
|
.m_h900p,
|
|
2229
2439
|
.m_h-900p {
|
|
@@ -2254,6 +2464,36 @@
|
|
|
2254
2464
|
min-height: 900px;
|
|
2255
2465
|
}
|
|
2256
2466
|
|
|
2467
|
+
.m_h-950,
|
|
2468
|
+
.m_h950p,
|
|
2469
|
+
.m_h-950p {
|
|
2470
|
+
height: 950%;
|
|
2471
|
+
}
|
|
2472
|
+
|
|
2473
|
+
.m_vh-950,
|
|
2474
|
+
.m_h-950vh,
|
|
2475
|
+
.m_h950vh {
|
|
2476
|
+
height: 950vh;
|
|
2477
|
+
}
|
|
2478
|
+
|
|
2479
|
+
.m_h-950px,
|
|
2480
|
+
.m_h950px {
|
|
2481
|
+
height: 950px;
|
|
2482
|
+
}
|
|
2483
|
+
|
|
2484
|
+
.m_hm-950px,
|
|
2485
|
+
.m_max-h-950px,
|
|
2486
|
+
.m_h-max-950px,
|
|
2487
|
+
.m_max-h950px {
|
|
2488
|
+
max-height: 950px;
|
|
2489
|
+
}
|
|
2490
|
+
|
|
2491
|
+
.m_min-h-950px,
|
|
2492
|
+
.m_h-min-950px,
|
|
2493
|
+
.m_min-h950px {
|
|
2494
|
+
min-height: 950px;
|
|
2495
|
+
}
|
|
2496
|
+
|
|
2257
2497
|
.m_h-1000,
|
|
2258
2498
|
.m_h1000p,
|
|
2259
2499
|
.m_h-1000p {
|