@ctrliq/quantic-components 1.85.1 → 1.86.1
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/card/card-carousel.stories.js +2 -2
- package/dist/card/card-group.stories.js +2 -2
- package/dist/checkbox/index.stories.js +3 -3
- package/dist/cluster/cluster.component.d.ts +7 -0
- package/dist/cluster/cluster.component.js +14 -5
- package/dist/cluster/index.constants.d.ts +3 -0
- package/dist/cluster/index.constants.js +3 -0
- package/dist/code-input/index.stories.js +3 -3
- package/dist/field/field.stories.d.ts +1 -0
- package/dist/field/field.stories.js +1 -0
- package/dist/grid/grid.component.d.ts +8 -0
- package/dist/grid/grid.component.js +16 -2
- package/dist/index.js.map +1 -1
- package/dist/meta/index.js.map +1 -1
- package/dist/meta.json +62 -65
- package/dist/number-input/index.stories.js +3 -3
- package/dist/option-card/option-card-group.stories.js +3 -3
- package/dist/panel/panel-group.stories.js +1 -1
- package/dist/quantic-components.js +48 -10
- package/dist/quantic-components.js.map +1 -1
- package/dist/quantic-components.min.js +3 -3
- package/dist/quantic-components.min.js.map +1 -1
- package/dist/radio/index.stories.js +1 -1
- package/dist/radio/radio-group.stories.js +5 -5
- package/dist/register.js.map +1 -1
- package/dist/shared/meta.types.d.ts +1 -1
- package/dist/tabs/index.stories.js +35 -35
- package/dist/text/index.constants.d.ts +4 -0
- package/dist/text/index.constants.js +2 -0
- package/dist/text/index.d.ts +7 -0
- package/dist/text/index.js +13 -3
- package/dist/text-input/index.stories.js +3 -3
- package/dist/textarea/index.stories.js +3 -3
- package/dist/toggle/index.stories.js +3 -3
- package/dist/types/cluster/cluster.component.d.ts +7 -0
- package/dist/types/cluster/index.constants.d.ts +3 -0
- package/dist/types/field/field.stories.d.ts +1 -0
- package/dist/types/grid/grid.component.d.ts +8 -0
- package/dist/types/shared/meta.types.d.ts +1 -1
- package/dist/types/text/index.constants.d.ts +4 -0
- package/dist/types/text/index.d.ts +7 -0
- package/package.json +1 -1
- package/dist/cluster/cluster.stories.d.ts +0 -57
- package/dist/cluster/cluster.stories.js +0 -67
- package/dist/grid/grid.stories.d.ts +0 -36
- package/dist/grid/grid.stories.js +0 -95
- package/dist/text/index.stories.d.ts +0 -50
- package/dist/text/index.stories.js +0 -55
- package/dist/types/cluster/cluster.stories.d.ts +0 -57
- package/dist/types/grid/grid.stories.d.ts +0 -36
- 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
|
-
<
|
|
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
|
-
<
|
|
126
|
+
<p class="story-label">
|
|
127
127
|
Select your preferred contact method:
|
|
128
|
-
</
|
|
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
|
-
<
|
|
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
|
-
<
|
|
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
|
-
</
|
|
153
|
+
</p>
|
|
154
154
|
</form>
|
|
155
155
|
`);
|
|
156
156
|
FormAssociated.parameters = {
|