@marigold/system 11.2.0 → 11.2.2
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 +12 -6
- package/dist/index.d.ts +12 -6
- package/package.json +6 -6
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,14 @@ 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
|
-
|
|
146
|
+
MultiSelect?: Record<'container' | 'closeButton' | 'field' | 'input' | 'icon' | 'listContainer' | 'list' | 'option' | 'tag' | 'valueContainer', ComponentStyleFunction<string, string>>;
|
|
147
|
+
Pagination?: Record<'navigationButton' | 'pageButton' | 'icon', ComponentStyleFunction<string, string>>;
|
|
148
|
+
ProgressCycle?: ComponentStyleFunction<string, string>;
|
|
146
149
|
Radio?: Record<'container' | 'label' | 'radio' | 'group', ComponentStyleFunction<string, string>>;
|
|
147
150
|
Slider?: Record<'container' | 'track' | 'thumb' | 'output' | 'selectedTrack', ComponentStyleFunction<string, string>>;
|
|
148
151
|
Select?: Record<'select' | 'icon', ComponentStyleFunction<string, string>>;
|
|
149
152
|
NumberField?: Record<'group' | 'stepper' | 'input', ComponentStyleFunction<string, string>>;
|
|
150
|
-
SectionMessage?: Record<'container' | 'icon' | 'title' | 'content', ComponentStyleFunction<string, string>>;
|
|
153
|
+
SectionMessage?: Record<'container' | 'icon' | 'title' | 'content' | 'close', ComponentStyleFunction<string, string>>;
|
|
151
154
|
Table?: Record<'table' | 'headerRow' | 'header' | 'body' | 'row' | 'cell', ComponentStyleFunction<string, string>>;
|
|
152
155
|
Tag?: Record<'tag' | 'listItems' | 'closeButton', ComponentStyleFunction<string, string>>;
|
|
153
156
|
Text?: ComponentStyleFunction<string, string>;
|
|
@@ -156,7 +159,7 @@ type Theme = {
|
|
|
156
159
|
Tabs?: Record<'container' | 'tabsList' | 'tabpanel' | 'tab', ComponentStyleFunction<string, string>>;
|
|
157
160
|
Underlay?: ComponentStyleFunction<string, string>;
|
|
158
161
|
Calendar?: Record<'calendar' | 'calendarCell' | 'calendarControllers' | 'calendarHeader' | 'calendarGrid', ComponentStyleFunction<string, string>>;
|
|
159
|
-
DatePicker?:
|
|
162
|
+
DatePicker?: ComponentStyleFunction<string, string>;
|
|
160
163
|
ComboBox?: ComponentStyleFunction<string, string>;
|
|
161
164
|
XLoader?: Record<'container' | 'loader' | 'label', ComponentStyleFunction<string, string>>;
|
|
162
165
|
};
|
|
@@ -237,6 +240,7 @@ declare const extendTheme: (newStyles: StylesProps, theme: Theme) => {
|
|
|
237
240
|
Headline?: ComponentStyleFunction<string, string>;
|
|
238
241
|
Popover?: ComponentStyleFunction<string, string>;
|
|
239
242
|
HelpText?: Record<"container" | "icon", ComponentStyleFunction<string, string>>;
|
|
243
|
+
IconButton?: ComponentStyleFunction<string, string>;
|
|
240
244
|
Image?: ComponentStyleFunction<string, string>;
|
|
241
245
|
Checkbox?: Record<"container" | "label" | "checkbox" | "group", ComponentStyleFunction<string, string>>;
|
|
242
246
|
Switch?: Record<"container" | "track" | "thumb", ComponentStyleFunction<string, string>>;
|
|
@@ -246,12 +250,14 @@ declare const extendTheme: (newStyles: StylesProps, theme: Theme) => {
|
|
|
246
250
|
Link?: ComponentStyleFunction<string, string>;
|
|
247
251
|
ListBox?: Record<"container" | "list" | "option" | "section" | "header", ComponentStyleFunction<string, string>>;
|
|
248
252
|
Menu?: Record<"container" | "section" | "item", ComponentStyleFunction<string, string>>;
|
|
249
|
-
|
|
253
|
+
MultiSelect?: Record<"container" | "closeButton" | "field" | "input" | "icon" | "listContainer" | "list" | "option" | "tag" | "valueContainer", ComponentStyleFunction<string, string>>;
|
|
254
|
+
Pagination?: Record<"navigationButton" | "pageButton" | "icon", ComponentStyleFunction<string, string>>;
|
|
255
|
+
ProgressCycle?: ComponentStyleFunction<string, string>;
|
|
250
256
|
Radio?: Record<"container" | "label" | "radio" | "group", ComponentStyleFunction<string, string>>;
|
|
251
257
|
Slider?: Record<"container" | "track" | "thumb" | "output" | "selectedTrack", ComponentStyleFunction<string, string>>;
|
|
252
258
|
Select?: Record<"select" | "icon", ComponentStyleFunction<string, string>>;
|
|
253
259
|
NumberField?: Record<"group" | "stepper" | "input", ComponentStyleFunction<string, string>>;
|
|
254
|
-
SectionMessage?: Record<"container" | "icon" | "title" | "content", ComponentStyleFunction<string, string>>;
|
|
260
|
+
SectionMessage?: Record<"container" | "icon" | "title" | "content" | "close", ComponentStyleFunction<string, string>>;
|
|
255
261
|
Table?: Record<"table" | "headerRow" | "header" | "body" | "row" | "cell", ComponentStyleFunction<string, string>>;
|
|
256
262
|
Tag?: Record<"tag" | "listItems" | "closeButton", ComponentStyleFunction<string, string>>;
|
|
257
263
|
Text?: ComponentStyleFunction<string, string>;
|
|
@@ -260,7 +266,7 @@ declare const extendTheme: (newStyles: StylesProps, theme: Theme) => {
|
|
|
260
266
|
Tabs?: Record<"container" | "tabsList" | "tabpanel" | "tab", ComponentStyleFunction<string, string>>;
|
|
261
267
|
Underlay?: ComponentStyleFunction<string, string>;
|
|
262
268
|
Calendar?: Record<"calendar" | "calendarCell" | "calendarControllers" | "calendarHeader" | "calendarGrid", ComponentStyleFunction<string, string>>;
|
|
263
|
-
DatePicker?:
|
|
269
|
+
DatePicker?: ComponentStyleFunction<string, string>;
|
|
264
270
|
ComboBox?: ComponentStyleFunction<string, string>;
|
|
265
271
|
XLoader?: Record<"container" | "loader" | "label", ComponentStyleFunction<string, string>>;
|
|
266
272
|
};
|
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,14 @@ 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
|
-
|
|
146
|
+
MultiSelect?: Record<'container' | 'closeButton' | 'field' | 'input' | 'icon' | 'listContainer' | 'list' | 'option' | 'tag' | 'valueContainer', ComponentStyleFunction<string, string>>;
|
|
147
|
+
Pagination?: Record<'navigationButton' | 'pageButton' | 'icon', ComponentStyleFunction<string, string>>;
|
|
148
|
+
ProgressCycle?: ComponentStyleFunction<string, string>;
|
|
146
149
|
Radio?: Record<'container' | 'label' | 'radio' | 'group', ComponentStyleFunction<string, string>>;
|
|
147
150
|
Slider?: Record<'container' | 'track' | 'thumb' | 'output' | 'selectedTrack', ComponentStyleFunction<string, string>>;
|
|
148
151
|
Select?: Record<'select' | 'icon', ComponentStyleFunction<string, string>>;
|
|
149
152
|
NumberField?: Record<'group' | 'stepper' | 'input', ComponentStyleFunction<string, string>>;
|
|
150
|
-
SectionMessage?: Record<'container' | 'icon' | 'title' | 'content', ComponentStyleFunction<string, string>>;
|
|
153
|
+
SectionMessage?: Record<'container' | 'icon' | 'title' | 'content' | 'close', ComponentStyleFunction<string, string>>;
|
|
151
154
|
Table?: Record<'table' | 'headerRow' | 'header' | 'body' | 'row' | 'cell', ComponentStyleFunction<string, string>>;
|
|
152
155
|
Tag?: Record<'tag' | 'listItems' | 'closeButton', ComponentStyleFunction<string, string>>;
|
|
153
156
|
Text?: ComponentStyleFunction<string, string>;
|
|
@@ -156,7 +159,7 @@ type Theme = {
|
|
|
156
159
|
Tabs?: Record<'container' | 'tabsList' | 'tabpanel' | 'tab', ComponentStyleFunction<string, string>>;
|
|
157
160
|
Underlay?: ComponentStyleFunction<string, string>;
|
|
158
161
|
Calendar?: Record<'calendar' | 'calendarCell' | 'calendarControllers' | 'calendarHeader' | 'calendarGrid', ComponentStyleFunction<string, string>>;
|
|
159
|
-
DatePicker?:
|
|
162
|
+
DatePicker?: ComponentStyleFunction<string, string>;
|
|
160
163
|
ComboBox?: ComponentStyleFunction<string, string>;
|
|
161
164
|
XLoader?: Record<'container' | 'loader' | 'label', ComponentStyleFunction<string, string>>;
|
|
162
165
|
};
|
|
@@ -237,6 +240,7 @@ declare const extendTheme: (newStyles: StylesProps, theme: Theme) => {
|
|
|
237
240
|
Headline?: ComponentStyleFunction<string, string>;
|
|
238
241
|
Popover?: ComponentStyleFunction<string, string>;
|
|
239
242
|
HelpText?: Record<"container" | "icon", ComponentStyleFunction<string, string>>;
|
|
243
|
+
IconButton?: ComponentStyleFunction<string, string>;
|
|
240
244
|
Image?: ComponentStyleFunction<string, string>;
|
|
241
245
|
Checkbox?: Record<"container" | "label" | "checkbox" | "group", ComponentStyleFunction<string, string>>;
|
|
242
246
|
Switch?: Record<"container" | "track" | "thumb", ComponentStyleFunction<string, string>>;
|
|
@@ -246,12 +250,14 @@ declare const extendTheme: (newStyles: StylesProps, theme: Theme) => {
|
|
|
246
250
|
Link?: ComponentStyleFunction<string, string>;
|
|
247
251
|
ListBox?: Record<"container" | "list" | "option" | "section" | "header", ComponentStyleFunction<string, string>>;
|
|
248
252
|
Menu?: Record<"container" | "section" | "item", ComponentStyleFunction<string, string>>;
|
|
249
|
-
|
|
253
|
+
MultiSelect?: Record<"container" | "closeButton" | "field" | "input" | "icon" | "listContainer" | "list" | "option" | "tag" | "valueContainer", ComponentStyleFunction<string, string>>;
|
|
254
|
+
Pagination?: Record<"navigationButton" | "pageButton" | "icon", ComponentStyleFunction<string, string>>;
|
|
255
|
+
ProgressCycle?: ComponentStyleFunction<string, string>;
|
|
250
256
|
Radio?: Record<"container" | "label" | "radio" | "group", ComponentStyleFunction<string, string>>;
|
|
251
257
|
Slider?: Record<"container" | "track" | "thumb" | "output" | "selectedTrack", ComponentStyleFunction<string, string>>;
|
|
252
258
|
Select?: Record<"select" | "icon", ComponentStyleFunction<string, string>>;
|
|
253
259
|
NumberField?: Record<"group" | "stepper" | "input", ComponentStyleFunction<string, string>>;
|
|
254
|
-
SectionMessage?: Record<"container" | "icon" | "title" | "content", ComponentStyleFunction<string, string>>;
|
|
260
|
+
SectionMessage?: Record<"container" | "icon" | "title" | "content" | "close", ComponentStyleFunction<string, string>>;
|
|
255
261
|
Table?: Record<"table" | "headerRow" | "header" | "body" | "row" | "cell", ComponentStyleFunction<string, string>>;
|
|
256
262
|
Tag?: Record<"tag" | "listItems" | "closeButton", ComponentStyleFunction<string, string>>;
|
|
257
263
|
Text?: ComponentStyleFunction<string, string>;
|
|
@@ -260,7 +266,7 @@ declare const extendTheme: (newStyles: StylesProps, theme: Theme) => {
|
|
|
260
266
|
Tabs?: Record<"container" | "tabsList" | "tabpanel" | "tab", ComponentStyleFunction<string, string>>;
|
|
261
267
|
Underlay?: ComponentStyleFunction<string, string>;
|
|
262
268
|
Calendar?: Record<"calendar" | "calendarCell" | "calendarControllers" | "calendarHeader" | "calendarGrid", ComponentStyleFunction<string, string>>;
|
|
263
|
-
DatePicker?:
|
|
269
|
+
DatePicker?: ComponentStyleFunction<string, string>;
|
|
264
270
|
ComboBox?: ComponentStyleFunction<string, string>;
|
|
265
271
|
XLoader?: Record<"container" | "loader" | "label", ComponentStyleFunction<string, string>>;
|
|
266
272
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@marigold/system",
|
|
3
|
-
"version": "11.2.
|
|
3
|
+
"version": "11.2.2",
|
|
4
4
|
"description": "Marigold System Library",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
"directory": "packages/system"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@react-aria/i18n": "3.12.
|
|
27
|
+
"@react-aria/i18n": "3.12.6",
|
|
28
28
|
"class-variance-authority": "0.7.1",
|
|
29
29
|
"deepmerge": "4.3.1",
|
|
30
30
|
"react-fast-compare": "3.2.2",
|
|
31
|
-
"tailwind-merge": "
|
|
31
|
+
"tailwind-merge": "3.0.2",
|
|
32
32
|
"@marigold/types": "1.3.0"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@babel/core": "7.26.9",
|
|
40
|
-
"
|
|
40
|
+
"@types/react": "19.0.10",
|
|
41
|
+
"postcss": "8.5.3",
|
|
41
42
|
"react": "19.0.0",
|
|
42
|
-
"
|
|
43
|
-
"tailwindcss": "4.0.6",
|
|
43
|
+
"tailwindcss": "4.0.12",
|
|
44
44
|
"tsup": "8.3.6",
|
|
45
45
|
"@marigold/tsconfig": "0.4.0"
|
|
46
46
|
},
|