nuxt-glorious 1.3.3 → 1.9.0-dev

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.
Files changed (116) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/module.mjs +5 -23
  3. package/dist/runtime/components/G/Alert.vue +2 -3
  4. package/dist/runtime/components/G/Avatar.vue +9 -4
  5. package/dist/runtime/components/G/Breadcrumb.vue +4 -3
  6. package/dist/runtime/components/G/Button.vue +10 -11
  7. package/dist/runtime/components/G/Checkbox.vue +7 -5
  8. package/dist/runtime/components/G/Drawer.vue +6 -3
  9. package/dist/runtime/components/G/File.vue +11 -8
  10. package/dist/runtime/components/G/Icon.vue +37 -70
  11. package/dist/runtime/components/G/Input.vue +43 -25
  12. package/dist/runtime/components/G/Loading.vue +8 -4
  13. package/dist/runtime/components/G/Modal.vue +7 -6
  14. package/dist/runtime/components/G/Paginate.vue +41 -13
  15. package/dist/runtime/components/G/Radio.vue +8 -5
  16. package/dist/runtime/components/G/Rating.vue +0 -2
  17. package/dist/runtime/components/G/Select.vue +9 -9
  18. package/dist/runtime/components/G/Switch.vue +0 -2
  19. package/dist/runtime/components/G/Tab.vue +1 -2
  20. package/dist/runtime/components/G/Table.vue +0 -2
  21. package/dist/runtime/components/G/Tooltip.vue +17 -0
  22. package/dist/runtime/components/G/Wizard.vue +71 -25
  23. package/dist/runtime/components/G/textarea.vue +10 -9
  24. package/dist/runtime/components/G/timeline.vue +0 -2
  25. package/dist/runtime/components/helper.d.ts +1 -0
  26. package/dist/runtime/components/helper.mjs +13 -2
  27. package/dist/runtime/components/props/Alert.d.ts +1 -1
  28. package/dist/runtime/components/props/Avatar.d.ts +9 -0
  29. package/dist/runtime/components/props/Avatar.mjs +4 -6
  30. package/dist/runtime/components/props/Button.d.ts +1 -1
  31. package/dist/runtime/components/props/CheckBox.d.ts +1 -1
  32. package/dist/runtime/components/props/File.d.ts +1 -1
  33. package/dist/runtime/components/props/Icon.d.ts +4 -0
  34. package/dist/runtime/components/props/Icon.mjs +5 -1
  35. package/dist/runtime/components/props/Input.d.ts +1 -1
  36. package/dist/runtime/components/props/Loading.d.ts +1 -1
  37. package/dist/runtime/components/props/Modal.d.ts +1 -1
  38. package/dist/runtime/components/props/Paginate.d.ts +5 -0
  39. package/dist/runtime/components/props/Paginate.mjs +2 -0
  40. package/dist/runtime/components/props/Radio.d.ts +1 -1
  41. package/dist/runtime/components/props/Select.d.ts +1 -1
  42. package/dist/runtime/components/props/Switch.d.ts +1 -1
  43. package/dist/runtime/components/props/Table.d.ts +1 -1
  44. package/dist/runtime/components/props/Textarea.d.ts +1 -6
  45. package/dist/runtime/components/props/Textarea.mjs +0 -2
  46. package/dist/runtime/components/props/Timeline.d.ts +1 -1
  47. package/dist/runtime/components/props/common/index.d.ts +14 -2
  48. package/dist/runtime/components/props/common/index.mjs +13 -1
  49. package/dist/runtime/composables/helper/useGloriousFetch/functionComputeAuth.d.ts +2 -0
  50. package/dist/runtime/composables/helper/useGloriousFetch/functionComputeAuth.mjs +8 -0
  51. package/dist/runtime/composables/helper/useGloriousFetch/functionComputeFormData.d.ts +3 -0
  52. package/dist/runtime/composables/helper/useGloriousFetch/functionComputeFormData.mjs +14 -0
  53. package/dist/runtime/composables/helper/useGloriousFetch/functionComputeGKey.d.ts +2 -0
  54. package/dist/runtime/composables/helper/useGloriousFetch/functionComputeGKey.mjs +3 -0
  55. package/dist/runtime/composables/helper/useGloriousFetch/functionComputeHeaderFetch.d.ts +2 -0
  56. package/dist/runtime/composables/helper/useGloriousFetch/functionComputeHeaderFetch.mjs +9 -0
  57. package/dist/runtime/composables/helper/useGloriousFetch/functionComputeParams.d.ts +2 -0
  58. package/dist/runtime/composables/helper/useGloriousFetch/functionComputeParams.mjs +7 -0
  59. package/dist/runtime/composables/helper/useGloriousFetch/functionComputeValidation.d.ts +2 -0
  60. package/dist/runtime/composables/helper/useGloriousFetch/functionComputeValidation.mjs +30 -0
  61. package/dist/runtime/composables/helper/useGloriousFetch/gloriousFetchDefaultOptions.d.ts +3 -0
  62. package/dist/runtime/composables/helper/useGloriousFetch/gloriousFetchDefaultOptions.mjs +15 -0
  63. package/dist/runtime/composables/helper/useGloriousFetch/gloriousFetchOptionsInterface.d.ts +15 -0
  64. package/dist/runtime/composables/useGloriousCore.d.ts +0 -1
  65. package/dist/runtime/composables/useGloriousCore.mjs +1 -3
  66. package/dist/runtime/composables/useGloriousFetch.d.ts +1 -15
  67. package/dist/runtime/composables/useGloriousFetch.mjs +11 -57
  68. package/dist/runtime/composables/useGloriousHead.mjs +1 -1
  69. package/dist/runtime/middlewares/AuthStrategy.mjs +1 -9
  70. package/dist/runtime/plugins/InputComponent.mjs +0 -2
  71. package/dist/runtime/style/components/drawer.css +4 -35
  72. package/dist/runtime/style/components/dropdown.css +17 -15
  73. package/dist/{runtime/style/components → scss}/alert.scss +7 -7
  74. package/dist/scss/avatar.scss +13 -0
  75. package/dist/scss/breadcrumb.scss +6 -0
  76. package/dist/{runtime/style/components → scss}/button.scss +30 -30
  77. package/dist/{runtime/style/components → scss}/checkbox.scss +1 -1
  78. package/dist/scss/drawer.scss +64 -0
  79. package/dist/{runtime/style/components → scss}/file.scss +2 -2
  80. package/dist/scss/glorious.scss +22 -0
  81. package/dist/{runtime/style/components → scss}/input.scss +9 -3
  82. package/dist/{runtime/style → scss}/mixin.scss +1 -1
  83. package/dist/scss/modal.scss +76 -0
  84. package/dist/scss/paginate.scss +28 -0
  85. package/dist/{runtime/style/components → scss}/radio.scss +1 -1
  86. package/dist/{runtime/style/components → scss}/select.scss +2 -2
  87. package/dist/{runtime/style/components → scss}/switch.scss +1 -1
  88. package/dist/{runtime/style/components → scss}/tab.scss +1 -1
  89. package/dist/{runtime/style/components → scss}/table.scss +1 -1
  90. package/dist/{runtime/style/components → scss}/textarea.scss +2 -2
  91. package/dist/{runtime/style/components → scss}/timeline.scss +2 -2
  92. package/dist/scss/tooltip.scss +14 -0
  93. package/package.json +9 -7
  94. package/dist/runtime/style/components/alert.css +0 -33
  95. package/dist/runtime/style/components/avatar.css +0 -57
  96. package/dist/runtime/style/components/avatar.scss +0 -13
  97. package/dist/runtime/style/components/breadcrumb.css +0 -6
  98. package/dist/runtime/style/components/breadcrumb.scss +0 -6
  99. package/dist/runtime/style/components/drawer.scss +0 -57
  100. package/dist/runtime/style/components/dropdown.scss +0 -19
  101. package/dist/runtime/style/components/editor.scss +0 -4
  102. package/dist/runtime/style/components/input.css +0 -184
  103. package/dist/runtime/style/components/loading.css +0 -43
  104. package/dist/runtime/style/components/modal.css +0 -66
  105. package/dist/runtime/style/components/modal.scss +0 -76
  106. package/dist/runtime/style/components/paginate.css +0 -17
  107. package/dist/runtime/style/components/paginate.scss +0 -18
  108. package/dist/runtime/style/components/radio.css +0 -121
  109. package/dist/runtime/style/components/rating.css +0 -30
  110. package/dist/runtime/style/components/select.css +0 -49
  111. package/dist/runtime/style/components/switch.css +0 -61
  112. package/dist/runtime/style/components/table.css +0 -99
  113. package/dist/runtime/style/components/textarea.css +0 -67
  114. /package/dist/{runtime/style/components → scss}/loading.scss +0 -0
  115. /package/dist/{runtime/style/components → scss}/rating.scss +0 -0
  116. /package/dist/{runtime/style → scss}/variable.scss +0 -0
@@ -1,99 +0,0 @@
1
- .glorious-table {
2
- @apply overflow-x-auto;
3
- }
4
- .glorious-table.color-orange > table > thead {
5
- @apply rounded-t-md overflow-hidden;
6
- }
7
- .glorious-table.color-orange > table > thead > tr > th:first-child {
8
- @apply rounded-r-lg bg-orange-400;
9
- }
10
- .glorious-table.color-orange > table > thead > tr > th {
11
- @apply bg-orange-400;
12
- }
13
- .glorious-table.color-orange > table > thead > tr > th:last-child {
14
- @apply rounded-l-lg bg-orange-400;
15
- }
16
- .glorious-table.color-orange > table > tbody > tr:nth-child(even) {
17
- @apply bg-orange-50;
18
- }
19
- .glorious-table.color-orange > table > tbody > tr > td {
20
- @apply px-4 py-2 text-center;
21
- }
22
- .glorious-table.color-blue > table > thead {
23
- @apply rounded-t-md overflow-hidden;
24
- }
25
- .glorious-table.color-blue > table > thead > tr > th:first-child {
26
- @apply rounded-r-lg bg-blue-400;
27
- }
28
- .glorious-table.color-blue > table > thead > tr > th {
29
- @apply bg-blue-400;
30
- }
31
- .glorious-table.color-blue > table > thead > tr > th:last-child {
32
- @apply rounded-l-lg bg-blue-400;
33
- }
34
- .glorious-table.color-blue > table > tbody > tr:nth-child(even) {
35
- @apply bg-blue-50;
36
- }
37
- .glorious-table.color-blue > table > tbody > tr > td {
38
- @apply px-4 py-2 text-center;
39
- }
40
- .glorious-table.color-gray > table > thead {
41
- @apply rounded-t-md overflow-hidden;
42
- }
43
- .glorious-table.color-gray > table > thead > tr > th:first-child {
44
- @apply rounded-r-lg bg-gray-400;
45
- }
46
- .glorious-table.color-gray > table > thead > tr > th {
47
- @apply bg-gray-400;
48
- }
49
- .glorious-table.color-gray > table > thead > tr > th:last-child {
50
- @apply rounded-l-lg bg-gray-400;
51
- }
52
- .glorious-table.color-gray > table > tbody > tr:nth-child(even) {
53
- @apply bg-gray-50;
54
- }
55
- .glorious-table.color-gray > table > tbody > tr > td {
56
- @apply px-4 py-2 text-center;
57
- }
58
- .glorious-table.color-red > table > thead {
59
- @apply rounded-t-md overflow-hidden;
60
- }
61
- .glorious-table.color-red > table > thead > tr > th:first-child {
62
- @apply rounded-r-lg bg-red-400;
63
- }
64
- .glorious-table.color-red > table > thead > tr > th {
65
- @apply bg-red-400;
66
- }
67
- .glorious-table.color-red > table > thead > tr > th:last-child {
68
- @apply rounded-l-lg bg-red-400;
69
- }
70
- .glorious-table.color-red > table > tbody > tr:nth-child(even) {
71
- @apply bg-red-50;
72
- }
73
- .glorious-table.color-red > table > tbody > tr > td {
74
- @apply px-4 py-2 text-center;
75
- }
76
- .glorious-table.color-green > table > thead {
77
- @apply rounded-t-md overflow-hidden;
78
- }
79
- .glorious-table.color-green > table > thead > tr > th:first-child {
80
- @apply rounded-r-lg bg-green-400;
81
- }
82
- .glorious-table.color-green > table > thead > tr > th {
83
- @apply bg-green-400;
84
- }
85
- .glorious-table.color-green > table > thead > tr > th:last-child {
86
- @apply rounded-l-lg bg-green-400;
87
- }
88
- .glorious-table.color-green > table > tbody > tr:nth-child(even) {
89
- @apply bg-green-50;
90
- }
91
- .glorious-table.color-green > table > tbody > tr > td {
92
- @apply px-4 py-2 text-center;
93
- }
94
- .glorious-table > table {
95
- @apply w-full;
96
- }
97
- .glorious-table > table > thead > tr > th {
98
- @apply px-4 py-2 text-center;
99
- }
@@ -1,67 +0,0 @@
1
- .glorious-textarea-orange {
2
- @apply ring-orange-500;
3
- @apply rounded-md ring-1 px-3;
4
- }
5
- .glorious-textarea-orange:focus-visible {
6
- @apply outline-none ring-2;
7
- }
8
- .glorious-textarea-orange:disabled {
9
- @apply bg-green-300 cursor-not-allowed;
10
- }
11
-
12
- .glorious-textarea-blue {
13
- @apply ring-blue-500;
14
- @apply rounded-md ring-1 px-3;
15
- }
16
- .glorious-textarea-blue:focus-visible {
17
- @apply outline-none ring-2;
18
- }
19
- .glorious-textarea-blue:disabled {
20
- @apply bg-green-300 cursor-not-allowed;
21
- }
22
-
23
- .glorious-textarea-gray {
24
- @apply ring-gray-500;
25
- @apply rounded-md ring-1 px-3;
26
- }
27
- .glorious-textarea-gray:focus-visible {
28
- @apply outline-none ring-2;
29
- }
30
- .glorious-textarea-gray:disabled {
31
- @apply bg-green-300 cursor-not-allowed;
32
- }
33
-
34
- .glorious-textarea-red {
35
- @apply ring-red-500;
36
- @apply rounded-md ring-1 px-3;
37
- }
38
- .glorious-textarea-red:focus-visible {
39
- @apply outline-none ring-2;
40
- }
41
- .glorious-textarea-red:disabled {
42
- @apply bg-green-300 cursor-not-allowed;
43
- }
44
-
45
- .glorious-textarea-green {
46
- @apply ring-green-500;
47
- @apply rounded-md ring-1 px-3;
48
- }
49
- .glorious-textarea-green:focus-visible {
50
- @apply outline-none ring-2;
51
- }
52
- .glorious-textarea-green:disabled {
53
- @apply bg-green-300 cursor-not-allowed;
54
- }
55
-
56
- .glorious-textarea {
57
- @apply relative w-full flex flex-col;
58
- }
59
- .glorious-textarea > textarea {
60
- @apply w-full p-2;
61
- }
62
- .glorious-textarea > textarea.validation-error {
63
- @apply ring-red-500 bg-red-50;
64
- }
65
- .glorious-textarea > textarea::placeholder {
66
- @apply text-[14px];
67
- }
File without changes