@skedulo/breeze-ui 0.9.6 → 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.
@@ -72,6 +72,109 @@
72
72
  }
73
73
  ]
74
74
  },
75
+ {
76
+ "kind": "javascript-module",
77
+ "path": "src/animation/fade-in-out.ts",
78
+ "declarations": [
79
+ {
80
+ "kind": "variable",
81
+ "name": "FADE_IN_OUT"
82
+ },
83
+ {
84
+ "kind": "class",
85
+ "description": "Fade in out animation.",
86
+ "name": "FadeInOut",
87
+ "slots": [
88
+ {
89
+ "description": "The content to be animated",
90
+ "name": "children"
91
+ }
92
+ ],
93
+ "members": [
94
+ {
95
+ "kind": "field",
96
+ "name": "shown",
97
+ "type": {
98
+ "text": "boolean"
99
+ },
100
+ "default": "false",
101
+ "description": "Shows and hides slotted content",
102
+ "attribute": "shown"
103
+ },
104
+ {
105
+ "kind": "method",
106
+ "name": "_handleTransitionEnd",
107
+ "privacy": "private",
108
+ "parameters": [
109
+ {
110
+ "name": "event",
111
+ "type": {
112
+ "text": "Event"
113
+ }
114
+ }
115
+ ]
116
+ }
117
+ ],
118
+ "attributes": [
119
+ {
120
+ "name": "shown",
121
+ "type": {
122
+ "text": "boolean"
123
+ },
124
+ "default": "false",
125
+ "description": "Shows and hides slotted content",
126
+ "fieldName": "shown"
127
+ }
128
+ ],
129
+ "superclass": {
130
+ "name": "LitElement",
131
+ "package": "lit"
132
+ },
133
+ "tagName": "brz-fade-in-out",
134
+ "customElement": true
135
+ }
136
+ ],
137
+ "exports": [
138
+ {
139
+ "kind": "js",
140
+ "name": "FADE_IN_OUT",
141
+ "declaration": {
142
+ "name": "FADE_IN_OUT",
143
+ "module": "src/animation/fade-in-out.ts"
144
+ }
145
+ },
146
+ {
147
+ "kind": "js",
148
+ "name": "FadeInOut",
149
+ "declaration": {
150
+ "name": "FadeInOut",
151
+ "module": "src/animation/fade-in-out.ts"
152
+ }
153
+ },
154
+ {
155
+ "kind": "custom-element-definition",
156
+ "declaration": {
157
+ "name": "FadeInOut",
158
+ "module": "src/animation/fade-in-out.ts"
159
+ }
160
+ }
161
+ ]
162
+ },
163
+ {
164
+ "kind": "javascript-module",
165
+ "path": "src/animation/index.ts",
166
+ "declarations": [],
167
+ "exports": [
168
+ {
169
+ "kind": "js",
170
+ "name": "*",
171
+ "declaration": {
172
+ "name": "*",
173
+ "package": "./fade-in-out"
174
+ }
175
+ }
176
+ ]
177
+ },
75
178
  {
76
179
  "kind": "javascript-module",
77
180
  "path": "src/layout/flex.ts",
@@ -12660,6 +12763,24 @@
12660
12763
  "module": "src/components/form-elements/input-select-base.ts"
12661
12764
  }
12662
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
+ },
12663
12784
  {
12664
12785
  "kind": "method",
12665
12786
  "name": "syncValueLabel",
@@ -14774,6 +14895,24 @@
14774
14895
  "module": "src/components/form-elements/input-select-base.ts"
14775
14896
  }
14776
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
+ },
14777
14916
  {
14778
14917
  "kind": "method",
14779
14918
  "name": "syncValueLabel",
@@ -19248,109 +19387,6 @@
19248
19387
  }
19249
19388
  ]
19250
19389
  },
19251
- {
19252
- "kind": "javascript-module",
19253
- "path": "src/animation/fade-in-out.ts",
19254
- "declarations": [
19255
- {
19256
- "kind": "variable",
19257
- "name": "FADE_IN_OUT"
19258
- },
19259
- {
19260
- "kind": "class",
19261
- "description": "Fade in out animation.",
19262
- "name": "FadeInOut",
19263
- "slots": [
19264
- {
19265
- "description": "The content to be animated",
19266
- "name": "children"
19267
- }
19268
- ],
19269
- "members": [
19270
- {
19271
- "kind": "field",
19272
- "name": "shown",
19273
- "type": {
19274
- "text": "boolean"
19275
- },
19276
- "default": "false",
19277
- "description": "Shows and hides slotted content",
19278
- "attribute": "shown"
19279
- },
19280
- {
19281
- "kind": "method",
19282
- "name": "_handleTransitionEnd",
19283
- "privacy": "private",
19284
- "parameters": [
19285
- {
19286
- "name": "event",
19287
- "type": {
19288
- "text": "Event"
19289
- }
19290
- }
19291
- ]
19292
- }
19293
- ],
19294
- "attributes": [
19295
- {
19296
- "name": "shown",
19297
- "type": {
19298
- "text": "boolean"
19299
- },
19300
- "default": "false",
19301
- "description": "Shows and hides slotted content",
19302
- "fieldName": "shown"
19303
- }
19304
- ],
19305
- "superclass": {
19306
- "name": "LitElement",
19307
- "package": "lit"
19308
- },
19309
- "tagName": "brz-fade-in-out",
19310
- "customElement": true
19311
- }
19312
- ],
19313
- "exports": [
19314
- {
19315
- "kind": "js",
19316
- "name": "FADE_IN_OUT",
19317
- "declaration": {
19318
- "name": "FADE_IN_OUT",
19319
- "module": "src/animation/fade-in-out.ts"
19320
- }
19321
- },
19322
- {
19323
- "kind": "js",
19324
- "name": "FadeInOut",
19325
- "declaration": {
19326
- "name": "FadeInOut",
19327
- "module": "src/animation/fade-in-out.ts"
19328
- }
19329
- },
19330
- {
19331
- "kind": "custom-element-definition",
19332
- "declaration": {
19333
- "name": "FadeInOut",
19334
- "module": "src/animation/fade-in-out.ts"
19335
- }
19336
- }
19337
- ]
19338
- },
19339
- {
19340
- "kind": "javascript-module",
19341
- "path": "src/animation/index.ts",
19342
- "declarations": [],
19343
- "exports": [
19344
- {
19345
- "kind": "js",
19346
- "name": "*",
19347
- "declaration": {
19348
- "name": "*",
19349
- "package": "./fade-in-out"
19350
- }
19351
- }
19352
- ]
19353
- },
19354
19390
  {
19355
19391
  "kind": "javascript-module",
19356
19392
  "path": "src/helpers/css-helpers.ts",
@@ -19442,6 +19478,127 @@
19442
19478
  }
19443
19479
  ]
19444
19480
  },
19481
+ {
19482
+ "kind": "javascript-module",
19483
+ "path": "src/storybook/colors.stories.ts",
19484
+ "declarations": [
19485
+ {
19486
+ "kind": "class",
19487
+ "description": "Story component to render a colour swatch.\nWill extract the hex code from a supplied color var and use it as the background.",
19488
+ "name": "ColorSwatch",
19489
+ "members": [
19490
+ {
19491
+ "kind": "field",
19492
+ "name": "colorVar",
19493
+ "type": {
19494
+ "text": "string"
19495
+ },
19496
+ "default": "''",
19497
+ "attribute": "colorVar"
19498
+ },
19499
+ {
19500
+ "kind": "field",
19501
+ "name": "lightText",
19502
+ "type": {
19503
+ "text": "boolean"
19504
+ },
19505
+ "default": "false",
19506
+ "attribute": "light-text"
19507
+ }
19508
+ ],
19509
+ "attributes": [
19510
+ {
19511
+ "name": "colorVar",
19512
+ "type": {
19513
+ "text": "string"
19514
+ },
19515
+ "default": "''",
19516
+ "fieldName": "colorVar"
19517
+ },
19518
+ {
19519
+ "name": "light-text",
19520
+ "type": {
19521
+ "text": "boolean"
19522
+ },
19523
+ "default": "false",
19524
+ "fieldName": "lightText"
19525
+ }
19526
+ ],
19527
+ "superclass": {
19528
+ "name": "LitElement",
19529
+ "package": "lit"
19530
+ },
19531
+ "tagName": "brz-sb-color-swatch",
19532
+ "customElement": true
19533
+ },
19534
+ {
19535
+ "kind": "class",
19536
+ "description": "Story component for laying out a group of swatches",
19537
+ "name": "ColorSwatchGroup",
19538
+ "members": [
19539
+ {
19540
+ "kind": "field",
19541
+ "name": "stacked",
19542
+ "type": {
19543
+ "text": "boolean"
19544
+ },
19545
+ "default": "false",
19546
+ "attribute": "stacked"
19547
+ }
19548
+ ],
19549
+ "attributes": [
19550
+ {
19551
+ "name": "stacked",
19552
+ "type": {
19553
+ "text": "boolean"
19554
+ },
19555
+ "default": "false",
19556
+ "fieldName": "stacked"
19557
+ }
19558
+ ],
19559
+ "superclass": {
19560
+ "name": "LitElement",
19561
+ "package": "lit"
19562
+ },
19563
+ "tagName": "brz-sb-color-swatch-group",
19564
+ "customElement": true
19565
+ }
19566
+ ],
19567
+ "exports": [
19568
+ {
19569
+ "kind": "js",
19570
+ "name": "ColorSwatch",
19571
+ "declaration": {
19572
+ "name": "ColorSwatch",
19573
+ "module": "src/storybook/colors.stories.ts"
19574
+ }
19575
+ },
19576
+ {
19577
+ "kind": "custom-element-definition",
19578
+ "name": "brz-sb-color-swatch",
19579
+ "declaration": {
19580
+ "name": "ColorSwatch",
19581
+ "module": "src/storybook/colors.stories.ts"
19582
+ }
19583
+ },
19584
+ {
19585
+ "kind": "js",
19586
+ "name": "ColorSwatchGroup",
19587
+ "declaration": {
19588
+ "name": "ColorSwatchGroup",
19589
+ "module": "src/storybook/colors.stories.ts"
19590
+ }
19591
+ },
19592
+ {
19593
+ "kind": "custom-element-definition",
19594
+ "name": "brz-sb-color-swatch-group",
19595
+ "declaration": {
19596
+ "name": "ColorSwatchGroup",
19597
+ "module": "src/storybook/colors.stories.ts"
19598
+ }
19599
+ }
19600
+ ]
19601
+ },
19445
19602
  {
19446
19603
  "kind": "javascript-module",
19447
19604
  "path": "src/mixins/component-utils.ts",
@@ -19579,127 +19736,6 @@
19579
19736
  }
19580
19737
  ]
19581
19738
  },
19582
- {
19583
- "kind": "javascript-module",
19584
- "path": "src/storybook/colors.stories.ts",
19585
- "declarations": [
19586
- {
19587
- "kind": "class",
19588
- "description": "Story component to render a colour swatch.\nWill extract the hex code from a supplied color var and use it as the background.",
19589
- "name": "ColorSwatch",
19590
- "members": [
19591
- {
19592
- "kind": "field",
19593
- "name": "colorVar",
19594
- "type": {
19595
- "text": "string"
19596
- },
19597
- "default": "''",
19598
- "attribute": "colorVar"
19599
- },
19600
- {
19601
- "kind": "field",
19602
- "name": "lightText",
19603
- "type": {
19604
- "text": "boolean"
19605
- },
19606
- "default": "false",
19607
- "attribute": "light-text"
19608
- }
19609
- ],
19610
- "attributes": [
19611
- {
19612
- "name": "colorVar",
19613
- "type": {
19614
- "text": "string"
19615
- },
19616
- "default": "''",
19617
- "fieldName": "colorVar"
19618
- },
19619
- {
19620
- "name": "light-text",
19621
- "type": {
19622
- "text": "boolean"
19623
- },
19624
- "default": "false",
19625
- "fieldName": "lightText"
19626
- }
19627
- ],
19628
- "superclass": {
19629
- "name": "LitElement",
19630
- "package": "lit"
19631
- },
19632
- "tagName": "brz-sb-color-swatch",
19633
- "customElement": true
19634
- },
19635
- {
19636
- "kind": "class",
19637
- "description": "Story component for laying out a group of swatches",
19638
- "name": "ColorSwatchGroup",
19639
- "members": [
19640
- {
19641
- "kind": "field",
19642
- "name": "stacked",
19643
- "type": {
19644
- "text": "boolean"
19645
- },
19646
- "default": "false",
19647
- "attribute": "stacked"
19648
- }
19649
- ],
19650
- "attributes": [
19651
- {
19652
- "name": "stacked",
19653
- "type": {
19654
- "text": "boolean"
19655
- },
19656
- "default": "false",
19657
- "fieldName": "stacked"
19658
- }
19659
- ],
19660
- "superclass": {
19661
- "name": "LitElement",
19662
- "package": "lit"
19663
- },
19664
- "tagName": "brz-sb-color-swatch-group",
19665
- "customElement": true
19666
- }
19667
- ],
19668
- "exports": [
19669
- {
19670
- "kind": "js",
19671
- "name": "ColorSwatch",
19672
- "declaration": {
19673
- "name": "ColorSwatch",
19674
- "module": "src/storybook/colors.stories.ts"
19675
- }
19676
- },
19677
- {
19678
- "kind": "custom-element-definition",
19679
- "name": "brz-sb-color-swatch",
19680
- "declaration": {
19681
- "name": "ColorSwatch",
19682
- "module": "src/storybook/colors.stories.ts"
19683
- }
19684
- },
19685
- {
19686
- "kind": "js",
19687
- "name": "ColorSwatchGroup",
19688
- "declaration": {
19689
- "name": "ColorSwatchGroup",
19690
- "module": "src/storybook/colors.stories.ts"
19691
- }
19692
- },
19693
- {
19694
- "kind": "custom-element-definition",
19695
- "name": "brz-sb-color-swatch-group",
19696
- "declaration": {
19697
- "name": "ColorSwatchGroup",
19698
- "module": "src/storybook/colors.stories.ts"
19699
- }
19700
- }
19701
- ]
19702
- },
19703
19739
  {
19704
19740
  "kind": "javascript-module",
19705
19741
  "path": "src/styles/borders.ts",
@@ -25019,6 +25055,20 @@
25019
25055
  "module": "src/components/form-elements/input-select-base.ts"
25020
25056
  }
25021
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
+ },
25022
25072
  {
25023
25073
  "kind": "method",
25024
25074
  "name": "syncValueLabel",
@@ -27665,6 +27715,24 @@
27665
27715
  "module": "src/components/form-elements/input-select-base.ts"
27666
27716
  }
27667
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
+ },
27668
27736
  {
27669
27737
  "kind": "method",
27670
27738
  "name": "syncValueLabel",