@marigold/system 11.2.0 → 11.2.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/index.d.mts +10 -6
- package/dist/index.d.ts +10 -6
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -133,6 +133,7 @@ type Theme = {
|
|
|
133
133
|
Headline?: ComponentStyleFunction<string, string>;
|
|
134
134
|
Popover?: ComponentStyleFunction<string, string>;
|
|
135
135
|
HelpText?: Record<'container' | 'icon', ComponentStyleFunction<string, string>>;
|
|
136
|
+
IconButton?: ComponentStyleFunction<string, string>;
|
|
136
137
|
Image?: ComponentStyleFunction<string, string>;
|
|
137
138
|
Checkbox?: Record<'container' | 'label' | 'checkbox' | 'group', ComponentStyleFunction<string, string>>;
|
|
138
139
|
Switch?: Record<'container' | 'track' | 'thumb', ComponentStyleFunction<string, string>>;
|
|
@@ -142,12 +143,13 @@ type Theme = {
|
|
|
142
143
|
Link?: ComponentStyleFunction<string, string>;
|
|
143
144
|
ListBox?: Record<'container' | 'list' | 'option' | 'section' | 'header', ComponentStyleFunction<string, string>>;
|
|
144
145
|
Menu?: Record<'container' | 'section' | 'item', ComponentStyleFunction<string, string>>;
|
|
145
|
-
Pagination?: ComponentStyleFunction<string, string
|
|
146
|
+
Pagination?: Record<'navigationButton' | 'pageButton' | 'icon', ComponentStyleFunction<string, string>>;
|
|
147
|
+
ProgressCycle?: ComponentStyleFunction<string, string>;
|
|
146
148
|
Radio?: Record<'container' | 'label' | 'radio' | 'group', ComponentStyleFunction<string, string>>;
|
|
147
149
|
Slider?: Record<'container' | 'track' | 'thumb' | 'output' | 'selectedTrack', ComponentStyleFunction<string, string>>;
|
|
148
150
|
Select?: Record<'select' | 'icon', ComponentStyleFunction<string, string>>;
|
|
149
151
|
NumberField?: Record<'group' | 'stepper' | 'input', ComponentStyleFunction<string, string>>;
|
|
150
|
-
SectionMessage?: Record<'container' | 'icon' | 'title' | 'content', ComponentStyleFunction<string, string>>;
|
|
152
|
+
SectionMessage?: Record<'container' | 'icon' | 'title' | 'content' | 'close', ComponentStyleFunction<string, string>>;
|
|
151
153
|
Table?: Record<'table' | 'headerRow' | 'header' | 'body' | 'row' | 'cell', ComponentStyleFunction<string, string>>;
|
|
152
154
|
Tag?: Record<'tag' | 'listItems' | 'closeButton', ComponentStyleFunction<string, string>>;
|
|
153
155
|
Text?: ComponentStyleFunction<string, string>;
|
|
@@ -156,7 +158,7 @@ type Theme = {
|
|
|
156
158
|
Tabs?: Record<'container' | 'tabsList' | 'tabpanel' | 'tab', ComponentStyleFunction<string, string>>;
|
|
157
159
|
Underlay?: ComponentStyleFunction<string, string>;
|
|
158
160
|
Calendar?: Record<'calendar' | 'calendarCell' | 'calendarControllers' | 'calendarHeader' | 'calendarGrid', ComponentStyleFunction<string, string>>;
|
|
159
|
-
DatePicker?:
|
|
161
|
+
DatePicker?: ComponentStyleFunction<string, string>;
|
|
160
162
|
ComboBox?: ComponentStyleFunction<string, string>;
|
|
161
163
|
XLoader?: Record<'container' | 'loader' | 'label', ComponentStyleFunction<string, string>>;
|
|
162
164
|
};
|
|
@@ -237,6 +239,7 @@ declare const extendTheme: (newStyles: StylesProps, theme: Theme) => {
|
|
|
237
239
|
Headline?: ComponentStyleFunction<string, string>;
|
|
238
240
|
Popover?: ComponentStyleFunction<string, string>;
|
|
239
241
|
HelpText?: Record<"container" | "icon", ComponentStyleFunction<string, string>>;
|
|
242
|
+
IconButton?: ComponentStyleFunction<string, string>;
|
|
240
243
|
Image?: ComponentStyleFunction<string, string>;
|
|
241
244
|
Checkbox?: Record<"container" | "label" | "checkbox" | "group", ComponentStyleFunction<string, string>>;
|
|
242
245
|
Switch?: Record<"container" | "track" | "thumb", ComponentStyleFunction<string, string>>;
|
|
@@ -246,12 +249,13 @@ declare const extendTheme: (newStyles: StylesProps, theme: Theme) => {
|
|
|
246
249
|
Link?: ComponentStyleFunction<string, string>;
|
|
247
250
|
ListBox?: Record<"container" | "list" | "option" | "section" | "header", ComponentStyleFunction<string, string>>;
|
|
248
251
|
Menu?: Record<"container" | "section" | "item", ComponentStyleFunction<string, string>>;
|
|
249
|
-
Pagination?: ComponentStyleFunction<string, string
|
|
252
|
+
Pagination?: Record<"navigationButton" | "pageButton" | "icon", ComponentStyleFunction<string, string>>;
|
|
253
|
+
ProgressCycle?: ComponentStyleFunction<string, string>;
|
|
250
254
|
Radio?: Record<"container" | "label" | "radio" | "group", ComponentStyleFunction<string, string>>;
|
|
251
255
|
Slider?: Record<"container" | "track" | "thumb" | "output" | "selectedTrack", ComponentStyleFunction<string, string>>;
|
|
252
256
|
Select?: Record<"select" | "icon", ComponentStyleFunction<string, string>>;
|
|
253
257
|
NumberField?: Record<"group" | "stepper" | "input", ComponentStyleFunction<string, string>>;
|
|
254
|
-
SectionMessage?: Record<"container" | "icon" | "title" | "content", ComponentStyleFunction<string, string>>;
|
|
258
|
+
SectionMessage?: Record<"container" | "icon" | "title" | "content" | "close", ComponentStyleFunction<string, string>>;
|
|
255
259
|
Table?: Record<"table" | "headerRow" | "header" | "body" | "row" | "cell", ComponentStyleFunction<string, string>>;
|
|
256
260
|
Tag?: Record<"tag" | "listItems" | "closeButton", ComponentStyleFunction<string, string>>;
|
|
257
261
|
Text?: ComponentStyleFunction<string, string>;
|
|
@@ -260,7 +264,7 @@ declare const extendTheme: (newStyles: StylesProps, theme: Theme) => {
|
|
|
260
264
|
Tabs?: Record<"container" | "tabsList" | "tabpanel" | "tab", ComponentStyleFunction<string, string>>;
|
|
261
265
|
Underlay?: ComponentStyleFunction<string, string>;
|
|
262
266
|
Calendar?: Record<"calendar" | "calendarCell" | "calendarControllers" | "calendarHeader" | "calendarGrid", ComponentStyleFunction<string, string>>;
|
|
263
|
-
DatePicker?:
|
|
267
|
+
DatePicker?: ComponentStyleFunction<string, string>;
|
|
264
268
|
ComboBox?: ComponentStyleFunction<string, string>;
|
|
265
269
|
XLoader?: Record<"container" | "loader" | "label", ComponentStyleFunction<string, string>>;
|
|
266
270
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -133,6 +133,7 @@ type Theme = {
|
|
|
133
133
|
Headline?: ComponentStyleFunction<string, string>;
|
|
134
134
|
Popover?: ComponentStyleFunction<string, string>;
|
|
135
135
|
HelpText?: Record<'container' | 'icon', ComponentStyleFunction<string, string>>;
|
|
136
|
+
IconButton?: ComponentStyleFunction<string, string>;
|
|
136
137
|
Image?: ComponentStyleFunction<string, string>;
|
|
137
138
|
Checkbox?: Record<'container' | 'label' | 'checkbox' | 'group', ComponentStyleFunction<string, string>>;
|
|
138
139
|
Switch?: Record<'container' | 'track' | 'thumb', ComponentStyleFunction<string, string>>;
|
|
@@ -142,12 +143,13 @@ type Theme = {
|
|
|
142
143
|
Link?: ComponentStyleFunction<string, string>;
|
|
143
144
|
ListBox?: Record<'container' | 'list' | 'option' | 'section' | 'header', ComponentStyleFunction<string, string>>;
|
|
144
145
|
Menu?: Record<'container' | 'section' | 'item', ComponentStyleFunction<string, string>>;
|
|
145
|
-
Pagination?: ComponentStyleFunction<string, string
|
|
146
|
+
Pagination?: Record<'navigationButton' | 'pageButton' | 'icon', ComponentStyleFunction<string, string>>;
|
|
147
|
+
ProgressCycle?: ComponentStyleFunction<string, string>;
|
|
146
148
|
Radio?: Record<'container' | 'label' | 'radio' | 'group', ComponentStyleFunction<string, string>>;
|
|
147
149
|
Slider?: Record<'container' | 'track' | 'thumb' | 'output' | 'selectedTrack', ComponentStyleFunction<string, string>>;
|
|
148
150
|
Select?: Record<'select' | 'icon', ComponentStyleFunction<string, string>>;
|
|
149
151
|
NumberField?: Record<'group' | 'stepper' | 'input', ComponentStyleFunction<string, string>>;
|
|
150
|
-
SectionMessage?: Record<'container' | 'icon' | 'title' | 'content', ComponentStyleFunction<string, string>>;
|
|
152
|
+
SectionMessage?: Record<'container' | 'icon' | 'title' | 'content' | 'close', ComponentStyleFunction<string, string>>;
|
|
151
153
|
Table?: Record<'table' | 'headerRow' | 'header' | 'body' | 'row' | 'cell', ComponentStyleFunction<string, string>>;
|
|
152
154
|
Tag?: Record<'tag' | 'listItems' | 'closeButton', ComponentStyleFunction<string, string>>;
|
|
153
155
|
Text?: ComponentStyleFunction<string, string>;
|
|
@@ -156,7 +158,7 @@ type Theme = {
|
|
|
156
158
|
Tabs?: Record<'container' | 'tabsList' | 'tabpanel' | 'tab', ComponentStyleFunction<string, string>>;
|
|
157
159
|
Underlay?: ComponentStyleFunction<string, string>;
|
|
158
160
|
Calendar?: Record<'calendar' | 'calendarCell' | 'calendarControllers' | 'calendarHeader' | 'calendarGrid', ComponentStyleFunction<string, string>>;
|
|
159
|
-
DatePicker?:
|
|
161
|
+
DatePicker?: ComponentStyleFunction<string, string>;
|
|
160
162
|
ComboBox?: ComponentStyleFunction<string, string>;
|
|
161
163
|
XLoader?: Record<'container' | 'loader' | 'label', ComponentStyleFunction<string, string>>;
|
|
162
164
|
};
|
|
@@ -237,6 +239,7 @@ declare const extendTheme: (newStyles: StylesProps, theme: Theme) => {
|
|
|
237
239
|
Headline?: ComponentStyleFunction<string, string>;
|
|
238
240
|
Popover?: ComponentStyleFunction<string, string>;
|
|
239
241
|
HelpText?: Record<"container" | "icon", ComponentStyleFunction<string, string>>;
|
|
242
|
+
IconButton?: ComponentStyleFunction<string, string>;
|
|
240
243
|
Image?: ComponentStyleFunction<string, string>;
|
|
241
244
|
Checkbox?: Record<"container" | "label" | "checkbox" | "group", ComponentStyleFunction<string, string>>;
|
|
242
245
|
Switch?: Record<"container" | "track" | "thumb", ComponentStyleFunction<string, string>>;
|
|
@@ -246,12 +249,13 @@ declare const extendTheme: (newStyles: StylesProps, theme: Theme) => {
|
|
|
246
249
|
Link?: ComponentStyleFunction<string, string>;
|
|
247
250
|
ListBox?: Record<"container" | "list" | "option" | "section" | "header", ComponentStyleFunction<string, string>>;
|
|
248
251
|
Menu?: Record<"container" | "section" | "item", ComponentStyleFunction<string, string>>;
|
|
249
|
-
Pagination?: ComponentStyleFunction<string, string
|
|
252
|
+
Pagination?: Record<"navigationButton" | "pageButton" | "icon", ComponentStyleFunction<string, string>>;
|
|
253
|
+
ProgressCycle?: ComponentStyleFunction<string, string>;
|
|
250
254
|
Radio?: Record<"container" | "label" | "radio" | "group", ComponentStyleFunction<string, string>>;
|
|
251
255
|
Slider?: Record<"container" | "track" | "thumb" | "output" | "selectedTrack", ComponentStyleFunction<string, string>>;
|
|
252
256
|
Select?: Record<"select" | "icon", ComponentStyleFunction<string, string>>;
|
|
253
257
|
NumberField?: Record<"group" | "stepper" | "input", ComponentStyleFunction<string, string>>;
|
|
254
|
-
SectionMessage?: Record<"container" | "icon" | "title" | "content", ComponentStyleFunction<string, string>>;
|
|
258
|
+
SectionMessage?: Record<"container" | "icon" | "title" | "content" | "close", ComponentStyleFunction<string, string>>;
|
|
255
259
|
Table?: Record<"table" | "headerRow" | "header" | "body" | "row" | "cell", ComponentStyleFunction<string, string>>;
|
|
256
260
|
Tag?: Record<"tag" | "listItems" | "closeButton", ComponentStyleFunction<string, string>>;
|
|
257
261
|
Text?: ComponentStyleFunction<string, string>;
|
|
@@ -260,7 +264,7 @@ declare const extendTheme: (newStyles: StylesProps, theme: Theme) => {
|
|
|
260
264
|
Tabs?: Record<"container" | "tabsList" | "tabpanel" | "tab", ComponentStyleFunction<string, string>>;
|
|
261
265
|
Underlay?: ComponentStyleFunction<string, string>;
|
|
262
266
|
Calendar?: Record<"calendar" | "calendarCell" | "calendarControllers" | "calendarHeader" | "calendarGrid", ComponentStyleFunction<string, string>>;
|
|
263
|
-
DatePicker?:
|
|
267
|
+
DatePicker?: ComponentStyleFunction<string, string>;
|
|
264
268
|
ComboBox?: ComponentStyleFunction<string, string>;
|
|
265
269
|
XLoader?: Record<"container" | "loader" | "label", ComponentStyleFunction<string, string>>;
|
|
266
270
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@marigold/system",
|
|
3
|
-
"version": "11.2.
|
|
3
|
+
"version": "11.2.1",
|
|
4
4
|
"description": "Marigold System Library",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@babel/core": "7.26.9",
|
|
40
|
-
"postcss": "8.5.
|
|
40
|
+
"postcss": "8.5.3",
|
|
41
41
|
"react": "19.0.0",
|
|
42
|
-
"@types/react": "19.0.
|
|
43
|
-
"tailwindcss": "4.0.
|
|
42
|
+
"@types/react": "19.0.10",
|
|
43
|
+
"tailwindcss": "4.0.9",
|
|
44
44
|
"tsup": "8.3.6",
|
|
45
45
|
"@marigold/tsconfig": "0.4.0"
|
|
46
46
|
},
|