@speckle/ui-components 2.14.7 → 2.14.8-alpha10
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 +0 -19
- package/dist/components/InfiniteLoading.vue.d.ts +35 -0
- package/dist/components/common/Alert.vue.d.ts +46 -0
- package/dist/components/common/steps/Bullet.vue.d.ts +9 -0
- package/dist/components/common/steps/Number.vue.d.ts +9 -0
- package/dist/components/form/Button.vue.d.ts +1 -1
- package/dist/components/form/TextInput.vue.d.ts +3 -4
- package/dist/components/form/select/Base.vue.d.ts +7 -5
- package/dist/components/layout/Dialog.vue.d.ts +41 -0
- package/dist/components/layout/Disclosure.vue.d.ts +35 -0
- package/dist/components/layout/GridListToggle.vue.d.ts +17 -0
- package/dist/components/layout/Menu.vue.d.ts +25 -0
- package/dist/components/layout/Panel.vue.d.ts +70 -0
- package/dist/components/layout/Tabs.vue.d.ts +14 -0
- package/dist/composables/common/steps.d.ts +2 -0
- package/dist/composables/common/window.d.ts +26 -0
- package/dist/helpers/global/components.d.ts +14 -0
- package/dist/helpers/layout/components.d.ts +13 -0
- package/dist/lib.cjs +1 -1
- package/dist/lib.d.ts +14 -2
- package/dist/lib.js +1610 -878
- package/dist/style.css +1 -1
- package/package.json +6 -5
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}.icon-slot[data-v-
|
|
1
|
+
.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}.icon-slot[data-v-38aa371e]:empty{display:none}.swoosher[data-v-60cf597b]{width:100%;height:100%;animation:swoosh-60cf597b 1s infinite linear;transform-origin:0% 30%}@keyframes swoosh-60cf597b{0%{transform:translate(0) scaleX(0)}40%{transform:translate(0) scaleX(.4)}to{transform:translate(100%) scaleX(.5)}}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@speckle/ui-components",
|
|
3
3
|
"description": "Speckle theme UI components built with Vue 3 & Tailwind",
|
|
4
|
-
"version": "2.14.
|
|
4
|
+
"version": "2.14.8-alpha10",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "vite",
|
|
7
7
|
"build": "vue-tsc && vite build",
|
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"lodash": "^4.0.0",
|
|
46
46
|
"lodash-es": "^4.0.0",
|
|
47
47
|
"nanoid": "^3.0.0",
|
|
48
|
+
"v3-infinite-loading": "^1.2.2",
|
|
48
49
|
"vee-validate": "^4.7.0",
|
|
49
50
|
"vue-tippy": "^6.0.0"
|
|
50
51
|
},
|
|
@@ -52,7 +53,7 @@
|
|
|
52
53
|
"@babel/preset-env": "^7.21.5",
|
|
53
54
|
"@babel/preset-react": "^7.18.6",
|
|
54
55
|
"@rollup/plugin-typescript": "^11.1.0",
|
|
55
|
-
"@speckle/tailwind-theme": "
|
|
56
|
+
"@speckle/tailwind-theme": "2.14.8-alpha1",
|
|
56
57
|
"@storybook/addon-essentials": "^7.0.10",
|
|
57
58
|
"@storybook/addon-interactions": "^7.0.10",
|
|
58
59
|
"@storybook/addon-links": "^7.0.10",
|
|
@@ -66,7 +67,7 @@
|
|
|
66
67
|
"@types/lodash": "^4.0.0",
|
|
67
68
|
"@typescript-eslint/eslint-plugin": "^5.38.1",
|
|
68
69
|
"@typescript-eslint/parser": "^5.38.1",
|
|
69
|
-
"@vitejs/plugin-vue": "^4.
|
|
70
|
+
"@vitejs/plugin-vue": "^4.2.3",
|
|
70
71
|
"autoprefixer": "^10.4.14",
|
|
71
72
|
"browserify-zlib": "^0.2.0",
|
|
72
73
|
"chromatic": "^6.17.4",
|
|
@@ -87,7 +88,7 @@
|
|
|
87
88
|
"type-fest": "^2.13.1",
|
|
88
89
|
"typescript": "^5.0.4",
|
|
89
90
|
"unplugin-vue-macros": "^2.1.4",
|
|
90
|
-
"vite": "^4.3.
|
|
91
|
+
"vite": "^4.3.9",
|
|
91
92
|
"vite-plugin-dts": "^2.3.0",
|
|
92
93
|
"vue": "^3.0.0",
|
|
93
94
|
"vue-tsc": "^1.4.2",
|
|
@@ -96,4 +97,4 @@
|
|
|
96
97
|
"installConfig": {
|
|
97
98
|
"hoistingLimits": "workspaces"
|
|
98
99
|
}
|
|
99
|
-
}
|
|
100
|
+
}
|