@skygraph/react 0.5.3 → 0.6.4
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/README.md +2 -2
- package/dist/{chunk-P4J4PFBG.js → chunk-7AA2JPZB.js} +95 -55
- package/dist/chunk-7AA2JPZB.js.map +1 -0
- package/dist/{chunk-YTPUWPWA.js → chunk-Y6XZ5TLD.js} +43 -2
- package/dist/chunk-Y6XZ5TLD.js.map +1 -0
- package/dist/form.cjs +41 -0
- package/dist/form.cjs.map +1 -1
- package/dist/form.d.cts +1 -1
- package/dist/form.d.ts +1 -1
- package/dist/form.js +1 -1
- package/dist/index.cjs +261 -91
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +230 -141
- package/dist/index.js.map +1 -1
- package/dist/table.cjs +94 -54
- package/dist/table.cjs.map +1 -1
- package/dist/table.js +1 -1
- package/package.json +2 -2
- package/dist/chunk-P4J4PFBG.js.map +0 -1
- package/dist/chunk-YTPUWPWA.js.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -1151,6 +1151,10 @@ interface NotificationConfig {
|
|
|
1151
1151
|
onClose?: () => void;
|
|
1152
1152
|
/** Corner stack this toast belongs to; must match a mounted container. */
|
|
1153
1153
|
placement?: 'topRight' | 'topLeft' | 'bottomRight' | 'bottomLeft';
|
|
1154
|
+
/** Extra class on the toast root — useful for scoped theming. */
|
|
1155
|
+
className?: string;
|
|
1156
|
+
/** Inline style on the toast root; accepts CSS custom properties for per-toast token overrides. */
|
|
1157
|
+
style?: React__default.CSSProperties;
|
|
1154
1158
|
}
|
|
1155
1159
|
declare const notification: {
|
|
1156
1160
|
open: (config: NotificationConfig) => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -1151,6 +1151,10 @@ interface NotificationConfig {
|
|
|
1151
1151
|
onClose?: () => void;
|
|
1152
1152
|
/** Corner stack this toast belongs to; must match a mounted container. */
|
|
1153
1153
|
placement?: 'topRight' | 'topLeft' | 'bottomRight' | 'bottomLeft';
|
|
1154
|
+
/** Extra class on the toast root — useful for scoped theming. */
|
|
1155
|
+
className?: string;
|
|
1156
|
+
/** Inline style on the toast root; accepts CSS custom properties for per-toast token overrides. */
|
|
1157
|
+
style?: React__default.CSSProperties;
|
|
1154
1158
|
}
|
|
1155
1159
|
declare const notification: {
|
|
1156
1160
|
open: (config: NotificationConfig) => void;
|