@marigold/system 13.0.0 → 14.1.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 +6 -2
- package/dist/index.d.ts +6 -2
- package/package.json +11 -11
package/dist/index.d.mts
CHANGED
|
@@ -124,6 +124,7 @@ type Theme = {
|
|
|
124
124
|
Accordion?: Record<'container' | 'item' | 'header' | 'content' | 'icon', ComponentStyleFunction<string, string>>;
|
|
125
125
|
Badge?: ComponentStyleFunction<string, string>;
|
|
126
126
|
Body?: ComponentStyleFunction<string, string>;
|
|
127
|
+
Breadcrumbs?: Record<'container' | 'item' | 'link' | 'current', ComponentStyleFunction<string, string>>;
|
|
127
128
|
Button?: ComponentStyleFunction<string, string>;
|
|
128
129
|
Card?: ComponentStyleFunction<string, string>;
|
|
129
130
|
CloseButton?: ComponentStyleFunction<string, string>;
|
|
@@ -150,7 +151,7 @@ type Theme = {
|
|
|
150
151
|
Menu?: Record<'container' | 'section' | 'item' | 'button', ComponentStyleFunction<string, string>>;
|
|
151
152
|
Modal?: ComponentStyleFunction<string, string>;
|
|
152
153
|
MultiSelect?: Record<'container' | 'closeButton' | 'field' | 'input' | 'icon' | 'listContainer' | 'list' | 'option' | 'tag' | 'valueContainer', ComponentStyleFunction<string, string>>;
|
|
153
|
-
Pagination?: Record<'navigationButton' | 'pageButton' | 'icon', ComponentStyleFunction<string, string>>;
|
|
154
|
+
Pagination?: Record<'container' | 'navigationButton' | 'pageButton' | 'icon' | 'ellipsis', ComponentStyleFunction<string, string>>;
|
|
154
155
|
ProgressCycle?: ComponentStyleFunction<string, string>;
|
|
155
156
|
Radio?: Record<'container' | 'label' | 'radio' | 'group', ComponentStyleFunction<string, string>>;
|
|
156
157
|
Slider?: Record<'container' | 'track' | 'thumb' | 'output' | 'selectedTrack', ComponentStyleFunction<string, string>>;
|
|
@@ -162,6 +163,7 @@ type Theme = {
|
|
|
162
163
|
Text?: ComponentStyleFunction<string, string>;
|
|
163
164
|
TextArea?: ComponentStyleFunction<string, string>;
|
|
164
165
|
Tooltip?: Record<'container' | 'arrow', ComponentStyleFunction<string, string>>;
|
|
166
|
+
Toast?: Record<'toast' | 'title' | 'description' | 'closeButton' | 'icon' | 'content' | 'bottom-left' | 'bottom-right' | 'top-left' | 'top-right' | 'top' | 'bottom', ComponentStyleFunction<string, string>>;
|
|
165
167
|
Tabs?: Record<'container' | 'tabsList' | 'tabpanel' | 'tab', ComponentStyleFunction<string, string>>;
|
|
166
168
|
Underlay?: ComponentStyleFunction<string, string>;
|
|
167
169
|
Calendar?: Record<'calendar' | 'calendarListboxButton' | 'calendarCell' | 'calendarControllers' | 'calendarHeader' | 'calendarGrid' | 'select', ComponentStyleFunction<string, string>>;
|
|
@@ -242,6 +244,7 @@ declare const extendTheme: (newStyles: StylesProps, theme: Theme) => {
|
|
|
242
244
|
Accordion?: Record<"container" | "item" | "header" | "content" | "icon", ComponentStyleFunction<string, string>>;
|
|
243
245
|
Badge?: ComponentStyleFunction<string, string>;
|
|
244
246
|
Body?: ComponentStyleFunction<string, string>;
|
|
247
|
+
Breadcrumbs?: Record<"container" | "item" | "link" | "current", ComponentStyleFunction<string, string>>;
|
|
245
248
|
Button?: ComponentStyleFunction<string, string>;
|
|
246
249
|
Card?: ComponentStyleFunction<string, string>;
|
|
247
250
|
CloseButton?: ComponentStyleFunction<string, string>;
|
|
@@ -268,7 +271,7 @@ declare const extendTheme: (newStyles: StylesProps, theme: Theme) => {
|
|
|
268
271
|
Menu?: Record<"container" | "section" | "item" | "button", ComponentStyleFunction<string, string>>;
|
|
269
272
|
Modal?: ComponentStyleFunction<string, string>;
|
|
270
273
|
MultiSelect?: Record<"container" | "closeButton" | "field" | "input" | "icon" | "listContainer" | "list" | "option" | "tag" | "valueContainer", ComponentStyleFunction<string, string>>;
|
|
271
|
-
Pagination?: Record<"navigationButton" | "pageButton" | "icon", ComponentStyleFunction<string, string>>;
|
|
274
|
+
Pagination?: Record<"container" | "navigationButton" | "pageButton" | "icon" | "ellipsis", ComponentStyleFunction<string, string>>;
|
|
272
275
|
ProgressCycle?: ComponentStyleFunction<string, string>;
|
|
273
276
|
Radio?: Record<"container" | "label" | "radio" | "group", ComponentStyleFunction<string, string>>;
|
|
274
277
|
Slider?: Record<"container" | "track" | "thumb" | "output" | "selectedTrack", ComponentStyleFunction<string, string>>;
|
|
@@ -280,6 +283,7 @@ declare const extendTheme: (newStyles: StylesProps, theme: Theme) => {
|
|
|
280
283
|
Text?: ComponentStyleFunction<string, string>;
|
|
281
284
|
TextArea?: ComponentStyleFunction<string, string>;
|
|
282
285
|
Tooltip?: Record<"container" | "arrow", ComponentStyleFunction<string, string>>;
|
|
286
|
+
Toast?: Record<"toast" | "title" | "description" | "closeButton" | "icon" | "content" | "bottom-left" | "bottom-right" | "top-left" | "top-right" | "top" | "bottom", ComponentStyleFunction<string, string>>;
|
|
283
287
|
Tabs?: Record<"container" | "tabsList" | "tabpanel" | "tab", ComponentStyleFunction<string, string>>;
|
|
284
288
|
Underlay?: ComponentStyleFunction<string, string>;
|
|
285
289
|
Calendar?: Record<"calendar" | "calendarListboxButton" | "calendarCell" | "calendarControllers" | "calendarHeader" | "calendarGrid" | "select", ComponentStyleFunction<string, string>>;
|
package/dist/index.d.ts
CHANGED
|
@@ -124,6 +124,7 @@ type Theme = {
|
|
|
124
124
|
Accordion?: Record<'container' | 'item' | 'header' | 'content' | 'icon', ComponentStyleFunction<string, string>>;
|
|
125
125
|
Badge?: ComponentStyleFunction<string, string>;
|
|
126
126
|
Body?: ComponentStyleFunction<string, string>;
|
|
127
|
+
Breadcrumbs?: Record<'container' | 'item' | 'link' | 'current', ComponentStyleFunction<string, string>>;
|
|
127
128
|
Button?: ComponentStyleFunction<string, string>;
|
|
128
129
|
Card?: ComponentStyleFunction<string, string>;
|
|
129
130
|
CloseButton?: ComponentStyleFunction<string, string>;
|
|
@@ -150,7 +151,7 @@ type Theme = {
|
|
|
150
151
|
Menu?: Record<'container' | 'section' | 'item' | 'button', ComponentStyleFunction<string, string>>;
|
|
151
152
|
Modal?: ComponentStyleFunction<string, string>;
|
|
152
153
|
MultiSelect?: Record<'container' | 'closeButton' | 'field' | 'input' | 'icon' | 'listContainer' | 'list' | 'option' | 'tag' | 'valueContainer', ComponentStyleFunction<string, string>>;
|
|
153
|
-
Pagination?: Record<'navigationButton' | 'pageButton' | 'icon', ComponentStyleFunction<string, string>>;
|
|
154
|
+
Pagination?: Record<'container' | 'navigationButton' | 'pageButton' | 'icon' | 'ellipsis', ComponentStyleFunction<string, string>>;
|
|
154
155
|
ProgressCycle?: ComponentStyleFunction<string, string>;
|
|
155
156
|
Radio?: Record<'container' | 'label' | 'radio' | 'group', ComponentStyleFunction<string, string>>;
|
|
156
157
|
Slider?: Record<'container' | 'track' | 'thumb' | 'output' | 'selectedTrack', ComponentStyleFunction<string, string>>;
|
|
@@ -162,6 +163,7 @@ type Theme = {
|
|
|
162
163
|
Text?: ComponentStyleFunction<string, string>;
|
|
163
164
|
TextArea?: ComponentStyleFunction<string, string>;
|
|
164
165
|
Tooltip?: Record<'container' | 'arrow', ComponentStyleFunction<string, string>>;
|
|
166
|
+
Toast?: Record<'toast' | 'title' | 'description' | 'closeButton' | 'icon' | 'content' | 'bottom-left' | 'bottom-right' | 'top-left' | 'top-right' | 'top' | 'bottom', ComponentStyleFunction<string, string>>;
|
|
165
167
|
Tabs?: Record<'container' | 'tabsList' | 'tabpanel' | 'tab', ComponentStyleFunction<string, string>>;
|
|
166
168
|
Underlay?: ComponentStyleFunction<string, string>;
|
|
167
169
|
Calendar?: Record<'calendar' | 'calendarListboxButton' | 'calendarCell' | 'calendarControllers' | 'calendarHeader' | 'calendarGrid' | 'select', ComponentStyleFunction<string, string>>;
|
|
@@ -242,6 +244,7 @@ declare const extendTheme: (newStyles: StylesProps, theme: Theme) => {
|
|
|
242
244
|
Accordion?: Record<"container" | "item" | "header" | "content" | "icon", ComponentStyleFunction<string, string>>;
|
|
243
245
|
Badge?: ComponentStyleFunction<string, string>;
|
|
244
246
|
Body?: ComponentStyleFunction<string, string>;
|
|
247
|
+
Breadcrumbs?: Record<"container" | "item" | "link" | "current", ComponentStyleFunction<string, string>>;
|
|
245
248
|
Button?: ComponentStyleFunction<string, string>;
|
|
246
249
|
Card?: ComponentStyleFunction<string, string>;
|
|
247
250
|
CloseButton?: ComponentStyleFunction<string, string>;
|
|
@@ -268,7 +271,7 @@ declare const extendTheme: (newStyles: StylesProps, theme: Theme) => {
|
|
|
268
271
|
Menu?: Record<"container" | "section" | "item" | "button", ComponentStyleFunction<string, string>>;
|
|
269
272
|
Modal?: ComponentStyleFunction<string, string>;
|
|
270
273
|
MultiSelect?: Record<"container" | "closeButton" | "field" | "input" | "icon" | "listContainer" | "list" | "option" | "tag" | "valueContainer", ComponentStyleFunction<string, string>>;
|
|
271
|
-
Pagination?: Record<"navigationButton" | "pageButton" | "icon", ComponentStyleFunction<string, string>>;
|
|
274
|
+
Pagination?: Record<"container" | "navigationButton" | "pageButton" | "icon" | "ellipsis", ComponentStyleFunction<string, string>>;
|
|
272
275
|
ProgressCycle?: ComponentStyleFunction<string, string>;
|
|
273
276
|
Radio?: Record<"container" | "label" | "radio" | "group", ComponentStyleFunction<string, string>>;
|
|
274
277
|
Slider?: Record<"container" | "track" | "thumb" | "output" | "selectedTrack", ComponentStyleFunction<string, string>>;
|
|
@@ -280,6 +283,7 @@ declare const extendTheme: (newStyles: StylesProps, theme: Theme) => {
|
|
|
280
283
|
Text?: ComponentStyleFunction<string, string>;
|
|
281
284
|
TextArea?: ComponentStyleFunction<string, string>;
|
|
282
285
|
Tooltip?: Record<"container" | "arrow", ComponentStyleFunction<string, string>>;
|
|
286
|
+
Toast?: Record<"toast" | "title" | "description" | "closeButton" | "icon" | "content" | "bottom-left" | "bottom-right" | "top-left" | "top-right" | "top" | "bottom", ComponentStyleFunction<string, string>>;
|
|
283
287
|
Tabs?: Record<"container" | "tabsList" | "tabpanel" | "tab", ComponentStyleFunction<string, string>>;
|
|
284
288
|
Underlay?: ComponentStyleFunction<string, string>;
|
|
285
289
|
Calendar?: Record<"calendar" | "calendarListboxButton" | "calendarCell" | "calendarControllers" | "calendarHeader" | "calendarGrid" | "select", ComponentStyleFunction<string, string>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@marigold/system",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "14.1.1",
|
|
4
4
|
"description": "Marigold System Library",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -34,25 +34,25 @@
|
|
|
34
34
|
"directory": "packages/system"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@react-aria/i18n": "3.12.
|
|
37
|
+
"@react-aria/i18n": "3.12.11",
|
|
38
38
|
"class-variance-authority": "0.7.1",
|
|
39
39
|
"deepmerge": "4.3.1",
|
|
40
40
|
"react-fast-compare": "3.2.2",
|
|
41
|
-
"tailwind-merge": "3.3.
|
|
42
|
-
"@marigold/types": "1.3.
|
|
41
|
+
"tailwind-merge": "3.3.1",
|
|
42
|
+
"@marigold/types": "1.3.2"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"react": ">=17.0.0",
|
|
46
46
|
"react-dom": ">=17.0.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@babel/core": "7.
|
|
50
|
-
"@types/react": "19.1.
|
|
51
|
-
"postcss": "8.5.
|
|
52
|
-
"react": "19.1.
|
|
53
|
-
"tailwindcss": "4.1.
|
|
54
|
-
"tsup": "8.
|
|
55
|
-
"@marigold/tsconfig": "0.4.
|
|
49
|
+
"@babel/core": "7.28.0",
|
|
50
|
+
"@types/react": "19.1.9",
|
|
51
|
+
"postcss": "8.5.6",
|
|
52
|
+
"react": "19.1.1",
|
|
53
|
+
"tailwindcss": "4.1.11",
|
|
54
|
+
"tsup": "8.5.0",
|
|
55
|
+
"@marigold/tsconfig": "0.4.1"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
58
|
"build": "tsup src/index.ts",
|