@skedulo/breeze-ui 0.9.5 → 0.9.7

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.
@@ -84,6 +84,12 @@
84
84
  "kind": "class",
85
85
  "description": "Fade in out animation.",
86
86
  "name": "FadeInOut",
87
+ "slots": [
88
+ {
89
+ "description": "The content to be animated",
90
+ "name": "children"
91
+ }
92
+ ],
87
93
  "members": [
88
94
  {
89
95
  "kind": "field",
@@ -92,16 +98,9 @@
92
98
  "text": "boolean"
93
99
  },
94
100
  "default": "false",
101
+ "description": "Shows and hides slotted content",
95
102
  "attribute": "shown"
96
103
  },
97
- {
98
- "kind": "field",
99
- "name": "removed",
100
- "type": {
101
- "text": "boolean"
102
- },
103
- "default": "!this.shown"
104
- },
105
104
  {
106
105
  "kind": "method",
107
106
  "name": "_handleTransitionEnd",
@@ -123,6 +122,7 @@
123
122
  "text": "boolean"
124
123
  },
125
124
  "default": "false",
125
+ "description": "Shows and hides slotted content",
126
126
  "fieldName": "shown"
127
127
  }
128
128
  ],
@@ -7372,6 +7372,7 @@
7372
7372
  "text": "boolean"
7373
7373
  },
7374
7374
  "default": "false",
7375
+ "description": "Shows and hides slotted content",
7375
7376
  "fieldName": "shown",
7376
7377
  "inheritedFrom": {
7377
7378
  "name": "FadeInOut",
@@ -7387,24 +7388,13 @@
7387
7388
  "text": "boolean"
7388
7389
  },
7389
7390
  "default": "false",
7391
+ "description": "Shows and hides slotted content",
7390
7392
  "attribute": "shown",
7391
7393
  "inheritedFrom": {
7392
7394
  "name": "FadeInOut",
7393
7395
  "module": "src/animation/fade-in-out.ts"
7394
7396
  }
7395
7397
  },
7396
- {
7397
- "kind": "field",
7398
- "name": "removed",
7399
- "type": {
7400
- "text": "boolean"
7401
- },
7402
- "default": "!this.shown",
7403
- "inheritedFrom": {
7404
- "name": "FadeInOut",
7405
- "module": "src/animation/fade-in-out.ts"
7406
- }
7407
- },
7408
7398
  {
7409
7399
  "kind": "method",
7410
7400
  "name": "_handleTransitionEnd",
@@ -12773,6 +12763,24 @@
12773
12763
  "module": "src/components/form-elements/input-select-base.ts"
12774
12764
  }
12775
12765
  },
12766
+ {
12767
+ "kind": "method",
12768
+ "name": "findItem",
12769
+ "privacy": "private",
12770
+ "parameters": [
12771
+ {
12772
+ "name": "value",
12773
+ "type": {
12774
+ "text": "ValueType"
12775
+ }
12776
+ }
12777
+ ],
12778
+ "description": "Finds item from a given value in the list of items",
12779
+ "inheritedFrom": {
12780
+ "name": "InputSelect",
12781
+ "module": "src/components/form-elements/input-select.ts"
12782
+ }
12783
+ },
12776
12784
  {
12777
12785
  "kind": "method",
12778
12786
  "name": "syncValueLabel",
@@ -14887,6 +14895,24 @@
14887
14895
  "module": "src/components/form-elements/input-select-base.ts"
14888
14896
  }
14889
14897
  },
14898
+ {
14899
+ "kind": "method",
14900
+ "name": "findItem",
14901
+ "privacy": "private",
14902
+ "parameters": [
14903
+ {
14904
+ "name": "value",
14905
+ "type": {
14906
+ "text": "ValueType"
14907
+ }
14908
+ }
14909
+ ],
14910
+ "description": "Finds item from a given value in the list of items",
14911
+ "inheritedFrom": {
14912
+ "name": "InputSelect",
14913
+ "module": "src/components/form-elements/input-select.ts"
14914
+ }
14915
+ },
14890
14916
  {
14891
14917
  "kind": "method",
14892
14918
  "name": "syncValueLabel",
@@ -19452,143 +19478,6 @@
19452
19478
  }
19453
19479
  ]
19454
19480
  },
19455
- {
19456
- "kind": "javascript-module",
19457
- "path": "src/mixins/component-utils.ts",
19458
- "declarations": [
19459
- {
19460
- "kind": "variable",
19461
- "name": "targetProperties",
19462
- "type": {
19463
- "text": "['m', 'p']"
19464
- },
19465
- "default": "['m', 'p']"
19466
- },
19467
- {
19468
- "kind": "variable",
19469
- "name": "targetAxes",
19470
- "type": {
19471
- "text": "['x', 'y']"
19472
- },
19473
- "default": "['x', 'y']"
19474
- },
19475
- {
19476
- "kind": "variable",
19477
- "name": "targetSides",
19478
- "type": {
19479
- "text": "['t', 'r', 'b', 'l']"
19480
- },
19481
- "default": "['t', 'r', 'b', 'l']"
19482
- },
19483
- {
19484
- "kind": "mixin",
19485
- "description": "",
19486
- "name": "WithUtils",
19487
- "members": [
19488
- {
19489
- "kind": "field",
19490
- "name": "styles",
19491
- "type": {
19492
- "text": "array"
19493
- },
19494
- "static": true,
19495
- "default": "[\n (Base as unknown as typeof LitElement).styles ?? [],\n ...spacingPropertyStyles,\n ]"
19496
- },
19497
- {
19498
- "kind": "field",
19499
- "name": "properties",
19500
- "type": {
19501
- "text": "object"
19502
- },
19503
- "static": true,
19504
- "default": "{\n ...((Base as unknown as typeof LitElement).properties ?? {}),\n ...spacingProperties,\n }"
19505
- },
19506
- {
19507
- "kind": "field",
19508
- "name": "",
19509
- "privacy": "public",
19510
- "attribute": ""
19511
- }
19512
- ],
19513
- "attributes": [
19514
- {
19515
- "name": "",
19516
- "fieldName": "",
19517
- "attribute": ""
19518
- }
19519
- ],
19520
- "parameters": [
19521
- {
19522
- "name": "Base",
19523
- "type": {
19524
- "text": "T"
19525
- }
19526
- }
19527
- ]
19528
- },
19529
- {
19530
- "kind": "variable",
19531
- "name": "LitElementWithUtils"
19532
- }
19533
- ],
19534
- "exports": [
19535
- {
19536
- "kind": "js",
19537
- "name": "targetProperties",
19538
- "declaration": {
19539
- "name": "targetProperties",
19540
- "module": "src/mixins/component-utils.ts"
19541
- }
19542
- },
19543
- {
19544
- "kind": "js",
19545
- "name": "targetAxes",
19546
- "declaration": {
19547
- "name": "targetAxes",
19548
- "module": "src/mixins/component-utils.ts"
19549
- }
19550
- },
19551
- {
19552
- "kind": "js",
19553
- "name": "targetSides",
19554
- "declaration": {
19555
- "name": "targetSides",
19556
- "module": "src/mixins/component-utils.ts"
19557
- }
19558
- },
19559
- {
19560
- "kind": "js",
19561
- "name": "WithUtils",
19562
- "declaration": {
19563
- "name": "WithUtils",
19564
- "module": "src/mixins/component-utils.ts"
19565
- }
19566
- },
19567
- {
19568
- "kind": "js",
19569
- "name": "LitElementWithUtils",
19570
- "declaration": {
19571
- "name": "LitElementWithUtils",
19572
- "module": "src/mixins/component-utils.ts"
19573
- }
19574
- }
19575
- ]
19576
- },
19577
- {
19578
- "kind": "javascript-module",
19579
- "path": "src/mixins/index.ts",
19580
- "declarations": [],
19581
- "exports": [
19582
- {
19583
- "kind": "js",
19584
- "name": "*",
19585
- "declaration": {
19586
- "name": "*",
19587
- "package": "./component-utils"
19588
- }
19589
- }
19590
- ]
19591
- },
19592
19481
  {
19593
19482
  "kind": "javascript-module",
19594
19483
  "path": "src/storybook/colors.stories.ts",
@@ -19712,60 +19601,137 @@
19712
19601
  },
19713
19602
  {
19714
19603
  "kind": "javascript-module",
19715
- "path": "src/storybook/fade-in-out.stories.ts",
19604
+ "path": "src/mixins/component-utils.ts",
19716
19605
  "declarations": [
19717
19606
  {
19718
- "kind": "class",
19607
+ "kind": "variable",
19608
+ "name": "targetProperties",
19609
+ "type": {
19610
+ "text": "['m', 'p']"
19611
+ },
19612
+ "default": "['m', 'p']"
19613
+ },
19614
+ {
19615
+ "kind": "variable",
19616
+ "name": "targetAxes",
19617
+ "type": {
19618
+ "text": "['x', 'y']"
19619
+ },
19620
+ "default": "['x', 'y']"
19621
+ },
19622
+ {
19623
+ "kind": "variable",
19624
+ "name": "targetSides",
19625
+ "type": {
19626
+ "text": "['t', 'r', 'b', 'l']"
19627
+ },
19628
+ "default": "['t', 'r', 'b', 'l']"
19629
+ },
19630
+ {
19631
+ "kind": "mixin",
19719
19632
  "description": "",
19720
- "name": "FadeInOutStory",
19633
+ "name": "WithUtils",
19721
19634
  "members": [
19722
19635
  {
19723
19636
  "kind": "field",
19724
- "name": "shown",
19637
+ "name": "styles",
19725
19638
  "type": {
19726
- "text": "boolean"
19639
+ "text": "array"
19727
19640
  },
19728
- "default": "false",
19729
- "attribute": "shown"
19641
+ "static": true,
19642
+ "default": "[\n (Base as unknown as typeof LitElement).styles ?? [],\n ...spacingPropertyStyles,\n ]"
19730
19643
  },
19731
19644
  {
19732
- "kind": "method",
19733
- "name": "handleToggle"
19645
+ "kind": "field",
19646
+ "name": "properties",
19647
+ "type": {
19648
+ "text": "object"
19649
+ },
19650
+ "static": true,
19651
+ "default": "{\n ...((Base as unknown as typeof LitElement).properties ?? {}),\n ...spacingProperties,\n }"
19652
+ },
19653
+ {
19654
+ "kind": "field",
19655
+ "name": "",
19656
+ "privacy": "public",
19657
+ "attribute": ""
19734
19658
  }
19735
19659
  ],
19736
19660
  "attributes": [
19737
19661
  {
19738
- "name": "shown",
19739
- "type": {
19740
- "text": "boolean"
19741
- },
19742
- "default": "false",
19743
- "fieldName": "shown"
19662
+ "name": "",
19663
+ "fieldName": "",
19664
+ "attribute": ""
19744
19665
  }
19745
19666
  ],
19746
- "superclass": {
19747
- "name": "LitElement",
19748
- "package": "lit"
19749
- },
19750
- "tagName": "brz-sb-fade-in-out",
19751
- "customElement": true
19667
+ "parameters": [
19668
+ {
19669
+ "name": "Base",
19670
+ "type": {
19671
+ "text": "T"
19672
+ }
19673
+ }
19674
+ ]
19675
+ },
19676
+ {
19677
+ "kind": "variable",
19678
+ "name": "LitElementWithUtils"
19752
19679
  }
19753
19680
  ],
19754
19681
  "exports": [
19755
19682
  {
19756
19683
  "kind": "js",
19757
- "name": "FadeInOutStory",
19684
+ "name": "targetProperties",
19758
19685
  "declaration": {
19759
- "name": "FadeInOutStory",
19760
- "module": "src/storybook/fade-in-out.stories.ts"
19686
+ "name": "targetProperties",
19687
+ "module": "src/mixins/component-utils.ts"
19761
19688
  }
19762
19689
  },
19763
19690
  {
19764
- "kind": "custom-element-definition",
19765
- "name": "brz-sb-fade-in-out",
19691
+ "kind": "js",
19692
+ "name": "targetAxes",
19766
19693
  "declaration": {
19767
- "name": "FadeInOutStory",
19768
- "module": "src/storybook/fade-in-out.stories.ts"
19694
+ "name": "targetAxes",
19695
+ "module": "src/mixins/component-utils.ts"
19696
+ }
19697
+ },
19698
+ {
19699
+ "kind": "js",
19700
+ "name": "targetSides",
19701
+ "declaration": {
19702
+ "name": "targetSides",
19703
+ "module": "src/mixins/component-utils.ts"
19704
+ }
19705
+ },
19706
+ {
19707
+ "kind": "js",
19708
+ "name": "WithUtils",
19709
+ "declaration": {
19710
+ "name": "WithUtils",
19711
+ "module": "src/mixins/component-utils.ts"
19712
+ }
19713
+ },
19714
+ {
19715
+ "kind": "js",
19716
+ "name": "LitElementWithUtils",
19717
+ "declaration": {
19718
+ "name": "LitElementWithUtils",
19719
+ "module": "src/mixins/component-utils.ts"
19720
+ }
19721
+ }
19722
+ ]
19723
+ },
19724
+ {
19725
+ "kind": "javascript-module",
19726
+ "path": "src/mixins/index.ts",
19727
+ "declarations": [],
19728
+ "exports": [
19729
+ {
19730
+ "kind": "js",
19731
+ "name": "*",
19732
+ "declaration": {
19733
+ "name": "*",
19734
+ "package": "./component-utils"
19769
19735
  }
19770
19736
  }
19771
19737
  ]
@@ -25089,6 +25055,20 @@
25089
25055
  "module": "src/components/form-elements/input-select-base.ts"
25090
25056
  }
25091
25057
  },
25058
+ {
25059
+ "kind": "method",
25060
+ "name": "findItem",
25061
+ "privacy": "private",
25062
+ "parameters": [
25063
+ {
25064
+ "name": "value",
25065
+ "type": {
25066
+ "text": "ValueType"
25067
+ }
25068
+ }
25069
+ ],
25070
+ "description": "Finds item from a given value in the list of items"
25071
+ },
25092
25072
  {
25093
25073
  "kind": "method",
25094
25074
  "name": "syncValueLabel",
@@ -27735,6 +27715,24 @@
27735
27715
  "module": "src/components/form-elements/input-select-base.ts"
27736
27716
  }
27737
27717
  },
27718
+ {
27719
+ "kind": "method",
27720
+ "name": "findItem",
27721
+ "privacy": "private",
27722
+ "parameters": [
27723
+ {
27724
+ "name": "value",
27725
+ "type": {
27726
+ "text": "ValueType"
27727
+ }
27728
+ }
27729
+ ],
27730
+ "description": "Finds item from a given value in the list of items",
27731
+ "inheritedFrom": {
27732
+ "name": "InputSelect",
27733
+ "module": "src/components/form-elements/input-select.ts"
27734
+ }
27735
+ },
27738
27736
  {
27739
27737
  "kind": "method",
27740
27738
  "name": "syncValueLabel",