@progress/kendo-theme-core 6.5.0-dev.1 → 6.5.0-dev.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.
@@ -1434,6 +1434,131 @@
1434
1434
  "name": "_color-manipulation.import.scss"
1435
1435
  }
1436
1436
  },
1437
+ {
1438
+ "description": "Border radius for all components.\n",
1439
+ "commentRange": {
1440
+ "start": 46,
1441
+ "end": 46
1442
+ },
1443
+ "context": {
1444
+ "type": "variable",
1445
+ "name": "kendo-border-radius",
1446
+ "value": "k-map-get($kendo-spacing, 0.5)",
1447
+ "scope": "default",
1448
+ "line": {
1449
+ "start": 47,
1450
+ "end": 47
1451
+ }
1452
+ },
1453
+ "access": "public",
1454
+ "group": [
1455
+ "undefined"
1456
+ ],
1457
+ "file": {
1458
+ "path": "_variables.scss",
1459
+ "name": "_variables.scss"
1460
+ }
1461
+ },
1462
+ {
1463
+ "description": "Shadow for cards and grid item thumbnails.\nEquivalent to fluent depth 4.\n",
1464
+ "commentRange": {
1465
+ "start": 80,
1466
+ "end": 81
1467
+ },
1468
+ "context": {
1469
+ "type": "variable",
1470
+ "name": "kendo-box-shadow-depth-1",
1471
+ "value": "0 1.6px 3.6px rgba( $kendo-color-black, 0.132 ), 0 0.3px 0.9px rgba( $kendo-color-black, 0.108 )",
1472
+ "scope": "default",
1473
+ "line": {
1474
+ "start": 82,
1475
+ "end": 82
1476
+ }
1477
+ },
1478
+ "access": "public",
1479
+ "group": [
1480
+ "undefined"
1481
+ ],
1482
+ "file": {
1483
+ "path": "color-system/_variables.scss",
1484
+ "name": "_variables.scss"
1485
+ }
1486
+ },
1487
+ {
1488
+ "description": "Shadow for command bars and dropdowns.\nEquivalent to fluent depth 8.\n",
1489
+ "commentRange": {
1490
+ "start": 83,
1491
+ "end": 84
1492
+ },
1493
+ "context": {
1494
+ "type": "variable",
1495
+ "name": "kendo-box-shadow-depth-2",
1496
+ "value": "0 3.2px 7.2px rgba( $kendo-color-black, 0.132 ), 0 0.6px 1.8px rgba( $kendo-color-black, 0.108 )",
1497
+ "scope": "default",
1498
+ "line": {
1499
+ "start": 85,
1500
+ "end": 85
1501
+ }
1502
+ },
1503
+ "access": "public",
1504
+ "group": [
1505
+ "undefined"
1506
+ ],
1507
+ "file": {
1508
+ "path": "color-system/_variables.scss",
1509
+ "name": "_variables.scss"
1510
+ }
1511
+ },
1512
+ {
1513
+ "description": "Shadow for teaching callouts and hover cards / tooltips.\nEquivalent to fluent depth 16.\n",
1514
+ "commentRange": {
1515
+ "start": 86,
1516
+ "end": 87
1517
+ },
1518
+ "context": {
1519
+ "type": "variable",
1520
+ "name": "kendo-box-shadow-depth-3",
1521
+ "value": "0 6.4px 14.4px rgba( $kendo-color-black, 0.132 ), 0 1.2px 3.6px rgba( $kendo-color-black, 0.108 )",
1522
+ "scope": "default",
1523
+ "line": {
1524
+ "start": 88,
1525
+ "end": 88
1526
+ }
1527
+ },
1528
+ "access": "public",
1529
+ "group": [
1530
+ "undefined"
1531
+ ],
1532
+ "file": {
1533
+ "path": "color-system/_variables.scss",
1534
+ "name": "_variables.scss"
1535
+ }
1536
+ },
1537
+ {
1538
+ "description": "Shadow for panels and pop up dialogs.\nEquivalent to fluent depth 64.\n",
1539
+ "commentRange": {
1540
+ "start": 89,
1541
+ "end": 90
1542
+ },
1543
+ "context": {
1544
+ "type": "variable",
1545
+ "name": "kendo-box-shadow-depth-4",
1546
+ "value": "0 25.6px 57.6px rgba( $kendo-color-black, 0.22 ), 0 4.8px 14.4px rgba( $kendo-color-black, 0.18 )",
1547
+ "scope": "default",
1548
+ "line": {
1549
+ "start": 91,
1550
+ "end": 91
1551
+ }
1552
+ },
1553
+ "access": "public",
1554
+ "group": [
1555
+ "undefined"
1556
+ ],
1557
+ "file": {
1558
+ "path": "color-system/_variables.scss",
1559
+ "name": "_variables.scss"
1560
+ }
1561
+ },
1437
1562
  {
1438
1563
  "description": "Returns the alpha channel of a color.\n",
1439
1564
  "commentRange": {
@@ -3143,7 +3268,21 @@
3143
3268
  "file": {
3144
3269
  "path": "functions/_map.import.scss",
3145
3270
  "name": "_map.import.scss"
3146
- }
3271
+ },
3272
+ "usedBy": [
3273
+ {
3274
+ "description": "Returns a deep-map with the keys and values from `$map` and `$args`.\n",
3275
+ "context": {
3276
+ "type": "function",
3277
+ "name": "k-map-deep-merge",
3278
+ "code": "\n $merged: ();\n \n @each $map in $maps {\n @each $key, $val in $map {\n @if (k-meta-type-of($val) == 'map') {\n $current: k-map-get($merged, $key);\n @if (k-meta-type-of($current) == 'map') {\n $val: k-map-deep-merge($current, $val);\n $map: k-map-merge(\n $map,\n (\n $key: $val\n )\n );\n }\n }\n }\n $merged: k-map-merge($merged, $map);\n }\n \n @return $merged;\n ",
3279
+ "line": {
3280
+ "start": 56,
3281
+ "end": 78
3282
+ }
3283
+ }
3284
+ }
3285
+ ]
3147
3286
  },
3148
3287
  {
3149
3288
  "description": "Returns whether `$map` has a value at `$key`.\n",
@@ -3298,6 +3437,30 @@
3298
3437
  "name": "_map.import.scss"
3299
3438
  },
3300
3439
  "usedBy": [
3440
+ {
3441
+ "description": "Returns a deep-map with the keys and values from `$map` and `$args`.\n",
3442
+ "context": {
3443
+ "type": "function",
3444
+ "name": "k-map-deep-merge",
3445
+ "code": "\n $merged: ();\n \n @each $map in $maps {\n @each $key, $val in $map {\n @if (k-meta-type-of($val) == 'map') {\n $current: k-map-get($merged, $key);\n @if (k-meta-type-of($current) == 'map') {\n $val: k-map-deep-merge($current, $val);\n $map: k-map-merge(\n $map,\n (\n $key: $val\n )\n );\n }\n }\n }\n $merged: k-map-merge($merged, $map);\n }\n \n @return $merged;\n ",
3446
+ "line": {
3447
+ "start": 56,
3448
+ "end": 78
3449
+ }
3450
+ }
3451
+ },
3452
+ {
3453
+ "description": "Returns a deep-map with the keys and values from `$map` and `$args`.\n",
3454
+ "context": {
3455
+ "type": "function",
3456
+ "name": "k-map-deep-merge",
3457
+ "code": "\n $merged: ();\n \n @each $map in $maps {\n @each $key, $val in $map {\n @if (k-meta-type-of($val) == 'map') {\n $current: k-map-get($merged, $key);\n @if (k-meta-type-of($current) == 'map') {\n $val: k-map-deep-merge($current, $val);\n $map: k-map-merge(\n $map,\n (\n $key: $val\n )\n );\n }\n }\n }\n $merged: k-map-merge($merged, $map);\n }\n \n @return $merged;\n ",
3458
+ "line": {
3459
+ "start": 56,
3460
+ "end": 78
3461
+ }
3462
+ }
3463
+ },
3301
3464
  {
3302
3465
  "description": "Sets a single key and value in `$map`.\n",
3303
3466
  "context": {
@@ -3305,8 +3468,8 @@
3305
3468
  "name": "k-map-set",
3306
3469
  "code": "\n @return k-map-merge( $map, ( $key: $value ) );\n",
3307
3470
  "line": {
3308
- "start": 69,
3309
- "end": 71
3471
+ "start": 99,
3472
+ "end": 101
3310
3473
  }
3311
3474
  }
3312
3475
  },
@@ -3325,18 +3488,82 @@
3325
3488
  ]
3326
3489
  },
3327
3490
  {
3328
- "description": "Returns a map with the keys and values from `$map` except for `$keys`.\n",
3491
+ "description": "Returns a deep-map with the keys and values from `$map` and `$args`.\n",
3329
3492
  "commentRange": {
3330
3493
  "start": 50,
3331
- "end": 56
3494
+ "end": 55
3495
+ },
3496
+ "context": {
3497
+ "type": "function",
3498
+ "name": "k-map-deep-merge",
3499
+ "code": "\n $merged: ();\n \n @each $map in $maps {\n @each $key, $val in $map {\n @if (k-meta-type-of($val) == 'map') {\n $current: k-map-get($merged, $key);\n @if (k-meta-type-of($current) == 'map') {\n $val: k-map-deep-merge($current, $val);\n $map: k-map-merge(\n $map,\n (\n $key: $val\n )\n );\n }\n }\n }\n $merged: k-map-merge($merged, $map);\n }\n \n @return $merged;\n ",
3500
+ "line": {
3501
+ "start": 56,
3502
+ "end": 78
3503
+ }
3504
+ },
3505
+ "parameter": [
3506
+ {
3507
+ "type": "Map",
3508
+ "name": "maps",
3509
+ "description": "The maps to deep-merge."
3510
+ }
3511
+ ],
3512
+ "return": {
3513
+ "type": "Map",
3514
+ "description": "A map with the keys and values from `$map` and `$args`.\n"
3515
+ },
3516
+ "example": [
3517
+ {
3518
+ "type": "scss",
3519
+ "code": "@debug k-map-deep-merge( ( \"foo\": (\"bar\": \"baz\", \"baz\": \"qux\" ) ), ( \"foo\": (\"bar\": \"foo\") ) ); // => ( \"foo\": (\"bar\": \"foo\", \"baz\": \"qux\" ))",
3520
+ "description": "Usage"
3521
+ }
3522
+ ],
3523
+ "access": "public",
3524
+ "group": [
3525
+ "undefined"
3526
+ ],
3527
+ "require": [
3528
+ {
3529
+ "type": "function",
3530
+ "name": "k-meta-type-of"
3531
+ },
3532
+ {
3533
+ "type": "function",
3534
+ "name": "k-map-get"
3535
+ },
3536
+ {
3537
+ "type": "function",
3538
+ "name": "k-meta-type-of"
3539
+ },
3540
+ {
3541
+ "type": "function",
3542
+ "name": "k-map-merge"
3543
+ },
3544
+ {
3545
+ "type": "function",
3546
+ "name": "k-map-merge"
3547
+ }
3548
+ ],
3549
+ "file": {
3550
+ "path": "functions/_map.import.scss",
3551
+ "name": "_map.import.scss"
3552
+ }
3553
+ },
3554
+ {
3555
+ "description": "Returns a map with the keys and values from `$map` except for `$keys`.\n",
3556
+ "commentRange": {
3557
+ "start": 80,
3558
+ "end": 86
3332
3559
  },
3333
3560
  "context": {
3334
3561
  "type": "function",
3335
3562
  "name": "k-map-remove",
3336
3563
  "code": "\n @return map-remove( $map, $keys... );\n",
3337
3564
  "line": {
3338
- "start": 57,
3339
- "end": 59
3565
+ "start": 87,
3566
+ "end": 89
3340
3567
  }
3341
3568
  },
3342
3569
  "parameter": [
@@ -3375,16 +3602,16 @@
3375
3602
  {
3376
3603
  "description": "Sets a single key and value in `$map`.\n",
3377
3604
  "commentRange": {
3378
- "start": 61,
3379
- "end": 68
3605
+ "start": 91,
3606
+ "end": 98
3380
3607
  },
3381
3608
  "context": {
3382
3609
  "type": "function",
3383
3610
  "name": "k-map-set",
3384
3611
  "code": "\n @return k-map-merge( $map, ( $key: $value ) );\n",
3385
3612
  "line": {
3386
- "start": 69,
3387
- "end": 71
3613
+ "start": 99,
3614
+ "end": 101
3388
3615
  }
3389
3616
  },
3390
3617
  "parameter": [
@@ -3437,8 +3664,8 @@
3437
3664
  "name": "k-map-negate",
3438
3665
  "code": "\n $_map-neg: ();\n\n @if( k-meta-type-of($map) != map ) {\n @error \"expected type of #{$map} is map, was #{k-meta-type-of($map)}\";\n };\n @each $key, $value in $map {\n $_key-neg: \"-\" + $key;\n\n @if( k-meta-type-of($value) == number and $value != 0) {\n $_map-neg: k-map-set($_map-neg, $_key-neg, -1 * $value );\n }\n }\n\n @return $_map-neg;\n\n",
3439
3666
  "line": {
3440
- "start": 89,
3441
- "end": 105
3667
+ "start": 119,
3668
+ "end": 135
3442
3669
  }
3443
3670
  }
3444
3671
  }
@@ -3447,16 +3674,16 @@
3447
3674
  {
3448
3675
  "description": "Returns a comma separated list of the values in `$map`.\n",
3449
3676
  "commentRange": {
3450
- "start": 73,
3451
- "end": 78
3677
+ "start": 103,
3678
+ "end": 108
3452
3679
  },
3453
3680
  "context": {
3454
3681
  "type": "function",
3455
3682
  "name": "k-map-values",
3456
3683
  "code": "\n @return map-values( $map );\n",
3457
3684
  "line": {
3458
- "start": 79,
3459
- "end": 81
3685
+ "start": 109,
3686
+ "end": 111
3460
3687
  }
3461
3688
  },
3462
3689
  "parameter": [
@@ -3490,16 +3717,16 @@
3490
3717
  {
3491
3718
  "description": "Returns negative values of a number or numbers in a list.\n",
3492
3719
  "commentRange": {
3493
- "start": 83,
3494
- "end": 88
3720
+ "start": 113,
3721
+ "end": 118
3495
3722
  },
3496
3723
  "context": {
3497
3724
  "type": "function",
3498
3725
  "name": "k-map-negate",
3499
3726
  "code": "\n $_map-neg: ();\n\n @if( k-meta-type-of($map) != map ) {\n @error \"expected type of #{$map} is map, was #{k-meta-type-of($map)}\";\n };\n @each $key, $value in $map {\n $_key-neg: \"-\" + $key;\n\n @if( k-meta-type-of($value) == number and $value != 0) {\n $_map-neg: k-map-set($_map-neg, $_key-neg, -1 * $value );\n }\n }\n\n @return $_map-neg;\n\n",
3500
3727
  "line": {
3501
- "start": 89,
3502
- "end": 105
3728
+ "start": 119,
3729
+ "end": 135
3503
3730
  }
3504
3731
  },
3505
3732
  "parameter": [
@@ -4886,6 +5113,30 @@
4886
5113
  "name": "_meta.import.scss"
4887
5114
  },
4888
5115
  "usedBy": [
5116
+ {
5117
+ "description": "Returns a deep-map with the keys and values from `$map` and `$args`.\n",
5118
+ "context": {
5119
+ "type": "function",
5120
+ "name": "k-map-deep-merge",
5121
+ "code": "\n $merged: ();\n \n @each $map in $maps {\n @each $key, $val in $map {\n @if (k-meta-type-of($val) == 'map') {\n $current: k-map-get($merged, $key);\n @if (k-meta-type-of($current) == 'map') {\n $val: k-map-deep-merge($current, $val);\n $map: k-map-merge(\n $map,\n (\n $key: $val\n )\n );\n }\n }\n }\n $merged: k-map-merge($merged, $map);\n }\n \n @return $merged;\n ",
5122
+ "line": {
5123
+ "start": 56,
5124
+ "end": 78
5125
+ }
5126
+ }
5127
+ },
5128
+ {
5129
+ "description": "Returns a deep-map with the keys and values from `$map` and `$args`.\n",
5130
+ "context": {
5131
+ "type": "function",
5132
+ "name": "k-map-deep-merge",
5133
+ "code": "\n $merged: ();\n \n @each $map in $maps {\n @each $key, $val in $map {\n @if (k-meta-type-of($val) == 'map') {\n $current: k-map-get($merged, $key);\n @if (k-meta-type-of($current) == 'map') {\n $val: k-map-deep-merge($current, $val);\n $map: k-map-merge(\n $map,\n (\n $key: $val\n )\n );\n }\n }\n }\n $merged: k-map-merge($merged, $map);\n }\n \n @return $merged;\n ",
5134
+ "line": {
5135
+ "start": 56,
5136
+ "end": 78
5137
+ }
5138
+ }
5139
+ },
4889
5140
  {
4890
5141
  "description": "Returns negative values of a number or numbers in a list.\n",
4891
5142
  "context": {
@@ -4893,8 +5144,8 @@
4893
5144
  "name": "k-map-negate",
4894
5145
  "code": "\n $_map-neg: ();\n\n @if( k-meta-type-of($map) != map ) {\n @error \"expected type of #{$map} is map, was #{k-meta-type-of($map)}\";\n };\n @each $key, $value in $map {\n $_key-neg: \"-\" + $key;\n\n @if( k-meta-type-of($value) == number and $value != 0) {\n $_map-neg: k-map-set($_map-neg, $_key-neg, -1 * $value );\n }\n }\n\n @return $_map-neg;\n\n",
4895
5146
  "line": {
4896
- "start": 89,
4897
- "end": 105
5147
+ "start": 119,
5148
+ "end": 135
4898
5149
  }
4899
5150
  }
4900
5151
  },
@@ -4905,8 +5156,8 @@
4905
5156
  "name": "k-map-negate",
4906
5157
  "code": "\n $_map-neg: ();\n\n @if( k-meta-type-of($map) != map ) {\n @error \"expected type of #{$map} is map, was #{k-meta-type-of($map)}\";\n };\n @each $key, $value in $map {\n $_key-neg: \"-\" + $key;\n\n @if( k-meta-type-of($value) == number and $value != 0) {\n $_map-neg: k-map-set($_map-neg, $_key-neg, -1 * $value );\n }\n }\n\n @return $_map-neg;\n\n",
4907
5158
  "line": {
4908
- "start": 89,
4909
- "end": 105
5159
+ "start": 119,
5160
+ "end": 135
4910
5161
  }
4911
5162
  }
4912
5163
  },
@@ -4917,8 +5168,8 @@
4917
5168
  "name": "k-map-negate",
4918
5169
  "code": "\n $_map-neg: ();\n\n @if( k-meta-type-of($map) != map ) {\n @error \"expected type of #{$map} is map, was #{k-meta-type-of($map)}\";\n };\n @each $key, $value in $map {\n $_key-neg: \"-\" + $key;\n\n @if( k-meta-type-of($value) == number and $value != 0) {\n $_map-neg: k-map-set($_map-neg, $_key-neg, -1 * $value );\n }\n }\n\n @return $_map-neg;\n\n",
4919
5170
  "line": {
4920
- "start": 89,
4921
- "end": 105
5171
+ "start": 119,
5172
+ "end": 135
4922
5173
  }
4923
5174
  }
4924
5175
  },
@@ -4953,8 +5204,8 @@
4953
5204
  "name": "k-string-replace",
4954
5205
  "code": "\n @if k-meta-type-of( $string ) == number {\n $string: $string + \"\";\n }\n\n $index: k-string-index( $string, $search );\n\n @if $index {\n @return k-string-slice( $string, 1, $index - 1 ) + $replace + k-string-replace( k-string-slice( $string, $index + k-string-length( $search ) ), $search, $replace );\n }\n\n @return $string;\n",
4955
5206
  "line": {
4956
- "start": 55,
4957
- "end": 67
5207
+ "start": 64,
5208
+ "end": 76
4958
5209
  }
4959
5210
  }
4960
5211
  }
@@ -5944,16 +6195,16 @@
5944
6195
  {
5945
6196
  "description": "Returns the first index of `$substring` in `$string`, or `null` if `$string` doesn’t contain `$substring`.\n",
5946
6197
  "commentRange": {
5947
- "start": 1,
5948
- "end": 7
6198
+ "start": 10,
6199
+ "end": 16
5949
6200
  },
5950
6201
  "context": {
5951
6202
  "type": "function",
5952
6203
  "name": "k-string-index",
5953
6204
  "code": "\n @return str-index( $string, $substring );\n",
5954
6205
  "line": {
5955
- "start": 8,
5956
- "end": 10
6206
+ "start": 17,
6207
+ "end": 19
5957
6208
  }
5958
6209
  },
5959
6210
  "parameter": [
@@ -6104,8 +6355,8 @@
6104
6355
  "name": "k-string-replace",
6105
6356
  "code": "\n @if k-meta-type-of( $string ) == number {\n $string: $string + \"\";\n }\n\n $index: k-string-index( $string, $search );\n\n @if $index {\n @return k-string-slice( $string, 1, $index - 1 ) + $replace + k-string-replace( k-string-slice( $string, $index + k-string-length( $search ) ), $search, $replace );\n }\n\n @return $string;\n",
6106
6357
  "line": {
6107
- "start": 55,
6108
- "end": 67
6358
+ "start": 64,
6359
+ "end": 76
6109
6360
  }
6110
6361
  }
6111
6362
  }
@@ -6114,16 +6365,16 @@
6114
6365
  {
6115
6366
  "description": "Returns a copy of `$string` with `$insert` inserted at `$index`.\n",
6116
6367
  "commentRange": {
6117
- "start": 12,
6118
- "end": 19
6368
+ "start": 21,
6369
+ "end": 28
6119
6370
  },
6120
6371
  "context": {
6121
6372
  "type": "function",
6122
6373
  "name": "k-string-insert",
6123
6374
  "code": "\n @return str-insert( $string, $insert, $index );\n",
6124
6375
  "line": {
6125
- "start": 20,
6126
- "end": 22
6376
+ "start": 29,
6377
+ "end": 31
6127
6378
  }
6128
6379
  },
6129
6380
  "parameter": [
@@ -6167,16 +6418,16 @@
6167
6418
  {
6168
6419
  "description": "Returns the length of `$string`.\n",
6169
6420
  "commentRange": {
6170
- "start": 24,
6171
- "end": 29
6421
+ "start": 33,
6422
+ "end": 38
6172
6423
  },
6173
6424
  "context": {
6174
6425
  "type": "function",
6175
6426
  "name": "k-string-length",
6176
6427
  "code": "\n @return str-length( $string );\n",
6177
6428
  "line": {
6178
- "start": 30,
6179
- "end": 32
6429
+ "start": 39,
6430
+ "end": 41
6180
6431
  }
6181
6432
  },
6182
6433
  "parameter": [
@@ -6214,8 +6465,8 @@
6214
6465
  "name": "k-string-replace",
6215
6466
  "code": "\n @if k-meta-type-of( $string ) == number {\n $string: $string + \"\";\n }\n\n $index: k-string-index( $string, $search );\n\n @if $index {\n @return k-string-slice( $string, 1, $index - 1 ) + $replace + k-string-replace( k-string-slice( $string, $index + k-string-length( $search ) ), $search, $replace );\n }\n\n @return $string;\n",
6216
6467
  "line": {
6217
- "start": 55,
6218
- "end": 67
6468
+ "start": 64,
6469
+ "end": 76
6219
6470
  }
6220
6471
  }
6221
6472
  }
@@ -6224,16 +6475,16 @@
6224
6475
  {
6225
6476
  "description": "Returns a copy of `$string` with quotes added.\n",
6226
6477
  "commentRange": {
6227
- "start": 34,
6228
- "end": 39
6478
+ "start": 43,
6479
+ "end": 48
6229
6480
  },
6230
6481
  "context": {
6231
6482
  "type": "function",
6232
6483
  "name": "k-string-quote",
6233
6484
  "code": "\n @return quote( $string );\n",
6234
6485
  "line": {
6235
- "start": 40,
6236
- "end": 42
6486
+ "start": 49,
6487
+ "end": 51
6237
6488
  }
6238
6489
  },
6239
6490
  "parameter": [
@@ -6267,16 +6518,16 @@
6267
6518
  {
6268
6519
  "description": "Returns a copy of `$string` with all occurrences of `$search`\nreplaced by `$replace`.\n",
6269
6520
  "commentRange": {
6270
- "start": 44,
6271
- "end": 54
6521
+ "start": 53,
6522
+ "end": 63
6272
6523
  },
6273
6524
  "context": {
6274
6525
  "type": "function",
6275
6526
  "name": "k-string-replace",
6276
6527
  "code": "\n @if k-meta-type-of( $string ) == number {\n $string: $string + \"\";\n }\n\n $index: k-string-index( $string, $search );\n\n @if $index {\n @return k-string-slice( $string, 1, $index - 1 ) + $replace + k-string-replace( k-string-slice( $string, $index + k-string-length( $search ) ), $search, $replace );\n }\n\n @return $string;\n",
6277
6528
  "line": {
6278
- "start": 55,
6279
- "end": 67
6529
+ "start": 64,
6530
+ "end": 76
6280
6531
  }
6281
6532
  },
6282
6533
  "parameter": [
@@ -6385,16 +6636,16 @@
6385
6636
  {
6386
6637
  "description": "Returns a substring of `$string` starting at `$start-at` and ending at `$end-at`.\n",
6387
6638
  "commentRange": {
6388
- "start": 69,
6389
- "end": 76
6639
+ "start": 78,
6640
+ "end": 85
6390
6641
  },
6391
6642
  "context": {
6392
6643
  "type": "function",
6393
6644
  "name": "k-string-slice",
6394
6645
  "code": "\n @return str-slice( $string, $start-at, $end-at );\n",
6395
6646
  "line": {
6396
- "start": 77,
6397
- "end": 79
6647
+ "start": 86,
6648
+ "end": 88
6398
6649
  }
6399
6650
  },
6400
6651
  "parameter": [
@@ -6454,8 +6705,8 @@
6454
6705
  "name": "k-string-replace",
6455
6706
  "code": "\n @if k-meta-type-of( $string ) == number {\n $string: $string + \"\";\n }\n\n $index: k-string-index( $string, $search );\n\n @if $index {\n @return k-string-slice( $string, 1, $index - 1 ) + $replace + k-string-replace( k-string-slice( $string, $index + k-string-length( $search ) ), $search, $replace );\n }\n\n @return $string;\n",
6456
6707
  "line": {
6457
- "start": 55,
6458
- "end": 67
6708
+ "start": 64,
6709
+ "end": 76
6459
6710
  }
6460
6711
  }
6461
6712
  },
@@ -6466,8 +6717,8 @@
6466
6717
  "name": "k-string-replace",
6467
6718
  "code": "\n @if k-meta-type-of( $string ) == number {\n $string: $string + \"\";\n }\n\n $index: k-string-index( $string, $search );\n\n @if $index {\n @return k-string-slice( $string, 1, $index - 1 ) + $replace + k-string-replace( k-string-slice( $string, $index + k-string-length( $search ) ), $search, $replace );\n }\n\n @return $string;\n",
6468
6719
  "line": {
6469
- "start": 55,
6470
- "end": 67
6720
+ "start": 64,
6721
+ "end": 76
6471
6722
  }
6472
6723
  }
6473
6724
  }
@@ -6476,16 +6727,16 @@
6476
6727
  {
6477
6728
  "description": "Returns a copy of `$string` with all uppercase letters converted to lowercase.\n",
6478
6729
  "commentRange": {
6479
- "start": 81,
6480
- "end": 86
6730
+ "start": 90,
6731
+ "end": 95
6481
6732
  },
6482
6733
  "context": {
6483
6734
  "type": "function",
6484
6735
  "name": "k-string-to-lower-case",
6485
6736
  "code": "\n @return to-lower-case( $string );\n",
6486
6737
  "line": {
6487
- "start": 87,
6488
- "end": 89
6738
+ "start": 96,
6739
+ "end": 98
6489
6740
  }
6490
6741
  },
6491
6742
  "parameter": [
@@ -6519,16 +6770,16 @@
6519
6770
  {
6520
6771
  "description": "Returns a copy of `$string` with all lowercase letters converted to uppercase.\n",
6521
6772
  "commentRange": {
6522
- "start": 91,
6523
- "end": 96
6773
+ "start": 100,
6774
+ "end": 105
6524
6775
  },
6525
6776
  "context": {
6526
6777
  "type": "function",
6527
6778
  "name": "k-string-to-upper-case",
6528
6779
  "code": "\n @return to-upper-case( $string );\n",
6529
6780
  "line": {
6530
- "start": 97,
6531
- "end": 99
6781
+ "start": 106,
6782
+ "end": 108
6532
6783
  }
6533
6784
  },
6534
6785
  "parameter": [
@@ -6562,16 +6813,16 @@
6562
6813
  {
6563
6814
  "description": "Returns a unique identifier.\n",
6564
6815
  "commentRange": {
6565
- "start": 101,
6566
- "end": 105
6816
+ "start": 110,
6817
+ "end": 114
6567
6818
  },
6568
6819
  "context": {
6569
6820
  "type": "function",
6570
6821
  "name": "k-string-unique-id",
6571
6822
  "code": "\n @return unique-id();\n",
6572
6823
  "line": {
6573
- "start": 106,
6574
- "end": 108
6824
+ "start": 115,
6825
+ "end": 117
6575
6826
  }
6576
6827
  },
6577
6828
  "return": {
@@ -6598,16 +6849,16 @@
6598
6849
  {
6599
6850
  "description": "Returns a copy of `$string` with quotes removed.\n",
6600
6851
  "commentRange": {
6601
- "start": 110,
6602
- "end": 115
6852
+ "start": 119,
6853
+ "end": 124
6603
6854
  },
6604
6855
  "context": {
6605
6856
  "type": "function",
6606
6857
  "name": "k-string-unquote",
6607
6858
  "code": "\n @return unquote( $string );\n",
6608
6859
  "line": {
6609
- "start": 116,
6610
- "end": 118
6860
+ "start": 125,
6861
+ "end": 127
6611
6862
  }
6612
6863
  },
6613
6864
  "parameter": [