@okshaun/components 0.3.0 → 0.3.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.ts +2 -0
- package/dist/index.js +24 -2
- package/dist/index.js.map +1 -1
- package/dist/panda.buildinfo.json +2 -0
- package/dist/preset.js +39 -3
- package/dist/preset.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -745,6 +745,8 @@ declare type SpinnerProps = Omit<BoxProps, keyof SpinnerVariantProps> & SpinnerV
|
|
|
745
745
|
className?: string;
|
|
746
746
|
};
|
|
747
747
|
|
|
748
|
+
export declare const splitProps: (props: Record<string, any>) => [string, Record<string, any>];
|
|
749
|
+
|
|
748
750
|
export declare const Tag: React.FC<TagProps>;
|
|
749
751
|
|
|
750
752
|
declare type TagProps = BoxProps & TagVariantProps & {
|
package/dist/index.js
CHANGED
|
@@ -1199,7 +1199,8 @@ const textareaVariantMap = {
|
|
|
1199
1199
|
"size": [
|
|
1200
1200
|
"medium",
|
|
1201
1201
|
"small",
|
|
1202
|
-
"large"
|
|
1202
|
+
"large",
|
|
1203
|
+
"xlarge"
|
|
1203
1204
|
]
|
|
1204
1205
|
};
|
|
1205
1206
|
const textareaVariantKeys = Object.keys(textareaVariantMap);
|
|
@@ -1225,7 +1226,8 @@ const textinputVariantMap = {
|
|
|
1225
1226
|
"size": [
|
|
1226
1227
|
"medium",
|
|
1227
1228
|
"small",
|
|
1228
|
-
"large"
|
|
1229
|
+
"large",
|
|
1230
|
+
"xlarge"
|
|
1229
1231
|
]
|
|
1230
1232
|
};
|
|
1231
1233
|
const textinputVariantKeys = Object.keys(textinputVariantMap);
|
|
@@ -1320,6 +1322,24 @@ const buttonCompoundVariants = [
|
|
|
1320
1322
|
"pe": "5"
|
|
1321
1323
|
}
|
|
1322
1324
|
}
|
|
1325
|
+
},
|
|
1326
|
+
{
|
|
1327
|
+
"size": "xlarge",
|
|
1328
|
+
"iconBefore": true,
|
|
1329
|
+
"css": {
|
|
1330
|
+
"container": {
|
|
1331
|
+
"ps": "7"
|
|
1332
|
+
}
|
|
1333
|
+
}
|
|
1334
|
+
},
|
|
1335
|
+
{
|
|
1336
|
+
"size": "xlarge",
|
|
1337
|
+
"iconAfter": true,
|
|
1338
|
+
"css": {
|
|
1339
|
+
"container": {
|
|
1340
|
+
"pe": "7"
|
|
1341
|
+
}
|
|
1342
|
+
}
|
|
1323
1343
|
}
|
|
1324
1344
|
];
|
|
1325
1345
|
const buttonSlotNames = [
|
|
@@ -1358,6 +1378,7 @@ const button = /* @__PURE__ */ Object.assign(buttonFn, {
|
|
|
1358
1378
|
],
|
|
1359
1379
|
"size": [
|
|
1360
1380
|
"default",
|
|
1381
|
+
"xlarge",
|
|
1361
1382
|
"large",
|
|
1362
1383
|
"small"
|
|
1363
1384
|
],
|
|
@@ -3238,6 +3259,7 @@ export {
|
|
|
3238
3259
|
Toggle,
|
|
3239
3260
|
ToggleInput,
|
|
3240
3261
|
Tooltip,
|
|
3262
|
+
splitProps,
|
|
3241
3263
|
useTheme
|
|
3242
3264
|
};
|
|
3243
3265
|
//# sourceMappingURL=index.js.map
|