@shuriken-ui/tailwind 1.0.0-beta.3 → 1.0.0-beta.5

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/preset.cjs CHANGED
@@ -3201,237 +3201,6 @@ const checkbox = plugin__default.withOptions(
3201
3201
  }
3202
3202
  );
3203
3203
 
3204
- const defaultCheckboxAnimatedConfig = {
3205
- size: "8",
3206
- rounded: "full",
3207
- label: {
3208
- disabledOpacity: "75",
3209
- inner: {
3210
- duration: "300"
3211
- }
3212
- },
3213
- default: {
3214
- color: "muted-600",
3215
- colorDark: "muted-200"
3216
- },
3217
- light: "white",
3218
- muted: "muted-400",
3219
- primary: "primary-500",
3220
- info: "info-500",
3221
- success: "success-500",
3222
- warning: "warning-500",
3223
- danger: "danger-500"
3224
- };
3225
- const checkboxAnimated = plugin__default.withOptions(
3226
- function(options) {
3227
- let { prefix } = defu.defu(options, defaultPluginOptions);
3228
- if (prefix) {
3229
- prefix = `${prefix}-`;
3230
- }
3231
- return function({ addComponents, theme }) {
3232
- const config = theme(
3233
- "shurikenUi.checkboxAnimated"
3234
- );
3235
- const keyframes = {
3236
- "@keyframes stroke": {
3237
- "100%": {
3238
- "stroke-dashoffset": "0"
3239
- }
3240
- },
3241
- "@keyframes reverseCircle": {
3242
- from: {
3243
- "stroke-dashoffset": "0"
3244
- },
3245
- to: {
3246
- "stroke-dashoffset": "166"
3247
- }
3248
- },
3249
- "@keyframes reverseCheck": {
3250
- from: {
3251
- "stroke-dashoffset": "0"
3252
- },
3253
- to: {
3254
- "stroke-dashoffset": "48"
3255
- }
3256
- }
3257
- };
3258
- addComponents({
3259
- [`.${prefix}checkbox-animated`]: {
3260
- [`@apply ${prefix}focus relative h-${config.size} w-${config.size} rounded-${config.rounded} focus-within:outline-current`]: {},
3261
- [`.${prefix}checkbox-animated-input`]: {
3262
- [`@apply cursor-pointer disabled:cursor-not-allowed absolute h-full w-full opacity-0 z-[1] left-0 top-0`]: {}
3263
- },
3264
- [`.${prefix}checkbox-animated-label`]: {
3265
- [`@apply relative h-${config.size} w-${config.size} disabled:opacity-75`]: {},
3266
- [`.${prefix}checkbox-animated-label-inner`]: {
3267
- [`@apply absolute h-${config.size} w-${config.size} border border-solid z-0 opacity-100 transition-all duration-${config.label.inner.duration} rounded-full left-0 top-0`]: {},
3268
- [`&.${prefix}is-opaque`]: {
3269
- [`@apply opacity-0`]: {}
3270
- }
3271
- },
3272
- [`&:deep(svg circle)`]: {
3273
- [`@apply h-${config.size} w-${config.size} stroke-2 stroke-current fill-none`]: "",
3274
- "stroke-dasharray": "166",
3275
- "stroke-dashoffset": "166",
3276
- "stroke-miterlimit": "10"
3277
- },
3278
- [`&:deep(svg)`]: {
3279
- [`@apply h-${config.size} w-${config.size} stroke-2 text-current stroke-current shadow-[inset_0_0_0_currentColor] mx-auto my-0 rounded-full`]: "",
3280
- "stroke-miterlimit": "10"
3281
- },
3282
- [`&:deep(svg path)`]: {
3283
- [`@apply origin-[50%_50%] stroke-current`]: "",
3284
- "stroke-dasharray": "48",
3285
- "stroke-dashoffset": "48"
3286
- }
3287
- },
3288
- [`&.${prefix}checked`]: {
3289
- [`.${prefix}checkbox-animated-label`]: {
3290
- [`&:deep(svg circle)`]: {
3291
- "@apply animate-[stroke_0.6s_cubic-bezier(0.65,0,0.45,1)_both]": {}
3292
- },
3293
- [`&:deep(svg path)`]: {
3294
- "@apply animate-[stroke_0.3s_cubic-bezier(0.65,0,0.45,1)_0.8s_both]": {}
3295
- }
3296
- }
3297
- },
3298
- [`&.${prefix}unchecked`]: {
3299
- [`.${prefix}checkbox-animated-label`]: {
3300
- [`&:deep(svg circle)`]: {
3301
- "@apply animate-[reverseCircle_0.6s_cubic-bezier(0.65,0,0.45,1)_0.2s_both]": {}
3302
- },
3303
- [`&:deep(svg path)`]: {
3304
- "@apply animate-[reverseCheck_0.3s_cubic-bezier(0.65,0,0.45,1)_0.1s_both]": {}
3305
- }
3306
- }
3307
- },
3308
- [`&.${prefix}checkbox-animated-default`]: {
3309
- [`.${prefix}checkbox-animated-label`]: {
3310
- [`@apply text-${config.default.color} dark:text-${config.default.colorDark}`]: {},
3311
- [`.${prefix}checkbox-animated-label-inner`]: {
3312
- [`@apply border-${config.default.color} dark:border-${config.default.colorDark}`]: {}
3313
- }
3314
- }
3315
- },
3316
- [`&.${prefix}checkbox-animated-light`]: {
3317
- [`.${prefix}checkbox-animated-label`]: {
3318
- [`@apply text-${config.light}`]: {},
3319
- [`.${prefix}checkbox-animated-label-inner`]: {
3320
- [`@apply border-${config.light}`]: {}
3321
- }
3322
- }
3323
- },
3324
- [`&.${prefix}checkbox-animated-muted`]: {
3325
- [`.${prefix}checkbox-animated-label`]: {
3326
- [`@apply text-${config.muted}`]: {},
3327
- [`.${prefix}checkbox-animated-label-inner`]: {
3328
- [`@apply border-${config.muted}`]: {}
3329
- }
3330
- }
3331
- },
3332
- [`&.${prefix}checkbox-animated-primary`]: {
3333
- [`.${prefix}checkbox-animated-label`]: {
3334
- [`@apply text-${config.primary}`]: {},
3335
- [`.${prefix}checkbox-animated-label-inner`]: {
3336
- [`@apply border-${config.primary}`]: {}
3337
- }
3338
- }
3339
- },
3340
- [`&.${prefix}checkbox-animated-info`]: {
3341
- [`.${prefix}checkbox-animated-label`]: {
3342
- [`@apply text-${config.info}`]: {},
3343
- [`.${prefix}checkbox-animated-label-inner`]: {
3344
- [`@apply border-${config.info}`]: {}
3345
- }
3346
- }
3347
- },
3348
- [`&.${prefix}checkbox-animated-success`]: {
3349
- [`.${prefix}checkbox-animated-label`]: {
3350
- [`@apply text-${config.success}`]: {},
3351
- [`.${prefix}checkbox-animated-label-inner`]: {
3352
- [`@apply border-${config.success}`]: {}
3353
- }
3354
- }
3355
- },
3356
- [`&.${prefix}checkbox-animated-warning`]: {
3357
- [`.${prefix}checkbox-animated-label`]: {
3358
- [`@apply text-${config.warning}`]: {},
3359
- [`.${prefix}checkbox-animated-label-inner`]: {
3360
- [`@apply border-${config.warning}`]: {}
3361
- }
3362
- }
3363
- },
3364
- [`&.${prefix}checkbox-animated-danger`]: {
3365
- [`.${prefix}checkbox-animated-label`]: {
3366
- [`@apply text-${config.danger}`]: {},
3367
- [`.${prefix}checkbox-animated-label-inner`]: {
3368
- [`@apply border-${config.danger}`]: {}
3369
- }
3370
- }
3371
- }
3372
- }
3373
- });
3374
- addComponents(keyframes);
3375
- };
3376
- },
3377
- function() {
3378
- return {
3379
- theme: {
3380
- shurikenUi: {
3381
- checkboxAnimated: defaultCheckboxAnimatedConfig
3382
- }
3383
- }
3384
- };
3385
- }
3386
- );
3387
-
3388
- const defaultCheckboxHeadlessConfig = {
3389
- label: {
3390
- text: "muted-400",
3391
- textSize: "sm",
3392
- font: "sans"
3393
- },
3394
- input: {
3395
- size: "full"
3396
- }
3397
- };
3398
- const checkboxHeadless = plugin__default.withOptions(
3399
- function(options) {
3400
- let { prefix } = defu.defu(options, defaultPluginOptions);
3401
- if (prefix) {
3402
- prefix = `${prefix}-`;
3403
- }
3404
- return function({ addComponents, theme }) {
3405
- const config = theme(
3406
- "shurikenUi.checkboxHeadless"
3407
- );
3408
- addComponents({
3409
- [`.${prefix}checkbox-headless`]: {
3410
- [`@apply relative`]: {},
3411
- [`.${prefix}checkbox-headless-label`]: {
3412
- [`@apply text-${config.label.text} mb-1 inline-block cursor-pointer select-none font-${config.label.font} text-${config.label.textSize}`]: {}
3413
- },
3414
- [`.${prefix}checkbox-headless-inner`]: {
3415
- [`@apply relative`]: {},
3416
- [`.${prefix}checkbox-headless-input`]: {
3417
- [`@apply absolute inset-0 z-20 h-${config.input.size} w-${config.input.size} cursor-pointer disabled:cursor-not-allowed opacity-0`]: {}
3418
- }
3419
- }
3420
- }
3421
- });
3422
- };
3423
- },
3424
- function() {
3425
- return {
3426
- theme: {
3427
- shurikenUi: {
3428
- checkboxHeadless: defaultCheckboxHeadlessConfig
3429
- }
3430
- }
3431
- };
3432
- }
3433
- );
3434
-
3435
3204
  const defaultDropdownDividerConfig = {
3436
3205
  space: "2",
3437
3206
  border: "muted-200",
@@ -7390,53 +7159,6 @@ const radio = plugin__default.withOptions(
7390
7159
  }
7391
7160
  );
7392
7161
 
7393
- const defaultRadioHeadlessConfig = {
7394
- label: {
7395
- text: "muted-400",
7396
- textSize: "sm",
7397
- font: "sans"
7398
- },
7399
- input: {
7400
- size: "full"
7401
- }
7402
- };
7403
- const radioHeadless = plugin__default.withOptions(
7404
- function(options) {
7405
- let { prefix } = defu.defu(options, defaultPluginOptions);
7406
- if (prefix) {
7407
- prefix = `${prefix}-`;
7408
- }
7409
- return function({ addComponents, theme }) {
7410
- const config = theme(
7411
- "shurikenUi.radioHeadless"
7412
- );
7413
- addComponents({
7414
- [`.${prefix}radio-headless`]: {
7415
- [`@apply relative`]: {},
7416
- [`.${prefix}radio-headless-label`]: {
7417
- [`@apply text-${config.label.text} mb-1 inline-block cursor-pointer select-none font-${config.label.font} text-${config.label.textSize}`]: {}
7418
- },
7419
- [`.${prefix}radio-headless-inner`]: {
7420
- [`@apply relative`]: {},
7421
- [`.${prefix}radio-headless-input`]: {
7422
- [`@apply absolute inset-0 z-20 h-${config.input.size} w-${config.input.size} cursor-pointer disabled:cursor-not-allowed opacity-0`]: {}
7423
- }
7424
- }
7425
- }
7426
- });
7427
- };
7428
- },
7429
- function() {
7430
- return {
7431
- theme: {
7432
- shurikenUi: {
7433
- radioHeadless: defaultRadioHeadlessConfig
7434
- }
7435
- }
7436
- };
7437
- }
7438
- );
7439
-
7440
7162
  const defaultSelectConfig = {
7441
7163
  labelFloat: {
7442
7164
  text: "primary-500",
@@ -9971,8 +9693,6 @@ const components = [
9971
9693
  button,
9972
9694
  card,
9973
9695
  checkbox,
9974
- checkboxAnimated,
9975
- checkboxHeadless,
9976
9696
  dropdownDivider,
9977
9697
  dropdownItem,
9978
9698
  dropdown,
@@ -10000,7 +9720,6 @@ const components = [
10000
9720
  progress,
10001
9721
  prose,
10002
9722
  radio,
10003
- radioHeadless,
10004
9723
  select,
10005
9724
  slimscroll,
10006
9725
  snack,
package/dist/preset.mjs CHANGED
@@ -3188,237 +3188,6 @@ const checkbox = plugin.withOptions(
3188
3188
  }
3189
3189
  );
3190
3190
 
3191
- const defaultCheckboxAnimatedConfig = {
3192
- size: "8",
3193
- rounded: "full",
3194
- label: {
3195
- disabledOpacity: "75",
3196
- inner: {
3197
- duration: "300"
3198
- }
3199
- },
3200
- default: {
3201
- color: "muted-600",
3202
- colorDark: "muted-200"
3203
- },
3204
- light: "white",
3205
- muted: "muted-400",
3206
- primary: "primary-500",
3207
- info: "info-500",
3208
- success: "success-500",
3209
- warning: "warning-500",
3210
- danger: "danger-500"
3211
- };
3212
- const checkboxAnimated = plugin.withOptions(
3213
- function(options) {
3214
- let { prefix } = defu(options, defaultPluginOptions);
3215
- if (prefix) {
3216
- prefix = `${prefix}-`;
3217
- }
3218
- return function({ addComponents, theme }) {
3219
- const config = theme(
3220
- "shurikenUi.checkboxAnimated"
3221
- );
3222
- const keyframes = {
3223
- "@keyframes stroke": {
3224
- "100%": {
3225
- "stroke-dashoffset": "0"
3226
- }
3227
- },
3228
- "@keyframes reverseCircle": {
3229
- from: {
3230
- "stroke-dashoffset": "0"
3231
- },
3232
- to: {
3233
- "stroke-dashoffset": "166"
3234
- }
3235
- },
3236
- "@keyframes reverseCheck": {
3237
- from: {
3238
- "stroke-dashoffset": "0"
3239
- },
3240
- to: {
3241
- "stroke-dashoffset": "48"
3242
- }
3243
- }
3244
- };
3245
- addComponents({
3246
- [`.${prefix}checkbox-animated`]: {
3247
- [`@apply ${prefix}focus relative h-${config.size} w-${config.size} rounded-${config.rounded} focus-within:outline-current`]: {},
3248
- [`.${prefix}checkbox-animated-input`]: {
3249
- [`@apply cursor-pointer disabled:cursor-not-allowed absolute h-full w-full opacity-0 z-[1] left-0 top-0`]: {}
3250
- },
3251
- [`.${prefix}checkbox-animated-label`]: {
3252
- [`@apply relative h-${config.size} w-${config.size} disabled:opacity-75`]: {},
3253
- [`.${prefix}checkbox-animated-label-inner`]: {
3254
- [`@apply absolute h-${config.size} w-${config.size} border border-solid z-0 opacity-100 transition-all duration-${config.label.inner.duration} rounded-full left-0 top-0`]: {},
3255
- [`&.${prefix}is-opaque`]: {
3256
- [`@apply opacity-0`]: {}
3257
- }
3258
- },
3259
- [`&:deep(svg circle)`]: {
3260
- [`@apply h-${config.size} w-${config.size} stroke-2 stroke-current fill-none`]: "",
3261
- "stroke-dasharray": "166",
3262
- "stroke-dashoffset": "166",
3263
- "stroke-miterlimit": "10"
3264
- },
3265
- [`&:deep(svg)`]: {
3266
- [`@apply h-${config.size} w-${config.size} stroke-2 text-current stroke-current shadow-[inset_0_0_0_currentColor] mx-auto my-0 rounded-full`]: "",
3267
- "stroke-miterlimit": "10"
3268
- },
3269
- [`&:deep(svg path)`]: {
3270
- [`@apply origin-[50%_50%] stroke-current`]: "",
3271
- "stroke-dasharray": "48",
3272
- "stroke-dashoffset": "48"
3273
- }
3274
- },
3275
- [`&.${prefix}checked`]: {
3276
- [`.${prefix}checkbox-animated-label`]: {
3277
- [`&:deep(svg circle)`]: {
3278
- "@apply animate-[stroke_0.6s_cubic-bezier(0.65,0,0.45,1)_both]": {}
3279
- },
3280
- [`&:deep(svg path)`]: {
3281
- "@apply animate-[stroke_0.3s_cubic-bezier(0.65,0,0.45,1)_0.8s_both]": {}
3282
- }
3283
- }
3284
- },
3285
- [`&.${prefix}unchecked`]: {
3286
- [`.${prefix}checkbox-animated-label`]: {
3287
- [`&:deep(svg circle)`]: {
3288
- "@apply animate-[reverseCircle_0.6s_cubic-bezier(0.65,0,0.45,1)_0.2s_both]": {}
3289
- },
3290
- [`&:deep(svg path)`]: {
3291
- "@apply animate-[reverseCheck_0.3s_cubic-bezier(0.65,0,0.45,1)_0.1s_both]": {}
3292
- }
3293
- }
3294
- },
3295
- [`&.${prefix}checkbox-animated-default`]: {
3296
- [`.${prefix}checkbox-animated-label`]: {
3297
- [`@apply text-${config.default.color} dark:text-${config.default.colorDark}`]: {},
3298
- [`.${prefix}checkbox-animated-label-inner`]: {
3299
- [`@apply border-${config.default.color} dark:border-${config.default.colorDark}`]: {}
3300
- }
3301
- }
3302
- },
3303
- [`&.${prefix}checkbox-animated-light`]: {
3304
- [`.${prefix}checkbox-animated-label`]: {
3305
- [`@apply text-${config.light}`]: {},
3306
- [`.${prefix}checkbox-animated-label-inner`]: {
3307
- [`@apply border-${config.light}`]: {}
3308
- }
3309
- }
3310
- },
3311
- [`&.${prefix}checkbox-animated-muted`]: {
3312
- [`.${prefix}checkbox-animated-label`]: {
3313
- [`@apply text-${config.muted}`]: {},
3314
- [`.${prefix}checkbox-animated-label-inner`]: {
3315
- [`@apply border-${config.muted}`]: {}
3316
- }
3317
- }
3318
- },
3319
- [`&.${prefix}checkbox-animated-primary`]: {
3320
- [`.${prefix}checkbox-animated-label`]: {
3321
- [`@apply text-${config.primary}`]: {},
3322
- [`.${prefix}checkbox-animated-label-inner`]: {
3323
- [`@apply border-${config.primary}`]: {}
3324
- }
3325
- }
3326
- },
3327
- [`&.${prefix}checkbox-animated-info`]: {
3328
- [`.${prefix}checkbox-animated-label`]: {
3329
- [`@apply text-${config.info}`]: {},
3330
- [`.${prefix}checkbox-animated-label-inner`]: {
3331
- [`@apply border-${config.info}`]: {}
3332
- }
3333
- }
3334
- },
3335
- [`&.${prefix}checkbox-animated-success`]: {
3336
- [`.${prefix}checkbox-animated-label`]: {
3337
- [`@apply text-${config.success}`]: {},
3338
- [`.${prefix}checkbox-animated-label-inner`]: {
3339
- [`@apply border-${config.success}`]: {}
3340
- }
3341
- }
3342
- },
3343
- [`&.${prefix}checkbox-animated-warning`]: {
3344
- [`.${prefix}checkbox-animated-label`]: {
3345
- [`@apply text-${config.warning}`]: {},
3346
- [`.${prefix}checkbox-animated-label-inner`]: {
3347
- [`@apply border-${config.warning}`]: {}
3348
- }
3349
- }
3350
- },
3351
- [`&.${prefix}checkbox-animated-danger`]: {
3352
- [`.${prefix}checkbox-animated-label`]: {
3353
- [`@apply text-${config.danger}`]: {},
3354
- [`.${prefix}checkbox-animated-label-inner`]: {
3355
- [`@apply border-${config.danger}`]: {}
3356
- }
3357
- }
3358
- }
3359
- }
3360
- });
3361
- addComponents(keyframes);
3362
- };
3363
- },
3364
- function() {
3365
- return {
3366
- theme: {
3367
- shurikenUi: {
3368
- checkboxAnimated: defaultCheckboxAnimatedConfig
3369
- }
3370
- }
3371
- };
3372
- }
3373
- );
3374
-
3375
- const defaultCheckboxHeadlessConfig = {
3376
- label: {
3377
- text: "muted-400",
3378
- textSize: "sm",
3379
- font: "sans"
3380
- },
3381
- input: {
3382
- size: "full"
3383
- }
3384
- };
3385
- const checkboxHeadless = plugin.withOptions(
3386
- function(options) {
3387
- let { prefix } = defu(options, defaultPluginOptions);
3388
- if (prefix) {
3389
- prefix = `${prefix}-`;
3390
- }
3391
- return function({ addComponents, theme }) {
3392
- const config = theme(
3393
- "shurikenUi.checkboxHeadless"
3394
- );
3395
- addComponents({
3396
- [`.${prefix}checkbox-headless`]: {
3397
- [`@apply relative`]: {},
3398
- [`.${prefix}checkbox-headless-label`]: {
3399
- [`@apply text-${config.label.text} mb-1 inline-block cursor-pointer select-none font-${config.label.font} text-${config.label.textSize}`]: {}
3400
- },
3401
- [`.${prefix}checkbox-headless-inner`]: {
3402
- [`@apply relative`]: {},
3403
- [`.${prefix}checkbox-headless-input`]: {
3404
- [`@apply absolute inset-0 z-20 h-${config.input.size} w-${config.input.size} cursor-pointer disabled:cursor-not-allowed opacity-0`]: {}
3405
- }
3406
- }
3407
- }
3408
- });
3409
- };
3410
- },
3411
- function() {
3412
- return {
3413
- theme: {
3414
- shurikenUi: {
3415
- checkboxHeadless: defaultCheckboxHeadlessConfig
3416
- }
3417
- }
3418
- };
3419
- }
3420
- );
3421
-
3422
3191
  const defaultDropdownDividerConfig = {
3423
3192
  space: "2",
3424
3193
  border: "muted-200",
@@ -7377,53 +7146,6 @@ const radio = plugin.withOptions(
7377
7146
  }
7378
7147
  );
7379
7148
 
7380
- const defaultRadioHeadlessConfig = {
7381
- label: {
7382
- text: "muted-400",
7383
- textSize: "sm",
7384
- font: "sans"
7385
- },
7386
- input: {
7387
- size: "full"
7388
- }
7389
- };
7390
- const radioHeadless = plugin.withOptions(
7391
- function(options) {
7392
- let { prefix } = defu(options, defaultPluginOptions);
7393
- if (prefix) {
7394
- prefix = `${prefix}-`;
7395
- }
7396
- return function({ addComponents, theme }) {
7397
- const config = theme(
7398
- "shurikenUi.radioHeadless"
7399
- );
7400
- addComponents({
7401
- [`.${prefix}radio-headless`]: {
7402
- [`@apply relative`]: {},
7403
- [`.${prefix}radio-headless-label`]: {
7404
- [`@apply text-${config.label.text} mb-1 inline-block cursor-pointer select-none font-${config.label.font} text-${config.label.textSize}`]: {}
7405
- },
7406
- [`.${prefix}radio-headless-inner`]: {
7407
- [`@apply relative`]: {},
7408
- [`.${prefix}radio-headless-input`]: {
7409
- [`@apply absolute inset-0 z-20 h-${config.input.size} w-${config.input.size} cursor-pointer disabled:cursor-not-allowed opacity-0`]: {}
7410
- }
7411
- }
7412
- }
7413
- });
7414
- };
7415
- },
7416
- function() {
7417
- return {
7418
- theme: {
7419
- shurikenUi: {
7420
- radioHeadless: defaultRadioHeadlessConfig
7421
- }
7422
- }
7423
- };
7424
- }
7425
- );
7426
-
7427
7149
  const defaultSelectConfig = {
7428
7150
  labelFloat: {
7429
7151
  text: "primary-500",
@@ -9958,8 +9680,6 @@ const components = [
9958
9680
  button,
9959
9681
  card,
9960
9682
  checkbox,
9961
- checkboxAnimated,
9962
- checkboxHeadless,
9963
9683
  dropdownDivider,
9964
9684
  dropdownItem,
9965
9685
  dropdown,
@@ -9987,7 +9707,6 @@ const components = [
9987
9707
  progress,
9988
9708
  prose,
9989
9709
  radio,
9990
- radioHeadless,
9991
9710
  select,
9992
9711
  slimscroll,
9993
9712
  snack,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shuriken-ui/tailwind",
3
- "version": "1.0.0-beta.3",
3
+ "version": "1.0.0-beta.5",
4
4
  "license": "MIT",
5
5
  "author": "Css Ninja <hello@cssninja.io> (https://cssninja.io)",
6
6
  "repository": "shuriken-ui/tailwind",