shinkansen-sprockets 2.1.17 → 2.1.19
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/index.d.mts +26 -4
- package/package.json +7 -6
package/index.d.mts
CHANGED
@@ -118,15 +118,18 @@ declare global {
|
|
118
118
|
|
119
119
|
export namespace CheckAnswers {
|
120
120
|
export interface CheckAnswersProps extends SprocketProps {
|
121
|
+
title?: string
|
121
122
|
checkAnswers?: AnswerDefinitionType[]
|
122
123
|
}
|
123
124
|
|
124
125
|
export namespace Group {
|
125
126
|
export interface CheckAnswersProps extends Super.Components.Group.GroupProps {
|
127
|
+
title?: string
|
126
128
|
checkAnswers?: AnswerDefinitionType[]
|
127
129
|
}
|
128
130
|
|
129
131
|
export interface CheckAnswersState extends Super.Components.Group.GroupState {
|
132
|
+
title?: string
|
130
133
|
checkAnswers?: AnswerDefinitionType[]
|
131
134
|
}
|
132
135
|
}
|
@@ -138,15 +141,18 @@ declare global {
|
|
138
141
|
|
139
142
|
export namespace ErrorSummary {
|
140
143
|
export interface ErrorSummaryProps extends SprocketProps {
|
144
|
+
title?: string
|
141
145
|
errorSummary?: ErrorDefinitionType[]
|
142
146
|
}
|
143
147
|
|
144
148
|
export namespace Group {
|
145
149
|
export interface ErrorSummaryProps extends Super.Components.Group.GroupProps {
|
150
|
+
title?: string
|
146
151
|
errorSummary?: ErrorDefinitionType[]
|
147
152
|
}
|
148
153
|
|
149
154
|
export interface ErrorSummaryState extends Super.Components.Group.GroupState {
|
155
|
+
title?: string
|
150
156
|
errorSummary?: ErrorDefinitionType[]
|
151
157
|
}
|
152
158
|
}
|
@@ -157,14 +163,30 @@ declare global {
|
|
157
163
|
}
|
158
164
|
|
159
165
|
export namespace Fieldset {
|
160
|
-
export
|
166
|
+
export interface FieldsetProps extends SprocketProps {
|
167
|
+
title?: string
|
168
|
+
description?: string
|
169
|
+
errorMessage?: ErrorDefinitionType
|
170
|
+
}
|
161
171
|
|
162
|
-
export
|
172
|
+
export interface FieldsetState extends SprocketState {
|
173
|
+
title?: string
|
174
|
+
description?: string
|
175
|
+
errorMessage?: ErrorDefinitionType
|
176
|
+
}
|
163
177
|
|
164
178
|
export namespace Group {
|
165
|
-
export
|
179
|
+
export interface FieldsetProps extends Super.Components.Group.GroupProps {
|
180
|
+
title?: string
|
181
|
+
description?: string
|
182
|
+
errorMessage?: ErrorDefinitionType
|
183
|
+
}
|
166
184
|
|
167
|
-
export
|
185
|
+
export interface FieldsetState extends Super.Components.Group.GroupState {
|
186
|
+
title?: string
|
187
|
+
description?: string
|
188
|
+
errorMessage?: ErrorDefinitionType
|
189
|
+
}
|
168
190
|
}
|
169
191
|
|
170
192
|
export namespace Title {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "shinkansen-sprockets",
|
3
|
-
"version": "2.1.
|
3
|
+
"version": "2.1.19",
|
4
4
|
"description": "Shinkansen Sprockets",
|
5
5
|
"keywords": [
|
6
6
|
"Shinkansen",
|
@@ -107,11 +107,11 @@
|
|
107
107
|
"postcss-map": "^0.11.0",
|
108
108
|
"prettier": "^3.5.3",
|
109
109
|
"prop-types": "^15.8.1",
|
110
|
-
"react": "^19.
|
111
|
-
"react-component-instance": "^0.0.
|
110
|
+
"react": "^19.1.0",
|
111
|
+
"react-component-instance": "^0.0.17",
|
112
112
|
"react-component-snapshot": "^0.0.17",
|
113
|
-
"react-dom": "^19.
|
114
|
-
"react-router": "^7.4.
|
113
|
+
"react-dom": "^19.1.0",
|
114
|
+
"react-router": "^7.4.1",
|
115
115
|
"remove-files-webpack-plugin": "^1.5.0",
|
116
116
|
"sass": "^1.86.0",
|
117
117
|
"sass-loader": "^16.0.5",
|
@@ -150,7 +150,8 @@
|
|
150
150
|
"#sprockets/transformers": "./src/js/transformers/index.mjs",
|
151
151
|
"#sprockets/transformers/*": "./src/js/transformers/*/index.mjs",
|
152
152
|
"#stories/definitions/*": "./stories/definitions/*.json",
|
153
|
-
"#stories/sprockets/*": "./stories/sprockets/*/index.stories.jsx"
|
153
|
+
"#stories/sprockets/*": "./stories/sprockets/*/index.stories.jsx",
|
154
|
+
"#stories/sprockets/sort": "./stories/sprockets/sort.mjs"
|
154
155
|
},
|
155
156
|
"exports": {
|
156
157
|
".": {
|