@ctrliq/quantic-components 1.85.1 → 1.86.0

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 (48) hide show
  1. package/dist/card/card-carousel.stories.js +2 -2
  2. package/dist/card/card-group.stories.js +2 -2
  3. package/dist/checkbox/index.stories.js +3 -3
  4. package/dist/cluster/cluster.component.d.ts +7 -0
  5. package/dist/cluster/cluster.component.js +14 -5
  6. package/dist/cluster/index.constants.d.ts +3 -0
  7. package/dist/cluster/index.constants.js +3 -0
  8. package/dist/code-input/index.stories.js +3 -3
  9. package/dist/grid/grid.component.d.ts +8 -0
  10. package/dist/grid/grid.component.js +16 -2
  11. package/dist/index.js.map +1 -1
  12. package/dist/meta/index.js.map +1 -1
  13. package/dist/meta.json +53 -65
  14. package/dist/number-input/index.stories.js +3 -3
  15. package/dist/option-card/option-card-group.stories.js +3 -3
  16. package/dist/panel/panel-group.stories.js +1 -1
  17. package/dist/quantic-components.js +48 -10
  18. package/dist/quantic-components.js.map +1 -1
  19. package/dist/quantic-components.min.js +3 -3
  20. package/dist/quantic-components.min.js.map +1 -1
  21. package/dist/radio/index.stories.js +1 -1
  22. package/dist/radio/radio-group.stories.js +5 -5
  23. package/dist/register.js.map +1 -1
  24. package/dist/shared/meta.types.d.ts +1 -1
  25. package/dist/tabs/index.stories.js +35 -35
  26. package/dist/text/index.constants.d.ts +4 -0
  27. package/dist/text/index.constants.js +2 -0
  28. package/dist/text/index.d.ts +7 -0
  29. package/dist/text/index.js +13 -3
  30. package/dist/text-input/index.stories.js +3 -3
  31. package/dist/textarea/index.stories.js +3 -3
  32. package/dist/toggle/index.stories.js +3 -3
  33. package/dist/types/cluster/cluster.component.d.ts +7 -0
  34. package/dist/types/cluster/index.constants.d.ts +3 -0
  35. package/dist/types/grid/grid.component.d.ts +8 -0
  36. package/dist/types/shared/meta.types.d.ts +1 -1
  37. package/dist/types/text/index.constants.d.ts +4 -0
  38. package/dist/types/text/index.d.ts +7 -0
  39. package/package.json +1 -1
  40. package/dist/cluster/cluster.stories.d.ts +0 -57
  41. package/dist/cluster/cluster.stories.js +0 -67
  42. package/dist/grid/grid.stories.d.ts +0 -36
  43. package/dist/grid/grid.stories.js +0 -95
  44. package/dist/text/index.stories.d.ts +0 -50
  45. package/dist/text/index.stories.js +0 -55
  46. package/dist/types/cluster/cluster.stories.d.ts +0 -57
  47. package/dist/types/grid/grid.stories.d.ts +0 -36
  48. package/dist/types/text/index.stories.d.ts +0 -50
@@ -77,6 +77,6 @@ export const WithEventHandlers = story({
77
77
  ?required=${required}
78
78
  ?invalid=${invalid}
79
79
  ></quantic-radio>
80
- <quantic-text size="xs">See actions panel for more details.</quantic-text>
80
+ <p class="story-note">See actions panel for more details.</p>
81
81
  </div>
82
82
  `);
@@ -123,9 +123,9 @@ export const FormAssociated = story({
123
123
  >
124
124
  <quantic-radio-group name="contact" value="email" ?required=${args.required} ?disabled=${args.disabled}>
125
125
  <div style="display: flex; flex-direction: column; gap: 0.5rem">
126
- <quantic-text size="sm" style="font-weight: 600">
126
+ <p class="story-label">
127
127
  Select your preferred contact method:
128
- </quantic-text>
128
+ </p>
129
129
  <quantic-radio value="email" label="Email"></quantic-radio>
130
130
  <quantic-radio value="phone" label="Phone"></quantic-radio>
131
131
  <quantic-radio value="sms" label="SMS"></quantic-radio>
@@ -134,7 +134,7 @@ export const FormAssociated = story({
134
134
 
135
135
  <quantic-radio-group name="plan" value="basic">
136
136
  <div style="display: flex; flex-direction: column; gap: 0.5rem">
137
- <quantic-text size="sm" style="font-weight: 600">Select your plan:</quantic-text>
137
+ <p class="story-label">Select your plan:</p>
138
138
  <quantic-radio value="basic" label="Basic - $10/month"></quantic-radio>
139
139
  <quantic-radio value="pro" label="Pro - $25/month"></quantic-radio>
140
140
  <quantic-radio value="enterprise" label="Enterprise - Contact us"></quantic-radio>
@@ -146,11 +146,11 @@ export const FormAssociated = story({
146
146
  <quantic-button size="sm" type="reset" variant="outline">Reset</quantic-button>
147
147
  </div>
148
148
 
149
- <quantic-text size="xs">
149
+ <p class="story-note">
150
150
  This story demonstrates form-associated behavior using ElementInternals
151
151
  with RadioGroup. Try submitting or resetting the form to see the values
152
152
  in the Actions panel.
153
- </quantic-text>
153
+ </p>
154
154
  </form>
155
155
  `);
156
156
  FormAssociated.parameters = {