@mythpe/quasar-ui-qui 0.1.95 → 0.1.97

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mythpe/quasar-ui-qui",
3
- "version": "0.1.95",
3
+ "version": "0.1.97",
4
4
  "description": "MyTh Quasar UI Kit App Extension",
5
5
  "author": {
6
6
  "name": "MyTh Ahmed Faiz",
@@ -14,16 +14,22 @@ import { useMyth } from '../../../composable'
14
14
 
15
15
  interface Props {
16
16
  text?: any;
17
+ size: string | number;
18
+ iconSize?: string | number;
17
19
  string?: boolean;
18
20
  append?: boolean;
19
21
  }
20
22
 
21
23
  const props = withDefaults(defineProps<Props>(), {
22
24
  text: undefined,
25
+ size: 15,
26
+ iconSize: 17,
23
27
  string: !1,
24
28
  append: !1
25
29
  })
26
30
 
31
+ const getSize = computed<number>(() => parseInt(props.size?.toString?.() || '0') || 0)
32
+ const getIconSize = computed<number>(() => parseInt(props.iconSize?.toString?.() || '0') || 0)
27
33
  const { te } = useI18n({ useScope: 'global' })
28
34
  const { __, formatMoney } = useMyth()
29
35
  const getText = computed<string | undefined>(() => {
@@ -59,11 +65,12 @@ defineOptions({
59
65
  <slot name="default">
60
66
  <div
61
67
  v-if="text !== undefined && text !== null"
68
+ :style="`font-size: ${getSize}px;`"
62
69
  class="flex flex-center m--sar-col__text"
63
70
  v-text="getText"
64
71
  />
65
72
  </slot>
66
- <MSarSvg />
73
+ <MSarSvg :size="getIconSize" />
67
74
  </MRow>
68
75
  </div>
69
76
  </template>
@@ -7,6 +7,16 @@
7
7
  -->
8
8
 
9
9
  <script lang="ts" setup>
10
+ import { computed } from 'vue'
11
+
12
+ type Props = {
13
+ size?: string | number;
14
+ }
15
+ const props = withDefaults(defineProps<Props>(), {
16
+ size: 15
17
+ })
18
+ const getSize = computed<number>(() => parseInt(props.size?.toString?.() || '0') || 0)
19
+
10
20
  defineOptions({
11
21
  name: 'MSarSvg',
12
22
  inheritAttrs: !1
@@ -20,9 +30,7 @@ defineOptions({
20
30
  >
21
31
  <slot />
22
32
  <svg
23
- id="Layer_1"
24
- data-name="Layer 1"
25
- height="15px"
33
+ :height="`${getSize}px`"
26
34
  viewBox="0 0 1124.14 1256.39"
27
35
  width="100%"
28
36
  xmlns="http://www.w3.org/2000/svg"
@@ -972,7 +972,13 @@ export type MCkeditorProps = Omit<BaseInputsProps, 'hint' | 'topLabel' | 'placeh
972
972
  }
973
973
  export type MCkeditorSlots = BaseInputsSlots
974
974
 
975
- export interface MSarColProps {
975
+ export type MSarSvgProps = {
976
+ size?: string | number;
977
+ } & Record<string, any>;
978
+
979
+ export type MSarColProps = {
980
+ size?: string | number;
981
+ iconSize?: string | number;
976
982
  text?: any;
977
983
  string?: boolean;
978
984
  append?: boolean;
@@ -982,10 +988,6 @@ export interface MSarColSlots {
982
988
  default: () => VNode[]
983
989
  }
984
990
 
985
- export interface MSarSvgProps {
986
- [key: string]: any;
987
- }
988
-
989
991
  export interface MSarSvgSlots {
990
992
  default: () => VNode[]
991
993
  }
@@ -1,24 +1,4 @@
1
- /* global define */
2
-
3
- (function (root, pluralize) {
4
- /* istanbul ignore else */
5
- if (typeof require === 'function' && typeof exports === 'object' && typeof module === 'object') {
6
- // Node.
7
- // module.exports = pluralize()
8
- module.exports = {
9
- pluralize: pluralize(),
10
- default: pluralize()
11
- }
12
- } else if (typeof define === 'function' && define.amd) {
13
- // AMD, registers as an anonymous module.
14
- define(function () {
15
- return pluralize()
16
- })
17
- } else {
18
- // Browser global.
19
- root.pluralize = pluralize()
20
- }
21
- })(this, function () {
1
+ const __pluralize = function () {
22
2
  // Rule storage - pluralize and singularize need to be run sequentially,
23
3
  // while other rules can be optimized using an object for instant lookups.
24
4
  const pluralRules = []
@@ -272,239 +252,242 @@
272
252
  /**
273
253
  * Irregular rules.
274
254
  */
275
- [
255
+ const __irregularRules = [
276
256
  // Pronouns.
277
- ['I', 'we'],
278
- ['me', 'us'],
279
- ['he', 'they'],
280
- ['she', 'they'],
281
- ['them', 'them'],
282
- ['myself', 'ourselves'],
283
- ['yourself', 'yourselves'],
284
- ['itself', 'themselves'],
285
- ['herself', 'themselves'],
286
- ['himself', 'themselves'],
287
- ['themself', 'themselves'],
288
- ['is', 'are'],
289
- ['was', 'were'],
290
- ['has', 'have'],
291
- ['this', 'these'],
292
- ['that', 'those'],
293
- // Words ending in with a consonant and `o`.
294
- ['echo', 'echoes'],
295
- ['dingo', 'dingoes'],
296
- ['volcano', 'volcanoes'],
297
- ['tornado', 'tornadoes'],
298
- ['torpedo', 'torpedoes'],
299
- // Ends with `us`.
300
- ['genus', 'genera'],
301
- ['viscus', 'viscera'],
302
- // Ends with `ma`.
303
- ['stigma', 'stigmata'],
304
- ['stoma', 'stomata'],
305
- ['dogma', 'dogmata'],
306
- ['lemma', 'lemmata'],
307
- ['schema', 'schemata'],
308
- ['anathema', 'anathemata'],
309
- // Other irregular rules.
310
- ['ox', 'oxen'],
311
- ['axe', 'axes'],
312
- ['die', 'dice'],
313
- ['yes', 'yeses'],
314
- ['foot', 'feet'],
315
- ['eave', 'eaves'],
316
- ['goose', 'geese'],
317
- ['tooth', 'teeth'],
318
- ['quiz', 'quizzes'],
319
- ['human', 'humans'],
320
- ['proof', 'proofs'],
321
- ['carve', 'carves'],
322
- ['valve', 'valves'],
323
- ['looey', 'looies'],
324
- ['thief', 'thieves'],
325
- ['groove', 'grooves'],
326
- ['pickaxe', 'pickaxes'],
327
- ['passerby', 'passersby']
328
- ].forEach(function (rule) {
329
- return pluralize.addIrregularRule(rule[0], rule[1])
330
- })
257
+ ['I', 'we'],
258
+ ['me', 'us'],
259
+ ['he', 'they'],
260
+ ['she', 'they'],
261
+ ['them', 'them'],
262
+ ['myself', 'ourselves'],
263
+ ['yourself', 'yourselves'],
264
+ ['itself', 'themselves'],
265
+ ['herself', 'themselves'],
266
+ ['himself', 'themselves'],
267
+ ['themself', 'themselves'],
268
+ ['is', 'are'],
269
+ ['was', 'were'],
270
+ ['has', 'have'],
271
+ ['this', 'these'],
272
+ ['that', 'those'],
273
+ // Words ending in with a consonant and `o`.
274
+ ['echo', 'echoes'],
275
+ ['dingo', 'dingoes'],
276
+ ['volcano', 'volcanoes'],
277
+ ['tornado', 'tornadoes'],
278
+ ['torpedo', 'torpedoes'],
279
+ // Ends with `us`.
280
+ ['genus', 'genera'],
281
+ ['viscus', 'viscera'],
282
+ // Ends with `ma`.
283
+ ['stigma', 'stigmata'],
284
+ ['stoma', 'stomata'],
285
+ ['dogma', 'dogmata'],
286
+ ['lemma', 'lemmata'],
287
+ ['schema', 'schemata'],
288
+ ['anathema', 'anathemata'],
289
+ // Other irregular rules.
290
+ ['ox', 'oxen'],
291
+ ['axe', 'axes'],
292
+ ['die', 'dice'],
293
+ ['yes', 'yeses'],
294
+ ['foot', 'feet'],
295
+ ['eave', 'eaves'],
296
+ ['goose', 'geese'],
297
+ ['tooth', 'teeth'],
298
+ ['quiz', 'quizzes'],
299
+ ['human', 'humans'],
300
+ ['proof', 'proofs'],
301
+ ['carve', 'carves'],
302
+ ['valve', 'valves'],
303
+ ['looey', 'looies'],
304
+ ['thief', 'thieves'],
305
+ ['groove', 'grooves'],
306
+ ['pickaxe', 'pickaxes'],
307
+ ['passerby', 'passersby']
308
+ ]
309
+ __irregularRules.forEach(function (rule) {
310
+ return pluralize.addIrregularRule(rule[0], rule[1])
311
+ })
331
312
 
332
313
  /**
333
314
  * Pluralization rules.
334
315
  */
335
- [
336
- [/s?$/i, 's'],
337
- [/[^\u0000-\u007F]$/i, '$0'],
338
- [/([^aeiou]ese)$/i, '$1'],
339
- [/(ax|test)is$/i, '$1es'],
340
- [/(alias|[^aou]us|t[lm]as|gas|ris)$/i, '$1es'],
341
- [/(e[mn]u)s?$/i, '$1s'],
342
- [/([^l]ias|[aeiou]las|[ejzr]as|[iu]am)$/i, '$1'],
343
- [/(alumn|syllab|vir|radi|nucle|fung|cact|stimul|termin|bacill|foc|uter|loc|strat)(?:us|i)$/i, '$1i'],
344
- [/(alumn|alg|vertebr)(?:a|ae)$/i, '$1ae'],
345
- [/(seraph|cherub)(?:im)?$/i, '$1im'],
346
- [/(her|at|gr)o$/i, '$1oes'],
347
- [/(agend|addend|millenni|dat|extrem|bacteri|desiderat|strat|candelabr|errat|ov|symposi|curricul|automat|quor)(?:a|um)$/i, '$1a'],
348
- [/(apheli|hyperbat|periheli|asyndet|noumen|phenomen|criteri|organ|prolegomen|hedr|automat)(?:a|on)$/i, '$1a'],
349
- [/sis$/i, 'ses'],
350
- [/(?:(kni|wi|li)fe|(ar|l|ea|eo|oa|hoo)f)$/i, '$1$2ves'],
351
- [/([^aeiouy]|qu)y$/i, '$1ies'],
352
- [/([^ch][ieo][ln])ey$/i, '$1ies'],
353
- [/(x|ch|ss|sh|zz)$/i, '$1es'],
354
- [/(matr|cod|mur|sil|vert|ind|append)(?:ix|ex)$/i, '$1ices'],
355
- [/\b((?:tit)?m|l)(?:ice|ouse)$/i, '$1ice'],
356
- [/(pe)(?:rson|ople)$/i, '$1ople'],
357
- [/(child)(?:ren)?$/i, '$1ren'],
358
- [/eaux$/i, '$0'],
359
- [/m[ae]n$/i, 'men'],
360
- ['thou', 'you']
361
- ].forEach(function (rule) {
362
- return pluralize.addPluralRule(rule[0], rule[1])
363
- })
316
+ const __pluralizationRules = [
317
+ [/s?$/i, 's'],
318
+ [/[^\u0000-\u007F]$/i, '$0'],
319
+ [/([^aeiou]ese)$/i, '$1'],
320
+ [/(ax|test)is$/i, '$1es'],
321
+ [/(alias|[^aou]us|t[lm]as|gas|ris)$/i, '$1es'],
322
+ [/(e[mn]u)s?$/i, '$1s'],
323
+ [/([^l]ias|[aeiou]las|[ejzr]as|[iu]am)$/i, '$1'],
324
+ [/(alumn|syllab|vir|radi|nucle|fung|cact|stimul|termin|bacill|foc|uter|loc|strat)(?:us|i)$/i, '$1i'],
325
+ [/(alumn|alg|vertebr)(?:a|ae)$/i, '$1ae'],
326
+ [/(seraph|cherub)(?:im)?$/i, '$1im'],
327
+ [/(her|at|gr)o$/i, '$1oes'],
328
+ [/(agend|addend|millenni|dat|extrem|bacteri|desiderat|strat|candelabr|errat|ov|symposi|curricul|automat|quor)(?:a|um)$/i, '$1a'],
329
+ [/(apheli|hyperbat|periheli|asyndet|noumen|phenomen|criteri|organ|prolegomen|hedr|automat)(?:a|on)$/i, '$1a'],
330
+ [/sis$/i, 'ses'],
331
+ [/(?:(kni|wi|li)fe|(ar|l|ea|eo|oa|hoo)f)$/i, '$1$2ves'],
332
+ [/([^aeiouy]|qu)y$/i, '$1ies'],
333
+ [/([^ch][ieo][ln])ey$/i, '$1ies'],
334
+ [/(x|ch|ss|sh|zz)$/i, '$1es'],
335
+ [/(matr|cod|mur|sil|vert|ind|append)(?:ix|ex)$/i, '$1ices'],
336
+ [/\b((?:tit)?m|l)(?:ice|ouse)$/i, '$1ice'],
337
+ [/(pe)(?:rson|ople)$/i, '$1ople'],
338
+ [/(child)(?:ren)?$/i, '$1ren'],
339
+ [/eaux$/i, '$0'],
340
+ [/m[ae]n$/i, 'men'],
341
+ ['thou', 'you']
342
+ ]
343
+
344
+ __pluralizationRules.forEach(function (rule) {
345
+ return pluralize.addPluralRule(rule[0], rule[1])
346
+ })
364
347
 
365
348
  /**
366
349
  * Singularization rules.
367
350
  */
368
- [
369
- [/s$/i, ''],
370
- [/(ss)$/i, '$1'],
371
- [/(wi|kni|(?:after|half|high|low|mid|non|night|[^\w]|^)li)ves$/i, '$1fe'],
372
- [/(ar|(?:wo|[ae])l|[eo][ao])ves$/i, '$1f'],
373
- [/ies$/i, 'y'],
374
- [/\b([pl]|zomb|(?:neck|cross)?t|coll|faer|food|gen|goon|group|lass|talk|goal|cut)ies$/i, '$1ie'],
375
- [/\b(mon|smil)ies$/i, '$1ey'],
376
- [/\b((?:tit)?m|l)ice$/i, '$1ouse'],
377
- [/(seraph|cherub)im$/i, '$1'],
378
- [/(x|ch|ss|sh|zz|tto|go|cho|alias|[^aou]us|t[lm]as|gas|(?:her|at|gr)o|[aeiou]ris)(?:es)?$/i, '$1'],
379
- [/(analy|diagno|parenthe|progno|synop|the|empha|cri|ne)(?:sis|ses)$/i, '$1sis'],
380
- [/(movie|twelve|abuse|e[mn]u)s$/i, '$1'],
381
- [/(test)(?:is|es)$/i, '$1is'],
382
- [/(alumn|syllab|vir|radi|nucle|fung|cact|stimul|termin|bacill|foc|uter|loc|strat)(?:us|i)$/i, '$1us'],
383
- [/(agend|addend|millenni|dat|extrem|bacteri|desiderat|strat|candelabr|errat|ov|symposi|curricul|quor)a$/i, '$1um'],
384
- [/(apheli|hyperbat|periheli|asyndet|noumen|phenomen|criteri|organ|prolegomen|hedr|automat)a$/i, '$1on'],
385
- [/(alumn|alg|vertebr)ae$/i, '$1a'],
386
- [/(cod|mur|sil|vert|ind)ices$/i, '$1ex'],
387
- [/(matr|append)ices$/i, '$1ix'],
388
- [/(pe)(rson|ople)$/i, '$1rson'],
389
- [/(child)ren$/i, '$1'],
390
- [/(eau)x?$/i, '$1'],
391
- [/men$/i, 'man']
392
- ].forEach(function (rule) {
393
- return pluralize.addSingularRule(rule[0], rule[1])
394
- })
351
+ const __singularizationRules = [
352
+ [/s$/i, ''],
353
+ [/(ss)$/i, '$1'],
354
+ [/(wi|kni|(?:after|half|high|low|mid|non|night|[^\w]|^)li)ves$/i, '$1fe'],
355
+ [/(ar|(?:wo|[ae])l|[eo][ao])ves$/i, '$1f'],
356
+ [/ies$/i, 'y'],
357
+ [/\b([pl]|zomb|(?:neck|cross)?t|coll|faer|food|gen|goon|group|lass|talk|goal|cut)ies$/i, '$1ie'],
358
+ [/\b(mon|smil)ies$/i, '$1ey'],
359
+ [/\b((?:tit)?m|l)ice$/i, '$1ouse'],
360
+ [/(seraph|cherub)im$/i, '$1'],
361
+ [/(x|ch|ss|sh|zz|tto|go|cho|alias|[^aou]us|t[lm]as|gas|(?:her|at|gr)o|[aeiou]ris)(?:es)?$/i, '$1'],
362
+ [/(analy|diagno|parenthe|progno|synop|the|empha|cri|ne)(?:sis|ses)$/i, '$1sis'],
363
+ [/(movie|twelve|abuse|e[mn]u)s$/i, '$1'],
364
+ [/(test)(?:is|es)$/i, '$1is'],
365
+ [/(alumn|syllab|vir|radi|nucle|fung|cact|stimul|termin|bacill|foc|uter|loc|strat)(?:us|i)$/i, '$1us'],
366
+ [/(agend|addend|millenni|dat|extrem|bacteri|desiderat|strat|candelabr|errat|ov|symposi|curricul|quor)a$/i, '$1um'],
367
+ [/(apheli|hyperbat|periheli|asyndet|noumen|phenomen|criteri|organ|prolegomen|hedr|automat)a$/i, '$1on'],
368
+ [/(alumn|alg|vertebr)ae$/i, '$1a'],
369
+ [/(cod|mur|sil|vert|ind)ices$/i, '$1ex'],
370
+ [/(matr|append)ices$/i, '$1ix'],
371
+ [/(pe)(rson|ople)$/i, '$1rson'],
372
+ [/(child)ren$/i, '$1'],
373
+ [/(eau)x?$/i, '$1'],
374
+ [/men$/i, 'man']
375
+ ]
376
+ __singularizationRules.forEach(function (rule) {
377
+ return pluralize.addSingularRule(rule[0], rule[1])
378
+ })
395
379
 
396
380
  /**
397
381
  * Uncountable rules.
398
382
  */
399
- [
383
+ const __uncountableRules = [
400
384
  // Singular words with no plurals.
401
- 'adulthood',
402
- 'advice',
403
- 'agenda',
404
- 'aid',
405
- 'aircraft',
406
- 'alcohol',
407
- 'ammo',
408
- 'analytics',
409
- 'anime',
410
- 'athletics',
411
- 'audio',
412
- 'bison',
413
- 'blood',
414
- 'bream',
415
- 'buffalo',
416
- 'butter',
417
- 'carp',
418
- 'cash',
419
- 'chassis',
420
- 'chess',
421
- 'clothing',
422
- 'cod',
423
- 'commerce',
424
- 'cooperation',
425
- 'corps',
426
- 'debris',
427
- 'diabetes',
428
- 'digestion',
429
- 'elk',
430
- 'energy',
431
- 'equipment',
432
- 'excretion',
433
- 'expertise',
434
- 'firmware',
435
- 'flounder',
436
- 'fun',
437
- 'gallows',
438
- 'garbage',
439
- 'graffiti',
440
- 'hardware',
441
- 'headquarters',
442
- 'health',
443
- 'herpes',
444
- 'highjinks',
445
- 'homework',
446
- 'housework',
447
- 'information',
448
- 'jeans',
449
- 'justice',
450
- 'kudos',
451
- 'labour',
452
- 'literature',
453
- 'machinery',
454
- 'mackerel',
455
- 'mail',
456
- 'media',
457
- 'mews',
458
- 'moose',
459
- 'music',
460
- 'mud',
461
- 'manga',
462
- 'news',
463
- 'only',
464
- 'personnel',
465
- 'pike',
466
- 'plankton',
467
- 'pliers',
468
- 'police',
469
- 'pollution',
470
- 'premises',
471
- 'rain',
472
- 'research',
473
- 'rice',
474
- 'salmon',
475
- 'scissors',
476
- 'series',
477
- 'sewage',
478
- 'shambles',
479
- 'shrimp',
480
- 'software',
481
- 'species',
482
- 'staff',
483
- 'swine',
484
- 'tennis',
485
- 'traffic',
486
- 'transportation',
487
- 'trout',
488
- 'tuna',
489
- 'wealth',
490
- 'welfare',
491
- 'whiting',
492
- 'wildebeest',
493
- 'wildlife',
494
- 'you',
495
- /pok[eé]mon$/i,
496
- // Regexes.
497
- /[^aeiou]ese$/i, // "chinese", "japanese"
498
- /deer$/i, // "deer", "reindeer"
499
- /fish$/i, // "fish", "blowfish", "angelfish"
500
- /measles$/i,
501
- /o[iu]s$/i, // "carnivorous"
502
- /pox$/i, // "chickpox", "smallpox"
503
- /sheep$/i
504
- ].forEach(pluralize.addUncountableRule)
505
-
385
+ 'adulthood',
386
+ 'advice',
387
+ 'agenda',
388
+ 'aid',
389
+ 'aircraft',
390
+ 'alcohol',
391
+ 'ammo',
392
+ 'analytics',
393
+ 'anime',
394
+ 'athletics',
395
+ 'audio',
396
+ 'bison',
397
+ 'blood',
398
+ 'bream',
399
+ 'buffalo',
400
+ 'butter',
401
+ 'carp',
402
+ 'cash',
403
+ 'chassis',
404
+ 'chess',
405
+ 'clothing',
406
+ 'cod',
407
+ 'commerce',
408
+ 'cooperation',
409
+ 'corps',
410
+ 'debris',
411
+ 'diabetes',
412
+ 'digestion',
413
+ 'elk',
414
+ 'energy',
415
+ 'equipment',
416
+ 'excretion',
417
+ 'expertise',
418
+ 'firmware',
419
+ 'flounder',
420
+ 'fun',
421
+ 'gallows',
422
+ 'garbage',
423
+ 'graffiti',
424
+ 'hardware',
425
+ 'headquarters',
426
+ 'health',
427
+ 'herpes',
428
+ 'highjinks',
429
+ 'homework',
430
+ 'housework',
431
+ 'information',
432
+ 'jeans',
433
+ 'justice',
434
+ 'kudos',
435
+ 'labour',
436
+ 'literature',
437
+ 'machinery',
438
+ 'mackerel',
439
+ 'mail',
440
+ 'media',
441
+ 'mews',
442
+ 'moose',
443
+ 'music',
444
+ 'mud',
445
+ 'manga',
446
+ 'news',
447
+ 'only',
448
+ 'personnel',
449
+ 'pike',
450
+ 'plankton',
451
+ 'pliers',
452
+ 'police',
453
+ 'pollution',
454
+ 'premises',
455
+ 'rain',
456
+ 'research',
457
+ 'rice',
458
+ 'salmon',
459
+ 'scissors',
460
+ 'series',
461
+ 'sewage',
462
+ 'shambles',
463
+ 'shrimp',
464
+ 'software',
465
+ 'species',
466
+ 'staff',
467
+ 'swine',
468
+ 'tennis',
469
+ 'traffic',
470
+ 'transportation',
471
+ 'trout',
472
+ 'tuna',
473
+ 'wealth',
474
+ 'welfare',
475
+ 'whiting',
476
+ 'wildebeest',
477
+ 'wildlife',
478
+ 'you',
479
+ /pok[eé]mon$/i,
480
+ // Regexes.
481
+ /[^aeiou]ese$/i, // "chinese", "japanese"
482
+ /deer$/i, // "deer", "reindeer"
483
+ /fish$/i, // "fish", "blowfish", "angelfish"
484
+ /measles$/i,
485
+ /o[iu]s$/i, // "carnivorous"
486
+ /pox$/i, // "chickpox", "smallpox"
487
+ /sheep$/i
488
+ ]
489
+ __uncountableRules.forEach(pluralize.addUncountableRule)
506
490
  return pluralize
507
- })
508
-
509
- import pluralize from 'pluralize'
491
+ }
492
+ export const pluralize = __pluralize()
510
493
  export default pluralize