@@ -279,7 +279,7 @@ const _simple_typed_value_flag_preference_mapper = (
279279 type : type ,
280280 } ;
281281} ;
282- const _simple_boolean_value_flag_prefernce_mapper = (
282+ const _simple_boolean_value_flag_preference_mapper = (
283283 k : string | Array < string >
284284) : Option => _simple_typed_value_flag_preference_mapper ( k , "bool" ) ;
285285
@@ -356,67 +356,67 @@ function transform_heading_alias_from_raw(raw: { [key: string]: boolean }):
356356 if ( _h6_alias ) return _h6_alias ;
357357}
358358
359- const __h1_alias_pref = _simple_boolean_value_flag_prefernce_mapper (
359+ const __h1_alias_pref = _simple_boolean_value_flag_preference_mapper (
360360 keys . alias . as_h1
361361) ;
362362
363- const __h2_alias_pref = _simple_boolean_value_flag_prefernce_mapper (
363+ const __h2_alias_pref = _simple_boolean_value_flag_preference_mapper (
364364 keys . alias . as_h2
365365) ;
366366
367- const __h3_alias_pref = _simple_boolean_value_flag_prefernce_mapper (
367+ const __h3_alias_pref = _simple_boolean_value_flag_preference_mapper (
368368 keys . alias . as_h3
369369) ;
370370
371- const __h4_alias_pref = _simple_boolean_value_flag_prefernce_mapper (
371+ const __h4_alias_pref = _simple_boolean_value_flag_preference_mapper (
372372 keys . alias . as_h4
373373) ;
374374
375- const __h5_alias_pref = _simple_boolean_value_flag_prefernce_mapper (
375+ const __h5_alias_pref = _simple_boolean_value_flag_preference_mapper (
376376 keys . alias . as_h5
377377) ;
378378
379- const __h6_alias_pref = _simple_boolean_value_flag_prefernce_mapper (
379+ const __h6_alias_pref = _simple_boolean_value_flag_preference_mapper (
380380 keys . alias . as_h6
381381) ;
382382
383383// -----------------------------------------------------------------------------
384384// -----------------------------------------------------------------------------
385385// -----------------------------------------------------------------------------
386386
387- const __p_alias_pref = _simple_boolean_value_flag_prefernce_mapper (
387+ const __p_alias_pref = _simple_boolean_value_flag_preference_mapper (
388388 keys . alias . as_p
389389) ;
390390
391- const __textspan_alias_pref = _simple_boolean_value_flag_prefernce_mapper (
391+ const __textspan_alias_pref = _simple_boolean_value_flag_preference_mapper (
392392 keys . alias . as_span
393393) ;
394394
395- const __button_alias_pref = _simple_boolean_value_flag_prefernce_mapper (
395+ const __button_alias_pref = _simple_boolean_value_flag_preference_mapper (
396396 keys . alias . as_button
397397) ;
398398
399- const __checkbox_alias_pref = _simple_boolean_value_flag_prefernce_mapper (
399+ const __checkbox_alias_pref = _simple_boolean_value_flag_preference_mapper (
400400 keys . alias . as_checkbox
401401) ;
402402
403- const __input_alias_pref = _simple_boolean_value_flag_prefernce_mapper (
403+ const __input_alias_pref = _simple_boolean_value_flag_preference_mapper (
404404 keys . alias . as_input
405405) ;
406406
407- const __slider_alias_pref = _simple_boolean_value_flag_prefernce_mapper (
407+ const __slider_alias_pref = _simple_boolean_value_flag_preference_mapper (
408408 keys . alias . as_slider
409409) ;
410410
411- const __progress_alias_pref = _simple_boolean_value_flag_prefernce_mapper (
411+ const __progress_alias_pref = _simple_boolean_value_flag_preference_mapper (
412412 keys . alias . as_progress
413413) ;
414414
415415// -----------------------------------------------------------------------------
416416// -----------------------------------------------------------------------------
417417// -----------------------------------------------------------------------------
418418
419- const _simple_custom_string_value_flag_prefernce_mapper = (
419+ const _simple_custom_string_value_flag_preference_mapper = (
420420 k : string | Array < string >
421421) : Option =>
422422 Array . isArray ( k )
@@ -431,21 +431,21 @@ const _simple_custom_string_value_flag_prefernce_mapper = (
431431 type : "string" ,
432432 } ;
433433
434- const __width_alias_pref = _simple_custom_string_value_flag_prefernce_mapper (
434+ const __width_alias_pref = _simple_custom_string_value_flag_preference_mapper (
435435 keys . alias . width
436436) ;
437437const __max_width_alias_pref =
438- _simple_custom_string_value_flag_prefernce_mapper ( keys . alias . max_width ) ;
438+ _simple_custom_string_value_flag_preference_mapper ( keys . alias . max_width ) ;
439439const __min_width_alias_pref =
440- _simple_custom_string_value_flag_prefernce_mapper ( keys . alias . min_width ) ;
440+ _simple_custom_string_value_flag_preference_mapper ( keys . alias . min_width ) ;
441441
442- const __height_alias_pref = _simple_custom_string_value_flag_prefernce_mapper (
442+ const __height_alias_pref = _simple_custom_string_value_flag_preference_mapper (
443443 keys . alias . height
444444) ;
445445const __max_height_alias_pref =
446- _simple_custom_string_value_flag_prefernce_mapper ( keys . alias . max_height ) ;
446+ _simple_custom_string_value_flag_preference_mapper ( keys . alias . max_height ) ;
447447const __min_height_alias_pref =
448- _simple_custom_string_value_flag_prefernce_mapper ( keys . alias . min_height ) ;
448+ _simple_custom_string_value_flag_preference_mapper ( keys . alias . min_height ) ;
449449
450450function transform_wh_declaration_alias_from_raw ( raw : { [ key : string ] : any } ) : {
451451 [ key : string ] : WHDeclarationFlag ;
@@ -482,26 +482,26 @@ function transform_wh_declaration_alias_from_raw(raw: { [key: string]: any }): {
482482 } , { } ) ;
483483}
484484
485- const __fix_width_alias_pref = _simple_boolean_value_flag_prefernce_mapper (
485+ const __fix_width_alias_pref = _simple_boolean_value_flag_preference_mapper (
486486 keys . alias . fix_width
487487) ;
488- const __fix_height_alias_pref = _simple_boolean_value_flag_prefernce_mapper (
488+ const __fix_height_alias_pref = _simple_boolean_value_flag_preference_mapper (
489489 keys . alias . fix_height
490490) ;
491491
492492// -----------------------------------------------------------------------------
493493// -----------------------------------------------------------------------------
494494// -----------------------------------------------------------------------------
495495
496- const __declare_alias_pref = _simple_boolean_value_flag_prefernce_mapper (
496+ const __declare_alias_pref = _simple_boolean_value_flag_preference_mapper (
497497 keys . alias . declare
498498) ;
499499
500500// -----------------------------------------------------------------------------
501501// -----------------------------------------------------------------------------
502502// -----------------------------------------------------------------------------
503503
504- const __camera_alias_pref = _simple_boolean_value_flag_prefernce_mapper (
504+ const __camera_alias_pref = _simple_boolean_value_flag_preference_mapper (
505505 keys . alias . camera
506506) ;
507507
0 commit comments