@ttoss/components 1.31.6 → 1.31.8
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.
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/** Powered by @ttoss/config. https://ttoss.dev/docs/modules/packages/config/ */
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, {
|
|
4
|
+
enumerable: true,
|
|
5
|
+
configurable: true,
|
|
6
|
+
writable: true,
|
|
7
|
+
value
|
|
8
|
+
}) : obj[key] = value;
|
|
9
|
+
var __publicField = (obj, key, value) => {
|
|
10
|
+
__defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
11
|
+
return value;
|
|
12
|
+
};
|
|
13
|
+
export { __publicField };
|
package/dist/esm/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/** Powered by @ttoss/config. https://ttoss.dev/docs/modules/packages/config/ */
|
|
2
|
+
import { __publicField } from "./chunk-BL2JFRQY.js";
|
|
2
3
|
|
|
3
4
|
// src/components/Accordion.tsx
|
|
4
5
|
import * as React from "react";
|
|
@@ -2041,24 +2042,24 @@ function defineIconifyIcon(name = "iconify-icon") {
|
|
|
2041
2042
|
// Customisations
|
|
2042
2043
|
"width", "height", "rotate", "flip"];
|
|
2043
2044
|
const IconifyIcon3 = class extends ParentClass {
|
|
2044
|
-
// Root
|
|
2045
|
-
_shadowRoot;
|
|
2046
|
-
// Initialised
|
|
2047
|
-
_initialised = false;
|
|
2048
|
-
// Icon state
|
|
2049
|
-
_state;
|
|
2050
|
-
// Attributes check queued
|
|
2051
|
-
_checkQueued = false;
|
|
2052
|
-
// Connected
|
|
2053
|
-
_connected = false;
|
|
2054
|
-
// Observer
|
|
2055
|
-
_observer = null;
|
|
2056
|
-
_visible = true;
|
|
2057
2045
|
/**
|
|
2058
2046
|
* Constructor
|
|
2059
2047
|
*/
|
|
2060
2048
|
constructor() {
|
|
2061
2049
|
super();
|
|
2050
|
+
// Root
|
|
2051
|
+
__publicField(this, "_shadowRoot");
|
|
2052
|
+
// Initialised
|
|
2053
|
+
__publicField(this, "_initialised", false);
|
|
2054
|
+
// Icon state
|
|
2055
|
+
__publicField(this, "_state");
|
|
2056
|
+
// Attributes check queued
|
|
2057
|
+
__publicField(this, "_checkQueued", false);
|
|
2058
|
+
// Connected
|
|
2059
|
+
__publicField(this, "_connected", false);
|
|
2060
|
+
// Observer
|
|
2061
|
+
__publicField(this, "_observer", null);
|
|
2062
|
+
__publicField(this, "_visible", true);
|
|
2062
2063
|
const root = this._shadowRoot = this.attachShadow({
|
|
2063
2064
|
mode: "open"
|
|
2064
2065
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ttoss/components",
|
|
3
|
-
"version": "1.31.
|
|
3
|
+
"version": "1.31.8",
|
|
4
4
|
"description": "React components for ttoss ecosystem.",
|
|
5
5
|
"author": "ttoss",
|
|
6
6
|
"contributors": [
|
|
@@ -46,19 +46,19 @@
|
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"react": ">=16.8.0",
|
|
49
|
-
"@ttoss/react-hooks": "^1.25.
|
|
50
|
-
"@ttoss/ui": "^4.1.
|
|
49
|
+
"@ttoss/react-hooks": "^1.25.8",
|
|
50
|
+
"@ttoss/ui": "^4.1.9"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@types/jest": "^29.5.12",
|
|
54
54
|
"@types/react": "^18.2.79",
|
|
55
55
|
"jest": "^29.7.0",
|
|
56
56
|
"tsup": "^8.0.2",
|
|
57
|
-
"@ttoss/config": "^1.32.
|
|
58
|
-
"@ttoss/react-hooks": "^1.25.
|
|
59
|
-
"@ttoss/
|
|
60
|
-
"@ttoss/
|
|
61
|
-
"@ttoss/
|
|
57
|
+
"@ttoss/config": "^1.32.3",
|
|
58
|
+
"@ttoss/react-hooks": "^1.25.8",
|
|
59
|
+
"@ttoss/react-icons": "^0.3.6",
|
|
60
|
+
"@ttoss/test-utils": "^2.1.6",
|
|
61
|
+
"@ttoss/ui": "^4.1.9"
|
|
62
62
|
},
|
|
63
63
|
"keywords": [
|
|
64
64
|
"React",
|