@esri/calcite-components-react 5.0.0-next.3 → 5.0.0-next.31

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/README.md CHANGED
@@ -49,20 +49,12 @@ Since you manually defined the custom elements on the window, you only need to i
49
49
  import { CalciteButton, CalciteIcon, CalciteSlider } from "@esri/calcite-components-react";
50
50
  ```
51
51
 
52
- ## Import stylesheet
53
-
54
- Import the global stylesheet into your app (only do this once):
55
-
56
- ```js
57
- import "@esri/calcite-components/dist/calcite/calcite.css";
58
- ```
59
-
60
52
  ## Copy Assets
61
53
 
62
54
  Some components (icon, date-picker) rely on assets being available at a particular path. If using assets locally, you'll need to copy these over to your public folder. Something like:
63
55
 
64
56
  ```sh
65
- cp -r node_modules/@esri/calcite-components/dist/calcite/assets/* ./public/assets/
57
+ cp -r node_modules/@esri/calcite-components/dist/cdn/assets/* ./public/assets/
66
58
  ```
67
59
 
68
60
  ## Why not just use the web components directly?
@@ -353,11 +353,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
353
353
 
354
354
  ---
355
355
 
356
- sortablejs
356
+ scheduler
357
357
 
358
358
  MIT License
359
359
 
360
- Copyright (c) 2019 All contributors to Sortable
360
+ Copyright (c) Meta Platforms, Inc. and affiliates.
361
361
 
362
362
  Permission is hereby granted, free of charge, to any person obtaining a copy
363
363
  of this software and associated documentation files (the "Software"), to deal
@@ -379,6 +379,32 @@ SOFTWARE.
379
379
 
380
380
  ---
381
381
 
382
+ sortablejs
383
+
384
+ MIT License
385
+
386
+ Copyright (c) 2019 All contributors to Sortable
387
+
388
+ Permission is hereby granted, free of charge, to any person obtaining a copy
389
+ of this software and associated documentation files (the "Software"), to deal
390
+ in the Software without restriction, including without limitation the rights
391
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
392
+ copies of the Software, and to permit persons to whom the Software is
393
+ furnished to do so, subject to the following conditions:
394
+
395
+ The above copyright notice and this permission notice shall be included in all
396
+ copies or substantial portions of the Software.
397
+
398
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
399
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
400
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
401
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
402
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
403
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
404
+ SOFTWARE.
405
+
406
+ ---
407
+
382
408
  tabbable
383
409
 
384
410
  The MIT License (MIT)
@@ -435,17 +461,17 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
435
461
 
436
462
  tslib
437
463
 
438
- Copyright (c) Microsoft Corporation.
439
-
440
- Permission to use, copy, modify, and/or distribute this software for any
441
- purpose with or without fee is hereby granted.
442
-
443
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
444
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
445
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
446
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
447
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
448
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
464
+ Copyright (c) Microsoft Corporation.
465
+
466
+ Permission to use, copy, modify, and/or distribute this software for any
467
+ purpose with or without fee is hereby granted.
468
+
469
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
470
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
471
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
472
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
473
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
474
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
449
475
  PERFORMANCE OF THIS SOFTWARE.
450
476
 
451
477
  ---
@@ -480,7 +480,6 @@ export declare const CalciteStepper: import("@lit/react").ReactWebComponent<HTML
480
480
  class?: string;
481
481
  }, {
482
482
  onCalciteStepperChange: EventName<HTMLCalciteStepperElement["calciteStepperChange"]>;
483
- onCalciteStepperItemChange: EventName<HTMLCalciteStepperElement["calciteStepperItemChange"]>;
484
483
  }>;
485
484
  export declare const CalciteStepperItem: import("@lit/react").ReactWebComponent<HTMLCalciteStepperItemElement & {
486
485
  class?: string;
@@ -309,7 +309,6 @@ export const CalciteSplitButton = /*@__PURE__*/ createWrapper(getReactWrapperOpt
309
309
  export const CalciteStack = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-stack", {}));
310
310
  export const CalciteStepper = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-stepper", {
311
311
  onCalciteStepperChange: "calciteStepperChange",
312
- onCalciteStepperItemChange: "calciteStepperItemChange",
313
312
  }));
314
313
  export const CalciteStepperItem = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-stepper-item", {
315
314
  onCalciteStepperItemSelect: "calciteStepperItemSelect",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esri/calcite-components-react",
3
- "version": "5.0.0-next.3",
3
+ "version": "5.0.0-next.31",
4
4
  "description": "A set of React components that wrap calcite components",
5
5
  "homepage": "https://developers.arcgis.com/calcite-design-system/",
6
6
  "repository": {
@@ -28,8 +28,8 @@
28
28
  "util:update-3rd-party-licenses": "node ../../support/createThirdPartyLicenses.mts"
29
29
  },
30
30
  "dependencies": {
31
- "@arcgis/lumina": ">=5.0.0-next.24 <6.0.0",
32
- "@esri/calcite-components": "5.0.0-next.3",
31
+ "@arcgis/lumina": ">=5.0.0-next.75 <6.0.0",
32
+ "@esri/calcite-components": "5.0.0-next.31",
33
33
  "@lit/react": "^1.0.8",
34
34
  "lit": "^3.3.0"
35
35
  },
@@ -40,5 +40,5 @@
40
40
  "volta": {
41
41
  "extends": "../../package.json"
42
42
  },
43
- "gitHead": "86739e53e158db04bf8adea7f8427795dbed1f8b"
43
+ "gitHead": "58541cf5a4240911afd2ee77abdc5127350d218f"
44
44
  }